871ac1ea86927ae9c2bd73e13cae8724aa4979b1
[gnulib.git] / ChangeLog
1 2009-12-09  Bruno Haible  <bruno@clisp.org>
2
3         * lib/cloexec.c (set_cloexec_flag): Clarify intent of dup2 call.
4
5 2009-12-08  Eric Blake  <ebb9@byu.net>
6
7         fchdir: avoid memory leak on re-registration.
8         * lib/fchdir.c (ensure_dirs_slot): Avoid memory leak.
9
10 2009-12-08  Jim Meyering  <meyering@redhat.com>
11
12         init.sh: avoid Solaris 10 /bin/sh portability problem
13         Solaris 10's /bin/sh does not pass '.' arguments 2.. to the
14         sourced script:
15           $ printf 'echo "$@"\n' > f; /bin/sh -c '. ./f bar'
16           $ printf 'echo "$@"\n' > f; /bin/bash -c '. ./f bar'
17           bar
18         tests/init.sh relied on that, accepting a --set-path=DIR argument,
19         and two tests used that idiom.
20         * tests/init.sh: Update suggested usage comments.
21         (path_prepend_): New function, to be used in place
22         of the --src-path=DIR option.
23         (setup_): Move PATH-prepending code into path_prepend_.
24         * tests/test-pread.sh: Adapt to new usage.
25         * tests/test-xalloc-die.sh: Likewise.
26
27 2009-12-08  Simon Josefsson  <simon@josefsson.org>
28
29         * doc/gnulib.texi (Glibc pty.h): Add.
30         * doc/glibc-functions/forkpty.texi: Add.
31         * doc/glibc-functions/openpty.texi: Add.
32         Suggested by Bruno Haible.
33
34 2009-12-08  Eric Blake  <ebb9@byu.net>
35
36         fchdir: fix logic bugs
37         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Fix logic bug.
38         * tests/test-fchdir.c (main): Enhance test.
39         * lib/fchdir.c (rpl_fstat): Always provide if fchdir replacement
40         is in use.
41
42         dup2: fix logic bugs
43         * lib/dup2.c (dup2): Fix logic bugs.  Use HAVE_DUP2 rather than
44         REPLACE_DUP2 to decide when rpl_dup2 is needed.
45         * m4/dup2.m4 (gl_REPLACE_DUP2): Only define REPLACE_DUP2 when dup2
46         exists.
47         (gl_FUNC_DUP2): Drop unneeded AC_SUBST.
48
49 2009-12-07  Eric Blake  <ebb9@byu.net>
50
51         unlink: fix m4 detection
52         * m4/unlink.m4 (gl_FUNC_UNLINK): Include correct header.
53
54         unistd-safer: add unit test
55         * modules/unistd-safer-tests: New file.
56         * tests/test-dup-safer.c: Likewise.
57         * tests/test-cloexec.c (setmode): Avoid compiler warning.
58         * tests/test-dup2.c (setmode): Likewise.
59         * lib/cloexec.c (dup_cloexec): Fix mingw compile error.
60
61         cloexec: preserve text vs. binary across dup_cloexec
62         * lib/cloexec.c (dup_cloexec) [W32]: Query and use translation
63         mode.
64         * modules/dup2-tests (Depends-on): Add binary-io.
65         * modules/cloexec-tests (Depends-on): Likewise.
66         * tests/test-dup2.c (setmode, is_mode): New helpers.
67         (main): Add tests that translation mode is preserved.
68         * tests/test-cloexec.c (setmode, is_mode, main): Likewise.
69         Reported by Bruno Haible.
70
71         mgetgroups: reduce duplicate listings
72         * lib/mgetgroups.c (mgetgroups): Reduce duplicates from the
73         resulting array.
74         * tests/test-chown.h (test_chown): Simplify client.
75         * tests/test-lchown.h (test_lchown): Likewise.
76
77 2009-12-06  Bruno Haible  <bruno@clisp.org>
78
79         * lib/cloexec.c (dup_cloexec): Fix handling of _gl_register_dup return
80         value.
81
82 2009-12-06  Bruno Haible  <bruno@clisp.org>
83
84         * lib/progname.c: Include stdio.h, stdlib.h.
85         (set_program_name): Reject a NULL argument.
86
87 2009-12-05  Eric Blake  <ebb9@byu.net>
88
89         pipe2-safer: new module
90         * modules/pipe2-safer: New file.
91         * lib/unistd-safer.h (pipe2_safer): New prototype.
92         * lib/unistd--.h (pipe2): New wrapper.
93         * lib/pipe-safer.c (pipe2_safer): New function.
94         * modules/pipe (Depends-on): Add pipe2-safer.
95         * lib/pipe.c (create_pipe) [WIN32]: Let pipe2_safer do the work.
96
97         stdlib-safer: preserve cloexec flag for mkostemp[s]
98         * lib/mkstemp-safer.c (mkostemp_safer, mkostemps_safer): Use new
99         fd_safer_flag.
100
101         unistd-safer: allow preservation of cloexec status via flag
102         * lib/unistd-safer.h (dup_safer_flag, fd_safer_flag): New
103         prototypes.
104         * lib/dup-safer.c (dup_safer_flag): New function.
105         * lib/fd-safer.c (fd_safer_flag): Likewise.
106         * modules/cloexec (configure.ac): Set witness.
107
108         test-dup2: enhance test
109         * modules/dup2-tests (Depends-on): Add cloexec.
110         * tests/test-dup2.c (main): Enhance test.
111
112         cloexec: add dup_cloexec
113         * lib/cloexec.h (dup_cloexec): New prototype.  Add copyright
114         header and comments.
115         * lib/cloexec.c (set_cloexec_flag): Add comments.
116         (dup_cloexec): New function, with mingw implementation borrowed
117         from...
118         * lib/w32spawn.h (dup_noinherit): ...here.
119         * modules/execute (Depends-on): Add cloexec.
120         * modules/pipe (Depends-on): Likewise.
121         * modules/cloexec (Depends-on): Add dup2.
122         * modules/cloexec-tests (Files): New file.
123         * tests/test-cloexec.c: Likewise.
124
125         test-xalloc-die: fix test for mingw
126         * modules/xalloc-die-tests (Files): Add tests/init.sh.
127         * tests/test-xalloc-die.sh: Rewrite to use init.sh.  Strip
128         directory and .exe suffix off argv[0] output.
129
130         test-fseeko: fix test for mingw
131         * tests/test-fseeko.c (fseek): Redefine GL_LINK_WARNING, rather
132         than undefining fseek, so test will pass on mingw.
133
134 2009-12-05  Bruno Haible  <bruno@clisp.org>
135
136         * lib/progname.h (set_program_name): Clarify specification.
137         * lib/progname.c (set_program_name): Likewise.
138         Reported by Jim Meyering.
139
140 2009-12-05  Jim Meyering  <meyering@redhat.com>
141
142         maint.mk: backslash-escape parens in default regexp
143         * top/maint.mk (news-check-regexp): Now that we're using grep -E,
144         backslash-escape the literal parentheses.
145
146         maint.mk: news-date-check: use grep -E
147         * top/maint.mk (today): Define a Make variable, not a...
148         (news-date-check): ...shell variable.
149         (news-date-regexp): Use the Make variable.
150         Use grep's -E option.  Change the failing diagnostic to mention
151         the variable, $(news-date-regexp).
152
153 2009-12-04  Alfred M. Szmidt  <ams@gnu.org>
154
155         maintainer-makefile: allow customization of NEWS entry format
156         * top/maint.mk (news-date-regexp): New overridable variable.
157         (news-date-check): Use it.
158
159 2009-12-04  Eric Blake  <ebb9@byu.net>
160
161         mgetgroups: add xgetgroups, and avoid ENOSYS failures
162         * lib/mgetgroups.h (xgetgroups): New prototype.
163         * lib/mgetgroups.c (xgetgroups): New wrapper.
164         (mgetgroups): Handle ENOSYS.
165         * modules/mgetgroups (Depends-on): Add realloc.
166         Reported by Scott Harrison <scott.gnu.2009@scottrix.co.uk>.
167
168         mgetgroups: avoid argument promotion issues with -1
169         * lib/mgetgroups.c (mgetgroups): A cast is required when checking
170         for invalid gid_t.
171         * tests/test-chown.h (getegid, test_chown): Likewise.
172         * tests/test-lchown.h (getegid, test_lchown): Likewise.
173
174 2009-12-03  Paolo Bonzini  <bonzini@gnu.org>
175
176         exclude: Fix header file problems.
177         * lib/exclude.h: Add multiple inclusion guards and include stdbool.h.
178
179 2009-12-01  Jim Meyering  <meyering@redhat.com>
180
181         fts: fts_open: do not let an empty string cause immediate failure
182         This is required in support of GNU rm, for which the command
183         "rm A '' B" must process and remove both A and B, in spite of
184         the empty string argument.
185         * lib/fts.c (fts_open): Do not let the presence of an empty string
186         cause fts_open to fail immediately.  Most fts-using tools must be
187         able to process all arguments, in order, and can be expected to
188         diagnose such arguments themselves.
189
190 2009-11-30  Eric Blake  <ebb9@byu.net>
191
192         utimens: fix compilation error
193         * lib/utimens.c (lutimens) [!HAVE_UTIMENSAT && HAVE_LUTIMES]:
194         Declare variable at right scope.
195
196 2009-11-29  Jim Meyering  <meyering@redhat.com>
197
198         bootstrap: handle perl-5.11's changed --version output
199         * build-aux/bootstrap (get_version): Handle perl separately,
200         since perl-5.11's --version output is different.
201
202 2009-11-28  Jim Meyering  <meyering@redhat.com>
203
204         userspec: depend on the inttostr module, too
205         * modules/userspec (Depends-on): Add inttostr.
206
207         userspec: disallow an ID that maps to (uid_t)-1 or (gid_t)-1
208         * lib/userspec.c (parse_with_separator): Do not accept a user ID
209         number of MAXUID when it evaluates to (uid_t) -1.
210         Likewise for group ID.  Reported by Matt McCutchen in
211         <http://savannah.gnu.org/bugs/?28113>
212
213         userspec: reformat to use spaces, not TABs
214         * lib/userspec.c: Expand TABs to spaces.
215         Add Emacs' "indent-tabs-mode: nil" hint.
216
217 2009-11-27  Eric Blake  <ebb9@byu.net>
218
219         getopt-gnu: flush out another BSD bug
220         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Test for the bug.
221         * tests/test-getopt.c (main): Check POSIXLY_CORRECT first, to
222         flush out BSD bug.
223         * tests/test-getopt.h (test_getopt): End lists with NULL.
224         * tests/test-getopt_long.h (test_getopt_long): Likewise.
225         (test_getopt_long_posix): Enhance test.
226         * modules/getopt-posix-tests (Depends-on): Add stdbool.
227         * doc/glibc-functions/getopt_long.texi (getopt_long): Mention
228         getopt-gnu.
229         * doc/glibc-functions/getopt_long_only.texi (getopt_long_only):
230         Likewise.
231
232 2009-11-27  Simon Josefsson  <simon@josefsson.org>
233
234         * modules/idpriv-droptemp-tests (Notice): Fix text.
235
236 2009-11-27  Jim Meyering  <meyering@redhat.com>
237
238         test-xalloc-die: avoid spurious failure due to libtool argv difference
239         In a libtool-enabled project, this test would fail due to a difference
240         in the emitted program name, e.g.,
241         -test-xalloc-die: memory exhausted
242         +/tmp/.../tests/.libs/lt-test-xalloc-die: memory exhausted
243         Use program to avoid that.
244         * modules/xalloc-die-tests (Depends-on): Add progname.
245         * tests/test-xalloc-die.c: Include progname.h".
246         (program_name): Remove decl.
247         (main): Call set_program_name.
248         * tests/test-xalloc-die.sh (compare): Remove unnecessary ${EXE}.
249
250 2009-11-26  Richard Jones  <rjones@redhat.com>
251
252         w32sock: leave win32 error in place.
253         * lib/w32sock.h (set_winsock_errno): Do not call WSASetLastError.
254
255 2009-11-26  Eric Blake  <ebb9@byu.net>
256
257         init.sh: suggest to use skip_ and fail_ functions in comments
258         * tests/init.sh: Add a sentence.
259
260 2009-11-25  Bruno Haible  <bruno@clisp.org>
261
262         init.sh: add documentation in comments
263         * tests/init.sh: Add some developer and user documentation.
264
265 2009-11-26  Jim Meyering  <meyering@redhat.com>
266
267         init.sh: accommodate even those who specify bogus srcdir manually
268         * tests/init.sh: Normally, srcdir is guaranteed by automake and
269         configure-time tests to be sanitized, so that there is no need to
270         use "$srcdir" in Makefile rules and shell scripts.  Using $srcdir
271         (with no double quotes) suffices.  However, since tests may be
272         invoked manually, and since you may explicitly set srcdir to the
273         name of a directory containing spaces, do quote its uses here.
274         * tests/test-pread.sh: Likewise.
275         Suggested by Bruno Haible.
276
277         test-pread.sh: avoid diagnostics for those who ignore SIGPIPE
278         * tests/test-pread.sh: Write no data into the pipe, because
279         test-pread actually reads none.  This avoids a diagnostic,
280         "bash: echo: write error: Broken pipe", that arises in the unusual
281         event something is ignoring SIGPIPE, and might be interpreted
282         as some sort of failure.  Reported by Bruno Haible.
283
284 2009-11-25  Jim Meyering  <meyering@redhat.com>
285
286         test-pread: cover failure with ESPIPE and EINVAL
287         * tests/test-pread.c (main): Test for failure, too.
288         * tests/test-pread.sh: Invoke with stdin on a pipe.
289         Suggested by Eric Blake.
290
291         pread: improvement and fix
292         * modules/pread (Depends-on): Depend on lseek, for portability to
293         e.g., mingw.  Suggested by Eric Blake.
294         * lib/pread.c (__libc_read): Define.  Reported by Richard W.M. Jones.
295
296         unistd.in.h: correct declaration of pread
297         * lib/unistd.in.h: Correct type of "buf" parameter: void*, not char*
298         Reported by Richard W.M. Jones.
299
300         test-pread.sh: distribute the test script
301         * modules/pread-tests (Files): Include test-pread.sh.
302
303         test-pread.sh: clean up
304         * tests/test-pread.sh: Don't refer to $builddir. Just use equivalent ".".
305         * modules/pread-tests (TESTS_ENVIRONMENT): Don't export builddir.
306         That is unnecessary, since it's always ".".
307         Suggestion from Eric Blake.
308
309         test-pread.sh: make executable
310         * tests/test-pread.sh: Set executable bit.
311         Reported by Eric Blake.
312
313         correct typo in test-pread.sh
314         * tests/test-pread.sh: Add #! line.
315
316         test pread
317         * tests/test-pread.c: New file.
318         * tests/test-pread.sh: Likewise.
319         * modules/pread-tests: Likewise.
320
321         pread: new module
322         * modules/pread: New file.
323         * lib/unistd.in.h (pread): Define/declare.
324         * lib/pread.c (pread): New file.
325         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Define defaults.
326         * modules/unistd (Makefile.am): Substitute witnesses.
327         * doc/posix-functions/pread.texi (pread): Update.
328         * MODULES.html.sh: Add pread.
329
330 2009-11-25  Jim Meyering  <meyering@redhat.com>
331
332         tests/init.sh: new file to be used via most *.sh tests
333         * tests/init.sh: New file.
334
335 2009-11-25  Eric Blake  <ebb9@byu.net>
336
337         utimens: work around older Linux failure with symlinks
338         * lib/utimens.c (lutimensat_works_really): New variable.
339         (fdutimens, lutimens): Use it to manage kernels that support
340         nanosecond times on files, but not on symlinks.
341         Reported by OndÅ™ej Vašík.
342
343         utimes: fix configure grammar
344         * m4/utimes.m4 (gl_FUNC_UTIMES): Delete spurious word.
345
346 2009-11-25  Paolo Bonzini  <bonzini@gnu.org>
347
348         regex: Fix fastmap for multibyte character ranges.
349         * lib/regcomp.c (re_compute_fastmap_iter): Add all multibyte lead
350         characters when a multibyte character range is included.
351
352 2009-11-22  Andy Wingo  <wingo@pobox.com>
353
354         version-etc: work also with AM_INIT_AUTOMAKE's no-define option
355         * lib/version-etc.c [!defined PACKAGE]: Define to PACKAGE_TARNAME.
356
357 2009-11-24  Bruno Haible  <bruno@clisp.org>
358
359         doc: Most *_l functions exist in MacOS X 10.5.
360         * doc/posix-functions/duplocale.texi: Update platforms list.
361         * doc/posix-functions/freelocale.texi: Likewise.
362         * doc/posix-functions/newlocale.texi: Likewise.
363         * doc/posix-functions/uselocale.texi: Likewise.
364         * doc/posix-functions/isalnum_l.texi: Likewise.
365         * doc/posix-functions/isalpha_l.texi: Likewise.
366         * doc/posix-functions/isblank_l.texi: Likewise.
367         * doc/posix-functions/iscntrl_l.texi: Likewise.
368         * doc/posix-functions/isdigit_l.texi: Likewise.
369         * doc/posix-functions/isgraph_l.texi: Likewise.
370         * doc/posix-functions/islower_l.texi: Likewise.
371         * doc/posix-functions/isprint_l.texi: Likewise.
372         * doc/posix-functions/ispunct_l.texi: Likewise.
373         * doc/posix-functions/isspace_l.texi: Likewise.
374         * doc/posix-functions/isupper_l.texi: Likewise.
375         * doc/posix-functions/iswalnum_l.texi: Likewise.
376         * doc/posix-functions/iswalpha_l.texi: Likewise.
377         * doc/posix-functions/iswblank_l.texi: Likewise.
378         * doc/posix-functions/iswcntrl_l.texi: Likewise.
379         * doc/posix-functions/iswctype_l.texi: Likewise.
380         * doc/posix-functions/iswdigit_l.texi: Likewise.
381         * doc/posix-functions/iswgraph_l.texi: Likewise.
382         * doc/posix-functions/iswlower_l.texi: Likewise.
383         * doc/posix-functions/iswprint_l.texi: Likewise.
384         * doc/posix-functions/iswpunct_l.texi: Likewise.
385         * doc/posix-functions/iswspace_l.texi: Likewise.
386         * doc/posix-functions/iswupper_l.texi: Likewise.
387         * doc/posix-functions/iswxdigit_l.texi: Likewise.
388         * doc/posix-functions/isxdigit_l.texi: Likewise.
389         * doc/posix-functions/nl_langinfo_l.texi: Likewise.
390         * doc/posix-functions/strcasecmp_l.texi: Likewise.
391         * doc/posix-functions/strcoll_l.texi: Likewise.
392         * doc/posix-functions/strfmon_l.texi: Likewise.
393         * doc/posix-functions/strftime_l.texi: Likewise.
394         * doc/posix-functions/strncasecmp_l.texi: Likewise.
395         * doc/posix-functions/strxfrm_l.texi: Likewise.
396         * doc/posix-functions/tolower_l.texi: Likewise.
397         * doc/posix-functions/toupper_l.texi: Likewise.
398         * doc/posix-functions/towctrans_l.texi: Likewise.
399         * doc/posix-functions/towlower_l.texi: Likewise.
400         * doc/posix-functions/towupper_l.texi: Likewise.
401         * doc/posix-functions/wcscoll_l.texi: Likewise.
402         * doc/posix-functions/wcsxfrm_l.texi: Likewise.
403         * doc/posix-functions/wctrans_l.texi: Likewise.
404         * doc/posix-functions/wctype_l.texi: Likewise.
405         * doc/glibc-functions/strptime_l.texi: Likewise.
406         * doc/glibc-functions/strtod_l.texi: Likewise.
407         * doc/glibc-functions/strtof_l.texi: Likewise.
408         * doc/glibc-functions/strtol_l.texi: Likewise.
409         * doc/glibc-functions/strtold_l.texi: Likewise.
410         * doc/glibc-functions/strtoll_l.texi: Likewise.
411         * doc/glibc-functions/strtoul_l.texi: Likewise.
412         * doc/glibc-functions/strtoull_l.texi: Likewise.
413         * doc/glibc-functions/wcsftime_l.texi: Likewise.
414         * doc/glibc-functions/wcstod_l.texi: Likewise.
415         * doc/glibc-functions/wcstof_l.texi: Likewise.
416         * doc/glibc-functions/wcstol_l.texi: Likewise.
417         * doc/glibc-functions/wcstold_l.texi: Likewise.
418         * doc/glibc-functions/wcstoll_l.texi: Likewise.
419         * doc/glibc-functions/wcstoul_l.texi: Likewise.
420         * doc/glibc-functions/wcstoull_l.texi: Likewise.
421
422 2009-11-24  Bruno Haible  <bruno@clisp.org>
423
424         duplocale: Fix logic bug.
425         * lib/duplocale.c: Don't include <langinfo.h>.
426         (_NL_LOCALE_NAME): Remove macro.
427         (rpl_duplocale): Use setlocale instead of nl_langinfo.
428         * tests/test-duplocale.c (main): Also test duplocale after uselocale.
429
430 2009-11-23  Jim Meyering  <meyering@redhat.com>
431
432         test-update-copyright: don't hard-code /usr/bin/perl
433         * tests/test-update-copyright.sh (YEAR): Use date +%Y, rather than
434         perl to print the current year.  Gilles Espinasse reported that
435         the replaced use of perl was hard-coded as /usr/bin/perl.
436
437 2009-11-23  Bruno Haible  <bruno@clisp.org>
438
439         duplocale: Add support for glibc 2.3.x.
440         * lib/duplocale.c (rpl_duplocale): Add fallback code for glibc 2.3.x.
441
442 2009-11-22  Bruno Haible  <bruno@clisp.org>
443
444         vasnprintf: Tiny optimization.
445         * lib/vasnprintf.c (decimal_point_char): Choose the fast path also on
446         MacOS X.
447
448 2009-11-22  Bruno Haible  <bruno@clisp.org>
449
450         Tests for module 'duplocale'.
451         * modules/duplocale-tests: New file.
452         * tests/test-duplocale.c: New file.
453
454         New module 'duplocale'.
455         * m4/duplocale.m4: New file.
456         * lib/locale.in.h (duplocale): New declaration.
457         * lib/duplocale.c: New file.
458         * m4/locale_h.m4 (gl_REPLACE_LOCALE_H, gl_LOCALE_MODULE_INDICATOR,
459         gl_LOCALE_H_DEFAULTS): New macros.
460         (gl_LOCALE_H): Require gl_LOCALE_H_DEFAULTS. Invoke
461         gl_CHECK_NEXT_HEADERS unconditionally. Invoke gl_REPLACE_LOCALE_H.
462         * modules/locale (Makefile.am): Substitute also GNULIB_DUPLOCALE,
463         REPLACE_DUPLOCALE.
464         * modules/duplocale: New file.
465         * doc/posix-functions/duplocale.texi: Mention the glibc bug.
466
467 2009-11-22  Bruno Haible  <bruno@clisp.org>
468
469         * modules/locale-tests (configure.ac): Test for newlocale function.
470         * tests/test-locale.c: When the system has extended locale functions,
471         verify that <locale.h> defines locale_t and LC_GLOBAL_LOCALE.
472
473         locale: Make locale_t available when possible.
474         * lib/locale.in.h: Include <xlocale.h> when it exists.
475         * m4/locale_h.m4 (gl_LOCALE_H): Check for <xlocale.h> and arrange to
476         replace <locale.h> if it does not define locale_t but <xlocale.h> does.
477         * modules/locale (Depends-on): Add extensions.
478         (Makefile.am): Also substitute HAVE_XLOCALE_H.
479         * doc/posix-headers/locale.texi: Document the problem with locale_t.
480
481 2009-11-22  Bruno Haible  <bruno@clisp.org>
482
483         Add comments.
484         * m4/dirent_h.m4 (gl_DIRENT_H): Add comment about gl_CHECK_NEXT_HEADERS
485         invocation.
486         * m4/iconv_h.m4 (gl_ICONV_H): Likewise.
487         * m4/spawn_h.m4 (gl_SPAWN_H): Likewise.
488         * m4/wchar.m4 (gl_WCHAR_H): Likewise.
489
490 2009-11-22  Bruno Haible  <bruno@clisp.org>
491
492         error: account for the possibility of freopen (stdout).
493         * lib/error.c: Include <unistd.h>.
494         (flush_stdout): New function, extracted from error and error_at_line.
495         Determine stdout's fd dynamically.
496         (error, error_at_line): Invoke flush_stdout.
497         * m4/error.m4 (gl_PREREQ_ERROR): Require AC_C_INLINE.
498         * modules/error (Depends-on): Add unistd.
499
500 2009-11-22  Bruno Haible  <bruno@clisp.org>
501
502         diffseq: Add comment.
503         * lib/diffseq.h (IF_LINT): Add comment about pitfall.
504
505 2009-11-22  Jim Meyering  <meyering@redhat.com>
506
507         c-stack: avoid defining an unused static function
508         * lib/c-stack.c (find_stack_direction): Do not define this function
509         when it will not be used.
510
511         diffseq: avoid spurious gcc warnings
512         * lib/diffseq.h (IF_LINT2): Define.
513         (compareseq): Use it to initialize two members of "part".
514         This avoids two used-uninitialized warnings.
515
516 2009-11-21  Jim Meyering  <meyering@redhat.com>
517
518         c-stack: avoid "ignoring return value of `write'" warning
519         * lib/c-stack.c: Include "ignore-value.h".
520         (die): Explicitly ignore each write return value.
521         * modules/c-stack (Depends-on): Add ignore-value.
522
523 2009-11-21  Bruno Haible  <bruno@clisp.org>
524
525         diffseq: reduce scope of variable 'best'.
526         * lib/diffseq.h (diag) [USE_HEURISTIC]: Reduce scope of 'best'
527         variable, earlier used for two different purposes.
528
529 2009-11-21  Jim Meyering  <meyering@redhat.com>
530
531         diffseq: remove useless assignment to "best"
532         * lib/diffseq.h (diag) [USE_HEURISTIC]: Remove useless "best = 0"
533         assignment.  At that point "best" is already guaranteed to be zero.
534
535 2009-11-20  Eric Blake  <ebb9@byu.net>
536
537         build: mention ftp redirector in release announcements
538         * top/maint.mk (gnu_rel_host, url_dir_list): Provide defaults for
539         values that used to come from cfg.mk; mention FTP redirect URL.
540         * build-aux/announce-gen: Mention the mirror list.
541         Suggested by Karl Berry.
542
543         nanosleep: improve port to mingw
544         * lib/nanosleep.c (rpl_nanosleep): Reject invalid arguments.
545         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Incorporate LIBSOCKET into
546         LIB_NANOSLEEP, but only when needed.
547         * modules/select (Link): Document LIBSOCKET.
548         * m4/select.m4 (gl_FUNC_SELECT): Ensure LIBSOCKET is defined early
549         enough.
550
551         nanosleep: work around cygwin bug
552         * lib/nanosleep.c (rpl_nanosleep) [HAVE_BUG_BIG_NANOSLEEP]:
553         Fix logic bug when nanosleep fails.  Work around cygwin 1.5.x
554         bug.
555         (getnow): Delete, not needed.
556         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): No longer require
557         LIB_CLOCK_GETTIME.
558         * modules/nanosleep (Depends-on): Add intprops and verify.  Drop
559         clock-time, gettime.
560         * doc/posix-functions/nanosleep.texi (nanosleep): Document the
561         bug.
562         * modules/nanosleep-tests: New test.
563         * tests/test-nanosleep.c: New file.
564
565         sleep: work around cygwin bug
566         * lib/sleep.c (rpl_sleep): Work around the bug.
567         * m4/sleep.m4 (gl_FUNC_SLEEP): Detect the bug.
568         (gl_PREREQ_SLEEP): Delete unused macro.
569         * modules/sleep (Depends-on): Add verify.
570         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add default.
571         * modules/unistd (Makefile.am): Substitute witness.
572         * lib/unistd.in.h (sleep): Update prototype.
573         * doc/posix-functions/sleep.texi (sleep): Document the bug.
574         * tests/test-sleep.c (main) [HAVE_DECL_ALARM]: Test it.
575         * modules/sleep-tests (Depends-on): Check for alarm.
576
577 2009-11-20  Jim Meyering  <meyering@redhat.com>
578
579         maint.mk: improve sc_prohibit_magic_number_exit
580         * top/maint.mk (sc_prohibit_magic_number_exit): Tighten regexp
581         so it does not match uses like System.exit(1).
582         Add comments showing how to correct all offenders.
583
584 2009-11-19  Eric Blake  <ebb9@byu.net>
585
586         xalloc-die-tests: add missing library
587         * modules/xalloc-die-tests (Makefile.am): Add LDADD line.
588
589         test-xvasprintf: silence compiler warnings
590         * tests/test-xvasprintf.c (test_xvasprintf, test_xasprintf): Mask
591         empty string from gcc.
592
593 2009-11-19  Jim Meyering  <meyering@redhat.com>
594
595         xfreopen: new module, from coreutils
596         * modules/xfreopen: New module.
597         * lib/xfreopen.c: New file.
598         * lib/xfreopen.h: New file.
599         * MODULES.html.sh (File stream based Input/Output"): Add it.
600
601 2009-11-19  Eric Blake  <ebb9@byu.net>
602
603         manywarnings: depend on warnings
604         * modules/manywarnings (Depends-on): Add warnings.
605
606         build: avoid compiler warnings
607         * lib/select.c (rpl_select): Delete unused variable.
608         * lib/setsockopt.c (rpl_setsockopt): Avoid incompatible pointer.
609
610 2009-11-18  Eric Blake  <ebb9@byu.net>
611
612         tests: avoid false negative with --with-packager
613         * tests/test-version-etc.sh: Discard packager information.
614         * tests/test-argp-version-etc-1.sh: Likewise.
615         Reported by Mike Frysinger.
616
617         utimens: fix regression on Solaris
618         * m4/utimens.m4 (gl_UTIMENS): Check for BSD bug.
619         * lib/utimens.c (fdutimens): Revert 2009-11-08 change; Solaris 10
620         can only change fd timestamps via futimesat.  Instead, use an
621         additional witness macro to avoid BSD bug.
622         Reported by Jim Meyering.
623
624 2009-11-17  Eric Blake  <ebb9@byu.net>
625
626         usleep: use it to simplify tests
627         * modules/stat-time-tests (Depends-on): Add usleep.
628         (configure.ac): Drop usleep check.
629         * modules/chown-tests (Depends-on, configure.ac): Likewise.
630         * modules/lchown-tests (Depends-on, configure.ac): Likewise.
631         * modules/fdutimensat-tests (Depends-on, configure.ac): Likewise.
632         * modules/futimens-tests (Depends-on, configure.ac): Likewise.
633         * modules/openat-tests (Depends-on, configure.ac): Likewise.
634         * modules/utimens-tests (Depends-on, configure.ac): Likewise.
635         * modules/utimensat-tests (Depends-on, configure.ac): Likewise.
636         * modules/pipe-filter-gi-tests (Depends-on, configure.ac):
637         Likewise.
638         * tests/test-chown.h (nap): Rely on nicer usleep semantics.
639         * tests/test-lchown.h (nap): Likewise.
640         * tests/test-pipe-filter-gi2-main.c (small_nap): Likewise.
641         * tests/test-stat-time.c (nap): Likewise.
642         * tests/test-utimens-common.h (nap): Update comments.
643
644         usleep: new module
645         * modules/usleep: New file.
646         * m4/usleep.m4 (gl_FUNC_USLEEP): Likewise.
647         * lib/usleep.c (usleep): Likewise.
648         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add defaults.
649         * modules/unistd (Makefile.am): Substitute witnesses.
650         * lib/unistd.in.h (usleep): Add declaration.
651         * doc/pastposix-functions/usleep.texi (usleep): Document this.
652         * MODULES.html.sh (Date and time): Likewise.
653         * modules/usleep-tests (Depends-on): New test.
654         * tests/test-usleep.c: New file.
655
656         chown: work around OpenBSD bug
657         * lib/chown.c (rpl_chown): Work around the bug.
658         * lib/lchown.c (rpl_lchown): Attempt to do likewise.
659         * m4/chown.m4 (gl_FUNC_CHOWN): Test for ctime bug.
660         * m4/lchown.m4 (gl_FUNC_LCHOWN): Check for lchmod.
661         * modules/chown (Depends-on): Add stdbool.
662         * modules/lchown (Depends-on): Likewise.
663         * doc/posix-functions/chown.texi (chown): Document the bug.
664         * doc/posix-functions/lchown.texi (lchown): Likewise.
665         * tests/test-lchown.h (test_chown): Relax test.
666
667         mkstemp: avoid conflict with C++ keyword template
668         * lib/mkdtemp.c (mkdtemp): Change spelling of template.
669         * lib/mkostemp.c (mkostemp): Likewise.
670         * lib/mkostemps.c (mkostemps): Likewise.
671         * lib/mkstemp.c (mkstemp): Likewise.
672         * lib/mkstemps.c (mkstemps): Likewise.
673
674         xalloc-die-tests: optimize
675         * tests/test-xalloc-die.sh: Reduce number of processes.
676
677 2009-11-17  Simon Josefsson  <simon@josefsson.org>
678
679         * gnulib-tool: Support LGPLv3+ licenses in module files.  Tiny
680         patch from ludo@gnu.org (Ludovic Courtès).
681
682 2009-11-17  Jim Meyering  <meyering@redhat.com>
683
684         version-etc: use proper license string
685         * modules/version-etc (License): Use LGPL, not LGPLv3+.
686         * modules/version-etc-fsf: Likewise.
687
688 2009-11-17  Simon Josefsson  <simon@josefsson.org>
689
690         * tests/test-xalloc-die.sh: Add license.  Check that nothing is
691         printed to stdout.  Deal with EOL differences.
692
693 2009-11-17  Eric Blake  <ebb9@byu.net>
694
695         unsetenv: work around Solaris bug
696         * m4/setenv.m4 (gl_FUNC_UNSETENV): Check for bug.
697         * lib/unsetenv.c (rpl_unsetenv): Work around it.
698         Reported by Jim Meyering.
699
700         vasnprintf: avoid compiler warnings
701         * lib/vasnprintf.c (VASNPRINTF): Avoid shadowing our own local
702         variables.
703         * lib/printf-args.c (PRINTF_FETCHARGS): Avoid type mismatch.
704
705 2009-11-17  Simon Josefsson  <simon@josefsson.org>
706
707         * modules/xalloc-die-tests (Makefile.am): Drop XFAIL_TESTS
708         settings since xalloc-die is no longer the self test,
709         xalloc-die.sh is.
710
711 2009-11-17  Jim Meyering  <meyering@redhat.com>
712
713         test-xalloc-die.sh: make the code agree with the commit log
714         * tests/test-xalloc-die.sh: Put "." at the front of $PATH, not
715         at the end, just in case you happen to have a test-xalloc-die
716         program in some other PATH directory.
717
718         test-xalloc-die.sh: fix a portability bug
719         * tests/test-xalloc-die.sh: Do not invoke via ./test-xalloc-die.
720         Instead, set PATH to start with "." and invoke via "test-xalloc-die".
721         Otherwise, argv[0] (as often seen in diagnostics) would be too
722         system-dependent, sometimes with, and sometimes without the leading "./".
723
724         version-etc-fsf: relax license to LGPLv3+
725         * modules/version-etc-fsf (License): Relax license.
726
727 2009-11-16  Eric Blake  <ebb9@byu.net>
728
729         xalloc-die-tests: avoid printing null pointer
730         * modules/xalloc-die-tests (Files, Makefile.am): Wrap execution in
731         shell script.
732         * tests/test-xalloc-die.c (program_name): Declare.
733         * tests/test-xalloc-die.sh (tmpfiles): New file.
734
735         setenv, unsetenv: work around various bugs
736         * lib/setenv.c (setenv) [!HAVE_SETENV]: Resync from glibc.
737         (setenv) [HAVE_SETENV]: Work around bugs.
738         * lib/unsetenv.c (unsetenv) [HAVE_UNSETENV]: Work around bugs.
739         * m4/setenv.m4 (gl_FUNC_SETENV_SEPARATE, gl_FUNC_UNSETENV): Check
740         for bugs.
741         (gl_FUNC_SETENV): Write in terms of gl_FUNC_SETENV_SEPARATE.
742         * m4/environ.m4 (gl_ENVIRON): Avoid expand-before-require.
743         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Update defaults.
744         * modules/stdlib (Makefile.am): Update substitutions.
745         * lib/stdlib.in.h (setenv, unsetenv): Update prototypes.
746         * doc/posix-functions/setenv.texi (setenv): Document the bugs.
747         * doc/posix-functions/unsetenv.texi (unsetenv): Likewise.
748         * modules/setenv-tests: New test.
749         * modules/unsetenv-tests: Likewise.
750         * tests/test-setenv.c: New file.
751         * tests/test-unsetenv.c: Likewise.
752
753 2009-11-16  Jim Meyering  <meyering@redhat.com>
754
755         version-etc: relax license to LGPLv3+
756         * modules/version-etc (License): Relax license.
757
758         better AC_REQUIRE expanded-before-required-warning avoidance
759         * m4/chown.m4 (gl_FUNC_CHOWN, gl_FUNC_CHOWN_FOLLOWS_SYMLINK): Define
760         with AC_DEFUN_ONCE, rather than AC_DEFUN, to avoid AC_REQUIRE warnings.
761         Suggested by Eric Blake.  This change also reverts commit 1b712ba8,
762         which is no longer needed.
763
764 2009-11-16  Eric Blake  <ebb9@byu.net>
765
766         test-freading: clean up temporary file
767         * tests/test-freading.c (main): Remove file on success, and use
768         ASSERT more liberally.
769         Reported by Jim Meyering.
770
771 2009-11-16  Jim Meyering  <meyering@redhat.com>
772
773         avoid new AC_REQUIRE expanded-before-required warnings
774         * modules/chown (configure.ac): Require gl_FUNC_CHOWN, rather than
775         merely using it.
776         * modules/euidaccess (configure.ac): Likewise for gl_FUNC_EUIDACCESS.
777         * modules/faccessat (configure.ac): Likewise for gl_FUNC_FACCESSAT.
778
779 2009-11-15  Simon Josefsson  <simon@josefsson.org>
780
781         * tests/test-xalloc-die.c: New file.
782         * modules/xalloc-die-tests: New file.
783         * gnulib-tool (func_emit_tests_Makefile_am): Also initialize
784         XFAIL_TESTS so it can be appended by modules.
785
786 2009-11-15  Simon Josefsson  <simon@josefsson.org>
787
788         * lib/gc-pbkdf2-sha1.c: Remove comments from RFC 2898.  Reported
789         by Vladimir 'phcoder' Serbinenko <phcoder@gmail.com>.
790
791 2009-11-14  Eric Blake  <ebb9@byu.net>
792
793         fnmatch: avoid compiler warning
794         * lib/fnmatch_loop.c (NEW_PATTERN): Coerce addition to unsigned,
795         to silence compiler warning about mismatch signedness in ?:.
796         Reported by Robert Millan.
797
798         intprops: add double-inclusion guard
799         * lib/intprops.h: Allow idempotent includes.
800         Suggested by Bruce Korb.
801
802         openat: detect Solaris fchownat bug
803         * lib/fchownat.c (rpl_fchownat): Work around Solaris bug.  Avoid
804         penalizing glibc chownat when only lchownat is broken.
805         * m4/openat.m4 (gl_FUNC_FCHOWNAT): Replace fchownat if there are
806         trailing slash bugs.
807         * doc/posix-functions/fchownat.texi (fchownat): Document the bug.
808         * modules/openat-tests (Files): Include more files.
809         (Depends-on): Add mgetgroups, sleep, stat-time.
810         (configure.ac): Add additional checks.
811         (Makefile.am): Build new test.
812         * tests/test-fchownat.c: New file.
813
814         lchown: detect Solaris and FreeBSD bug
815         * lib/lchown.c (rpl_lchown): Work around bug.
816         * m4/lchown.m4 (gl_FUNC_LCHOWN): Check for trailing slash bugs.
817         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add witness.
818         * modules/unistd (Makefile.am): Populate it.
819         * lib/unistd.in.h (lchown): Update declaration.
820         * doc/posix-functions/lchown.texi (lchown): Document the bug.
821         * modules/lchown-tests: New file.
822         * tests/test-lchown.h (test_lchown): Likewise.
823         * tests/test-lchown.c (main): Likewise.
824
825         chown: detect Solaris and FreeBSD bug
826         * lib/chown.c (rpl_chown): Work around bug.
827         * m4/chown.m4 (gl_FUNC_CHOWN): Check for trailing slash bugs.
828         (gl_PREREQ_CHOWN): Delete.
829         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add witness.
830         * modules/unistd (Makefile.am): Populate it.
831         * lib/unistd.in.h (chown): Update declaration.
832         * lib/lchown.c (chown): Update client.
833         * modules/lchown (Depends-on): Add lstat.
834         * doc/posix-functions/chown.texi (chown): Document the bug.
835         * doc/posix-functions/getgroups.texi (getgroups): Document
836         getgroups pitfall.
837         * modules/chown-tests: New file.
838         * tests/test-chown.h (test_chown): Likewise.
839         * tests/test-chown.c (main): Likewise.
840
841 2009-11-14  Robert Millan  <rmh.grub@aybabtu.com>  (tiny change)
842
843         gnulib-tool: correctly detect absence of m4 directories
844         * gnulib-tool: Avoid extra newline on data passed to wc -l.
845
846 2009-11-14  Jim Meyering  <meyering@redhat.com>
847
848         maint.mk: Prohibit inclusion of "xalloc.h" without use.
849         * top/maint.mk (sc_prohibit_close_stream_without_use): New rule.
850
851 2009-11-14  John W. Eaton  <jwe@gnu.org>
852
853         strftime.h: wrap funtion declaration in extern "C" block
854         * lib/strftime.h (nstrftime) [__cplusplus]: Wrap declaration.
855
856 2009-11-13  Eric Blake  <ebb9@byu.net>
857
858         getgroups: avoid compiler warning
859         * lib/getgroups.c (rpl_getgroups): Delete shadowed variable.
860
861         getgroups: work around FreeBSD bug
862         * lib/getgroups.c (rpl_getgroups): Work around the bug.
863         * m4/getgroups.m4 (gl_FUNC_GETGROUPS): Detect the bug.
864         * doc/posix-functions/getgroups.texi (getgroups): Document it.
865         * tests/test-getgroups.c (main): Fix buffer overrun.
866
867         getgroups: avoid compilation failure
868         * lib/getgroups.c (includes): Include <stdint.h> for SIZE_MAX.
869         * modules/getgroups (Depends-on): Add stdint.
870
871 2009-11-13  Jim Meyering  <meyering@redhat.com>
872
873         test-getgroups: avoid compilation failure
874         * tests/test-getgroups.c: Include <stdint.h> for use of SIZE_MAX.
875
876 2009-11-13  Eric Blake  <ebb9@byu.net>
877
878         mgetgroups: new module, taken from coreutils
879         * modules/mgetgroups: New file.
880         * lib/mgetgroups.h: Likewise.
881         * lib/mgetgroups.c (mgetgroups): Likewise.
882         * m4/mgetgroups.m4 (gl_MGETGROUPS): Likewise.
883         * MODULES.html.sh (Users and groups): Mention it.
884
885         getgroups: don't expose GETGROUPS_T to user
886         * lib/getgroups.c (rpl_getgroups): Change signature.  Copy array
887         an element at a time if GETGROUPS_T is wrong size.
888         * lib/getugroups.h (getugroups): Change signature.
889         * lib/unistd.in.h (getgroups): Likewise.
890         * m4/getgroups.m4 (gl_FUNC_GETGROUPS): Use replacement if
891         signature needs fixing.
892         * m4/getugroups.m4 (gl_GETUGROUPS): No longer need
893         AC_TYPE_GETGROUPS.
894         * modules/group-member (Depends-on): Add getgroups.
895         * lib/group-member.c (group_info, get_group_info): Use gid_t.
896         (group_member): Rely on getgroups replacement.
897         * lib/getugroups.c (getugroups): Use gid_t.
898         * tests/test-getgroups.c (main): Likewise.
899         * NEWS: Mention the signature change.
900         * doc/posix-functions/getgroups.texi (getgroups): Mention the
901         problem with signature.
902         * doc/glibc-functions/setgroups.texi (setgroups): Mention that
903         GETGROUPS_T is still useful for setgroups.
904
905         getgroups, getugroups: provide stubs for mingw
906         * lib/getgroups.c (getgroups): Provide ENOSYS stub for mingw.
907         * lib/getugroups.c (getugroups): Likewise.
908         * m4/getgroups.m4 (gl_FUNC_GETGROUPS): Check for missing
909         function.  Modernize replacement scheme.
910         (gl_PREREQ_GETGROUPS): Delete.
911         * m4/getugroups.m4 (gl_GETUGROUPS): Check for <grp.h>.
912         * modules/getgroups (configure.ac): Declare witness.
913         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add default.
914         * modules/unistd (Depends-on): Substitute witness.
915         * lib/unistd.in.h (getgroups): Declare replacement.
916
917         getgroups: avoid calling exit
918         * modules/getgroups (Depends-on): Add malloc-posix and unistd,
919         drop xalloc.
920         * modules/getgroups-tests (Depends-on, Makefile.am): Drop unneeded
921         dependencies.
922         * lib/getgroups.c (rpl_getgroups): Fail with ENOMEM rather than
923         exiting, in the rare case of malloc failure.
924
925         getgroups: fix logic error
926         * lib/getgroups.c (rpl_getgroups): Don't fail if current process
927         has more than 20 groups.
928         * modules/getgroups-tests: New test.
929         * tests/test-getgroups.c: New file.
930
931 2009-11-13  Simon Josefsson  <simon@josefsson.org>
932
933         * tests/test-base64.c: Improve.
934
935 2009-11-13  Simon Josefsson  <simon@josefsson.org>
936
937         * tests/test-xvasprintf.c: Fix memory leak, suggested by Eric
938         Blake <ebb9@byu.net>.
939
940 2009-11-13  Simon Josefsson  <simon@josefsson.org>
941
942         * tests/test-xvasprintf.c: Add %s%s related checks.
943
944 2009-11-12  Eric Blake  <ebb9@byu.net>
945
946         version-etc: match standards.texi style
947         * lib/version-etc.c (emit_bug_reporting_address): Drop periods,
948         and use <> only for URLs.
949
950 2009-11-10  Kamil Dudka  <kdudka@redhat.com>
951
952         fts: do not fail on a submount during traversal
953         * lib/fts.c (fts_build): Read the stat info again after opening
954         a directory if the FTS_TIGHT_CYCLE_CHECK flag is set.
955         Original report at http://bugzilla.redhat.com/501848.
956
957 2009-11-12  Jim Meyering  <meyering@redhat.com>
958
959         bootstrap: sync from coreutils
960         * build-aux/bootstrap (bootstrap_epilogue): New function.
961         Use git_modules_config in one more place.  This make bootstrap's
962         --gnulib-srcdir option more useful for testing.
963
964         bootstrap: generalize autoheader check
965         * build-aux/bootstrap: Look for AC_CONFIG_HEADER as well as
966         AC_CONFIG_HEADERS.
967
968 2009-11-11  Eric Blake  <ebb9@byu.net>
969
970         mkfifoat: use new modules for Solaris and BSD bugs
971         * m4/mkfifoat.m4 (gl_FUNC_MKFIFOAT): Simplify.
972         * lib/mkfifoat.c (mknodat): Split...
973         * lib/mknodat.c (mknodat): ...into new file.
974         * modules/mkfifoat (Files): Ship new file.
975         (Depends-on): Add mkfifo, mknod.
976         * modules/mkfifoat-tests (Files): Reuse mkfifo tests.
977         (Depends-on): Add symlink.
978         * tests/test-mkfifoat.c (main): Enhance test.  Drop portions now
979         redundant with test_mkfifo.h.
980         (do_mkfifoat, do_mknodat): New helpers.
981
982         mknod: new module
983         * modules/mknod: New file.
984         * m4/mknod.m4 (gl_FUNC_MKNOD): Likewise.
985         * lib/mknod.c (mknod): Likewise.
986         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Set witness
987         defaults.
988         * modules/sys_stat (Makefile.am): Substitute them.
989         * lib/sys_stat.in.h (mknod): Declare replacement.
990         * MODULES.html.sh (Support for systems lacking POSIX:2008):
991         Document it.
992         * doc/posix-functions/mknod.texi (mknod): Likewise.
993         * modules/mknod-tests: New test.
994         * tests/test-mknod.c: Likewise.
995
996         mkfifo: new module
997         * modules/mkfifo: New file.
998         * m4/mkfifo.m4 (gl_FUNC_MKFIFO): Likewise.
999         * lib/mkfifo.c (mkfifo): Likewise.
1000         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Set witness
1001         defaults.
1002         * modules/sys_stat (Makefile.am): Substitute them.
1003         * lib/sys_stat.in.h (mkfifo): Declare replacement.
1004         * MODULES.html.sh (Support for systems lacking POSIX:2008):
1005         Document it.
1006         * doc/posix-functions/mkfifo.texi (mkfifo): Likewise.
1007         * modules/mkfifo-tests: New test.
1008         * tests/test-mkfifo.h (test_mkfifo): New file, borrowed in part
1009         from test-mkfifoat.c.
1010         * tests/test-mkfifo.c: New file.
1011
1012         readlink: detect FreeBSD bug
1013         * m4/readlink.m4 (gl_FUNC_READLINK): Also detect FreeBSD bug with
1014         slash on symlink.
1015         * doc/posix-functions/readlink.texi (readlink): Document the bug.
1016         * tests/test-readlink.h (test_readlink): Enhance test.
1017
1018         symlink: detect FreeBSD bug
1019         * m4/symlink.m4 (gl_FUNC_SYMLINK): Also detect FreeBSD bug with
1020         slash on symlink.
1021         * doc/posix-functions/symlink.texi (symlink): Document the bug.
1022         * tests/test-symlink.h (test_symlink): Enhance test.
1023
1024 2009-11-10  Eric Blake  <ebb9@byu.net>
1025
1026         link: detect FreeBSD bug
1027         * m4/link.m4 (gl_FUNC_LINK): Also detect FreeBSD bug with slash on
1028         symlink.
1029         * doc/posix-functions/link.texi (link): Document the bug.
1030         * tests/test-link.h (test_link): Enhance test.
1031         * tests/test-linkat.c (main): Update caller.
1032
1033         unlink, remove: detect FreeBSD bug
1034         * m4/unlink.m4 (gl_FUNC_UNLINK): Also detect FreeBSD bug with
1035         slash on symlink.
1036         * doc/posix-functions/unlink.texi (unlink): Document the bug.
1037         * doc/posix-functions/remove.texi (remove): Likewise.
1038         * tests/test-unlink.h (test_unlink): Enhance test.
1039         * tests/test-remove.c (main): Likewise.
1040
1041 2009-11-09  Eric Blake  <ebb9@byu.net>
1042
1043         rename: detect FreeBSD bug
1044         * m4/rename.m4 (gl_FUNC_RENAME): Also detect FreeBSD bug with
1045         slash on symlink.
1046         * modules/renameat-tests (Depends-on): Add filenamecat.
1047         * tests/test-rename.h (test_rename): Allow one more errno.
1048         * tests/test-renameat.c (main): Likewise.
1049         * doc/posix-functions/rename.texi (rename): Document the bug.
1050
1051         open: detect FreeBSD bug
1052         * m4/open.m4 (gl_FUNC_OPEN): Also detect FreeBSD bug with slash on
1053         symlink.
1054         * doc/posix-functions/open.texi (open): Document the bug.
1055         * doc/posix-functions/utimes.texi (utimes): Likewise.
1056         * tests/test-open.h (test_open): Add parameters, and test symlink
1057         handling.
1058         * tests/test-open.c (main): Adjust caller.
1059         * tests/test-fcntl-safer.c (main): Likewise.
1060         * modules/open-tests (Depends-on): Add stdbool, symlink.
1061         * modules/fcntl-safer-tests (Depends-on): Likewise.
1062         * tests/test-openat.c (main): Add test-open tests.
1063
1064         stat: detect FreeBSD bug
1065         * m4/stat.m4 (gl_FUNC_STAT): Also detect FreeBSD bug with slash on
1066         symlink.
1067         * doc/posix-functions/stat.texi (stat): Document the bug.
1068         * tests/test-stat.h (test_stat_func): Add argument.
1069         * tests/test-stat.c (main): Adjust caller.
1070         * tests/test-fstatat.c (main): Likewise.
1071         * modules/stat-tests (Depends-on): Add stdbool, symlink.
1072         Reported by Jim Meyering.
1073
1074 2009-11-09  James Youngman  <jay@gnu.org>
1075
1076         strftime.c: include ignore-value.h only when FPRINTFTIME is defined
1077         * lib/strftime.c: Correct placement of #include "ignore-value.h".
1078
1079 2009-11-08  Jim Meyering  <meyering@redhat.com>
1080
1081         utimens: remove invalid futimesat call
1082         * lib/utimens.c (fdutimens): Remove invalid futimesat call.
1083         It used the file descriptor of the target file as the DIR_FD
1084         parameter and NULL as the file name.  That caused failure with
1085         errno == EFAULT on FreeBSD-8.0-rc2
1086
1087 2009-11-07  Eric Blake  <ebb9@byu.net>
1088
1089         fflush, freadseek: use fseeko, not fseek
1090         * lib/fflush.c (clear_ungetc_buffer_preserving_position)
1091         (clear_ungetc_buffer): Avoid potential problems on large files.
1092         * lib/freadseek.c (freadseek): Likewise.
1093         * modules/freadseek (Depends-on): Add fseeko.
1094         * modules/fseek (configure.ac): Set a witness.
1095         * tests/test-fflush.c (main): Use fseeko.
1096         * tests/test-fpurge.c (fseek): Disable link warning.
1097         * tests/test-freadable.c (fseek): Likewise.
1098         * tests/test-freading.c (fseek): Likewise.
1099         * tests/test-fseeko.c (fseek): Likewise.
1100         * tests/test-ftell.c (fseek): Likewise.
1101         * tests/test-ftello.c (fseek): Likewise.
1102         * tests/test-fwritable.c (fseek): Likewise.
1103         * tests/test-fwriting.c (fseek): Likewise.
1104
1105 2009-11-06  Simon Josefsson  <simon@josefsson.org>
1106
1107         * modules/memchr (Depends-on): Drop getpagesize dependency.
1108
1109 2009-11-06  Simon Josefsson  <simon@josefsson.org>
1110
1111         * build-aux/pmccabe2html: Disable execute bit.  Suggested by
1112         Reported by Ludovic Courtès.
1113         * build-aux/pmccabe2html: Improve example usage.
1114         * build-aux/pmccabe2html: Drop #! header.  Doc fix.
1115
1116 2009-11-06  Jim Meyering  <meyering@redhat.com>
1117
1118         do-release-commit-and-tag: New module.
1119         Automate the release-commit and tag process.
1120         * build-aux/do-release-commit-and-tag: New script, from coreutils.
1121         * modules/do-release-commit-and-tag: New file.
1122         * MODULES.html.sh (Support for maintaining and releasing): Add it.
1123
1124 2009-11-06  Simon Josefsson  <simon@josefsson.org>
1125
1126         * modules/select-tests (test_select_LDADD): Add $(INET_PTON_LIB)
1127         because test-select.c uses inet_pton.
1128
1129 2009-11-06  Simon Josefsson  <simon@josefsson.org>
1130
1131         * m4/getaddrinfo.m4: Add content of INET_NTOP_LIB to
1132         GETADDRINFO_LIB.  Bump serial number.
1133         * modules/getaddrinfo (Link): Only mention GETADDRINFO_LIB again.
1134         Suggested by Eric Blake <ebb9@byu.net>.
1135
1136 2009-11-05  Eric Blake  <ebb9@byu.net>
1137
1138         strtod: detect darwin bug
1139         * m4/strtod.m4 (gl_FUNC_STRTOD): Filter out darwin bug on "nan(".
1140         Reported by Leo Davis.
1141
1142         freopen-safer: new module
1143         * modules/freopen-safer: New module.
1144         * m4/stdio-safer.m4 (gl_FREOPEN_SAFER): New macro.
1145         * lib/freopen-safer.c (freopen_safer): New file.
1146         * lib/stdio-safer.h (freopen_safer): New declaration.
1147         * lib/stdio--.h (freopen): New override.
1148         * MODULES.html.sh (File stream based Input/Output): Mention it.
1149         * doc/posix-functions/freopen.texi (freopen): Mention pitfalls and
1150         freopen-safer module.
1151         * doc/posix-functions/stderr.texi (stderr): Likewise.
1152         * doc/posix-functions/stdin.texi (stdin): Likewise.
1153         * doc/posix-functions/stdout.texi (stdout): Likewise.
1154         * modules/freopen-safer-tests: New test.
1155         * tests/test-reopen-safer.c: New file.
1156
1157 2009-11-05  Jim Meyering  <meyering@redhat.com>
1158
1159         maint.mk: Prohibit inclusion of "close-stream.h" without use.
1160         * top/maint.mk (sc_prohibit_close_stream_without_use): New rule.
1161
1162 2009-11-05  Simon Josefsson  <simon@josefsson.org>
1163
1164         * modules/pmccabe2html (configure.ac): Check for pmccabe tool.
1165
1166 2009-11-05  Simon Josefsson  <simon@josefsson.org>
1167
1168         * modules/getaddrinfo (Link): Add $(INET_NTOP_LIB).
1169
1170 2009-11-05  Simon Josefsson  <simon@josefsson.org>
1171
1172         Fix link error.
1173         * m4/inet_ntop.m4 (gl_INET_NTOP): Fix test of AC_SEARCH_LIBS result.
1174         * m4/inet_pton.m4 (gl_INET_PTON): Likewise.
1175
1176 2009-11-05  Simon Josefsson  <simon@josefsson.org>
1177
1178         * tests/test-func.c: Also test value of __func__.
1179
1180 2009-11-05  Simon Josefsson  <simon@josefsson.org>
1181
1182         * tests/test-sys_socket.c: Use smaller constant value, sa_family_t
1183         may be an 8-bit type.  Reported by Bruno Haible <bruno@clisp.org>.
1184
1185 2009-11-05  Bruno Haible  <bruno@clisp.org>
1186
1187         Fix link error.
1188         * m4/inet_ntop.m4 (gl_INET_NTOP): Fix test of AC_SEARCH_LIBS result.
1189         * m4/inet_pton.m4 (gl_INET_PTON): Likewise.
1190         Reported by Brad Hards <bradh@frogmouth.net> via Simon Josefsson.
1191
1192 2009-11-05  Bruno Haible  <bruno@clisp.org>
1193
1194         Tests for module 'inet_pton'.
1195         * modules/inet_pton-tests: New file.
1196         * tests/test-inet_pton.c: New file.
1197
1198 2009-11-05  Bruno Haible  <bruno@clisp.org>
1199
1200         Tests for module 'inet_ntop'.
1201         * modules/inet_ntop-tests: New file.
1202         * tests/test-inet_ntop.c: New file.
1203
1204 2009-11-04  Eric Blake  <ebb9@byu.net>
1205
1206         stdlib-safer: wrap all mkstemp variants
1207         * modules/mkostemp (configure.ac): Set witness.
1208         * modules/mkostemps (configure.ac): Likewise.
1209         * modules/mkstemps (configure.ac): Likewise.
1210         * lib/stdlib-safer.h (mkostemp_safer, mkostemps_safer)
1211         (mkstemps_safer): Wrap more functions.
1212         * lib/stdlib--.h (mkostemp, mkostemps, mkstemps): Default the
1213         wrapping.
1214         * lib/mkstemp-safer.c (mkostemp_safer, mkostemps_safer)
1215         (mkstemps_safer): Implement the wrappers.
1216
1217         mkstemps, mkostemps: new modules
1218         * modules/mkostemps: New module.
1219         * modules/mkstemps: Likewise.
1220         * lib/mkostemps.c (mkostemps): New file.
1221         * lib/mkstemps.c (mkstemps): Likewise.
1222         * m4/mkostemps.m4 (gl_FUNC_MKOSTEMPS): Likewise.
1223         * m4/mkstemps.m4 (gl_FUNC_MKSTEMPS): Likewise.
1224         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Add witnesses.
1225         * modules/stdlib (Makefile.am): Substitute them.
1226         * lib/stdlib.in.h (mkostemps, mkstemps): Declare them.
1227         * doc/glibc-functions/mkstemps.texi (mkstemps): New file.
1228         * doc/glibc-functions/mkostemps.texi (mkostemps): Likewise.
1229         * doc/gnulib.texi (Glibc stdlib.h): Include them.
1230         * MODULES.html.sh (File system functions): Mention them.
1231
1232         tempname: resync from glibc
1233         * lib/tempname.c (__gen_tempname): Add suffixlen argument.  Use
1234         same values for __GT_FILE as glibc.  Abort even when assertions
1235         are disabled.
1236         * lib/tempname.h (GT_FILE): Use glibc __GT_FILE, if available, and
1237         match its value otherwise.  Allow idempotent inclusion.
1238         * lib/mkdtemp.c (mkdtemp): Adjust caller.
1239         * lib/mkostemp.c (mkostemp): Likewise.
1240         * lib/mkstemp.c (mkstemp): Likewise.
1241         * lib/tmpfile.c (tmpfile): Likewise.
1242         * NEWS: Document this.
1243
1244         utimens: fix use of futimens on older Linux
1245         * lib/utimens.c (fdutimens): Use updated, rather than original,
1246         timespec to avoid bug in older Linux kernel.
1247         Reported by Simon Josefsson.
1248
1249 2009-11-04  Bruno Haible  <bruno@clisp.org>
1250
1251         Make num_processors more flexible and consistent.
1252         * lib/nproc.h (enum nproc_query): New type.
1253         (num_processors): Add a 'query' argument.
1254         * lib/nproc.c: Include <stdlib.h>, <sched.h>, c-ctype.h.
1255         (num_processors): Add a 'query' argument. Test the value of the
1256         OMP_NUM_THREADS environment variable if requested. On Linux, NetBSD,
1257         mingw, count the number of CPUs available for the current process.
1258         * m4/nproc.m4 (gl_PREREQ_NPROC): Require AC_USE_SYSTEM_EXTENSIONS.
1259         Check for sched_getaffinity and sched_getaffinity_np.
1260         * modules/nproc (Depends-on): Add c-ctype, extensions.
1261         * NEWS: Mention the change.
1262
1263 2009-11-03  Bruno Haible  <bruno@clisp.org>
1264
1265         * NEWS: Document the new library dependencies of inet_ntop, inet_pton.
1266
1267 2009-11-03  Jim Meyering  <meyering@redhat.com>
1268
1269         test-getaddrinfo: avoid compilation failure on FreeBSD 7.2
1270         * tests/test-getaddrinfo.c (simple): Test for EAI_NODATA only
1271         if it is defined.
1272
1273 2009-11-02  Eric Blake  <ebb9@byu.net>
1274
1275         mktime, timegm: share common declaration
1276         * lib/mktime-internal.h: New file.
1277         * lib/mktime.c: Use it rather than open-coding a declaration.
1278         * lib/timegm.c: Likewise.
1279         * modules/mktime (Files): Ship it.
1280         * modules/timegm (Files): Likewise.
1281         Suggested by Bruno Haible.
1282
1283         test-update-copyright: update test to match script changes
1284         * tests/test-update-copyright.sh: Avoid hard-coding perl
1285         location.  Don't update *.bak created by earlier runs.
1286
1287 2009-11-02  Paul Eggert  <eggert@cs.ucla.edu>
1288             Simon Josefsson  <simon@josefsson.org>
1289             Bruno Haible  <bruno@clisp.org>
1290
1291         Fix link error on Solaris 8.
1292         * m4/inet_pton.m4 (gl_INET_PTON): Search for the function inet_pton
1293         also in libnsl. Define also INET_PTON_LIB.
1294         * modules/inet_pton (Link): New section.
1295
1296 2009-11-02  Simon Josefsson  <simon@josefsson.org>
1297             Bruno Haible  <bruno@clisp.org>
1298
1299         * m4/inet_ntop.m4 (gl_INET_NTOP): Define also INET_NTOP_LIB.
1300         * modules/inet_ntop (Link): New section.
1301         Reported by Boyan Kasarov <bkasarov@gmail.com>.
1302
1303 2009-11-02  Eric Blake  <ebb9@byu.net>
1304
1305         maint: avoid compiler warnings in m4 macros
1306         * m4/ungetc.m4 (gl_FUNC_UNGETC_WORKS): Avoid unused variable.
1307         * m4/rmdir.m4 (gl_FUNC_RMDIR): Include correct header.
1308
1309 2009-11-02  Simon Josefsson  <simon@josefsson.org>
1310
1311         * m4/pmccabe2html.m4: Remove file.
1312         * modules/pmccabe2html: Drop pmccabe2html.m4.  Don't call m4
1313         function.  Change maintainer.
1314         * build-aux/pmccabe2html: Use /bin/sh with magic instead of
1315         hard-coding path to awk.  Tiny patch from ludo@gnu.org (Ludovic
1316         Courtès).
1317
1318 2009-10-31  Eric Blake  <ebb9@byu.net>
1319
1320         fseeko: fix m4 regression
1321         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Use modern macro.  Fixes
1322         regression from 2009-10-27.
1323         Reported by Ralf Wildenhues.
1324
1325 2009-10-31  Jim Meyering  <meyering@redhat.com>
1326
1327         inttostr: aesthetics and improved (compile-time) safety
1328         Define inttype_is_signed rather than inttype_is_unsigned,
1329         since the sole use is via "#if inttype_is_signed".
1330         * lib/imaxtostr.c (inttype_is_signed): Define this, rather than
1331         inttype_is_unsigned.
1332         * lib/offtostr.c (inttype_is_signed): Likewise.
1333         * lib/uinttostr.c (inttype_is_signed): Likewise.
1334         * lib/umaxtostr.c (inttype_is_signed): Likewise.
1335         * lib/inttostr.c (inttostr): Use verify to cross-check the
1336         inttype_is_signed value and the signedness of the actual type.
1337         * modules/inttostr (Depends-on): Add verify.
1338
1339 2009-10-30  Eric Blake  <ebb9@byu.net>
1340
1341         build: avoid compiler warnings
1342         * lib/fchmodat.c (lchmod): Mark unused variables.
1343         * lib/getopt.c (_getopt_initialize): Likewise.
1344         * lib/mktime.c (__mktime_internal): Provide prototype.
1345         * lib/inttostr.c (inttostr): Avoid compiler warning even with
1346         older gcc that do not understand #pragma GCC diagnostic.
1347         * lib/uinttostr.c (inttype_is_unsigned): Define.
1348         * lib/umaxtostr.c (inttype_is_unsigned): Likewise.
1349
1350 2009-10-30  Michael Haubenwallner  <michael.haubenwallner@salomon.at>
1351
1352         stat: fix compilation on AIX
1353         * lib/sys_stat.in.h (stat): Work with fact that large files on AIX
1354         only see struct stat64.
1355
1356 2009-10-30  Eric Blake  <ebb9@byu.net>
1357
1358         exclude: make more robust
1359         * lib/exclude.c (excluded_file_name): Abort on unexpected value,
1360         rather than masking a coding bug.
1361         Suggested by Bruno Haible.
1362
1363 2009-10-30  Jim Meyering  <meyering@redhat.com>
1364
1365         perl scripts: remove #!/usr/bin/perl in favor of more portable...
1366         Rather than putting #!/usr/bin/perl on the first line,
1367         start with a variant of what's recommended by "man perlrun" that
1368         invokes the first "perl" program from your shell's search path.
1369         * build-aux/gitlog-to-changelog: Replace #!... as above.
1370         Add a "Local Variables" perl mode setting.
1371         Prompted by a patch from Ludovic Courtès.
1372         Improved by Eric Blake.
1373         * build-aux/useless-if-before-free: Likewise.
1374         * build-aux/announce-gen: Likewise.
1375         * build-aux/update-copyright: Likewise.
1376
1377 2009-10-29  Eric Blake  <ebb9@byu.net>
1378
1379         filenamecat-lgpl: adjust clients
1380         * modules/linkat (Depends-on): Use filenamecat-lgpl, not
1381         filenamecat.
1382         * modules/renameat (Depends-on): Likewise.
1383
1384         filenamecat: split into filenamecat-lgpl
1385         * modules/filenamecat-lgpl: New module.
1386         * modules/filenamecat (Files): Move library-safe files into
1387         filenamecat-lgpl.
1388         (Depends-on): Add filenamecat-lgpl.
1389         (configure.ac): Declare witness.
1390         * lib/filenamecat.h (file_name_concat): Only declare when using
1391         GPL module.
1392         * lib/filenamecat.c (longest_relative_suffix, mfile_name_concat):
1393         Move...
1394         * lib/filenamecat-lgpl.c: ...into new file.
1395         * m4/filenamecat.m4 (gl_FILE_NAME_CONCAT_LGPL): New macro.
1396         (gl_FILE_NAME_CONCAT): Use it.
1397         * MODULES.html.sh (File system functions): Mention new module.
1398
1399         argp: avoid memory leak
1400         * modules/argp (Depends-on): Use dirname-lgpl, not dirname.
1401         * lib/argp-namefrob.h (__argp_base_name): Use last_component, not
1402         base_name, since the latter malloc()s and can call exit().
1403         Leak introduced 2006-07-03.
1404
1405         dirname-lgpl: adjust clients that don't need full dirname
1406         * modules/backupfile (Depends-on): Use dirname-lgpl, not dirname.
1407         * modules/filenamecat (Depends-on): Likewise.
1408         * modules/linkat (Depends-on): Likewise.
1409         * modules/mkancesdirs (Depends-on): Likewise.
1410         * modules/mkdir (Depends-on): Likewise.
1411         * modules/openat (Depends-on): Likewise.
1412         * modules/savewd (Depends-on): Likewise.
1413         * modules/rename (Depends-on): Likewise.
1414         (License): Relax license.
1415         * modules/mkdir-tests (Depends-on): Drop progname.
1416         (Makefile.am): Delete unneeded LDADD.
1417         * modules/rename-tests (Depends-on, Makefile.am): Likewise.
1418
1419         dirname: split into dirname-lgpl
1420         * modules/dirname-lgpl: New module.
1421         * modules/dirname (Files): Move library-safe files into
1422         dirname-lgpl.
1423         (Depends-on): Add dirname-lgpl.
1424         (configure.ac): Declare witness.
1425         * modules/double-slash-root (License): Relax license.
1426         * lib/dirname.h (base_name, dir_name): Only declare when using GPL
1427         module.
1428         * lib/dirname.c (dir_len, mdir_name): Move...
1429         * lib/dirname-lgpl.c: ...into new file.
1430         * lib/basename.c (last_component, base_len): Move...
1431         * lib/basename-lgpl.c: ...into new file.
1432         * m4/dirname.m4 (gl_DIRNAME_LGPL): New macro.
1433         (gl_DIRNAME): Use it.
1434         * MODULES.html.sh (Enhancements for POSIX:2008 functions):
1435         Mention new module.
1436         * modules/dirname-tests (Depends-on): Add progname.
1437         * tests/test-dirname.c (program_name): Delete.
1438
1439         mkdir: make safe for libraries
1440         * modules/mkdir (Depends-on): Drop xalloc.
1441         * lib/mkdir.c (rpl_mkdir): Fail with ENOMEM rather than calling
1442         exit.
1443
1444         tests: avoid some compiler warnings
1445         * tests/test-getaddrinfo.c (simple): Mark static, and allow string
1446         literals.
1447         * tests/test-memchr.c (main): Avoid type mismatch.
1448         * tests/test-arpa_inet.c (main): Avoid unused parameters.
1449         * tests/test-base64.c (main): Likewise.
1450         * tests/test-getdelim.c (main): Likewise.
1451         * tests/test-gethostname.c (main): Likewise.
1452         * tests/test-getline.c (main): Likewise.
1453         * tests/test-netinet_in.c (main): Likewise.
1454         * tests/test-select.c (open_server_socket, main): Likewise.
1455         * tests/test-select-stdin.c (main): Likewise.
1456         * tests/test-sockets.c (main): Likewise.
1457         * tests/test-strsignal.c (main): Likewise.
1458         * tests/test-sys_select.c (main): Likewise.
1459         * tests/test-sys_socket.c (main): Likewise.
1460         * tests/test-u64.c (main): Likewise.
1461         * tests/test-xfprintf-posix.c (main): Likewise.
1462         * tests/test-xvasprintf.c (test_xvasprintf, main): Likewise.
1463
1464         sockets: avoid compiler warning
1465         * lib/sockets.c (gl_sockets_startup): Mark unused parameter.
1466
1467         maint: detect usage(1) and other suspicious exits
1468         * top/maint.mk (sc_prohibit_magic_number_exit): New rule.
1469
1470 2009-10-29  Jim Meyering  <meyering@redhat.com>
1471
1472         timespec: long-to-int truncation could make timespec_cmp malfunction
1473         * lib/timespec.h (timespec_cmp): Do not interpret a difference of
1474         a multiple of 2^32 nanoseconds as no difference.
1475
1476 2009-10-28  Jim Meyering  <meyering@redhat.com>
1477
1478         fprintftime: wrap macro code argument in "do {...} while(0)"
1479         * lib/strftime.c (cpy) [FPRINTFTIME]: The second argument to the
1480         cpy macro must be a statement that can be followed by a semicolon.
1481         Now that the else clause contains a comment and is hence longer
1482         than one line, I require curly braces.  That in turn requires
1483         that we wrap this code block in the standard do...while(0).
1484
1485         fprintftime: remove stray semicolon from previous change
1486         * lib/strftime.c (cpy) [FPRINTFTIME]: Remove trailing semicolon.
1487
1488         fprintftime: avoid a warning about ignored fwrite return value
1489         * lib/strftime.c [FPRINTFTIME]: Include "ignore-value.h".
1490         (cpy) [FPRINTFTIME]: Ignore fwrite failure, even though technically,
1491         that is unsafe.
1492         * modules/fprintftime (Depends-on): Add ignore-value.
1493
1494         exclude: avoid an unwarranted warning
1495         * lib/exclude.c (excluded_file_name): Initialize "rc" before switch.
1496
1497 2009-10-27  Eric Blake  <ebb9@byu.net>
1498
1499         fseek: avoid compilation failure when fflush is replaced
1500         * m4/fseek.m4 (gl_REPLACE_FSEEK): New macro.
1501         * m4/fseeko.m4 (gl_REPLACE_FSEEKO): Also replace fseek, if fseek
1502         module is in use.
1503         * lib/stdio.in.h (GNULIB_FSEEKO): Only poison fseek if fseek
1504         module is not in use; since REPLACE_FSEEK worked otherwise.
1505         (GNULIB_FTELLO): Likewise for ftell.
1506         Reported by Ian Beckwith and others.
1507
1508 2009-10-27  Bruno Haible  <bruno@clisp.org>
1509
1510         * lib/isnan.c (rpl_isnan[fdl]): Repeat the specification declaration.
1511         Reported by Jim Meyering.
1512
1513 2009-10-27  Jim Meyering  <jim@meyering.net>
1514             Bruno Haible  <bruno@clisp.org>
1515
1516         Avoid warning despite dropping the return value of fwrite.
1517         * lib/unicodeio.c: Include ignore-value.h.
1518         (fwrite_success_callback): Explicitly ignore fwrite's return value.
1519         * modules/unicodeio (Depends-on): Add ignore-value.
1520
1521 2009-10-26  Eric Blake  <ebb9@byu.net>
1522
1523         areadlinkat: fix fallback path
1524         * lib/at-func.c (AT_FUNC_NAME): Avoid signed comparison between
1525         pointer and zero.
1526
1527 2009-10-22  Pádraig Brady  <P@draigBrady.com>
1528
1529         Use a better IO block size for modern systems
1530         * lib/copy-file.c (copy_file_preserving): Used a 32KiB malloced buffer.
1531         * lib/md2.c: Likewise.
1532         * lib/md4.c: Likewise.
1533         * lib/md5.c: Likewise.
1534         * lib/sha1.c: Likewise.
1535         * lib/sha256.c: Likewise.
1536         * lib/sha512.c: Likewise.
1537
1538 2009-10-22  Eric Blake  <ebb9@byu.net>
1539
1540         tests: avoid several compiler warnings
1541         * tests/test-getcwd.c (main): Avoid buffer underflow.
1542         * tests/test-getdate.c (main): String literals are not safe with
1543         putenv, so use setenv.  Declare unused argument.
1544         * modules/getdate-tests (Depends-on): Add setenv.
1545         * tests/test-argv-iter.c (main): Declare unused argument.  Avoid
1546         problems with string literals in char *.
1547         * tests/test-hash.c (main): Avoid shadowing declaration.
1548         (insert_new): Treat string literals as char const *.
1549         * tests/test-getopt.h (test_getopt): Likewise.
1550         (getopt_loop): Alter types to minimize casting elsewhere.
1551         * tests/test-getopt_long.h (test_getopt_long, getopt_long_loop)
1552         (test_getopt_long_posix): Likewise.
1553         (do_getopt_long): Add wrapper to minimize casting.
1554         * tests/test-atexit.c (clear_temp_file): Use void.
1555         * tests/test-areadlink-with-size.c (main): Declare unused
1556         arguments.
1557         * tests/test-areadlink.c (main): Likewise.
1558         * tests/test-areadlinkat-with-size.c (main): Likewise.
1559         * tests/test-areadlinkat.c (main): Likewise.
1560         * tests/test-canonicalize-lgpl.c (main): Likewise.
1561         * tests/test-canonicalize.c (main): Likewise.
1562         * tests/test-dirent-safer.c (main): Likewise.
1563         * tests/test-dirname.c (main): Likewise.
1564         * tests/test-dup2.c (main): Likewise.
1565         * tests/test-fchdir.c (main): Likewise.
1566         * tests/test-fcntl-h.c (main): Likewise.
1567         * tests/test-fcntl-safer.c (main): Likewise.
1568         * tests/test-fdopendir.c (main): Likewise.
1569         * tests/test-fdutimensat.c (main): Likewise.
1570         * tests/test-fflush.c (main): Likewise.
1571         * tests/test-filenamecat.c (main): Likewise.
1572         * tests/test-filevercmp.c (main): Likewise.
1573         * tests/test-fopen-safer.c (main): Likewise.
1574         * tests/test-fopen.c (main): Likewise.
1575         * tests/test-fpending.c (main): Likewise.
1576         * tests/test-fpurge.c (main): Likewise.
1577         * tests/test-freading.c (main): Likewise.
1578         * tests/test-fstatat.c (main): Likewise.
1579         * tests/test-fsync.c (main): Likewise.
1580         * tests/test-futimens.c (main): Likewise.
1581         * tests/test-getndelim2.c (main): Likewise.
1582         * tests/test-gettimeofday.c (main): Likewise.
1583         * tests/test-getopt.c (main): Likewise.
1584         * tests/test-i-ring.c (main): Likewise.
1585         * tests/test-inttypes.c (main): Likewise.
1586         * tests/test-link.c (main): Likewise.
1587         * tests/test-lstat.c (main): Likewise.
1588         * tests/test-math.c (main): Likewise.
1589         * tests/test-md5.c (main): Likewise.
1590         * tests/test-memchr2.c (main): Likewise.
1591         * tests/test-memrchr.c (main): Likewise.
1592         * tests/test-mkdir.c (main): Likewise.
1593         * tests/test-mkdirat.c (main): Likewise.
1594         * tests/test-mkfifoat.c (main): Likewise.
1595         * tests/test-open.c (main): Likewise.
1596         * tests/test-openat-safer.c (main): Likewise.
1597         * tests/test-openat.c (main): Likewise.
1598         * tests/test-quotearg.c (main): Likewise.
1599         * tests/test-rawmemchr.c (main): Likewise.
1600         * tests/test-readlink.c (main): Likewise.
1601         * tests/test-remove.c (main): Likewise.
1602         * tests/test-rename.c (main): Likewise.
1603         * tests/test-renameat.c (main): Likewise.
1604         * tests/test-rmdir.c (main): Likewise.
1605         * tests/test-sha1.c (main): Likewise.
1606         * tests/test-signal.c (main): Likewise.
1607         * tests/test-sigaction.c (main): Likewise.
1608         * tests/test-stat.c (main): Likewise.
1609         * tests/test-stat-time.c (main): Likewise.
1610         * tests/test-stddef.c (main): Likewise.
1611         * tests/test-stdint.c (main): Likewise.
1612         * tests/test-stdio.c (main): Likewise.
1613         * tests/test-stdlib.c (main): Likewise.
1614         * tests/test-strchrnul.c (main): Likewise.
1615         * tests/test-strerror.c (main): Likewise.
1616         * tests/test-string.c (main): Likewise.
1617         * tests/test-strtod.c (main): Likewise.
1618         * tests/test-strverscmp.c (main): Likewise.
1619         * tests/test-symlink.c (main): Likewise.
1620         * tests/test-symlinkat.c (main): Likewise.
1621         * tests/test-sys_stat.c (main): Likewise.
1622         * tests/test-sys_time.c (main): Likewise.
1623         * tests/test-time.c (main): Likewise.
1624         * tests/test-unistd.c (main): Likewise.
1625         * tests/test-unlink.c (main): Likewise.
1626         * tests/test-unlinkat.c (main): Likewise.
1627         * tests/test-utimens.c (main): Likewise.
1628         * tests/test-utimensat.c (main): Likewise.
1629         * tests/test-version-etc.c (main): Likewise.
1630         * tests/test-wchar.c (main): Likewise.
1631         * tests/test-wctype.c (main): Likewise.
1632         * tests/test-xprintf-posix.c (main): Likewise.
1633         * tests/test-posixtm.c (main): Likewise.
1634         (STREQ): Delete unused macro.
1635         * tests/test-linkat.c (main): Declare unused arguments.  Avoid
1636         shadowed variables.
1637         * tests/test-memchr.c (main): Likewise.
1638
1639 2009-10-21  Eric Blake  <ebb9@byu.net>
1640
1641         areadlinkat: avoid failure on older glibc
1642         * lib/at-func.c (AT_FUNC_NAME): Check for explicit FUNC_FAIL,
1643         rather than mis-comparing 0 against FUNC_RESULT of char*.
1644
1645 2009-10-21  Bruno Haible  <bruno@clisp.org>
1646
1647         * modules/stpncpy (License): Relicense under LGPLv2+.
1648         Reported by David Lutterkort <lutter@redhat.com>.
1649
1650 2009-10-20  Eric Blake  <ebb9@byu.net>
1651
1652         utimensat: work around Solaris 9 bug
1653         * lib/utimens.c (fdutimens, lutimens): Force a stat if platform
1654         has trailing slash bugs.
1655         * tests/test-lutimens.h (test_lutimens): Enhance test.
1656         * tests/test-utimens.h (test_utimens): Likewise.
1657         * doc/posix-functions/utime.texi (utime): Enhance documentation.
1658         * doc/posix-functions/utimes.texi (utimes): Likewise.
1659         * doc/posix-functions/utimensat.texi (utimensat): Likewise.
1660         * doc/glibc-functions/futimesat.texi (futimesat): Likewise.
1661         * doc/glibc-functions/lutimes.texi (lutimes): Likewise.
1662         * doc/posix-functions/futimens.texi (futimens): Likewise.
1663
1664         fdutimensat: new module
1665         * modules/fdutimensat: New file.
1666         * lib/fdutimensat.c (fdutimensat): Likewise.
1667         * lib/utimens.h (fdutimensat, lutimensat): Declare new functions.
1668         * MODULES.html.sh (File system functions): Mention module.
1669         * modules/fdutimensat-tests: New test.
1670         * tests/test-fdutimensat.c: Likewise.
1671
1672         doc: regenerate INSTALL
1673         * doc/INSTALL: Reflect recent autoconf update.
1674         * doc/INSTALL.ISO: Likewise.
1675         * doc/INSTALL.UTF-8: Likewise.
1676
1677 2009-10-20  Pádraig Brady  <P@draigBrady.com>
1678
1679         acl: warn if ACL support is not detected
1680         * m4/acl.m4 (gl_FUNC_ACL): Output a warning if ACL support is not found.
1681
1682 2009-10-19  Giuseppe Scrivano  <gscrivano@gnu.org>
1683
1684         * lib/nproc.h: Add extern "C" block for C++.
1685
1686 2009-10-18  Reuben Thomas  <rrt@sc3d.org>
1687             Bruno Haible  <bruno@clisp.org>
1688
1689         * doc/posix-functions/isascii.texi: Document the 2 alternative APIs.
1690         * doc/posix-functions/isalnum.texi: Document the 4 alternative APIs.
1691         * doc/posix-functions/isalpha.texi: Likewise.
1692         * doc/posix-functions/isblank.texi: Likewise.
1693         * doc/posix-functions/iscntrl.texi: Likewise.
1694         * doc/posix-functions/isdigit.texi: Likewise.
1695         * doc/posix-functions/isgraph.texi: Likewise.
1696         * doc/posix-functions/islower.texi: Likewise.
1697         * doc/posix-functions/isprint.texi: Likewise.
1698         * doc/posix-functions/ispunct.texi: Likewise.
1699         * doc/posix-functions/isspace.texi: Likewise.
1700         * doc/posix-functions/isupper.texi: Likewise.
1701         * doc/posix-functions/isxdigit.texi: Likewise.
1702
1703 2009-10-18  Bruno Haible  <bruno@clisp.org>
1704
1705         Tests for module 'isblank'.
1706         * modules/isblank-tests: New file.
1707         * tests/test-isblank.c: New file.
1708
1709         New module 'isblank'.
1710         * lib/isblank.c: New file.
1711         * m4/isblank.m4: New file.
1712         * modules/isblank: New file.
1713         * doc/posix-functions/isblank.texi: Mention the new module.
1714
1715 2009-10-18  Bruno Haible  <bruno@clisp.org>
1716
1717         New module 'ctype'.
1718         * lib/ctype.in.h: New file.
1719         * m4/ctype.m4: New file.
1720         * modules/ctype: New file.
1721         * doc/posix-headers/ctype.texi: Mention the new module.
1722
1723 2009-10-18  Jim Meyering  <meyering@redhat.com>
1724
1725         m4: stylistic-only: hoist AC_SUBST to be adjacent to initialization
1726         Declare a variable like LIB_CLOCK_GETTIME to be AC_SUBSTituted
1727         right after its initialization, rather than farther down.
1728         Keeping these in close proximity makes it easier to ensure
1729         that each such variable is initialized.  E.g.,
1730
1731             LIB_CLOCK_GETTIME=
1732             AC_SUBST([LIB_CLOCK_GETTIME])
1733
1734         This change also increments these serial numbers.
1735         * m4/clock_time.m4 (gl_CLOCK_TIME): Hoist AC_SUBST use.
1736         * m4/euidaccess.m4 (gl_PREREQ_EUIDACCESS): Likewise.
1737         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
1738
1739 2009-10-18  Bruno Haible  <bruno@clisp.org>
1740
1741         Don't let environment variables perturb build.
1742         * m4/gethrxtime.m4 (gl_GETHRXTIME): Initialize LIB_GETHRXTIME here...
1743         (gl_PREREQ_GETHRXTIME): ... not here.
1744
1745 2009-10-18  Bruno Haible  <bruno@clisp.org>
1746
1747         Avoid symlink attack in localcharset module.
1748         * lib/localcharset.c: Include <fcntl.h>, <unistd.h>.
1749         (O_NOFOLLOW): Define fallback.
1750         (get_charset_aliases): Don't open the file if it is a symbolic link.
1751         * m4/fcntl_h.m4 (gl_FCNTL_O_FLAGS): New macro, extracted from
1752         gl_FCNTL_H.
1753         (gl_FCNTL_H): Require it.
1754         * m4/localcharset.m4 (gl_LOCALCHARSET): Likewise.
1755         * modules/localcharset (Files): Add m4/fcntl_h.m4.
1756         Reported by Fergal Glynn <fglynn@veracode.com>.
1757
1758 2009-10-18  Bruno Haible  <bruno@clisp.org>
1759
1760         Implement nproc for mingw.
1761         * lib/nproc.c: Include <windows.h>
1762         (num_processors): On native Windows platforms, try GetSystemInfo.
1763
1764 2009-10-18  Bruno Haible  <bruno@clisp.org>
1765
1766         Implement nproc for IRIX.
1767         * lib/nproc.c: Include <sys/sysmp.h>.
1768         (num_processors): On IRIX systems, try sysmp.
1769         * m4/nproc.m4 (gl_PREREQ_NPROC): Check for sys/sysmp.h and sysmp.
1770
1771 2009-10-18  Bruno Haible  <bruno@clisp.org>
1772
1773         Implement nproc for HP-UX.
1774         * lib/nproc.c: Include <sys/pstat.h>
1775         (num_processors): On HP-UX systems, try pstat_getdynamic.
1776         * m4/nproc.m4 (gl_PREREQ_NPROC): Check for sys/pstat.h and
1777         pstat_getdynamic.
1778
1779 2009-10-18  Giuseppe Scrivano  <gscrivano@gnu.org>
1780             Bruno Haible  <bruno@clisp.org>
1781
1782         Implement nproc for NetBSD, OpenBSD.
1783         * lib/nproc.c: Include <sys/types.h>, <sys/param.h>, <sys/sysctl.h>.
1784         (ARRAY_SIZE): New macro.
1785         (num_processors): On BSD systems, try sysctl of HW_NCPU.
1786         * m4/nproc.m4: New file.
1787         * modules/nproc (Files): Add m4/nproc.m4.
1788         (configure.ac): Invoke gl_NPROC. Remove AC_LIBOBJ invocation.
1789         (Makefile.am): Instead, augment lib_SOURCES.
1790
1791 2009-10-18  Bruno Haible  <bruno@clisp.org>
1792
1793         Fix recognition of sys/sysctl.h on OpenBSD 4.0.
1794         * m4/physmem.m4 (gl_PHYSMEM): Before including sys/sysctl.h, include
1795         sys/param.h.
1796
1797 2009-10-16  Eric Blake  <ebb9@byu.net>
1798
1799         utimensat: new module
1800         * modules/utimensat: New file.
1801         * lib/utimensat.c (utimensat): Likewise.
1802         * m4/utimensat.m4 (gl_FUNC_UTIMENSAT): Likewise.
1803         * lib/utimens.c (utimensat): Avoid recursion into rpl_utimensat,
1804         so we can work around Linux bugs.
1805         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Add witnesses.
1806         * modules/sys_stat (Makefile.am): Substitute them.
1807         * lib/sys_stat.in.h (utimensat): Declare it.
1808         * MODULES.html.sh (systems lacking POSIX:2008): Mention module.
1809         * doc/posix-functions/utimensat.texi (utimensat): Likewise.
1810         * modules/utimensat-tests: New test.
1811         * tests/test-utimensat.c: Likewise.
1812
1813         utimens: let lutimens work on non-symlinks
1814         * lib/utimens.c (lutimens): Fall back to utimens rather than
1815         failing with ENOSYS, when file is not a symlink.
1816         (utimens): Reduce redirection.
1817         * tests/test-lutimens.h (test_lutimens): Update test to cover
1818         non-symlinks.
1819         * tests/test-utimens.h (test_utimens): Update test to cover
1820         symlinks.
1821         * tests/test-utimens.c (main): Update caller.
1822
1823         utimens: cache whether utimensat syscall works
1824         * lib/utimens.c (utimensat_works_really): New cache variable.
1825         (fdutimens, lutimens): Use it to avoid failing syscall.
1826
1827         test-stat-time, test-utimens: improve portability
1828         * tests/test-stat-time.c (nap): Lengthen delay to 20ms, for
1829         ext4 on alpha, and for cygwin.
1830         * tests/test-utimens-common.h: New file.
1831         (nap): Factor delays into single function.
1832         * tests/test-lutimens.h (test_lutimens): Use new header.
1833         * tests/test-futimens.h (test_futimens): Likewise.
1834         * tests/test-utimens.h (test_utimens): Likewise.  Also, force NFS
1835         timestamps to occur from same machine, as was done previously for
1836         test_utimens.
1837         * modules/utimens-tests (Files): Ship new file.
1838         * modules/futimens-tests (Files): Likewise.
1839         Reported in part by Jim Meyering.
1840
1841         sys_stat: sort replacement declarations
1842         * lib/sys_stat.in.h: Sort declarations.
1843         * lib/futimens.c (futimens): Fix typo.
1844
1845 2009-10-15  Jim Meyering  <meyering@redhat.com>
1846
1847         don't let environment settings perturb build
1848         Setting the envvars, LIB_CLOCK_GETTIME, LIB_EACCESS or LIB_NANOSLEEP
1849         could cause a configure-time and/or build-time malfunction.
1850         Typically, a configure-time function-in-library test is performed
1851         via code like this:
1852
1853           LIB_VAR=
1854           AC_SUBST([LIB_VAR])
1855           prefix_saved_LIBS=$LIBS
1856             AC_SEARCH_LIBS([FUNC], [LIB_NAME],
1857                        [test "$ac_cv_search_FUNC" = "none required" ||
1858                         LIB_VAR=$ac_cv_search_FUNC])
1859           LIBS=$prefix_saved_LIBS
1860
1861         However, in each of the files affected by this change, the LIB_VAR=
1862         initialization was omitted.  Thus, when set in the environment, its
1863         value would propagate into generated Makefiles when FUNC is not found
1864         in LIB_NAME.
1865         * m4/clock_time.m4 (gl_CLOCK_TIME): Initialize AC_SUBST'd var.
1866         * m4/euidaccess.m4 (gl_PREREQ_EUIDACCESS): Likewise.
1867         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
1868
1869 2009-10-14  Eric Blake  <ebb9@byu.net>
1870
1871         fchdir: avoid infinite recursion in mingw
1872         * lib/fchdir.c (rpl_fstat): Call system fstat, rather than
1873         recursing.
1874
1875         test-stat-time: port to mingw
1876         * tests/test-stat-time.c (force_unlink): Return a value.
1877         (test_ctime) [W32]: Fix compilation error.
1878         (nap): Don't call usleep with too large an argument.  Use
1879         force_unlink.
1880         * doc/pastposix-functions/usleep.texi (usleep): Document the
1881         portability issue.
1882
1883 2009-10-13  Jim Meyering  <meyering@redhat.com>
1884
1885         use AC_CHECK_FUNCS_ONCE, not AC_CHECK_FUNCS in modules/*
1886         * modules/pipe-filter-gi: Use AC_CHECK_FUNCS_ONCE, not AC_CHECK_FUNCS.
1887         * modules/pipe-filter-ii: Likewise.
1888         * modules/sys_socket-tests: Likewise.
1889         * modules/tsearch-tests: Likewise.
1890         * Makefile (sc_prefer_ac_check_funcs_once): New rule.
1891         (check): Depend on it.
1892
1893 2009-10-12  Eric Blake  <ebb9@byu.net>
1894
1895         utimens-tests: port to NFS file systems
1896         * tests/test-utimens.h (test_utimens): Refactor utimecmp
1897         comparisons to avoid spurious failures from timestamp drift
1898         between NFS machines.
1899
1900 2009-10-12  Eric Blake  <ebb9@byu.net>
1901
1902         stat-time-tests: minor cleanups
1903         * modules/stat-time-tests (configure.ac): Use AC_CHECK_FUNCS_ONCE.
1904         * tests/test-stat-time.c (nap): Separate assignment from call.
1905         Suggested by Paolo Bonzini and Bruno Haible.
1906
1907         sys_stat: guarantee struct timespec
1908         * lib/sys_stat.in.h (includes): Always include <time.h>
1909         * modules/sys_stat (Depends-on): Add time.
1910         * tests/test-sys_stat.c: Guarantee struct timespec, as well as
1911         mode_t permission values.
1912         * doc/posix-headers/sys_stat.texi (sys/stat.h): Document how to
1913         get at subsecond timestamps.
1914
1915 2009-10-10  Eric Blake  <ebb9@byu.net>
1916
1917         futimens: new module
1918         * modules/futimens: New file.
1919         * lib/futimens.c (futimens): Likewise.
1920         * m4/futimens.m4 (gl_FUNC_FUTIMENS): Likewise.
1921         * lib/utimens.c (futimens): Avoid recursion into rpl_futimens, so
1922         we can work around Linux bugs.
1923         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Add witnesses.
1924         * modules/sys_stat (Makefile.am): Substitute them.
1925         * lib/sys_stat.in.h (futimens): Declare it.
1926         * MODULES.html.sh (systems lacking POSIX:2008): Mention module.
1927         * doc/posix-functions/futimens.texi (futimens): Likewise.
1928         * modules/futimens-tests: New test.
1929         * tests/test-futimens.c: Likewise.
1930
1931         utimens: introduce fdutimens
1932         * lib/utimens.h (fdutimens): New prototype.
1933         * lib/utimens.c (gl_futimens): Move guts...
1934         (fdutimens): ...to new interface.
1935         * tests/test-utimens.c (do_fdutimens): Use it.
1936
1937         utimens: add UTIME_NOW and UTIME_OMIT support
1938         * lib/utimens.c (validate_timespec, update_timespec): New helper
1939         functions.
1940         (gl_futimens, lutimens): Use them.
1941         * modules/utimens (Depends-on): Add gettime, lstat, stat-time,
1942         stdbool, sys_stat.
1943         (Link): Mention resulting library dependency.
1944         * modules/utimecmp (Link): Likewise.
1945         * modules/utimens-tests (Depends-on): Drop stat-time, stdbool.
1946         (Makefile.am): Pick up library dependency.
1947         * lib/sys_stat.in.h (UTIME_NOW, UTIME_OMIT): Guarantee a
1948         definition.
1949         * tests/test-sys_stat.c: Test the definitions.
1950         * doc/posix-headers/sys_stat.texi (sys/stat.h): Document this.
1951         * NEWS: Document library dependency.
1952
1953         utimecmp: support symlink timestamps
1954         * lib/utimecmp.c (utimecmp): Use new interface.  Skip effort of
1955         hashing when possible.  Use pathconf when available.
1956         (SYSCALL_RESOLUTION): Recognize tighter resolution.
1957         * modules/utimecmp (Depends-on): Add lstat.
1958
1959         utimens: add lutimens interface
1960         * lib/utimens.c (lutimens): New function.
1961         * m4/utimens.m4 (gl_UTIMENS): Check for lutimes.
1962         * lib/utimens.h (lutimens): Declare new interface.
1963         * tests/test-utimens.c (main): Enhance test.
1964         * tests/test-lutimens.h (test_lutimens): New file.
1965         * modules/utimens-tests (Files): Distribute it.
1966         (Depends-on): Add symlink.
1967         (configure.ac): Check for usleep.
1968
1969         utimens: validate futimens usage
1970         * lib/utimens.c (gl_futimens): Require valid fd up front, using
1971         fewer syscalls on failure later on.  Avoid compiler warning on
1972         mingw.
1973         * modules/utimens (Depends-on): Add dup2.
1974
1975         utimens: add test
1976         * modules/utimens-tests: New test.
1977         * tests/test-utimens.h: New file.
1978         * tests/test-futimens.h: Likewise.
1979         * tests/test-utimens.c: Likewise.
1980
1981         doc: mention timestamp portability issues
1982         * doc/glibc-functions/lutimes.texi (lutimes): Refer to utimensat
1983         instead.
1984         * doc/posix-functions/utime.texi (utime): Likewise.
1985         * doc/posix-functions/utimes.texi (utimes): Likewise.
1986         * doc/glibc-functions/futimes.texi (futimes): Refer to futimens
1987         instead.
1988         * doc/posix-functions/futimens.texi (futimens): Mention utimens
1989         module.
1990         * doc/posix-functions/utimensat.texi (utimensat): Likewise.
1991         Mention weakness with symlink timestamps.
1992         * doc/glibc-functions/futimesat.texi (futimesat): New file; refer
1993         to utimensat/futimens instead.
1994         * doc/gnulib.texi (Glibc sys/time.h): Include new file.
1995
1996         test-dup2: enhance test
1997         * tests/test-dup2.c (main): Also check AT_FDCWD.
1998
1999         test-stat-time: avoid more spurious failures
2000         * tests/test-stat-time.c (nap): Wait for 15ms rather than 2ms, for
2001         xfs; and avoid race if the two timestamps cross quantization edge.
2002
2003         relocatable: prefer 'file system' over 'filesystem'
2004         * m4/relocatable-lib.m4 (gl_RELOCATABLE_NOP): Use AS_HELP_STRING.
2005         (gl_RELOCATABLE_LIBRARY_BODY): Fix spelling.
2006         * doc/relocatable-maint.texi (Supporting Relocation): Likewise.
2007         * doc/relocatable.texi (Enabling Relocatability): Likewise.
2008         * lib/relocatable.c (compute_curr_prefix): Likewise.
2009
2010 2009-10-10  Jim Meyering  <meyering@redhat.com>
2011
2012         stat-time-tests: check for the usleep function
2013         * modules/stat-time-tests (configure.ac): Now that we test HAVE_USLEEP.
2014
2015 2009-10-10  Bruno Haible  <bruno@clisp.org>
2016
2017         * modules/xnanosleep: Put the Link section after the Include section.
2018
2019 2009-10-09  Eric Blake  <ebb9@byu.net>
2020
2021         dup2: work around FreeBSD 6.1 bug
2022         * m4/dup2.m4 (gl_FUNC_DUP2): Detect bug.
2023         * doc/posix-functions/dup2.texi (dup2): Document it.
2024         Reported by Nelson H. F. Beebe and Jim Meyering.
2025
2026         test-stat-time: port to buggy NFS clients
2027         * tests/test-stat-time.c (main) [W32]: Reduce ifdefs.
2028         (test_ctime): Also skip test if mtime and ctime are skewed.
2029
2030         maint: prefer 'file system' over 'filesystem'
2031         * doc/posix-functions/fstatat.texi (fstatat): Likewise.
2032         * doc/posix-functions/lstat.texi (lstat): Likewise.
2033         * lib/file-has-acl.c (file_has_acl): Likewise.
2034         * lib/fwriteerror.c [TEST]: Likewise.
2035         * tests/test-areadlink.h (test_areadlink): Likewise.
2036         * tests/test-areadlinkat-with-size.c (main): Likewise.
2037         * tests/test-areadlinkat.c (main): Likewise.
2038         * tests/test-canonicalize-lgpl.c (main): Likewise.
2039         * tests/test-canonicalize.c (main): Likewise.
2040         * tests/test-fstatat.c (main): Likewise.
2041         * tests/test-linkat.c (main): Likewise.
2042         * tests/test-lstat.h (test_lstat_func): Likewise.
2043         * tests/test-mkdir.h (test_mkdir): Likewise.
2044         * tests/test-readlink.h (test_readlink): Likewise.
2045         * tests/test-remove.c (main): Likewise.
2046         * tests/test-rename.h (test_rename): Likewise.
2047         * tests/test-renameat.c (main): Likewise.
2048         * tests/test-rmdir.h (test_rmdir_func): Likewise.
2049         * tests/test-symlink.h (test_symlink): Likewise.
2050         * tests/test-symlinkat.c (main): Likewise.
2051         * tests/test-unlink.h (test_unlink_func): Likewise.
2052         * tests/test-unlinkat.c (main): Likewise.
2053
2054         maint: make realtime library usage explicit
2055         * modules/gethrxtime (Link): Mention LIB_GETHRXTIME.
2056         * modules/gettime (Link): Mention LIB_CLOCK_GETTIME.
2057         * modules/settime (Link): Likewise.
2058         * modules/xnanosleep (Link): Mention LIB_NANOSLEEP.
2059
2060         test-stat-time: speed up execution
2061         * tests/test-stat-time.c (test_ctime) [!W32]: Avoid compiler
2062         warning on mingw.
2063         (nap): New helper function.
2064         (prepare_test): Use it to reduce sleep time.
2065         (test_mtime, test_ctime, test_birthtime): Allow for subsecond
2066         execution.
2067         * modules/stat-time-tests (configure.ac): Check for usleep.
2068
2069 2009-10-09  Jim Meyering  <meyering@redhat.com>
2070
2071         selinux-h: always use getfilecon wrappers
2072         * lib/getfilecon.c: New file.
2073         * lib/se-selinux.in.h: Use a better inclusion guard symbol name.
2074         [HAVE_SELINUX_SELINUX_H]: Include-next <selinux/selinux.h>.
2075         [!HAVE_SELINUX_SELINUX_H]: Use better parameter names.
2076         (fgetfilecon): Provide a stub.
2077         * m4/selinux-selinux-h.m4 (gl_HEADERS_SELINUX_SELINUX_H): Don't
2078         AC_SUBST SELINUX_SELINUX_H, since now we're generating that
2079         file unconditionally.
2080         When <selinux/selinux.h> is found, arrange to use wrappers.
2081         * modules/selinux-h (Files): Add getfilecon.c.
2082         (Makefile.am): Substitute include-next-related bits
2083         into the now-always-generated selinux/selinux.h file.
2084         * doc/glibc-functions/lgetfilecon.texi: New file.
2085         * doc/glibc-functions/fgetfilecon.texi: New file.
2086         * doc/glibc-functions/getfilecon.texi: New file.
2087         * doc/glibc-functions/getfilecon-desc.texi: New file.
2088         * doc/gnulib.texi (Glibc selinux/selinux.h): New section, by
2089         which to pull in the new files.
2090         * MODULES.html.sh (Misc): Add selinux-h.
2091
2092 2009-10-08  Jim Meyering  <meyering@redhat.com>
2093
2094         unistd: fix comment typo
2095         * lib/unistd.in.h (euidaccess): Fix a comment typo.
2096
2097 2009-10-08  Eric Blake  <ebb9@byu.net>
2098
2099         areadlink: use SIZE_MAX consistently
2100         * modules/areadlink (Depends-on): Add stdint.
2101         * modules/areadlink-with-size (Depends-on): Likewise.
2102         * lib/areadlink-with-size.c (includes): Drop stdio, since stdlib
2103         gives NULL; drop sys/types, since unistd gives size_t; and add
2104         stdint for SIZE_MAX.
2105         (SIZE_MAX): Rely on headers.
2106         * lib/areadlinkat-with-size.c (includes): Drop stdio, sys/types,
2107         and add stdint.
2108         * lib/areadlink.c (includes): Drop sys/types, and add stdint.
2109         (SIZE_MAX): Likewise.
2110         (INITIAL_BUF_SIZE): Turn into enum.
2111         * lib/areadlinkat.c (INITIAL_BUF_SIZE): Likewise.
2112
2113 2009-10-08  Jim Meyering  <meyering@redhat.com>
2114
2115         areadlinkat: avoid compilation failure
2116         * lib/areadlinkat.c: Include <stdint.h> for use of SIZE_MAX.
2117         Fix typo in comment.
2118
2119 2009-10-07  Eric Blake  <ebb9@byu.net>
2120
2121         areadlinkat-with-size: new module
2122         * modules/areadlinkat-with-size: New module.
2123         * lib/areadlinkat-with-size.c (areadlinkat_with_size): New file.
2124         * lib/areadlink.h (areadlinkat): Declare it.
2125         * MODULES.html.sh (File system functions): Mention it.
2126         * modules/areadlinkat-with-size-tests: New test.
2127         * tests/test-areadlinkat-with-size.c: New file.
2128
2129         xreadlinkat: new module
2130         * modules/xreadlinkat: New module.
2131         * lib/xreadlinkat.c (xreadlinkat): New file.
2132         * lib/xreadlink.h (xreadlinkat): Declare it.
2133         * MODULES.html.sh (File system functions): Mention it.
2134
2135         areadlinkat: new module
2136         * lib/at-func.c (FUNC_FAIL): New define.
2137         (AT_FUNC_NAME, VALIDATE_FLAG): Use it rather than raw -1.
2138         * modules/areadlinkat: New module.
2139         * lib/linkat.c (areadlinkat): Move...
2140         * lib/areadlinkat.c (areadlinkat): ...to new file.
2141         * lib/areadlink.h (areadlinkat): Declare it.
2142         * modules/linkat (Depends-on): Add areadlinkat.
2143         * MODULES.html.sh (File system functions): Mention it.
2144         * modules/areadlinkat-tests: New test.
2145         * tests/test-areadlinkat.c: New file.
2146
2147         areadlink, areadlink-with-size: add tests
2148         * modules/areadlink-tests: New test.
2149         * modules/areadlink-with-size-tests: Likewise.
2150         * tests/test-areadlink.h: New file.
2151         * tests/test-areadlink.c: Likewise.
2152         * tests/test-areadlink-with-size.c: Likewise.
2153
2154         maint: minor cleanups
2155         * lib/fts.c (ATTRIBUTE_UNUSED): Delete; use gnulib-guaranteed
2156         _UNUSED_PARAMETER_ instead.
2157         * lib/getdate.y (ATTRIBUTE_UNUSED): Likewise.
2158         * lib/utimens.c (ATTRIBUTE_UNUSED): Likewise.
2159         * modules/linkat-tests (Files): Distribute test-link.h.
2160
2161         openat, utimens: whitespace cleanup
2162         * lib/openat.c: Prefer space throughout, rather than mix of 8
2163         spaces vs. tabs.
2164         * lib/at-func.c: Likewise.
2165         * lib/utimens.c: Likewise.
2166
2167         openat: avoid using wrong fd
2168         * lib/openat.c (openat_permissive): Reject user's fd if saving the
2169         working directory chooses same fd.
2170         * lib/at-func.c (AT_FUNC_NAME): Likewise.
2171
2172         mkdir, mkdirat: fix cygwin 1.5.x bug
2173         * lib/mkdir.c (rpl_mkdir) [FUNC_MKDIR_DOT_BUG]: Work around bug.
2174         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Move...
2175         * m4/mkdir.m4 (gl_FUNC_MKDIR): ...here, and add check for cygwin
2176         bug.
2177         (gl_PREREQ_MKDIR): Delete unused macro.
2178         * modules/mkdir (Files): Track file rename.
2179         (configure.ac): Update macro name.
2180         * modules/openat (Depends-on): Add mkdir.
2181         * doc/posix-functions/mkdir.texi (mkdir): Document the bug.
2182
2183         mkdir, mkdirat: add tests
2184         * modules/mkdir-tests: New test.
2185         * tests/test-mkdir.h: New file.
2186         * tests/test-mkdir.c: Likewise.
2187         * tests/test-mkdirat.c: Likewise.
2188         * modules/openat-tests (Files): Add new files.
2189         (Makefile.am): Run new test.
2190
2191 2009-10-06  Eric Blake  <ebb9@byu.net>
2192
2193         doc: tweak *at function documentation
2194         * doc/posix-functions/faccessat.texi (faccessat): Mention
2195         known issue with replacement.
2196         * doc/posix-functions/fchdir.texi (fchdir): Likewise.
2197         * doc/posix-functions/linkat.texi (linkat): Likewise.
2198         * doc/posix-functions/mkfifoat.texi (mkfifoat): Likewise.
2199         * doc/posix-functions/mknodat.texi (mknodat): Likewise.
2200         * doc/posix-functions/readlinkat.texi (readlinkat): Likewise.
2201         * doc/posix-functions/renameat.texi (renameat): Likewise.
2202         * doc/posix-functions/symlinkat.texi (symlinkat): Likewise.
2203
2204         openat: fix GNU/Hurd bug in unlinkat
2205         * m4/openat.m4 (gl_FUNC_OPENAT): Replace unlinkat if unlink is
2206         broken.
2207         * doc/posix-functions/unlink.texi (unlink): Document this.
2208         * doc/posix-functions/unlinkat.texi (unlinkat): Likewise.
2209
2210         fdopendir: fix GNU/Hurd bug
2211         * m4/fdopendir.m4 (gl_FUNC_FDOPENDIR): Check for Hurd bug in
2212         allowing non-directory fds.
2213         * lib/fdopendir.c (rpl_fdopendir): Work around it.
2214         * m4/dirent_h.m4 (gl_DIRENT_H_DEFAULTS): New witness.
2215         * modules/dirent (Makefile.am): Substitute it.
2216         * lib/dirent.in.h (fdopendir): Declare replacement.
2217         * doc/posix-functions/fdopendir.texi (fdopendir): Document this.
2218         * tests/test-fdopendir.c (main): Test something other than
2219         /dev/null, since on Hurd that behaves like a directory.
2220
2221         test-symlink: port to GNU/Hurd
2222         * tests/test-symlink.h (test_symlink): Relax expected errno.
2223
2224         doc: tweak more cygwin information
2225         * doc/glibc-headers/getopt.texi (getopt.h): Cygwin 1.7 getopt is
2226         now compatible with glibc.
2227         * doc/posix-functions/getopt.texi (getopt): Likewise.
2228
2229         getopt-gnu: add another test
2230         * tests/test-getopt_long.h (test_getopt_long_posix): New test, to
2231         guarantee behavior relied on by m4.
2232         * tests/test-getopt.c (main): Use it.
2233         * modules/getopt-posix-tests (Depends-on): Add setenv.
2234         See http://lists.gnu.org/archive/html/bug-m4/2006-09/msg00028.html.
2235
2236         getopt: fix compilation on darwin
2237         * lib/getopt.in.h (includes): Leave breadcrumbs during system
2238         include.
2239         * lib/unistd.in.h (getopt): Use them to avoid recursive include.
2240         Reported by Ludovic Courtès.
2241
2242 2009-10-06  Bruno Haible  <bruno@clisp.org>
2243
2244         * modules/size_max (Description): Discourage its use.
2245         Reported by Simon Josefsson.
2246
2247 2009-10-06  Jim Meyering  <meyering@redhat.com>
2248
2249         linkat: avoid compilation failure
2250         * lib/linkat.c: Include <stdint.h> for use of SIZE_MAX.
2251
2252 2009-10-05  Eric Blake  <ebb9@byu.net>
2253
2254         linkat: support Linux 2.6.17
2255         * m4/linkat.m4 (gl_FUNC_LINKAT): Default to always replacing
2256         linkat on Linux, but allow cache variable override.
2257         * lib/linkat.c (rpl_linkat): Define override.
2258         * modules/linkat (Depends-on): Add symlinkat.
2259         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add new default.
2260         * modules/unistd (Makefile.am): Substitute it.
2261         * lib/unistd.in.h (linkat): Declare replacement.
2262         Reported by Pádraig Brady.
2263
2264         quotearg: port test to systems with C.UTF-8 locale
2265         * tests/test-quotearg.c (struct result_strings): Add another
2266         member, differentiating between C.ASCII and C.UTF-8 handling.
2267         (compare_strings): Add parameter.
2268         (main): Adjust all callers.
2269
2270         getopt: avoid clash with FreeBSD _getopt_internal
2271         * lib/getopt.in.h (_getopt_internal): Override the name.
2272         * lib/getopt_int.h (includes): Pick up any overrides.
2273         Reported by Reuben Thomas.
2274
2275         hash: allow C89 compilation
2276         * lib/hash.c (check_tuning): Move declaration before statement.
2277         Reported by Reuben Thomas.
2278
2279 2009-10-05  Karl Berry  <karl@gnu.org>
2280
2281         * doc/gnulib.texi: @include execvpe.texi, missing for several days.
2282
2283 2009-10-04  Paolo Bonzini  <bonzini@gnu.org>
2284             Bruno Haible  <bruno@clisp.org>
2285
2286         * lib/uname.c (uname): Use a table-driven algorithm to compute
2287         Windows NT versions.
2288
2289 2009-10-04  Bruno Haible  <bruno@clisp.org>
2290
2291         * lib/progname.c (set_program_name): Also remove the "lt-" prefix from
2292         program_invocation_short_name.
2293         * modules/progname (configure.ac): Test for presence of
2294         program_invocation_short_name.
2295         Reported by Sergey Poznyakoff <gray@gnu.org.ua>.
2296
2297 2009-10-04  Bruno Haible  <bruno@clisp.org>
2298
2299         * lib/progname.c (set_program_name): Fix comment.
2300         Reported by Jim Meyering.
2301
2302 2009-10-03  Paolo Bonzini  <bonzini@gnu.org>
2303             Bruno Haible  <bruno@clisp.org>
2304
2305         * lib/uname.c: Include <string.h>.
2306         (uname): Do only one call to GetVersionEx in the common case.
2307
2308 2009-10-03  Paolo Bonzini  <bonzini@gnu.org>
2309             Bruno Haible  <bruno@clisp.org>
2310
2311         * lib/uname.c (VER_PLATFORM_WIN32_CE, PROCESSOR_ARCHITECTURE_AMD64,
2312         PROCESSOR_ARCHITECTURE_IA32_ON_WIN64): Define fallbacks.
2313         (uname): Add support for Windows CE and various non-x86 CPU types.
2314
2315 2009-10-03  Bruno Haible  <bruno@clisp.org>
2316
2317         * gnulib-tool (func_create_testdir): Conditionally emit AM_PROG_CC_C_O
2318         invocation to tests/configure.ac.
2319         Reported by Ian Beckwith <ianb@erislabs.net>.
2320
2321 2009-10-02  Eric Blake  <ebb9@byu.net>
2322
2323         fchdir: avoid compiler warning
2324         * lib/fchdir.c (canonicalize_file_name)
2325         [!HAVE_CANONICALIZE_FILE_NAME]: Avoid compiler warning on mingw.
2326
2327         test-open: support mingw errno values
2328         * tests/test-open.h (test_open): Relax test.
2329         * tests/test-fopen.h (test_fopen): Likewise.
2330         * tests/test-openat-safer.c (main): Likewise.
2331
2332         open: fix opening directory on mingw
2333         * lib/open.c (open) [REPLACE_OPEN_DIRECTORY]: Correct typo.
2334
2335         test-open: on GNU/Hurd, /dev/null is a directory
2336         * tests/test-fopen.h (main): Rename...
2337         (test_fopen): ...to this.  Use a guaranteed non-directory when
2338         confirming open behavior on trailing slash.
2339         * tests/test-openat-safer.c (main): Likewise.
2340         * tests/test-open.h (main): Likewise....
2341         (test_open): ...to this.
2342         * tests/test-fopen.c (main): Adjust caller.
2343         * tests/test-fopen-safer.c (main): Likewise.
2344         * tests/test-open.c (main): Likewise.
2345         * tests/test-fcntl-safer.c (main): Likewise.
2346         Reported by Samuel Thibault.
2347
2348         rename, fchdir: don't ignore chdir failure
2349         * lib/fchdir.c (get_name): Abort on unexpected chdir failure.
2350         * lib/rename.c (rpl_rename) [W32]: Likewise.
2351         (rpl_rename) [RENAME_DEST_EXISTS_BUG]: Avoid one case of losing
2352         an empty destination directory if source cannot be renamed,
2353         although there is still possibility for failure.
2354         * doc/posix-functions/rename.texi (rename): Document the race.
2355         Reported by Jim Meyering.
2356
2357         maint: cleanup whitespace in recent commits
2358         * lib/rename.c (rpl_rename): Remove tabs.
2359         * tests/test-link.h (test_link): Likewise.
2360         * lib/fchdir.c (get_name): Likewise.
2361         Reported by Jim Meyering.
2362
2363 2009-10-02  Ben Pfaff  <blp@gnu.org>
2364
2365         relocatable-prog-wrapper: Add missing dependency on
2366         double-slash-root.
2367         * modules/relocatable-prog-wrapper: Add dependency.
2368         Reported by Ian Beckwith <ianb@erislabs.net>.
2369
2370 2009-10-02  Eric Blake  <ebb9@byu.net>
2371
2372         renameat: fix Solaris bugs
2373         * m4/renameat.m4 (gl_FUNC_RENAMEAT): Replace renameat if rename
2374         needed fixing.
2375         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): New witness.
2376         * modules/stdio (Makefile.am): Substitute it.
2377         * lib/stdio.in.h (renameat): Declare replacement.
2378         * lib/renameat.c (rpl_renameat): Implement fix.
2379
2380         renameat: new module
2381         * modules/renameat: New file.
2382         * lib/renameat.c (renameat): Likewise.
2383         * m4/renameat.m4 (gl_FUNC_RENAMEAT): Likewise.
2384         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Add witnesses.
2385         * modules/stdio (Makefile.am): Substitute them.
2386         * lib/stdio.in.h (renameat): Declare it.
2387         * MODULES.html.sh (systems lacking POSIX:2008): Mention module.
2388         * doc/posix-functions/renameat.texi (renameat): Likewise.
2389         * modules/renameat-tests: New test.
2390         * tests/test-renameat.c: Likewise.
2391
2392         rename: fix mingw bugs
2393         * lib/rename.c (rpl_rename) [W32]: Fix trailing slash and
2394         directory overwrite bugs.
2395
2396         rename: fix another cygwin 1.5 bug
2397         * m4/rename.m4 (gl_FUNC_RENAME): Split cygwin bugs into two
2398         checks.
2399         * lib/rename.c (rpl_rename): Don't penalize NetBSD with
2400         unnecessary cygwin workarounds.  Also work around bug with moving
2401         full directory onto an empty one.
2402         * modules/rename (Depends-on): Add canonicalize-lgpl, rmdir.
2403
2404         rename-dest-slash: merge into rename module
2405         * modules/rename-dest-slash (Status): Mark obsolete.
2406         (Depends-on): Add rename.
2407         (Files): Let rename do it all.
2408         * m4/rename.m4 (gl_FUNC_RENAME): Also test for NetBSD bugs,
2409         subsuming the test from gl_FUNC_RENAME_TRAILING_DEST_SLASH...
2410         * m4/rename-dest-slash.m4: ...so this file can be deleted.
2411         * lib/rename-dest-slash.c (rpl_rename_dest_slash): Delete.
2412         * lib/rename.c (rpl_rename): Update comments.
2413
2414         rename: fix cygwin 1.5.x bugs
2415         * m4/rename.m4 (gl_FUNC_RENAME): Detect cygwin bugs.
2416         * lib/rename.c (rpl_rename): Work around them.
2417         * modules/rename (Depends-on): Add same-inode.
2418
2419         rename: fix Solaris 10 bug
2420         * m4/rename.m4 (gl_FUNC_RENAME): Detect Solaris bug.
2421         * lib/rename.c (rpl_rename): Don't cripple POSIX behavior if this
2422         was the only bug.
2423
2424         rename: fix Solaris 9 bug
2425         * lib/rename.c (rpl_rename): Rewrite to recognize trailing slash
2426         on non-directory.  Avoid calling exit.
2427         * modules/rename (Depends-on): Drop xalloc; add lstat, stdbool,
2428         strdup.
2429         * modules/rename-tests (Depends-on): Drop lstat.
2430         * m4/rename.m4 (gl_FUNC_RENAME): Detect Solaris bug.
2431         (gl_PREREQ_RENAME): Delete unused macro.
2432
2433         rename-dest-slash: fix NetBSD bug
2434         * lib/rename-dest-slash.c (rpl_rename_dest_slash): Detect hard
2435         links.
2436         * modules/rename-dest-slash (Depends-on): Add same-inode.
2437
2438         rename-tests: new test, exposes several platform bugs
2439         * modules/rename-tests: New file.
2440         * tests/test-rename.h: Likewise.
2441         * tests/test-rename.c: Likewise.
2442         * doc/posix-functions/rename.texi (rename): Improve documentation,
2443         including bugs that will eventually be fixed in gnulib.
2444
2445 2009-10-02  Paolo Bonzini  <bonzini@gnu.org>
2446
2447         * lib/uname.c: Include <stdlib.h>
2448         (uname): Assume version info is available.
2449
2450 2009-10-02  Jim Meyering  <meyering@redhat.com>
2451
2452         gnu-web-doc-update: correct --help output
2453         * build-aux/gnu-web-doc-update: Make --help output relevant.
2454
2455         gnu-web-doc-update: add standard options
2456         * build-aux/gnu-web-doc-update: Add --help, --version, etc.
2457
2458         gnu-web-doc-update: New module.
2459         Use this script to automatically update the on-line web documentation
2460         for your GNU project at http://www.gnu.org/software/$pkg/manual/
2461         * modules/gnu-web-doc-update: New file, from coreutils.
2462         * build-aux/gnu-web-doc-update: New script.
2463
2464 2009-10-01  Paolo Bonzini  <bonzini@gnu.org>
2465
2466         link: LoadLibrary is not needed.
2467         * lib/link.c: Use GetModuleHandle.
2468
2469 2009-10-01  Eric Blake  <ebb9@byu.net>
2470
2471         getopt: bump serial number
2472         * m4/getopt.m4: Increment serial number, to account for 2009-09-24
2473         change.
2474
2475         tests: tighten link, rmdir, and remove tests
2476         * tests/test-link.h (includes): No need to use <config.h> here.
2477         Clean up if directory hard link was created, otherwise test for
2478         trailing '.'.
2479         * tests/test-linkat.c (main): Simplify.
2480         * tests/test-remove.c (main): Enhance test for trailing '.'.
2481         * tests/test-rmdir.h (test_rmdir_func): Likewise.
2482
2483 2009-10-01  Jim Meyering  <meyering@redhat.com>
2484
2485         maint.mk: requiring "make major" was annoying, for a "minor" release.
2486         What is intended is "stable", to contrast with alpha and beta,
2487         so require "make stable", not "make major".
2488         * build-aux/announce-gen (%valid_release_types): s/major/stable/.
2489         (get_tool_versions): Likewise.
2490         * top/maint.mk (ALL_RECURSIVE_TARGETS): s/major/stable/
2491
2492 2009-09-30  Ben Pfaff  <blp@gnu.org>
2493
2494         Fix broken build of replacement for Windows tmpfile().
2495         * lib/tmpfile.c (tmpfile): Fix call to gen_tempname() to provide
2496         flags argument added along with the 'mkostemp' module.
2497
2498 2009-09-28  Bruno Haible  <bruno@clisp.org>
2499
2500         Avoid identifier clash with POSIX function 'remove' defined as a macro.
2501         * lib/gl_list.h (struct gl_list_implementation): Rename field 'remove'
2502         to 'remove_elt'.
2503         (gl_list_remove): Update.
2504         * lib/gl_list.c (gl_list_remove): Update.
2505         * lib/gl_oset.h (struct gl_oset_implementation): Rename field 'remove'
2506         to 'remove_elt'.
2507         (gl_oset_remove): Update.
2508         * lib/gl_list.c (gl_oset_remove): Update.
2509         Reported by Eric Blake.
2510
2511 2009-09-28  Eric Blake  <ebb9@byu.net>
2512
2513         doc: mention yet more cygwin 1.7 status
2514         * doc/posix-functions/fexecve.texi (fexecve): Now implemented in
2515         cygwin.
2516         * doc/glibc-functions/execvpe.texi (execvpe): New file.
2517         * doc/gnulib.texi (Glibc unistd.h): Mention it.
2518
2519         argp: fix test failure
2520         * lib/argp-help.c (hol_entry_cmp): Don't use _tolower on values
2521         that are not upper-case.  Pass correct range to tolower.
2522
2523 2009-09-27  Jim Meyering  <meyering@redhat.com>
2524
2525         test-yesno: work around sparc-dash here-document infelicity
2526         Without this change, the literal \177 byte in a here document
2527         would make dash 0.5.5.1-3 access uninitialized memory.
2528         * tests/test-yesno.sh: Don't put the \177 byte in the here document.
2529         Instead, use a marker, "@", and filter through tr to create the desired
2530         contents.  Reported as <http://bugs.debian.org/548493> by Kurt Roeckx.
2531
2532 2009-09-27  Bruno Haible  <bruno@clisp.org>
2533
2534         Disable untested support for new flavours of ACLs on AIX.
2535         * lib/file-has-acl.c (file_has_acl): Mark newer AIX code as work in
2536         progress.
2537         * lib/set-mode-acl.c (qset_acl): Likewise.
2538
2539 2008-12-07  Bruno Haible  <bruno@clisp.org>
2540
2541         Add support for new flavours of ACLs on AIX. (Untested.)
2542         * lib/file-has-acl.c [AIX] (acl_nfs4_nontrivial): New function.
2543         (file_has_acl): Add support for newer AIX.
2544         * lib/set-mode-acl.c (qset_acl): Likewise.
2545         * tests/test-sameacls.c (main): Fix use of aclx_get function. Hint by
2546         Rainer Tammer <tammer@tammer.net>.
2547
2548 2009-09-26  Eric Blake  <ebb9@byu.net>
2549
2550         argp: fix compilation of getopt
2551         * lib/getopt.in.h (includes): Use different guard than glibc.
2552         Reported by Sergey Poznyakoff.
2553
2554         doc: mention more cygwin 1.7 status
2555         * doc/posix-functions/access.texi (access): Mention cygwin 1.5
2556         bug.
2557         * doc/posix-functions/execl.texi (execl): Likewise.
2558         * doc/posix-functions/execle.texi (execle): Likewise.
2559         * doc/posix-functions/execlp.texi (execlp): Likewise.
2560         * doc/posix-functions/execv.texi (execv): Likewise.
2561         * doc/posix-functions/execve.texi (execve): Likewise.
2562         * doc/posix-functions/execvp.texi (execvp): Likewise.
2563         * doc/glibc-functions/canonicalize_file_name.texi
2564         (canonicalize_file_name): Cygwin 1.7 now provides this.
2565         * doc/glibc-functions/euidaccess.texi (euidaccess): Likewise.
2566         * doc/posix-functions/fchmodat.texi (fchmodat): Mention limitation
2567         on AT_SYMLINK_NOFOLLOW.
2568
2569 2009-09-24  Eric Blake  <ebb9@byu.net>
2570
2571         test-linkat: make test more robust
2572         * tests/test-linkat.c (main): Avoid collision with EEXIST.
2573
2574         getopt: fix inclusion guards for cygwin
2575         * modules/getopt-posix (Depends-on): Add include-next.
2576         (Makefile.am): Substitute more items in replacement header.
2577         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Also check for native
2578         <getopt.h>.
2579         * lib/getopt.in.h (includes): Use split inclusion guard, and
2580         prefer <getopt.h> over include <unistd.h> when one is present.
2581         (option): Also override name of 'struct option'.
2582
2583         same-inode: revert prior change; it is not yet ready
2584         * NEWS: Undo mention of this change.
2585         * lib/same-inode.h (same-inode.h): Undo tri-state change.
2586         * lib/cycle-check.h (CYCLE_CHECK_REFLECT_CHDIR_UP): Update caller.
2587         * lib/cycle-check.c (cycle_check): Likewise.
2588         * lib/same.c (same_name): Likewise.
2589         * lib/at-func2.c (at_func2): Likewise.
2590
2591 2009-09-23  Eric Blake  <ebb9@byu.net>
2592
2593         linkat: new module
2594         * modules/linkat: New file.
2595         * lib/at-func2.c (at_func2): Likewise.
2596         * lib/linkat.c (linkat): Likewise.
2597         * m4/linkat.m4 (gl_FUNC_LINKAT): Likewise.
2598         * lib/openat-priv.h (at_func2): Add declaration.
2599         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add witnesses.
2600         * modules/unistd (Makefile.am): Substitute them.
2601         * lib/unistd.in.h (linkat): Declare it.
2602         * MODULES.html.sh (systems lacking POSIX:2008): Mention module.
2603         * doc/posix-functions/linkat.texi (linkat): Likewise.
2604         * doc/posix-functions/link.texi (link): Tweak wording.
2605         * tests/test-link.c (main): Move guts...
2606         * tests/test-link.h (test_link): ...into new file.
2607         * modules/linkat-tests: New test.
2608         * tests/test-linkat.c: Likewise.
2609         * modules/link-tests (Files): Ship new file.
2610         (Depends-on): Add stdbool.
2611
2612         dirname: add library-safe mdir_name
2613         * lib/dirname.h (mdir_name): New prototype.
2614         * lib/dirname.c (dir_name): Move guts...
2615         (mdir_name): ...to new function that avoids xalloc_die.
2616
2617         fchdir: another mingw fix
2618         * modules/fchdir (Depends-on): Drop canonicalize-lgpl.
2619         * lib/fchdir.c (get_name): New helper method; skips canonicalize
2620         on mingw (where it has not yet been ported), and make it optional
2621         elsewhere.
2622         (_gl_register_fd): Use it.
2623
2624         same-inode: make SAME_INODE tri-state, to port to mingw
2625         * NEWS: Mention this change.
2626         * lib/same-inode.h (same-inode.h): Recognize mingw limitation of
2627         st_ino always being 0.
2628         * lib/cycle-check.h (CYCLE_CHECK_REFLECT_CHDIR_UP): Update caller.
2629         * lib/cycle-check.c (cycle_check): Likewise.
2630         * lib/same.c (same_name): Likewise.
2631
2632         lstat: avoid mingw compilation error
2633         * m4/lstat.m4 (gl_FUNC_LSTAT): Avoid duplicate calls to
2634         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK, and deal with missing
2635         lstat ourselves.
2636         * lib/lstat.c [!HAVE_LSTAT]: Do nothing if <sys/stat.h> override
2637         was adequate.
2638         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Let lstat module handle
2639         the checks for lstat.
2640         (gl_SYS_STAT_H_DEFAULTS): Set default for HAVE_LSTAT.
2641
2642         link: fix test failure on Solaris 9
2643         * lib/link.c (rpl_link): Don't assume link will catch bogus
2644         trailing slash on source.
2645
2646         test-symlinkat: enhance test
2647         * tests/test-readlink.c (main): Move guts...
2648         * tests/test-readlink.h (test_readlink): ...into new file.
2649         * tests/test-symlink.c (main): Move guts...
2650         * tests/test-symlink.h (test_symlink): ...into new file.
2651         * tests/test-symlinkat.c (main): Use new files for further
2652         coverage.
2653         (do_symlink, do_readlink): New helper functions.
2654         * modules/symlink-tests (Files): Ship new file.
2655         (Depends-on): Add stdbool.
2656         * modules/readlink-tests (Files): Ship new file.
2657         (Depends-on): Add stdbool.
2658         * modules/symlinkat-tests (Files): Use new files.
2659
2660 2009-09-23  Eric Blake  <ebb9@byu.net>
2661
2662         readlink: document portability issue with symlink length
2663         * doc/posix-functions/lstat.texi (lstat): Mention that some file
2664         systems have bogus st_size on symlinks, and mention the
2665         areadlink-with-size module.
2666         * doc/posix-functions/fstatat.texi (fstatat): Likewise.
2667         * doc/posix-functions/readlink.texi (readlink): Mention the
2668         areadlink module, and ERANGE failure.
2669         * doc/posix-functions/readlinkat.texi (readlinkat): Likewise.
2670         * tests/test-readlink.c (main): Relax test for AIX, HP-UX.
2671
2672         readlink: fix Solaris 9 bug with trailing slash
2673         * lib/readlink.c (rpl_readlink): Work around trailing slash bug.
2674         * m4/readlink.m4 (gl_FUNC_READLINK): Detect the bug.
2675         * doc/posix-functions/readlink.texi (readlink): Document this.
2676         * modules/readlink-tests: New test.
2677         * tests/test-readlink.c: Likewise.
2678
2679         readlink: fix cygwin 1.5.x bug with return type
2680         * m4/readlink.m4 (gl_FUNC_READLINK): Require correct signature.
2681         * lib/unistd.in.h (readlink): Use ssize_t.
2682         * lib/readlink.c (readlink): Likewise.
2683         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add witness.
2684         * modules/unistd (Makefile.am): Substitute it.
2685         * lib/unistd.in.h (readlink): Declare replacement.
2686         * doc/posix-functions/readlink.texi (readlink): Document this.
2687
2688         symlink: use throughout gnulib
2689         * m4/symlinkat.m4 (gl_FUNC_SYMLINKAT): Omit symlink check.
2690         * lib/symlinkat.c (symlinkat) [!HAVE_SYMLINK]: Document why
2691         symlink is not used.
2692         * modules/symlinkat (Depends-on): Add symlink.
2693         * modules/canonicalize-lgpl-tests (Depends-on): Likewise.
2694         * modules/canonicalize-tests (Depends-on): Likewise.
2695         * modules/lstat-tests (Depends-on): Likewise.
2696         * modules/openat-tests (Depends-on): Likewise.
2697         * modules/remove-tests (Depends-on): Likewise.
2698         * modules/rmdir-tests (Depends-on): Likewise.
2699         * modules/unlink-tests (Depends-on): Likewise.
2700         * tests/test-canonicalize-lgpl.c (symlink): Delete stub.
2701         * tests/test-canonicalize.c (symlink): Likewise.
2702         * tests/test-fstatat.c (symlink): Likewise.
2703         * tests/test-lstat.c (symlink): Likewise.
2704         * tests/test-remove.c (symlink): Likewise.
2705         * tests/test-rmdir.c (symlink): Likewise.
2706         * tests/test-unlink.c (symlink): Likewise.
2707         * tests/test-unlinkat.c (symlink): Likewise.
2708
2709         symlink: new module, for Solaris 9 bug
2710         * modules/symlink: New file.
2711         * m4/symlink.m4 (gl_FUNC_SYMLINK): Likewise.
2712         * lib/symlink.c: Likewise.
2713         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add defaults.
2714         * modules/unistd (Makefile.am): Substitute them.
2715         * lib/unistd.in.h (symlink): Declare replacement.
2716         * MODULES.html.sh (File system functions): Mention it.
2717         * doc/posix-functions/symlink.texi (symlink): Likewise.
2718         * modules/symlink-tests: New test.
2719         * tests/test-symlink.c: Likewise.
2720
2721 2009-09-23  Bruno Haible  <bruno@clisp.org>
2722
2723         * gnulib-tool (func_import): Add 'link-warning' to testsrelated_modules
2724         when needed.
2725         Test case: gnulib-tool --import --with-tests atexit inttypes.
2726         Reported by Pauli Miettinen <pauli.miettinen@cs.helsinki.fi>.
2727
2728 2009-09-23  Bruno Haible  <bruno@clisp.org>
2729
2730         * gnulib-tool (func_emit_tests_Makefile_am): Set uses_subdirs in a
2731         subcommand, not in a subshell.
2732
2733 2009-09-22  Eric Blake  <ebb9@byu.net>
2734
2735         unistd: sort replacement declarations
2736         * lib/unistd.in.h: Sort declarations.
2737
2738         open, openat: minor optimization
2739         * lib/open.c (open): If open succeeded, len is non-zero.
2740         * lib/openat.c (rpl_openat): Likewise.
2741
2742         link-follow: ensure correct result
2743         * m4/fcntl_h.m4 (gl_FCNTL_H): Clean up temporary file.
2744         * m4/link-follow.m4 (gl_FUNC_LINK_FOLLOWS_SYMLINK): Likewise, and
2745         distinguish between possible failures.
2746
2747 2009-09-21  Eric Blake  <ebb9@byu.net>
2748
2749         fts: avoid compiler warning
2750         * lib/fts.c (dirent_inode_sort_may_be_useful)
2751         (leaf_optimization_applies) [!__linux__]: Mark unused parameters.
2752
2753 2009-09-19  Bruno Haible  <bruno@clisp.org>
2754
2755         * lib/progreloc.c (canonicalize_file_name): New declaration.
2756
2757 2009-09-19  Eric Blake  <ebb9@byu.net>
2758
2759         link: fix quoting
2760         * m4/link.m4 (gl_FUNC_LINK): Fix shell quoting.
2761
2762         openat: fix openat bugs on Solaris 9
2763         * lib/openat.c (rpl_openat): Work around Solaris 9 bug.
2764         * m4/openat.m4 (gl_FUNC_OPENAT): Also replace openat on Solaris.
2765         * modules/openat (Depends-on): Add open.
2766         * m4/fcntl_h.m4 (gl_FCNTL_H_DEFAULTS): Provide new default.
2767         * modules/fcntl-h (Makefile.am): Substitute it.
2768         * lib/fcntl.in.h (openat): Declare replacement.
2769         * doc/posix-functions/openat.texi (openat): Document this.
2770
2771         openat: move fstatat and unlinkat into correct files
2772         * m4/openat.m4 (gl_FUNC_OPENAT): Adjust which files will be
2773         compiled.
2774         * lib/openat.c (fstatat, unlinkat): Move...
2775         * lib/fstatat.c (fstatat): ...into correct files.
2776         * lib/unlinkat.c (unlinkat): Likewise.
2777
2778         openat: fix unlinkat bugs on Solaris 9
2779         * lib/unlinkat.c (unlinkat): New file.
2780         * modules/openat (Depends-on): Add unlink.
2781         (Files): Distribute it.
2782         * m4/openat.m4 (gl_FUNC_OPENAT): Mark unlinkat for replacement if
2783         trailing slash behavior is broken.
2784         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add witness.
2785         * modules/unistd (Makefile.am): Substitute it.
2786         * lib/unistd.in.h (unlinkat): Declare replacement.
2787         * doc/posix-functions/unlinkat.texi (unlinkat): Document this.
2788
2789         openat: fix fstatat bugs on Solaris 9
2790         * lib/fstatat.c (rpl_fstatat): Copy recent fixes from lstat and
2791         stat.
2792         * doc/posix-functions/fstatat.texi (fstatat): Document this.
2793
2794         test-unlinkat: enhance test, to expose Solaris 9 bug
2795         * tests/test-unlink.c (main): Factor guts...
2796         * tests/test-unlink.h (test_rmdir_func): ...into new file.
2797         * tests/test-rmdir.h (test_rmdir_func): Add parameter.
2798         * tests/test-rmdir.c (main): Adjust caller.
2799         * tests/test-unlinkat.c (main): Likewise.  Add unlink tests.
2800         (unlinker): New helper function.
2801         (rmdirat): Enhance check.
2802         * modules/rmdir-tests (Depends-on): Add stdbool.
2803         * modules/unlink-tests (Depends-on): Likewise.
2804         (Files): Add test-unlink.h.
2805         * modules/openat-tests (Files): Likewise.
2806         (Depends-on): Add unlinkdir.
2807
2808         test-fstatat: new test, to expose Solaris 9 bugs
2809         * tests/test-stat.c (main): Factor guts...
2810         * tests/test-stat.h (test_stat_func): ...into new file.
2811         * tests/test-lstat.c (main): Factor guts...
2812         * tests/test-lstat.h (test_lstat_func): ...into new file.
2813         * tests/test-fstatat.c: New file.
2814         * modules/stat-tests (Files): Add test-stat.h.
2815         * modules/lstat-tests (Files): Add test-lstat.h.
2816         (Depends-on): Add stdbool.
2817         * modules/openat-tests (Depends-on): Add pathmax.
2818         (Files): Add test-lstat.h, test-stat.h, test-fstatat.c.
2819         (Makefile.am): Run new test.
2820
2821         remove: new module, for mingw and Solaris 9 bugs
2822         * modules/remove: New file.
2823         * lib/remove.c: Likewise.
2824         * m4/remove.m4 (gl_FUNC_REMOVE): Likewise.
2825         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Add witnesses.
2826         * modules/stdio (Makefile.am): Use them.
2827         * lib/stdio.in.h (remove): Declare replacement.
2828         * MODULES.html.sh (systems lacking POSIX:2008): Mention module.
2829         * doc/posix-functions/remove.texi (remove): Likewise.
2830         * modules/remove-tests: New test.
2831         * tests/test-remove.c: Likewise.
2832
2833         unlink: new module, for Solaris 9 bug
2834         * modules/unlink: New file.
2835         * lib/unlink.c: Likewise.
2836         * m4/unlink.m4 (gl_FUNC_UNLINK): Likewise.
2837         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add witnesses.
2838         * modules/unistd (Makefile.am): Use them.
2839         * lib/unistd.in.h (stat): Declare replacement.
2840         * MODULES.html.sh (systems lacking POSIX:2008): Mention module.
2841         * doc/posix-functions/unlink.texi (unlink): Likewise.
2842         * modules/unlink-tests: New test.
2843         * tests/test-unlink.c: Likewise.
2844
2845         lstat: fix Solaris 9 bug
2846         * lib/lstat.c (lstat): Also check for trailing slash on
2847         non-symlink, non-directories.  Use stat module to simplify logic.
2848         * doc/posix-functions/lstat.texi (lstat): Document it.
2849         * modules/lstat-tests (Depends-on): Add errno, same-inode.
2850         (configure.ac): Check for symlink.
2851         * tests/test-lstat.c (main): Add more tests.
2852
2853         stat: add as dependency to other modules
2854         * modules/chown (Depends-on): Add stat.
2855         * modules/euidaccess (Depends-on): Likewise.
2856         * modules/fchdir (Depends-on): Likewise.
2857         * modules/isdir (Depends-on): Likewise.
2858         * modules/link (Depends-on): Likewise.
2859         * modules/lstat (Depends-on): Likewise.
2860         * modules/mkdir-p (Depends-on): Likewise.
2861         * modules/modechange (Depends-on): Likewise.
2862         * modules/open (Depends-on): Likewise.
2863         * modules/readlink (Depends-on): Likewise.
2864         * modules/same (Depends-on): Likewise.
2865
2866         stat: fix Solaris 9 bug
2867         * m4/stat.m4 (gl_FUNC_STAT): Detect Solaris 9 bug with trailing
2868         slash.
2869         * lib/stat.c (rpl_stat): Work around it.
2870         * doc/posix-functions/stat.texi (stat): Update documentation.
2871
2872         stat: new module, for mingw bug
2873         * modules/stat: New file.
2874         * lib/stat.c: Likewise.
2875         * m4/stat.m4 (gl_FUNC_STAT): Likewise.
2876         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Add witnesses.
2877         * modules/sys_stat (Makefile.am): Use them.
2878         * lib/sys_stat.in.h (stat): Declare replacement.
2879         * lib/openat.c (fstatat): Deal with lstat and stat being function
2880         macros.
2881         * modules/openat (Depends-on): Add inline.
2882         * MODULES.html.sh (systems lacking POSIX:2008): Mention module.
2883         * doc/posix-functions/stat.texi (stat): Likewise.
2884         * modules/stat-tests: New test.
2885         * tests/test-stat.c: Likewise.
2886
2887 2009-09-19  Jim Meyering  <meyering@redhat.com>
2888
2889         syntax-check: detect unnecessary inclusion of canonicalize.h
2890         * top/maint.mk (sc_prohibit_canonicalize_without_use): New rule.
2891
2892 2009-09-19  Eric Blake  <ebb9@byu.net>
2893
2894         canonicalize-lgpl: adjust clients to use correct header
2895         * m4/canonicalize.m4 (gl_FUNC_CANONICALIZE_FILENAME_MODE)
2896         (gl_CANONICALIZE_LGPL): Use correct shell quoting.
2897         * modules/relocatable-prog-wrapper (Files): Drop canonicalize.h.
2898         * lib/fchdir.c (includes): Use <stdlib.h>, not "canonicalize.h".
2899         * lib/progreloc.c (includes): Likewise.
2900
2901 2009-09-19  Jim Meyering  <meyering@redhat.com>
2902
2903         test-posixtm.c: correct a comment
2904         * tests/test-posixtm.c: Correct first-line comment.
2905         Spotted by Eric Blake.
2906
2907 2009-09-16  Jim Meyering  <meyering@redhat.com>
2908
2909         posixtm-tests: make T const-correct; add a test case
2910         * tests/test-posixtm.c (T): Declare const.
2911         Add a test for -(2^31+1).
2912         Remove useless can-succeed-only-in-2002 test.
2913
2914         posixtm-tests: adjust the sole failing test
2915         * tests/test-posixtm.c: Correct 0000-01-01 00:00:00 test so that
2916         expected output matches what mktime now produces.  Cross-checked via
2917         erlang's calendar:datetime_to_gregorian_seconds({{1970,1,1},{0,0,0}})
2918
2919         posixtm: move #ifdef'd tests into a new module
2920         * lib/posixtm.c (posixtime): Remove #ifdef'd tests.  Move to...
2921         * tests/test-posixtm.c: ... this new file.
2922         * modules/posixtm-tests: New module.
2923
2924 2009-09-19  Eric Blake  <ebb9@byu.net>
2925
2926         openat: simplify use of at-func.c
2927         * lib/at-func.c (includes): Include prerequisites here, to
2928         simplify requirements on client files.
2929         * lib/openat-priv.h: Add double-inclusion guard.
2930         * lib/faccessat.c (includes): Simplify.
2931         * lib/fchmodat.c (includes): Likewise.
2932         * lib/fchownat.c (includes): Likewise.
2933         * lib/mkdirat.c (includes): Likewise.
2934         * lib/mkfifoat.c (includes): Likewise.
2935         * lib/symlinkat.c (includes): Likewise.
2936
2937         openat: allow return of fd 0
2938         * modules/chdir-long (Depends-on): Relax openat-safer to openat.
2939         * modules/save-cwd (Depends-on): Replace fcntl-safer with
2940         unistd-safer.
2941         * lib/chdir-long.c (includes): Replace "fcntl--.h" with
2942         <fcntl.h>; this module does not leak fds.
2943         * lib/openat.c (includes): Do not use "fcntl_safer"; plain openat
2944         must be allowed to return 0, leaving openat_safer to add the
2945         safety.
2946         (openat_permissive): Avoid writing to just-opened fd 2 if
2947         restoring the current directory fails.
2948         * lib/openat-die.c (openat_restore_fail): Add comment.
2949         * lib/save-cwd.c (includes): Make "fcntl--.h" conditional.
2950         (save_cwd): Guarantee safe fd, but without use of open_safer.
2951         * tests/test-openat.c: New test.
2952         * modules/openat-tests (Files, Makefile.am): Distribute and build
2953         new file.
2954
2955         relocatable-prog-wrapper: fix build
2956         * modules/relocatable-prog-wrapper (Files): Update name of
2957         canonicalize m4 file, broken on 2009-09-17.
2958         Reported by emad hajjar <aleppos@hotmail.com>.
2959
2960 2009-09-19  Bruno Haible  <bruno@clisp.org>
2961
2962         * lib/safe-alloc.h: Use the standard header with GPL copyright.
2963         * lib/safe-alloc.c: Likewise.
2964         Reported by Ian Beckwith <ianb@erislabs.net>.
2965
2966 2009-09-18  Bruno Haible  <bruno@clisp.org>
2967
2968         * gnulib-tool: Add advice to "cannot find configure.ac" error message.
2969         Reported by <erobles@sensacd.com.mx>.
2970
2971 2009-09-17  Eric Blake  <ebb9@byu.net>
2972
2973         canonicalize: in CAN_ALL_BUT_LAST, allow trailing slash
2974         * lib/canonicalize.c (canonicalize_filename_mode): Skip trailing
2975         slashes when checking if last component is missing.
2976         * tests/test-canonicalize.c (main): Test this.
2977
2978         canonicalize, canonicalize-lgpl: honor // if distinct from /
2979         * modules/canonicalize (Files): Add double-slash-root.m4.
2980         * modules/canonicalize-lgpl (Files): Likewise.
2981         * m4/canonicalize.m4 (gl_FUNC_CANONICALIZE_FILENAME_MODE)
2982         (gl_CANONICALIZE_LGPL_SEPARATE): Add dependency.
2983         * lib/canonicalize.c (DOUBLE_SLASH_IS_DISTINCT_ROOT): Provide
2984         fallback definition.
2985         (canonicalize_filename_mode): Use it to protect //.
2986         * lib/canonicalize-lgpl.c (DOUBLE_SLASH_IS_DISTINCT_ROOT)
2987         (__realpath): Likewise.
2988         * tests/test-canonicalize.c (main): Test this.
2989         * tests/test-canonicalize-lgpl.c (main): Likewise.
2990         * modules/canonicalize-tests (Depends-on): Add same-inode.
2991         * modules/canonicalize-lgpl-tests (Depends-on): Likewise.
2992
2993         canonicalize-lgpl: fix glibc bug with trailing slash
2994         * m4/canonicalize-lgpl.m4: Move contents...
2995         * m4/canonicalize.m4: ...here.
2996         (gl_CANONICALIZE_LGPL): Factor realpath check...
2997         (gl_FUNC_REALPATH_WORKS): ...into new macro.  Enhance to catch
2998         glibc 2.3.5 bug, fixed 2005-04-27.
2999         (gl_FUNC_CANONICALIZE_FILENAME_MODE): Use it.
3000         (gl_PREREQ_CANONICALIZE_LGPL): Inline...
3001         (gl_CANONICALIZE_LGPL_SEPARATE): ...into this macro.
3002         * modules/canonicalize-lgpl (Files): Manage file rename.
3003         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Provide default.
3004         * modules/stdlib (Makefile.am): Substitute witness.
3005         * lib/stdlib.in.h (canonicalize_file_name): Declare if replacement
3006         is needed.
3007         * lib/canonicalize-lgpl.c: Also compile if canonicalize_file_name
3008         replacement is required.
3009         * lib/canonicalize.c (canonicalize_file_name): Likewise.
3010         * doc/glibc-functions/canonicalize_file_name.texi
3011         (canonicalize_file_name): Document this.
3012         * doc/posix-functions/realpath.texi (realpath): Likewise.
3013
3014         canonicalize-lgpl: reject non-directory with trailing slash
3015         * lib/canonicalize-lgpl.c (__realpath): Synchronize with glibc.
3016         * tests/test-canonicalize-lgpl.c (main): Enhance test.  This
3017         catches failures in glibc 2.3.5.
3018         * tests/test-canonicalize.c (main): Likewise.
3019
3020         canonicalize-lgpl: use native realpath if it works
3021         * lib/canonicalize-lgpl.c (realpath): Guard with
3022         FUNC_REALPATH_WORKS.
3023         * lib/stdlib.in.h (realpath): Make declaration optional based on
3024         HAVE_REALPATH.
3025         * m4/canonicalize-lgpl.m4 (gl_CANONICALIZE_LGPL): Check whether
3026         native realpath works.
3027         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Provide default.
3028         * modules/stdlib (Makefile.am): Substitute witness.
3029
3030         canonicalize, canonicalize-lgpl: use <stdlib.h>
3031         * modules/canonicalize-lgpl (Files): Drop canonicalize.h.
3032         (Include): Mention <stdlib.h>.
3033         (configure.ac): Mention functions we provide.
3034         * modules/canonicalize (configure.ac): Likewise.
3035         * m4/canonicalize-lgpl.m4 (gl_CANONICALIZE_LGPL): Always replace
3036         realpath if canonicalize_file_name is missing.
3037         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Provide defaults.
3038         * modules/stdlib (Makefile.am): Substitute witnesses.
3039         * lib/stdlib.in.h (canonicalize_file_name, realpath): Declare.
3040         * lib/canonicalize-lgpl.c (includes): Adjust accordingly.
3041         * lib/canonicalize.h (canonicalize_file_name): Drop declaration.
3042         * NEWS: Document this.
3043         * doc/glibc-functions/canonicalize_file_name.texi
3044         (canonicalize_file_name): Likewise.
3045         * doc/posix-functions/realpath.texi (realpath): Likewise.
3046         * tests/test-canonicalize-lgpl.c (includes): Use <stdlib.h>.
3047
3048         test-canonicalize: consolidate into single C program
3049         * tests/test-canonicalize.sh: Delete; move setup into...
3050         * tests/test-canonicalize.c (main): ...the program, making it
3051         easier to run in debugger.  Add some tests.
3052         * modules/canonicalize-tests (Files): Remove unused file.
3053         (Depends-on): Add progname.
3054         (configure.ac, Makefile.am): Simplify.
3055
3056         test-canonicalize-lgpl: consolidate into single C program
3057         * tests/test-canonicalize-lgpl.sh: Delete; move setup into...
3058         * tests/test-canonicalize-lgpl.c (main): ...the program, making it
3059         easier to run in debugger.  Add some tests.
3060         * modules/canonicalize-lgpl-tests (Files): Remove unused file.
3061         (configure.ac, Makefile.am): Simplify.
3062
3063         canonicalize: avoid resolvepath
3064         * m4/canonicalize.m4 (gl_FUNC_CANONICALIZE_FILENAME_MODE): Delete
3065         unnecessary checks.
3066         * lib/canonicalize.c (includes): Simplify.
3067         (canonicalize_file_name): Drop resolvepath implementation.
3068         * modules/canonicalize (Depends-on): Drop filenamecat.
3069
3070         canonicalize: don't lose errno
3071         * lib/canonicalize.c (canonicalize_filename_mode): Protect errno
3072         over calls to free.
3073
3074         canonicalize: simplify errno handling
3075         * lib/canonicalize.c (__set_errno): Delete macro, and use direct
3076         assignment.
3077
3078         canonicalize, canonicalize-lgpl: update module dependencies
3079         * modules/canonicalize (Depends-on): Add extensions, lstat,
3080         pathmax, stdlib.
3081         (Files): Drop pathmax.h.
3082         (configure.ac): Adjust macro name.
3083         * modules/canonicalize-lgpl (Depends-on): Add errno, extensions,
3084         lstat, stdlib, sys_stat.
3085         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME): Rename...
3086         (gl_FUNC_CANONICALIZE_FILENAME_MODE): ...to this, and require
3087         extensions.
3088         * m4/canonicalize-lgpl.m4 (gl_CANONICALIZE_LGPL)
3089         (gl_CANONICALIZE_LGPL_SEPARATE): Require extensions.
3090         (gl_PREREQ_CANONICALIZE_LGPL): Assume unistd.h.
3091         * lib/canonicalize.h (canonicalize_file_name): Use <stdlib.h>
3092         declaration, if available.
3093         * lib/canonicalize-lgpl.c [HAVE_READLINK]: Delete this condition;
3094         we can rely on the readlink module.
3095         (MAXSYMLINKS): Also consult SYMLOOP_MAX.
3096         (includes): Use <unistd.h> unconditionally.
3097
3098 2009-09-17  Eric Blake  <ebb9@byu.net>
3099
3100         maint: make Include sections of modules consistent
3101         * modules/alloca: Use only header name; no need to list #include.
3102         * modules/alloca-opt: Likewise.
3103         * modules/arpa_inet: Likewise.
3104         * modules/canon-host: Likewise.
3105         * modules/configmake: Likewise.
3106         * modules/dirent: Likewise.
3107         * modules/eealloc: Likewise.
3108         * modules/environ: Likewise.
3109         * modules/fchdir: Likewise.
3110         * modules/fcntl: Likewise.
3111         * modules/fcntl-h: Likewise.
3112         * modules/gethrxtime: Likewise.
3113         * modules/gettime: Likewise.
3114         * modules/ignore-value: Likewise.
3115         * modules/inet_ntop: Likewise.
3116         * modules/inet_pton: Likewise.
3117         * modules/inttypes: Likewise.
3118         * modules/isnand-nolibm: Likewise.
3119         * modules/isnanf-nolibm: Likewise.
3120         * modules/mbchar: Likewise.
3121         * modules/mbfile: Likewise.
3122         * modules/mbiter: Likewise.
3123         * modules/mbuiter: Likewise.
3124         * modules/netdb: Likewise.
3125         * modules/netinet_in: Likewise.
3126         * modules/nproc: Likewise.
3127         * modules/pagealign_alloc: Likewise.
3128         * modules/poll: Likewise.
3129         * modules/printf-frexp: Likewise.
3130         * modules/pthread: Likewise.
3131         * modules/putenv: Likewise.
3132         * modules/random_r: Likewise.
3133         * modules/relocatable-prog: Likewise.
3134         * modules/search: Likewise.
3135         * modules/select: Likewise.
3136         * modules/selinux-h: Likewise.
3137         * modules/settime: Likewise.
3138         * modules/signal: Likewise.
3139         * modules/size_max: Likewise.
3140         * modules/socklen: Likewise.
3141         * modules/ssize_t: Likewise.
3142         * modules/stdarg: Likewise.
3143         * modules/stdbool: Likewise.
3144         * modules/stddef: Likewise.
3145         * modules/stdint: Likewise.
3146         * modules/stdio: Likewise.
3147         * modules/stdlib: Likewise.
3148         * modules/string: Likewise.
3149         * modules/strings: Likewise.
3150         * modules/sys_file: Likewise.
3151         * modules/sys_ioctl: Likewise.
3152         * modules/sys_select: Likewise.
3153         * modules/sys_socket: Likewise.
3154         * modules/sys_stat: Likewise.
3155         * modules/sys_time: Likewise.
3156         * modules/sys_times: Likewise.
3157         * modules/sys_utsname: Likewise.
3158         * modules/sys_wait: Likewise.
3159         * modules/sysexits: Likewise.
3160         * modules/time: Likewise.
3161         * modules/times: Likewise.
3162         * modules/tmpfile: Likewise.
3163         * modules/trim: Likewise.
3164         * modules/unistd: Likewise.
3165         * modules/wchar: Likewise.
3166         * modules/wctype: Likewise.
3167
3168 2009-09-17  Bruno Haible  <bruno@clisp.org>
3169
3170         Make getdate.y compile on QNX and NetBSD 5 / i386.
3171         * m4/getdate.m4 (gl_GETDATE): Conditionally define
3172         TIME_T_FITS_IN_LONG_INT.
3173         * lib/getdate.y (long_time_t): New type.
3174         (relative_time): Change type of 'seconds' field to long_time_t.
3175         (get_date): Update types of local variables. Check against overflow
3176         during conversion from long_time_t to time_t.
3177         Reported by Matt Kraai <kraai@ftbfs.org>
3178         and Hasso Tepper <hasso@netbsd.org>.
3179
3180 2009-09-17  Bruno Haible  <bruno@clisp.org>
3181
3182         * modules/COPYING: Update copyright years.
3183         * modules/README: Likeiwse.
3184         * doc/gnulib-intro.texi (Copyright): Use a wildcard year.
3185         Reported by Ian Beckwith <ianb@erislabs.net>.
3186
3187 2009-09-17  Ian Beckwith  <ianb@erislabs.net>  (tiny change)
3188
3189         * users.txt: Update references for gnuit package.
3190
3191 2009-09-17  Ian Beckwith  <ianb@erislabs.net>  (tiny change)
3192
3193         * m4/getdelim.m4: Fix typo in copyright line.
3194
3195 2009-09-17  Bruno Haible  <bruno@clisp.org>
3196
3197         * lib/atoll.c: Use the standard header with GPL copyright.
3198         * lib/argz.in.h: Likewise.
3199         * lib/glob.c: Likewise.
3200         * lib/glob-libc.h: Likewise.
3201         * lib/random_r.c: Likewise.
3202         * lib/siglist.h: Likewise.
3203         * lib/strsignal.c: Likewise.
3204         Reported by Ian Beckwith <ianb@erislabs.net>.
3205
3206 2009-09-17  Eric Blake  <ebb9@byu.net>
3207
3208         rmdir: ensure correct dependency order
3209         * m4/rmdir.m4 (gl_FUNC_RMDIR): Require unistd defaults.
3210
3211 2009-09-17  Bruno Haible  <bruno@clisp.org>
3212
3213         Disable assertion that fails on NetBSD 5 / i386.
3214         * lib/mktime.c (ydhms_diff): Disable assertion about time_t size.
3215         Reported by Sam Steingold <sds@gnu.org>
3216         and Hasso Tepper <hasso@netbsd.org>.
3217
3218 2009-09-16  Eric Blake  <ebb9@byu.net>
3219
3220         unlinkdir: port to mingw
3221         * m4/unlinkdir.m4 (gl_UNLINKDIR): Add mingw to list of platforms
3222         on which no one can unlink a directory.
3223
3224         stdlib: sort witness names
3225         * modules/stdlib (Makefile.am): Sort replacements.
3226         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Likewise.
3227         * lib/stdlib.in.h: Likewise.
3228
3229         parse-duration-tests: avoid link failure
3230         * modules/parse-duration-tests (test_parse_duration_LDADD): Add
3231         LIBINTL.
3232         Reported by Tom G. Christensen.
3233
3234         openat-tests: ensure unlinkat behaves like rmdir
3235         * tests/test-rmdir.c (main): Factor guts...
3236         * tests/test-rmdir.h (test_rmdir_func): ...into new file.
3237         * modules/rmdir-tests (Files): Ship new file.
3238         * modules/openat-tests: New test.
3239         * tests/test-unlinkat.c: Likewise.
3240
3241         rmdir-errno: mark obsolete, it is unsafe for cross-compilation
3242         * modules/rmdir-errno (Status, Notice): Now obsolete.
3243
3244         rmdir: work around cygwin 1.5.x and mingw bugs
3245         * m4/rmdir.m4 (gl_FUNC_RMDIR): Detect the bugs.
3246         * lib/rmdir.c (rmdir): Work around it.
3247         * modules/rmdir (Status, Notice): No longer obsolete.
3248         (Files): Add dos.m4.
3249         (Depends-on): Add unistd.
3250         (configure.ac): Set witnesses.
3251         (License): Relax to LGPLv2+.
3252         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Set defaults.
3253         * modules/unistd (Makefile.am): Substitute witnesses.
3254         * lib/unistd.in.h (rmdir): Declare replacement.
3255         * doc/posix-functions/rmdir.texi (rmdir): Document this.
3256         * modules/rmdir-tests: New tests.
3257         * tests/test-rmdir.c: Likewise.
3258
3259 2009-09-15  Eric Blake  <ebb9@byu.net>
3260
3261         fchdir: improve use of replacement functions
3262         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Set appropriate witnesses.
3263         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Add REPLACE_FSTAT.
3264         * m4/dirent_h.m4 (gl_DIRENT_H_DEFAULTS): Add REPLACE_OPENDIR,
3265         REPLACE_CLOSEDIR.
3266         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add REPLACE_DUP.
3267         * modules/sys_stat (Makefile.am): Substitute correct witness.
3268         * modules/dirent (Makefile.am): Likewise.
3269         * modules/unistd (Makefile.am): Likewise.
3270         * lib/dirent.in.h (opendir, closedir): Use better witnesses.
3271         * lib/unistd.in.h (dup): Likewise.
3272         * lib/sys_stat.in.h (fstat): Likewise.
3273
3274         maint: ignore gnulib-tool temp files
3275         * .gitignore: Ignore files created during gnulib-tool --test.
3276
3277 2009-09-13  Jim Meyering  <meyering@redhat.com>
3278
3279         posixtm: don't reject a time that specify "60" as the number of seconds
3280         * lib/posixtm.c (posixtime): The code to reject invalid dates
3281         would also reject a time specified with the .60 suffix.
3282         But POSIX allows that, in order to accommodate leap seconds.
3283         So don't reject it.
3284         (main): Adjust tests accordingly.
3285         * modules/posixtm (Depends-on): Add stpcpy.
3286
3287 2009-09-11  Jim Meyering  <meyering@redhat.com>
3288
3289         announce-gen: include [$release_type] in emitted Subject:
3290         * build-aux/announce-gen (get_tool_versions): Include [$release_type],
3291         e.g., [stable] in the emitted Subject: line.
3292
3293 2009-09-10  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3294
3295         Remove obsolete macros from several modules.
3296         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Replace
3297         obsolete Autoconf macros with their modern counterparts.
3298         * m4/check-math-lib.m4 (gl_CHECK_MATH_LIB): Likewise.
3299         * m4/gc-camellia.m4 (gl_GC_CAMELLIA): Likewise.
3300         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Likewise.
3301         * m4/getdate.m4 (gl_C_COMPOUND_LITERALS): Likewise.
3302         * m4/gethostname.m4 (gl_FUNC_GETHOSTNAME): Likewise.
3303         * m4/getline.m4 (gl_FUNC_GETLINE): Likewise.
3304         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Likewise.
3305         * m4/isfinite.m4 (gl_ISFINITEL_WORKS): Likewise.
3306         * m4/poll.m4 (gl_FUNC_POLL): Likewise.
3307         * m4/readline.m4 (gl_FUNC_READLINE): Likewise.
3308         * m4/round.m4 (gl_FUNC_ROUND): Likewise.
3309         * m4/roundf.m4 (gl_FUNC_ROUNDF): Likewise.
3310         * m4/select.m4 (gl_FUNC_SELECT): Likewise.
3311         * m4/sockets.m4 (gl_SOCKETS): Likewise.
3312         * m4/socklen.m4 (gl_TYPE_SOCKLEN_T): Likewise.
3313         * m4/sockpfaf.m4 (gl_SOCKET_FAMILIES): Likewise.
3314         * m4/sysexits.m4 (gl_SYSEXITS): Likewise.
3315         * m4/time_r.m4 (gl_TIME_R): Likewise.
3316         * m4/tsearch.m4 (gl_FUNC_TSEARCH): Likewise.
3317         * m4/vararrays.m4 (AC_C_VARARRAYS): Likewise.
3318         * m4/wctype.m4 (gl_WCTYPE_H): Likewise.
3319
3320         Fix copyright header in build-aux scripts.
3321         * build-aux/git-version-gen: Fix copyright header to match GPLv3
3322         recommendation.
3323         * build-aux/ncftpput-ftp: Likewise.
3324         * build-aux/update-copyright: Likewise.
3325
3326 2009-09-09  Eric Blake  <ebb9@byu.net>
3327
3328         test-link: allow Linux choice of errno
3329         * tests/test-link.c (main): Relax test for alternate error.
3330
3331         strndup: fix improper m4 caching
3332         * m4/strndup.m4 (gl_FUNC_STRNDUP): Rework to avoid side effects
3333         inside AC_CACHE_CHECK.  Use REPLACE_STRNDUP, not HAVE_STRNDUP.
3334         (gl_PREREQ_STRNDUP): Delete.
3335         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Update default.
3336         * modules/string (Makefile.am): Substitute it.
3337         * lib/string.in.h (strndup): Modernize prototype.
3338
3339         getcwd: port to mingw
3340         * m4/getcwd.m4 (gl_FUNC_GETCWD): Mingw directories are very
3341         different from the POSIX assumptions made throughout the getcwd
3342         module; fortunately, the mingw getcwd does not need replacement.
3343         (gl_FUNC_GETCWD_NULL): Skip test on mingw.
3344         * modules/getcwd-tests: New test.
3345         * tests/test-getcwd.c: Likewise.
3346
3347         link: fix platform bugs
3348         * m4/link.m4 (gl_FUNC_LINK): Detect Solaris and Cygwin bugs.
3349         * lib/link.c (link): Work around them.  Fix related mingw bug.
3350         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add REPLACE_LINK.
3351         * modules/unistd (Makefile.am): Substitute it.
3352         * lib/unistd.in.h (link): Declare replacement.
3353         * doc/posix-functions/link.texi (link): Document this.
3354         * modules/link (Depends-on): Add strdup-posix, sys_stat.
3355
3356         test-link: consolidate into single C program, test more cases
3357         * tests/test-link.sh: Delete.
3358         * tests/test-link.c: Test more error conditions.  Exposes bugs on
3359         at least Cygwin and Solaris.
3360         * modules/link-tests (Files): Remove unused file.
3361         (Depends-on): Add errno, sys_stat.
3362         (Makefile.am): Simplify.
3363
3364 2009-09-08  Bruno Haible  <bruno@clisp.org>
3365
3366         Work around towlower, towupper bug on mingw.
3367         * lib/wctype.in.h (towlower, towupper) [__MINGW32__]: New replacements.
3368         * m4/wctype.m4 (gl_WCTYPE_H): Replace <wctype.h> also on mingw.
3369         * doc/posix-functions/towlower.texi: Mention the mingw bug.
3370         * doc/posix-functions/towupper.texi: Likewise.
3371         Reported by Eric Blake.
3372
3373 2009-09-08  Jim Meyering  <meyering@redhat.com>
3374
3375         build: don't try to run autoheader if we don't use it
3376         * build-aux/bootstrap: Define AUTOHEADER=true when AC_CONFIG_HEADERS
3377         is not used in configure.ac.
3378
3379 2009-09-08  Eric Blake  <ebb9@byu.net>
3380
3381         euidaccess: fix compilation error
3382         * lib/euidaccess.c (includes): Add <fcntl.h>, for AT_EACCESS.
3383
3384         rawmemchr: relax license
3385         * modules/rawmemchr (License): Derived from glibc, so LGPLv2+ is
3386         okay.
3387         Reported by Jim Meyering.
3388
3389         mkfifoat: new module
3390         * modules/mkfifoat: New file.
3391         * lib/mkfifoat.c: Likewise.
3392         * m4/mkfifoat.m4 (gl_FUNC_MKFIFOAT): Likewise.
3393         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Add witnesses.
3394         * modules/sys_stat (Makefile.am): Use them.
3395         * lib/sys_stat.in.h (mkfifoat, mknodat): Declare them.
3396         * MODULES.html.sh (File system functions): Mention module.
3397         * doc/posix-functions/mkfifoat.texi (mkfifoat): Likewise.
3398         * doc/posix-functions/mknodat.texi (mknodat): Likewise.
3399         * modules/mkfifoat-tests: New test.
3400         * tests/test-mkfifoat.c: Likewise.
3401
3402         strchrnul: relax license
3403         * modules/strchrnul (License): Derived from glibc, so LGPLv2+ is
3404         okay.
3405         Reported by Jim Meyering.
3406
3407 2009-09-08  Eric Blake  <ebb9@byu.net>
3408
3409         fstatat: fix compilation on Solaris
3410         * lib/fstatat.c (includes): Add fcntl.h.
3411         Reported by Pádraig Brady.
3412
3413 2009-09-07  Eric Blake  <ebb9@byu.net>
3414
3415         rename: modernize replacement
3416         * modules/rename (Depends-on): Add stdio.
3417         (configure.ac): Declare witness.
3418         * m4/rename.m4 (gl_FUNC_RENAME): Ensure dependency order, and let
3419         stdio take care of replacement.
3420         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Add new defaults.
3421         * modules/stdio (Makefile.am): Substitute them.
3422         * lib/stdio.in.h (rename): Declare replacement.
3423         * lib/rename.c (includes): Allow cross-compilation to non-windows
3424         machines.
3425         * doc/posix-functions/rename.texi (rename): Improve
3426         documentation.
3427
3428         stdio: sort witness names
3429         * modules/stdio (Makefile.am): Sort replacements.
3430         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Likewise.
3431         * lib/stdio.in.h: Likewise.
3432
3433         getcwd: minor cleanups
3434         * lib/getcwd.c (AT_FDCWD): Delete; rely on <fcntl.h> instead.
3435         (is_ENAMETOOLONG): Delete; ENAMETOOLONG is portable.
3436
3437         openat: provide more convenience names
3438         * modules/faccessat (configure.ac): Add C witness.
3439         * lib/unistd.in.h (readlinkat): Fix typo.
3440         * lib/openat.h (statat, lstatat, accessat, euidaccessat): New
3441         convenience wrappers.
3442         * top/maint.mk (sc_prohibit_openat_without_use): Allow these
3443         wrappers in syntax checks.
3444
3445 2009-09-06  Eric Blake  <ebb9@byu.net>
3446
3447         doc: fix comments in recent patches
3448         * lib/faccessat.c: Mention correct function.
3449         * lib/fchmodat.c: Likewise.
3450         * lib/fchownat.c: Likewise.
3451         * lib/symlinkat.c: Likewise.
3452         * doc/posix-headers/fcntl.texi (fcntl.h): Cygwin 1.7 has AT_*
3453         constants.
3454
3455         faccessat, symlinkat: continue cleanup of previous patch
3456         * m4/symlinkat.m4 (gl_FUNC_SYMLINKAT): Ensure dependency order.
3457         * m4/faccessat.m4 (gl_FUNC_FACCESSAT): Likewise.
3458         * modules/unistd (Makefile.am): Substitute GNULIB_READLINKAT.
3459         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Offer GNULIB_READLINKAT.
3460         * modules/symlinkat (configure.ac): Set GNULIB_READLINKAT.
3461         * lib/unistd.in.h (readlinkat): Declare if GNULIB_READLINKAT is
3462         set.
3463
3464 2009-09-06  Bruno Haible  <bruno@clisp.org>
3465
3466         * lib/sys_stat.in.h (fchmodat): Declare if GNULIB_FCHMODAT is set.
3467         (fstatat): Declare if GNULIB_FSTATAT is set.
3468         (mkdirat): Declare if GNULIB_MKDIRAT is set.
3469         * lib/unistd.in.h (fchownat): Declare if GNULIB_FCHOWNAT is set.
3470         (unlinkat): Declare if GNULIB_UNLINKAT is set.
3471         * modules/fcntl-h (Files): Remove m4/openat.m4.
3472         * modules/sys_stat (Files): Remove m4/openat.m4.
3473         (Makefile.am): Substitute GNULIB_FCHMODAT, GNULIB_FSTATAT,
3474         GNULIB_MKDIRAT instead of GNULIB_OPENAT.
3475         * modules/unistd (Files): Remove m4/openat.m4.
3476         (Makefile.am): Substitute GNULIB_FCHOWNAT, GNULIB_UNLINKAT instead of
3477         GNULIB_OPENAT.
3478         * m4/fcntl_h.m4 (gl_FCNTL_H_DEFAULTS): Initialize GNULIB_OPENAT,
3479         HAVE_OPENAT here. Don't require gl_OPENAT_DEFAULTS.
3480         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Initialize
3481         GNULIB_FCHMODAT, GNULIB_FSTATAT, GNULIB_MKDIRAT, HAVE_FCHMODAT,
3482         HAVE_FSTATAT, HAVE_MKDIRAT, REPLACE_FSTATAT here. Don't require
3483         gl_OPENAT_DEFAULTS.
3484         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_FCHOWNAT,
3485         GNULIB_UNLINKAT, HAVE_FCHOWNAT, HAVE_UNLINKAT, REPLACE_FCHOWNAT here.
3486         Don't require gl_OPENAT_DEFAULTS.
3487         * m4/openat.m4 (gl_FUNC_OPENAT): Require gl_FCNTL_H_DEFAULTS,
3488         gl_SYS_STAT_H_DEFAULTS, gl_UNISTD_H_DEFAULTS. Set GNULIB_FCHMODAT,
3489         GNULIB_FSTATAT, GNULIB_MKDIRAT, GNULIB_FCHOWNAT, GNULIB_UNLINKAT.
3490         (gl_OPENAT_DEFAULTS): Remove macro.
3491
3492 2009-09-06  Bruno Haible  <bruno@clisp.org>
3493
3494         * modules/openat (configure.ac): Remove unneeded witness.
3495
3496 2009-09-06  Bruno Haible  <bruno@clisp.org>
3497
3498         Set errno to ENOSYS when a function is entirely unsupported.
3499         * lib/chown.c (rpl_chown) [!HAVE_CHOWN]: Set errno to ENOSYS instead of
3500         EOPNOTSUPP.
3501         * lib/lchown.c (lchown) [!HAVE_CHOWN]: Likewise.
3502         * modules/chown (Depends-on): Remove errno.
3503
3504 2009-09-06  Bruno Haible  <bruno@clisp.org>
3505
3506         * doc/posix-headers/fcntl.texi (AT_*): Mention affected platforms.
3507
3508 2009-09-06  Bruno Haible  <bruno@clisp.org>
3509
3510         * lib/sys_stat.in.h: Fix preprocessor command indentation.
3511
3512 2009-09-06  Ben Pfaff  <blp@gnu.org>
3513             Bruno Haible  <bruno@clisp.org>
3514
3515         Work around a glibc bug in strtok_r.
3516         * lib/string.in.h (strtok_r): Replace if REPLACE_STRTOK_R is set.
3517         Undefine if UNDEFINE_STRTOK_R is set.
3518         * lib/strtok_r.c (strtok_r, __strtok_r) [!_LIBC]: Don't undefine.
3519         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
3520         REPLACE_STRTOK_R and UNDEFINE_STRTOK_R.
3521         * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Check against the glibc bug.
3522         * modules/string (Makefile.am): Substitute REPLACE_STRTOK_R,
3523         UNDEFINE_STRTOK_R.
3524         * doc/posix-functions/strtok_r.texi: Mention the glibc 2.7 bug.
3525
3526 2009-09-06  Sergey Poznyakoff  <gray@gnu.org.ua>
3527
3528         exclude: minor fix
3529         * lib/exclude.c: Include wctype.h
3530
3531 2009-09-06  Akim Demaille  <demaille@gostai.com>
3532
3533         bootstrap: improve error message
3534         * build-aux/bootstrap (find_tool): Upon failure, report the list
3535         of candidates.
3536         Honor the initial value of the envvar.
3537
3538 2009-09-05  Eric Blake  <ebb9@byu.net>
3539
3540         symlinkat: new module
3541         * modules/symlinkat: New file.
3542         * lib/symlinkat.c: Likewise.
3543         * m4/symlinkat.m4 (gl_FUNC_SYMLINKAT): Likewise.
3544         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add witnesses.
3545         * modules/unistd (Makefile.am): Use them.
3546         * lib/unistd.in.h (symlinkat, readlinkat): Declare them.
3547         (faccessat) [GNULIB_POSIXCHECK]: Fix typo.
3548         * lib/at-func.c (FUNC_RESULT): New macro, defaulting to int.
3549         * MODULES.html.sh (File system functions): Mention module.
3550         * doc/posix-functions/symlinkat.texi (symlinkat): Likewise.
3551         * doc/posix-functions/readlinkat.texi (readlinkat): Likewise.
3552         * modules/symlinkat-tests: New test.
3553         * tests/test-symlinkat.c: Likewise.
3554
3555         test-openat-safer: add more checks
3556         * tests/test-openat-safer.c (main): Check more code paths.
3557
3558 2009-09-05  Jim Meyering  <meyering@redhat.com>
3559
3560         syntax-check: detect unnecessary inclusion of openat.h
3561         * top/maint.mk (sc_prohibit_openat_without_use): New rule.
3562
3563 2009-09-05  Bruno Haible  <bruno@clisp.org>
3564
3565         Support towlower, towupper.
3566         * doc/posix-functions/towlower.texi: Mention module wctype.
3567         * doc/posix-functions/towupper.texi: Likewise.
3568         * lib/wctype.in.h (towlower, towupper): New functions.
3569         * tests/test-wctype.c: Include stdio.h, stdlib.h.
3570         (ASSERT): New macro.
3571         (e): New variable.
3572         (main): Test also towlower, towupper. Test WEOF argument.
3573         Reported by Alan Hourihane <alanh@fairlite.co.uk>.
3574
3575 2009-09-05  Bruno Haible  <bruno@clisp.org>
3576
3577         Fix conversion behaviour when the input is invalid.
3578         * lib/striconveh.c (mem_cd_iconveh_internal): Fix storing of question
3579         mark occurring in first pass of indirect conversion.
3580         * tests/test-striconveh.c (main): Test conversion of invalid ASCII
3581         input.
3582         Found by clang's static analyzer.
3583
3584 2009-09-05  Bruno Haible  <bruno@clisp.org>
3585
3586         * tests/test-striconveh.c (main): Test indirect conversion on platforms
3587         where direct conversion is possible.
3588
3589 2009-09-04  Eric Blake  <ebb9@byu.net>
3590
3591         openat: fail with ENOENT on empty name
3592         * lib/openat-proc.c (openat_proc_name): Special-case the empty
3593         buffer.
3594
3595         link-follow: fix logic bug in prior patch
3596         * m4/link-follow.m4 (gl_FUNC_LINK_FOLLOWS_SYMLINK): Fix bug that
3597         reversed sense of yes and no in prior patch.  Avoid confusing
3598         compilation failure with desired semantics.
3599
3600         link-follow: accomodate mingw and cross-compilation
3601         * m4/link-follow.m4 (gl_AC_FUNC_LINK_FOLLOWS_SYMLINK): Rename...
3602         (gl_FUNC_LINK_FOLLOWS_SYMLINK): ...to this.  Change
3603         cross-compilation results to -1, to make linkat easier to
3604         implement when cross-compiling.  Trivially support mingw.
3605         * modules/link-follow (configure.ac): Call new name.
3606         * NEWS: Mention this.
3607
3608 2009-09-03  Eric Blake  <ebb9@byu.net>
3609
3610         faccessat: compile replacement
3611         * m4/faccessat.m4 (gl_FUNC_FACCESSAT): Build replacement when
3612         needed.
3613
3614         fts: fix compilation error
3615         * lib/fts.c (includes): Re-add "openat.h", for
3616         openat_needs_fchdir.
3617
3618         faccessat: new module
3619         * modules/faccessat: New file.
3620         * lib/faccessat.c: Likewise.
3621         * m4/faccessat.m4 (gl_FUNC_FACCESSAT): Likewise.
3622         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add witness.
3623         * modules/unistd (Makefile.am): Use it.
3624         * lib/unistd.in.h (faccessat): Declare it.
3625         (F_OK, X_OK, W_OK, R_OK): Provide definitions.
3626         * lib/fcntl.in.h (AT_SYMLINK_FOLLOW, AT_EACCESS): Likewise.
3627         * MODULES.html.sh (File system functions): Mention it.
3628         * doc/posix-functions/faccessat.texi (faccessat): Likewise.
3629         * doc/posix-headers/fcntl.texi (fcntl.h): Likewise.
3630
3631         euidaccess: prefer POSIX over non-standard implementation
3632         * m4/euidaccess.m4 (gl_PREREQ_EUIDACCESS): Check for faccessat.
3633         * lib/euidaccess.c (euidaccess): Use it if available.
3634
3635         openat: make template easier to use
3636         * lib/at-func.c (CALL_FUNC): Allow AT_FUNC_USE_F1_COND and
3637         AT_FUNC_F2 to be undefined.
3638         (VALIDATE_FLAG): New macro; use it to reject bad flags.
3639         (AT_FUNC_USE_F1_COND): Change sense to just flag bit.
3640         * lib/fchmodat.c (AT_FUNC_USE_F1_COND): Adjust.
3641         * lib/fchownat.c (AT_FUNC_USE_F1_COND): Likewise.
3642         * lib/openat.c (AT_FUNC_USE_F1_COND) [fstatat, unlinkat]:
3643         Likewise.
3644         * lib/mkdirat.c (AT_FUNC_F2, AT_FUNC_USE_F1_COND): Delete.
3645         * lib/selinux-at.c (AT_FUNC_F2, AT_FUNC_USE_F1_COND)
3646         [getfileconat, lgetfileconat, setfileconat, lsetfileconat]:
3647         Likewise.
3648
3649         openat: declare in POSIX headers
3650         * NEWS: Mention this.
3651         * modules/openat (configure.ac): Declare witnesses.
3652         (Depends-on): Add fcntl-h, sys_stat, unistd.
3653         (Include): Mention correct headers.
3654         * modules/fcntl-h (Depends-on): Add link-warning.
3655         (Files): Add openat.m4.
3656         (Makefile.am): Substitute witnesses.
3657         * modules/sys_stat (Files, Makefile.am): Likewise.
3658         * modules/unistd (Files, Makefile.am): Likewise.
3659         * m4/openat.m4 (gl_FUNC_OPENAT, gl_FUNC_FCHOWNAT): Set witnesses.
3660         (gl_OPENAT_DEFAULTS): New macro.
3661         * m4/fcntl_h.m4 (gl_FCNTL_H_DEFAULTS): Use it.
3662         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Likewise.
3663         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Likewise.
3664         (SYS_STAT_H): Remove unused variable.
3665         * doc/posix-headers/fcntl.texi (fcntl.h): Update content.
3666         * lib/fcntl--.h (includes): Remove unneeded header.
3667         * lib/openat-safer.c (includes): Likewise.
3668         * lib/openat.h (AT_FDCWD, AT_SYMLINK_NOFOLLOW, AT_REMOVEDIR)
3669         (openat, fstatat, unlinkat, mkdirat, fchmodat, fchownat): Move to
3670         appropriate headers.
3671         (__OPENAT_PREFIX): Delete.
3672         * lib/fcntl.in.h (openat): Provide declaration.
3673         (AT_FDCWD): Fix Solaris bug.
3674         (AT_SYMLINK_NOFOLLOW, AT_REMOVEDIR): Provide macros.
3675         * lib/sys_stat.in.h (fstatat, mkdirat): Provide declaration.
3676         * lib/fchmodat.c (includes):  Adjust to find declaration.
3677         * lib/fchownat.c (includes): Likewise.
3678         * lib/mkdirat.c (includes): Likewise.
3679         * lib/fstatat.c (includes): Likewise.  Ensure original fstatat is
3680         still visible.
3681
3682 2009-09-02  Eric Blake  <ebb9@byu.net>
3683
3684         errno: use consistently
3685         * lib/c-stack.c (ENOTSUP): <errno.h> guarantees a definition.
3686         * lib/canonicalize-lgpl.c (ENAMETOOLONG): Likewise.
3687         * lib/canonicalize.c (ELOOP): Likewise.
3688         * lib/inet_ntop.c (EAFNOSUPPORT): Likewise.
3689         * lib/inet_pton.c (EAFNOSUPPORT): Likewise.
3690         * lib/lchown.c (EOPNOTSUPP): Likewise.
3691         * lib/openat-priv.h (ENOSYS, EOPNOTSUPP): Likewise.
3692         * lib/savewd.c (ESTALE): Likewise.
3693         * lib/settime.c (ENOSYS): Likewise.
3694         * lib/utimens.c (ENOSYS): Likewise.
3695         * lib/xgethostname.c (ENAMETOOLONG): Likewise.
3696         * lib/chdir-safer.c (ELOOP): Likewise.
3697         (chdir_no_follow): Use HAVE_READLINK, not ELOOP, as witness.
3698         * modules/c-stack (Depends-on): Add errno.
3699         * modules/canonicalize (Depends-on): Likewise.
3700         * modules/chdir-safer (Depends-on): Likewise.
3701         * modules/fdopendir (Depends-on): Likewise.
3702         * modules/inet_ntop (Depends-on): Likewise.
3703         * modules/inet_pton (Depends-on): Likewise.
3704         * modules/lchown (Depends-on): Likewise.
3705         * modules/openat (Depends-on): Likewise.
3706         * modules/savewd (Depends-on): Likewise.
3707         * modules/settime (Depends-on): Likewise.
3708         * m4/chdir-safer.m4 (gl_CHDIR_SAFER): Check for readlink.
3709
3710         fts: avoid leaking fds
3711         * modules/fts (Depends-on): Add cloexec.
3712         * lib/fts.c (opendirat, diropen, fts_build): Set close-on-exec
3713         flag.
3714
3715         fts: make directory fds more robust
3716         * lib/fts.c (O_DIRECTORY): Let <fcntl.h> take care of this.
3717         (opendirat): Specify O_DIRECTORY, and add fallbacks for safety.
3718
3719         backupfile, chdir-long, fts, savedir: make safer
3720         * lib/backupfile.c (includes): Use "dirent--.h", since
3721         numbered_backup can write to stderr during readdir.
3722         * lib/savedir.c (includes): Likewise.
3723         * lib/chdir-long.c (includes): Use "fcntl--.h", since openat
3724         emulation can write to stderr on failure.
3725         * lib/fts.c (includes) [!_LIBC]: Likewise for opendir and openat.
3726         * lib/getcwd.c: Document why opendir_safer is unused.
3727         * lib/glob.c: Likewise.
3728         * lib/scandir.c: Likewise.
3729         * lib/openat-proc.c: Likewise, for open_safer.
3730         * modules/backupfile (Depends-on): Add dirent-safer.
3731         * modules/savedir (Depends-on): Likewise.
3732         * modules/fts (Depends-on): Add dirent-safer and openat-safer.
3733         * modules/chdir-long (Depends-on): Add openat-safer.
3734
3735         openat-safer: new module
3736         * modules/openat-safer: New file.
3737         * lib/openat-safer.c: Likewise.
3738         * m4/fcntl-safer.m4 (gl_OPENAT_SAFER): New macro.
3739         * lib/fcntl-safer.h (openat_safer): Declare.
3740         * lib/fcntl--.h (openat): Override.
3741         * MODULES.html.sh (File descriptor based I/O): Mention it.
3742         * lib/openat.h: Add double-inclusion guards.
3743         * lib/openat.c (includes): Only include "fcntl-safer.h", not
3744         "fcntl--.h", so we can implement openat.
3745         * modules/openat-safer-tests: New test.
3746         * tests/test-openat-safer.c: New file.
3747
3748         dirent-safer: new module
3749         * modules/dirent-safer: New file.
3750         * lib/dirent--.h: Likewise.
3751         * lib/dirent-safer.h: Likewise.
3752         * lib/opendir-safer.c: Likewise.
3753         * m4/dirent-safer.m4: Likewise.
3754         * MODULES.html.sh (Enhancements for POSIX:2008): Mention it.
3755         * modules/dirent-safer-tests: New test.
3756         * tests/test-dirent-safer.c: New file.
3757         * lib/fdopendir.c (includes): Ensure fdopendir is also safe.
3758
3759         fdopendir: optimize on mingw
3760         * lib/unistd.in.h (_gl_directory_name): New prototype.
3761         * lib/fchdir.c (_gl_directory_name): Implement it.
3762         (fchdir): Use it to simplify implementation.
3763         * lib/fdopendir.c (fdopendir) [REPLACE_FCHDIR]: Use metadata from
3764         fchdir, when available, to avoid calling [f]chdir().
3765
3766         fdopendir: split into its own module
3767         * lib/openat.c (fdopendir): Move...
3768         * lib/fdopendir.c: ...into new file.
3769         * modules/fdopendir: New module.
3770         * m4/fdopendir.m4 (gl_FUNC_FDOPENDIR): New file.
3771         * modules/openat (Depends-on): Add fdopendir.
3772         * m4/openat.m4 (gl_FUNC_OPENAT): No longer need to check for
3773         fdopendir here.
3774         * modules/savedir (Depends-on): Only need fdopendir, not full
3775         openat.
3776         * lib/savedir.c (include): Use <dirent.h>, not "openat.h".
3777         * lib/openat.h (fdopendir): Drop prototype.
3778         * lib/dirent.in.h (fdopendir): Provide prototype.
3779         * m4/dirent_h.m4 (gl_DIRENT_H_DEFAULTS): Add replacements.
3780         * modules/dirent (Makefile.am): Substitute them.
3781         * MODULES.html.sh (File system functions): Mention it.
3782         * doc/posix-functions/fdopendir.texi (fdopendir): Likewise.
3783         * modules/fdopendir-tests: New file.
3784         * tests/test-fdopendir.c: Likewise.
3785
3786         fchdir: use more consistent macro convention
3787         * lib/fcntl.in.h (_gl_register_fd): Move declaration to unistd.
3788         * lib/sys_stat.in.h (rpl_fstat): Declare via make-time
3789         REPLACE_FCHDIR, rather than relying on config.h macros.
3790         * lib/unistd.in.h (fchdir): Move all fchdir internal declarations
3791         inside a single make-time REPLACE_FCHDIR block, rather than using
3792         the config.h FCHDIR_REPLACEMENT.
3793         * m4/fchdir.m4 (gl_FUNC_FCHDIR): REPLACE_FCHDIR was already
3794         AC_SUBST'd, also AC_DEFINE it.  Don't define FCHDIR_REPLACEMENT.
3795         Manage fstat replacement.
3796         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Pick up
3797         REPLACE_FCHDIR.
3798         * modules/sys_stat (Files): Add m4/unistd_h.m4.
3799         (Makefile.am): Substitute REPLACE_FCHDIR.
3800         * lib/close.c (rpl_close): Use REPLACE_FCHDIR, not
3801         FCHDIR_REPLACEMENT.
3802         * lib/dup-safer.c (dup_safer): Likewise.
3803         * lib/dup2.c (rpl_dup2): Likewise.
3804         * lib/dup3.c (rpl_dup3): Likewise.
3805         * lib/open.c (rpl_open): Likewise.
3806
3807         fchdir: simplify error handling, and support dup3
3808         * modules/fchdir (Depends-on): Use strdup-posix, not strdup.  Add
3809         stdbool, malloc-posix, realloc-posix.
3810         * lib/fchdir.c (struct dir_info_t): Delete saved_errno.
3811         (ensure_dirs_slot): Return false on allocation failure.
3812         (rpl_dup2): Delete.
3813         (_gl_register_dup): New function.
3814         (_gl_unregister_fd, rpl_opendir, rpl_dup): Update callers.
3815         (_gl_register_fd): Close fd on allocation failure.
3816         * lib/fcntl.in.h (_gl_register_fd): Update signature.
3817         * lib/unistd.in.h (_gl_register_dup) [FCHDIR_REPLACEMENT]: New
3818         prototype.
3819         (rpl_dup2_fchdir): Delete prototype.
3820         * lib/open.c (open): Update caller.
3821         * lib/dup2.c (dup2): Track fchdir metadata.
3822         * lib/dup3.c (dup3): Likewise.
3823         * m4/dup2.m4 (gl_REPLACE_DUP2): New macro.
3824         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Use it.
3825
3826 2009-09-02  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3827
3828         * gnulib-tool (func_create_testdir, func_create_megatestdir): Use
3829         AC_CONFIG_HEADERS instead of AM_CONFIG_HEADER. Use AC_CONFIG_FILES and
3830         don't pass arguments to AC_OUTPUT.
3831
3832 2009-09-02  Bruno Haible  <bruno@clisp.org>
3833
3834         * modules/mkdtemp (License): Relicense under LGPLv2+.
3835         Reported by Paolo Bonzini.
3836
3837 2009-09-02  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3838
3839         Replace uses of obsolete autoconf macros in Jim's modules.
3840         The Autoconf macros AC_TRY_CPP, AC_TRY_COMPILE, AC_TRY_LINK and
3841         AC_TRY_RUN have been obsolete since Autoconf 2.55, and each use
3842         can evoke a warning from autoconf when run with -Wobsolete
3843         enabled.  They were declared obsolete for good reasons (see
3844         the `AC_FOO_IFELSE vs AC_TRY_FOO' node in the Autoconf manual,
3845         recently renamed to `AC_ACT_IFELSE vs AC_TRY_ACT'), and we
3846         should not continue using the deprecated macros.
3847         * m4/d-type.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Replace
3848         obsolete Autoconf macros with modern counterparts.
3849         * m4/dirfd.m4 (gl_FUNC_DIRFD): Likewise.
3850         * m4/dos.m4 (gl_AC_DOS): Likewise.
3851         * m4/fpending.m4 (gl_FUNC_FPENDING): Likewise.
3852         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Likewise.
3853         * m4/getloadavg.m4 (gl_PREREQ_GETLOADAVG): Likewise.
3854         * m4/jm-winsz1.m4 (gl_WINSIZE_IN_PTEM): Likewise.
3855         * m4/link-follow.m4 (gl_AC_FUNC_LINK_FOLLOWS_SYMLINK): Likewise.
3856         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Likewise.
3857         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Likewise.
3858         * m4/mode_t.m4 (gl_PROMOTED_TYPE_MODE_T): Likewise.
3859         * m4/rename-dest-slash.m4 (gl_FUNC_RENAME_TRAILING_DEST_SLASH):
3860         Likewise.
3861         * m4/rename.m4 (gl_FUNC_RENAME): Likewise.
3862         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Likewise.
3863         * m4/rpmatch.m4 (gl_PREREQ_RPMATCH): Likewise.
3864         * m4/st_dm_mode.m4 (AC_STRUCT_ST_DM_MODE): Likewise.
3865         * m4/stat-time.m4 (gl_STAT_TIME): Likewise.
3866         * m4/utimes-null.m4 (gl_FUNC_UTIMES_NULL): Likewise.
3867
3868 2009-09-01  Eric Blake  <ebb9@byu.net>
3869
3870         fchdir: fix off-by-one bug in previous patch
3871         * lib/fchdir.c (rpl_fstat): Use correct bounds.
3872         (_gl_unregister_fd): Delete useless if.
3873
3874 2009-09-01  Daniel P. Berrange  <berrange@redhat.com>
3875
3876         maint.mk: sort the list of syntax-check rules
3877         * top/maint.mk (syntax-check-rules): Sort syntax-check rules, so it's
3878         easier to get a sense of progress when the rules are run sequentially
3879         and take a long time.
3880
3881 2009-09-01  Simon Josefsson  <simon@josefsson.org>
3882
3883         * modules/arpa_inet: Use $(MKDIR_P) instead of @MKDIR_P@.
3884         * modules/netinet_in: Likewise.
3885         * modules/sys_file: Likewise.
3886         * modules/sys_ioctl: Likewise.
3887         * modules/sys_select: Likewise.
3888         * modules/sys_socket: Likewise.
3889         * modules/sys_stat: Likewise.
3890         * modules/sys_time: Likewise.
3891         * modules/sys_times: Likewise.
3892         * modules/sys_utsname: Likewise.
3893         * modules/sys_wait: Likewise.
3894
3895 2009-09-01  Jim Meyering  <meyering@redhat.com>
3896
3897         fts: help ensure that return values are not ignored
3898         * lib/fts_.h (__GNUC_PREREQ): Define.
3899         (__attribute_warn_unused_result__): Define.
3900         (fts_children, fts_close, fts_open, fts_read): Declare with
3901         __attribute_warn_unused_result__.
3902
3903         fts: fts_close now fails also when closing a dir file descriptor fails
3904         * lib/fts.c (fts_close): Detect close failure, not just fchdir failure,
3905         and propagate to caller, along with errno.
3906
3907         announce-gen: correct formatting in --help output
3908         * build-aux/announce-gen (usage): Move the one-line description in
3909         --help output "up", to where it belongs, just after Usage:.
3910
3911 2009-08-31  Eric Blake  <ebb9@byu.net>
3912
3913         fchdir: port to mingw
3914         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Check for mingw bug.
3915         * lib/open.c (open) [FCHDIR_REPLACEMENT]: If directories can't be
3916         opened, then use a substitute.
3917         * lib/sys_stat.in.h (fstat) [REPLACE_OPEN_DIRECTORY]: Declare
3918         replacement.
3919         * lib/fchdir.c (fstat) [REPLACE_OPEN_DIRECTORY]: Implement it.
3920         (_gl_register_fd): No need to check stat if open already filters
3921         all directories.
3922         (fchdir): Fix error condition to match POSIX.
3923         * modules/fchdir (Depends-on): Add sys_stat.
3924         * doc/posix-functions/open.texi (open): Document the limitation.
3925         * modules/fchdir-tests: New file.
3926         * tests/test-fchdir.c: Likewise.
3927
3928         canonicalize: allow cross-testing from cygwin to mingw
3929         * modules/canonicalize-tests (configure.ac): Define HAVE_SYMLINK.
3930         (Makefile.am): Pass it through TESTS_ENVIRONMENT.
3931         * modules/canonicalize-lgpl-tests (configure.ac, Makefile.am):
3932         Likewise.
3933         * tests/test-canonicalize.sh: Also skip test if 'ln -s' works, but
3934         target does not support symlinks.
3935         * tests/test-canonicalize-lgpl.sh: Likewise.
3936
3937         chown: avoid compilation warning on mingw
3938         * m4/chown.m4 (gl_FUNC_CHOWN): Recognize missing chown.
3939         * lib/chown.c (rpl_chown) [!HAVE_CHOWN]: Always return failure on
3940         mingw.
3941         * lib/lchown.c (lchown) [!HAVE_CHOWN]: Likewise.
3942         * modules/chown (Depends-on): Add errno.
3943
3944 2009-08-31  Stefano Lattarini  <stefano.lattarini@gmail.com>  (tiny change)
3945
3946         * gnulib-tool: Fix test whether $CONFIG_SHELL has a working 'echo'
3947         command.
3948
3949 2009-08-31  Jim Meyering  <meyering@redhat.com>
3950
3951         canonicalize: remove useless initialization
3952         * lib/canonicalize.c (canonicalize_filename_mode): Remove useless
3953         initialization of local, "end".
3954
3955 2009-08-30  Bruno Haible  <bruno@clisp.org>
3956
3957         Fix an unnecessary error on Solaris 10 on NFSv3 file systems.
3958         * lib/set-mode-acl.c (qset_acl) [Solaris 10 new]: Treat EOPNOTSUPP like
3959         ENOSYS.
3960
3961 2009-08-30  Bruno Haible  <bruno@clisp.org>
3962
3963         * tests/test-pipe-filter-ii1.sh: Prefer /usr/xpg6/bin/tr over
3964         /usr/xpg4/bin/tr when it exists.
3965         * tests/test-pipe-filter-gi1.sh: Likewise.
3966
3967 2009-08-30  Bruno Haible  <bruno@clisp.org>
3968
3969         Work around deficient /usr/bin/id program on Solaris.
3970         * tests/test-file-has-acl.sh (ID): New variable.
3971         * tests/test-set-mode-acl.sh (ID): Likewise.
3972         * tests/test-copy-acl.sh (ID): Likewise.
3973         * tests/test-copy-file.sh (ID): Likewise.
3974
3975 2009-08-30  Bruno Haible  <bruno@clisp.org>
3976
3977         New module 'xstriconveh'.
3978         * lib/xstriconveh.h: New file.
3979         * lib/xstriconveh.c: New file.
3980         * modules/xstriconveh: New file.
3981
3982 2009-08-30  Bruno Haible  <bruno@clisp.org>
3983
3984         Make it easier to use mem_cd_iconveh.
3985         * lib/striconveh.h (iconveh_t): New type.
3986         (iconveh_open, iconveh_close): New declarations.
3987         (mem_cd_iconveh, str_cd_iconveh): Replace the three iconv_t arguments
3988         with a single 'const iconveh_t *' argument.
3989         * lib/striconveh.c (iconveh_open, iconveh_close): New functions.
3990         (mem_cd_iconveh, str_cd_iconveh): Replace the three iconv_t arguments
3991         with a single 'const iconveh_t *' argument.
3992         (mem_iconveh, str_iconveh): Use iconveh_open, iconveh_close.
3993         * tests/test-striconveh.c (main): Update.
3994         * NEWS: Mention the change.
3995
3996 2009-08-30  Bruno Haible  <bruno@clisp.org>
3997
3998         * doc/posix-functions/iconv_open.texi: Mention indirect conversion
3999         problem.
4000
4001 2009-08-30  Bruno Haible  <bruno@clisp.org>
4002
4003         Work around iconv_open problem on Solaris.
4004         * lib/iconv_open-solaris.gperf: New file.
4005         * lib/iconv_open.c (ICONV_FLAVOR_SOLARIS): New macro.
4006         * m4/iconv_open.m4 (gl_FUNC_ICONV_OPEN): Also handle Solaris.
4007         * modules/iconv_open (Files): Add lib/iconv_open-solaris.gperf.
4008         (Makefile.am): Add rule for iconv_open-solaris.h. Augment
4009         BUILT_SOURCES, MOSTLYCLEANFILES, MAINTAINERCLEANFILES, EXTRA_DIST.
4010         * doc/posix-functions/iconv_open.texi: Mention the Solaris problem.
4011
4012 2009-08-29  Jim Meyering  <meyering@redhat.com>
4013
4014         maint.mk: remove more coreutils-specific targets; XZ_OPT=-9ev
4015         * top/maint.mk (cvs-check): Remove target; it was just an alias
4016         to the better-named vc-diff-check.
4017         (maintainer-distcheck): Remove rule.  It was used only from
4018         the (alpha/beta/major) target, and all of its commands but one
4019         were coreutils-specific.
4020         (vc-dist): Remove rule.
4021         (alpha beta major): Run "$(MAKE) distcheck" explicitly.
4022         Run vc-diff-check, not vc-dist.
4023         Run $(MAKE) dist with XZ_OPT=-9ev.  Note spelling, with "-".
4024
4025 2009-08-27  Bruno Haible  <bruno@clisp.org>
4026
4027         * tests/test-bitrotate.c (main): Remove test that uses a shift count
4028         of 0.
4029
4030 2009-08-27  Bruno Haible  <bruno@clisp.org>
4031
4032         * tests/test-func.c (main): Don't verify sizeof __func__ on SunPRO C
4033         compilers.
4034         * doc/func.texi: Document the SunPRO C bug.
4035
4036 2009-08-27  Bruno Haible  <bruno@clisp.org>
4037
4038         Fix link error on Solaris.
4039         * tests/test-parse-duration.c (xstrdup): Remove function.
4040
4041 2009-08-26  Pádraig Brady  <P@draigbrady.com>
4042
4043         ignore-value: handle pointer types, too
4044         * lib/ignore-value.h (__attribute__): Remove definition.
4045         (ignore_value): Remove use of "__attribute__ ((unused))" in favor
4046         of a more concise and more-often effective "(void) i" statement.
4047         (ignore_ptr): New function to suppress warnings from functions that
4048         return pointers, and to make it explicit that one function doesn't
4049         handle all cases.
4050
4051 2009-08-25  Bruno Haible  <bruno@clisp.org>
4052
4053         dup2: work around a Linux bug.
4054         * m4/dup2.m4 (gl_FUNC_DUP2): Test for the Linux bug.
4055         * lib/dup2.c (rpl_dup2): Correct the return value if it is -EBADF.
4056         * doc/posix-functions/dup2.texi: Mention the Linux bug.
4057         Reported by Simon Josefsson.
4058
4059 2009-08-25  Jim Meyering  <meyering@redhat.com>
4060
4061         libguestfs uses gnulib
4062         * users.txt: Add libguestfs.
4063
4064 2009-08-24  Eric Blake  <ebb9@byu.net>
4065
4066         dup2, pipe2: fix some recent test failures on cygwin 1.5.x
4067         * lib/pipe2.c (includes): Add binary-io.h.
4068         * lib/dup2.c (rpl_dup2): Correct buggy errno value.
4069
4070 2009-08-24  Bruno Haible  <bruno@clisp.org>
4071
4072         Tolerate declared but missing accept4 syscall.
4073         * lib/accept4.c (accept4): Invoke original accept4 function first, if
4074         available.
4075         * lib/sys_socket.in.h (accept4): If the function is already present,
4076         override it.
4077         * m4/accept4.m4 (gl_FUNC_ACCEPT4): Remove AC_LIBOBJ invocation.
4078         * modules/accept4 (Makefile.am): Compile accept4.c always.
4079         Reported by Paolo Bonzini and Eric Blake.
4080
4081 2009-08-23  Bruno Haible  <bruno@clisp.org>
4082
4083         New module 'accept4'.
4084         * lib/sys_socket.in.h (accept4): New declaration.
4085         * lib/accept4.c: New file.
4086         * m4/accept4.m4: New file.
4087         * m4/sys_socket_h.m4 (gl_SYS_SOCKET_H_DEFAULTS): Initialize
4088         GNULIB_ACCEPT4, HAVE_ACCEPT4.
4089         * modules/sys_socket (Makefile.am): Substitute GNULIB_ACCEPT4,
4090         HAVE_ACCEPT4.
4091         * modules/accept4: New file.
4092         * doc/glibc-functions/accept4.texi: Mention the new module.
4093
4094 2009-08-24  Jim Meyering  <meyering@redhat.com>
4095
4096         progname: also set global program_invocation_name, when possible
4097         Before this change, a libtool-enabled program that calls glibc's
4098         error function would report the program name as
4099         "/abs/dir/.libs/lt-program_name" rather than the desired program_name.
4100         * modules/progname (configure.ac): Check for a declaration of
4101         program_invocation_name.
4102         * lib/progname.c:  Include <errno.h>.
4103         (set_program_name) [HAVE_DECL_PROGRAM_INVOCATION_NAME]:
4104         Set program_invocation_name.
4105
4106 2009-08-23  Bruno Haible  <bruno@clisp.org>
4107
4108         * lib/dup3.c: Include <string.h>.
4109
4110 2009-08-23  Bruno Haible  <bruno@clisp.org>
4111
4112         * lib/dup3.c (dup3): Test only once whether the system actually exists.
4113         * lib/pipe2.c (pipe2): Likewise.
4114         Suggested by Eric Blake.
4115
4116 2009-08-23  Bruno Haible  <bruno@clisp.org>
4117
4118         Tolerate declared but missing dup3 syscall.
4119         * lib/dup3.c (dup3): Invoke original dup3 function first, if available.
4120         * lib/unistd.in.h (dup3): If the function is already present,
4121         override it.
4122         * m4/dup3.m4 (gl_FUNC_DUP3): Remove AC_LIBOBJ invocation.
4123         * modules/dup3 (Makefile.am): Compile dup3.c always.
4124         Reported by Paolo Bonzini.
4125
4126 2009-08-23  Bruno Haible  <bruno@clisp.org>
4127
4128         Tolerate declared but missing pipe2 syscall.
4129         * lib/pipe2.c (pipe2): Invoke original pipe2 function first, if
4130         available.
4131         * lib/unistd.in.h (pipe2): If the function is already present,
4132         override it.
4133         * m4/pipe2.m4 (gl_FUNC_PIPE2): Remove AC_LIBOBJ invocation.
4134         * modules/pipe2 (Makefile.am): Compile pipe2.c always.
4135         Reported by Paolo Bonzini.
4136
4137 2009-08-23  Bruno Haible  <bruno@clisp.org>
4138
4139         * lib/pipe2.c (pipe2): Move #ifs inside function.
4140
4141 2009-08-22  Joel E. Denny  <jdenny@clemson.edu>
4142
4143         quotearg: document limitations of quote_these_too
4144         * lib/quotearg.c (quotearg_buffer_restyled): Add comments where
4145         those limitations are created.
4146         * lib/quotearg.h (set_char_quoting): Document that digits and
4147         letters that are special after backslash are not permitted.
4148         (quotearg_char): Cross-reference set_char_quoting documentation.
4149
4150 2009-08-23  Joel E. Denny  <jdenny@clemson.edu>
4151
4152         quotearg: implement custom_quoting_style
4153         * lib/quotearg.c: (struct quoting_options): Add left_quote and
4154         right_quote fields.
4155         (set_custom_quoting): New public function.
4156         (quotearg_buffer_restyled): Add left_quote and right_quote
4157         arguments, handle them very much like locale quoting, and update
4158         all uses.
4159         (quotearg_n_custom): New public function.
4160         (quotearg_n_custom_mem): New public function.
4161         (quotearg_custom): New public function.
4162         (quotearg_custom_mem): New public function.
4163         * lib/quotearg.h: Prototype and document new public functions.
4164         (enum quoting_style): For escape_quoting_style and
4165         clocale_quoting_style, comment that QA_SPLIT_TRIGRAPHS is
4166         ignored even though they're otherwise like c_quoting_style.
4167         Add custom_quoting_style member and document with comparison to
4168         clocale_quoting_style.
4169         * tests/test-quotearg.c (custom_quotes): New array.
4170         (custom_results): New array.
4171         (main): Extend to test custom quoting.
4172
4173 2009-08-22  Joel E. Denny  <jdenny@clemson.edu>
4174
4175         quotearg: fix right quote escaping when it's in quote_these_too
4176         * lib/quotearg.c (quotearg_buffer_restyled): Upon seeing a right
4177         quote, be sure to prepend only one backslash.
4178         * tests/test-quotearg.c (use_quote_double_quotes): New function.
4179         (main): Test it.
4180
4181 2009-08-22  Joel E. Denny  <jdenny@clemson.edu>
4182
4183         quotearg-tests: test escaping of embedded locale quotes
4184         * tests/test-quotearg.c (struct result_strings): Add member for
4185         new input.
4186         (LQ_ENC, RQ_ENC, RQ_ESC): New macros.
4187         (inputs): Add new input.
4188         (results_g): Add expected results.
4189         (flag_results): Likewise.
4190         (locale_results): Likewise.
4191         (compare_strings): Check those.
4192
4193 2009-08-23  Bruno Haible  <bruno@clisp.org>
4194
4195         Tests for module 'dup3'.
4196         * modules/dup3-tests: New file.
4197         * tests/test-dup3.c: New file.
4198
4199         New module 'dup3'.
4200         * lib/unistd.in.h (dup3): New declaration.
4201         * lib/dup3.c: New file.
4202         * m4/dup3.m4: New file.
4203         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_DUP3 and
4204         HAVE_DUP3.
4205         * modules/unistd (Makefile.am): Substitute GNULIB_DUP3 and HAVE_DUP3.
4206         * modules/dup3: New file.
4207         * doc/glibc-functions/dup3.texi: Mention the new module.
4208
4209 2009-08-23  Bruno Haible  <bruno@clisp.org>
4210
4211         Tweak the dup2 test.
4212         * tests/test-dup2.c (main): Create the test file empty. Verify that an
4213         out-of-range fd yields EBADF. Verify that after writing to /dev/null,
4214         the test file is still empty. Fix argument order of lseek.
4215
4216 2009-08-23  Bruno Haible  <bruno@clisp.org>
4217
4218         Avoid test link errors when the modules getopt-gnu, gettext are used.
4219         * modules/getopt-posix-tests (Makefile.am): Define test_getopt_LDADD.
4220         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
4221
4222 2009-08-23  Bruno Haible  <bruno@clisp.org>
4223
4224         Fix getdtablesize() on mingw.
4225         * lib/getdtablesize.c (getdtablesize): Implement differently.
4226         * lib/unistd.in.h (getdtablesize): Improve comment.
4227
4228 2009-08-23  Bruno Haible  <bruno@clisp.org>
4229
4230         New module 'mkostemp'.
4231         Based on Ulrich Drepper's 2007-08-10 change in glibc.
4232         * lib/stdlib.in.h (mksotemp): New declaration.
4233         * lib/mkostemp.c: New file, from glibc with modifications.
4234         * lib/tempname.h (GT_FILE): Remove outdated comment.
4235         (gen_tempname): Add flags argument.
4236         * lib/tempname.c (__GT_BIGFILE): Remove macro.
4237         (__GT_FILE): Map to 1.
4238         (small_open, large_open): Remove macros.
4239         (__gen_tempname): Add flags argument. Remove code for __GT_BIGFILE.
4240         * lib/mkstemp.c (mkstemp): Update.
4241         * lib/mkdtemp.c (mkdtemp): Likewise.
4242         * m4/mkostemp.m4: New file.
4243         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_MKOSTEMP,
4244         HAVE_MKOSTEMP.
4245         * modules/stdlib (Makefile.am): Substitute GNULIB_MKOSTEMP,
4246         HAVE_MKOSTEMP.
4247         * modules/mkostemp: New file, based on modules/mkstemp.
4248         * doc/glibc-functions/mkostemp.texi: Mention the new module.
4249         * NEWS: Mention the change.
4250
4251 2009-08-23  Bruno Haible  <bruno@clisp.org>
4252
4253         * lib/pipe2.c (pipe2): Support O_TEXT, O_BINARY on all platforms.
4254         Reported by Eric Blake.
4255
4256 2009-08-23  Bruno Haible  <bruno@clisp.org>
4257
4258         * lib/pipe2.c (pipe2): Fix test of fcntl's return value.
4259         Reported by Eric Blake.
4260
4261 2009-08-23  Bruno Haible  <bruno@clisp.org>
4262
4263         * modules/fchdir (Depends-on): Use fcntl-h instead of fcntl.
4264         * modules/pipe2 (Depends-on): Likewise.
4265
4266 2009-08-23  Eric Blake  <ebb9@byu.net>
4267
4268         fcntl-h: add O_TTY_INIT support
4269         * lib/fcntl.in.h (O_TTY_INIT): Support another POSIX macro.
4270         * tests/test-fcntl-h.c (o): Test it.
4271         * doc/posix-headers/fcntl.texi (fcntl.h): Update documentation.
4272
4273         fcntl-h: rename from fcntl, in preparation for fcntl(2)
4274         * modules/fcntl: Move <fcntl.h> header replacement...
4275         * modules/fcntl-h: ...to new name, so as not to collide with
4276         like-named function.
4277         * tests/test-fcntl.c: Rename...
4278         * tests/test-fcntl-h.c: ...to this.  Test FD_CLOEXEC.
4279         * modules/fcntl-tests: Rename...
4280         * modules/fcntl-h-tests: ...to this.  Update test file name.
4281         * modules/chdir-long (Depends-on): Update clients.
4282         * modules/chdir-safer (Depends-on): Likewise.
4283         * modules/fcntl-safer (Depends-on): Likewise.
4284         * modules/fts (Depends-on): Likewise.
4285         * modules/mkancesdirs (Depends-on): Likewise.
4286         * modules/mkdir-p (Depends-on): Likewise.
4287         * modules/open (Depends-on): Likewise.
4288         * modules/savewd (Depends-on): Likewise.
4289         * MODULES.html.sh (systems lacking POSIX:2008): Update name.
4290         * doc/posix-headers/fcntl.texi (fcntl.h): Update documentation.
4291
4292 2009-08-22  Bruno Haible  <bruno@clisp.org>
4293
4294         * modules/binary-io (License): Relicense under LGPL.
4295         * modules/pipe2 (License): Likewise.
4296
4297 2009-08-22  Bruno Haible  <bruno@clisp.org>
4298
4299         * lib/pipe-filter-ii.c (pipe_filter_ii_execute): Fix test of fcntl's
4300         return value.
4301         * lib/pipe-filter-gi.c (filter_init): Likewise.
4302         Reported by Eric Blake.
4303
4304 2009-08-22  Bruno Haible  <bruno@clisp.org>
4305
4306         * lib/pipe.c (create_pipe): Use pipe2 instead of _pipe.
4307         * modules/pipe (Depends-on): Add pipe2.
4308
4309 2009-08-22  Bruno Haible  <bruno@clisp.org>
4310
4311         Tests for module 'pipe2'.
4312         * modules/pipe2-tests: New file.
4313         * tests/test-pipe2.c: New file.
4314
4315         New module 'pipe2'.
4316         * lib/unistd.in.h (pipe2): New declaration.
4317         * lib/pipe2.c: New file.
4318         * m4/pipe2.m4: New file.
4319         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_PIPE2 and
4320         HAVE_PIPE2.
4321         * modules/unistd (Makefile.am): Substitute GNULIB_PIPE2 and HAVE_PIPE2.
4322         * modules/pipe2: New file.
4323         * doc/glibc-functions/pipe2.texi: Mention the new module.
4324
4325 2009-08-22  Bruno Haible  <bruno@clisp.org>
4326
4327         Reference some new glibc functions.
4328         * doc/glibc-functions/accept4.texi: New file.
4329         * doc/glibc-functions/dup3.texi: New file.
4330         * doc/glibc-functions/mkostemp.texi: New file.
4331         * doc/glibc-functions/pipe2.texi: New file.
4332         * doc/gnulib.texi (Glibc stdlib.h): Refer to mkostemp.
4333         (Glibc sys/socket.h): Refer to accept4.
4334         (Glibc unistd.h): Refer to dup3, pipe2.
4335         Reported by Eric Blake.
4336
4337 2009-08-22  Jim Meyering  <meyering@redhat.com>
4338             Bruno Haible  <bruno@clisp.org>
4339
4340         annotate automake snippets with $(AM_V_GEN) and $(AM_V_at)
4341         This makes it so packages using automake-1.11's silent-rules option
4342         can print e.g., a single "GEN    configmake.h" line, rather than
4343         the 30+ statements that perform the job.  If you want to see the
4344         actual commands, you can still run "make V=1".
4345         * modules/alloca-opt: Add $(AM_V_GEN) and $(AM_V_at) prefixes
4346         so that make output is abbreviated when those variables are defined
4347         appropriately.
4348         * modules/argz: Likewise.
4349         * modules/arpa_inet: Likewise.
4350         * modules/byteswap: Likewise.
4351         * modules/configmake: Likewise.
4352         * modules/dirent: Likewise.
4353         * modules/errno: Likewise.
4354         * modules/fcntl: Likewise.
4355         * modules/float: Likewise.
4356         * modules/fnmatch: Likewise.
4357         * modules/getopt-posix: Likewise.
4358         * modules/glob: Likewise.
4359         * modules/iconv_open: Likewise.
4360         * modules/inttypes: Likewise.
4361         * modules/localcharset: Likewise.
4362         * modules/locale: Likewise.
4363         * modules/math: Likewise.
4364         * modules/netdb: Likewise.
4365         * modules/netinet_in: Likewise.
4366         * modules/poll: Likewise.
4367         * modules/posix_spawnp-tests: Likewise.
4368         * modules/sched: Likewise.
4369         * modules/search: Likewise.
4370         * modules/selinux-h: Likewise.
4371         * modules/signal: Likewise.
4372         * modules/spawn: Likewise.
4373         * modules/stdarg: Likewise.
4374         * modules/stdbool: Likewise.
4375         * modules/stddef: Likewise.
4376         * modules/stdint: Likewise.
4377         * modules/stdio: Likewise.
4378         * modules/stdlib: Likewise.
4379         * modules/string: Likewise.
4380         * modules/strings: Likewise.
4381         * modules/sys_file: Likewise.
4382         * modules/sys_ioctl: Likewise.
4383         * modules/sys_select: Likewise.
4384         * modules/sys_socket: Likewise.
4385         * modules/sys_stat: Likewise.
4386         * modules/sys_time: Likewise.
4387         * modules/sys_times: Likewise.
4388         * modules/sys_utsname: Likewise.
4389         * modules/sys_wait: Likewise.
4390         * modules/sysexits: Likewise.
4391         * modules/time: Likewise.
4392         * modules/unistd: Likewise.
4393         * modules/wchar: Likewise.
4394         * modules/wctype: Likewise.
4395
4396 2009-08-22  Jim Meyering  <meyering@redhat.com>
4397
4398         announce-gen: detect write failure
4399         * build-aux/announce-gen: Add Coda at end.
4400         Remove equivalent-but-more-verbose block at top.
4401
4402 2009-08-19  Akim Demaille  <demaille@gostai.com>
4403
4404         bootstrap: --help to stdout.
4405         * bootstrap (usage): Don't send --help to stderr.
4406         Use a here doc instead of a long string.
4407
4408 2009-08-21  Eric Blake  <ebb9@byu.net>
4409
4410         test-popen-safer: split from test-popen
4411         * tests/test-popen.c (main): Move...
4412         * tests/test-popen.h: ...into new file.
4413         * tests/test-popen-safer2.c: New file.
4414         * modules/popen-tests (Files): Add test-popen.h.
4415         * modules/popen-safer-tests (Files): Add test-popen-safer2.c.
4416         Suggested by Bruno Haible.
4417
4418         test-fcntl-safer: split from test-open
4419         * tests/test-open.c (main): Move...
4420         * tests/test-open.h: ...into new file.
4421         * tests/test-fcntl-safer.c: New file.
4422         * modules/open-tests (Files): Add test-open.h.
4423         * modules/fcntl-safer-tests: New file.
4424         Suggested by Bruno Haible.
4425
4426         test-fopen-safer: split from test-fopen
4427         * tests/test-fopen.c (main): Move...
4428         * tests/test-fopen.h: ...into new file.
4429         * tests/test-fopen-safer.c: New file.
4430         * modules/fopen-tests (Files): Add test-fopen.h.
4431         * modules/fopen-safer-tests: New file.
4432         Suggested by Bruno Haible.
4433
4434 2009-08-21  Paolo Bonzini  <bonzini@gnu.org>
4435
4436         popen-safer: test O_CLOEXEC at run-time.
4437         * lib/popen-safer.c: Test O_CLOEXEC at run-time.
4438
4439 2009-08-21  Paolo Bonzini  <bonzini@gnu.org>
4440
4441         fcntl: move more flags to the header
4442         * lib/cloexec.c: Do not define FD_CLOEXEC here.
4443         * lib/popen-safer.c: Do not alias O_NOINHERIT to O_CLOEXEC here.
4444         * lib/fcntl.in.h: Do both things here.
4445
4446 2009-08-21  Jim Meyering  <meyering@redhat.com>
4447
4448         consistently remove $@-t before redirecting to it
4449         * modules/argz: Remove $@-t and $@ before redirecting to the former.
4450         * modules/alloca-opt: Likewise.
4451         * modules/byteswap: Likewise.
4452         * modules/fnmatch: Likewise.
4453         * modules/getopt-posix: Likewise.
4454         * modules/glob: Likewise.
4455         * modules/poll: Likewise.
4456         * modules/posix_spawnp-tests: Likewise.
4457         * modules/sys_socket: Likewise.
4458         * modules/sysexits: Likewise.
4459
4460 2009-08-21  Eric Blake  <ebb9@byu.net>
4461
4462         popen: simplify access to original popen
4463         * lib/popen.c (rpl_popen): No need to worry about popen being a
4464         macro.
4465         Reported by Bruno Haible.
4466
4467 2009-08-20  Eric Blake  <ebb9@byu.net>
4468
4469         build: avoid some compiler warnings
4470         * lib/selinux-at.h: Use dir_fd, not dirfd, to avoid shadowing.
4471         * lib/exclude.c (fnmatch_pattern_has_wildcards): Use correct
4472         type.
4473         (new_exclude_segment, excluded_file_pattern_p)
4474         (excluded_file_name_p): Reduce scope.
4475         * lib/vasnprintf.c (decimal_point_char): Avoid warning on
4476         old-style declaration.
4477
4478 2009-08-20  Simon Josefsson  <simon@josefsson.org>
4479
4480         * tests/test-exclude1.sh: Handle Windows EOL.
4481         * tests/test-exclude2.sh: Likewise.
4482         * tests/test-exclude3.sh: Likewise.
4483         * tests/test-exclude4.sh: Likewise.
4484         * tests/test-exclude5.sh: Likewise.
4485         * tests/test-exclude6.sh: Likewise.
4486         * tests/test-exclude7.sh: Likewise.
4487
4488 2009-08-19  Akim Demaille  <demaille@gostai.com>
4489
4490         bootstrap: find sha1sum when named gsha1sum.
4491         * bootstrap (find_tool): New.
4492         ($SHA1SUM): New.
4493         Use it.
4494
4495 2009-08-20  Jim Meyering  <meyering@redhat.com>
4496
4497         maint.mk: _header_without_use: fix a quoting bug and remove a bash'ism
4498         * top/maint.mk (_header_without_use): Use "\\\\", not "\\" in the sed
4499         expression that converts "." in a file name to "\." in the resulting
4500         regexp.  Start with a dummy statement, so that prior shell variable
4501         definitions are expanded portably.  Reported by Simon Josefsson.
4502
4503 2009-08-20  Paolo Bonzini  <bonzini@gnu.org>
4504
4505         Fix polling for writeability of a screen buffer.
4506         * lib/poll.c: Distinguish input and screen buffers for the
4507         Win32 implementation.
4508         * lib/select.c: Likewise.
4509
4510 2009-08-19  Eric Blake  <ebb9@byu.net>
4511
4512         popen-safer: prevent popen from clobbering std descriptors
4513         * modules/popen-safer: New file.
4514         * lib/popen-safer.c: Likewise.
4515         * m4/stdio-safer.m4 (gl_POPEN_SAFER): New macro.
4516         * lib/stdio--.h (popen): Provide override.
4517         * lib/stdio-safer.h (popen_safer): Provide declaration.
4518         * tests/test-popen.c (includes): Partially test this.
4519         * modules/popen-safer-tests: New file, for more tests.
4520         * tests/test-popen-safer.c: Likewise.
4521         * MODULES.html.sh (file stream based Input/Output): Mention it.
4522
4523         tests: test some of the *-safer modules
4524         * modules/fopen-safer (Depends-on): Add fopen.
4525         * modules/fcntl-safer (Depends-on): Add fcntl.
4526         * modules/stdlib-safer (Depends-on): Add stdlib.
4527         (configure.ac): Set indicator.
4528         * modules/unistd-safer (configure.ac): Likewise.
4529         * modules/tmpfile-safer (configure.ac): Likewise.
4530         (Depends-on): Add tmpfile.
4531         * lib/stdio--.h (fopen, tmpfile): Don't override unless module is
4532         active.
4533         * tests/test-fopen.c (includes): Test safer versions when they are
4534         in use.
4535         * tests/test-open.c (includes): Likewise.
4536
4537         popen: fix cygwin 1.5 bug when stdin closed
4538         * doc/posix-functions/popen.texi (popen): Document cygwin bugs.
4539         * modules/popen: New file.
4540         * modules/popen-tests: Likewise.
4541         * tests/test-popen.c: Likewise.
4542         * m4/popen.m4: Likewise.
4543         * lib/popen.c: Likewise.
4544         * lib/stdio.in.h (popen): New declaration.
4545         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Add popen.
4546         * modules/stdio (Makefile.am): Likewise.
4547         * MODULES.html.sh (systems lacking POSIX:2008): Mention it.
4548
4549 2009-08-17  Joel E. Denny  <jdenny@clemson.edu>
4550
4551         maint.mk: give full control over update-copyright exclusions
4552         * top/maint.mk (VC_LIST_EXCEPT): Instead of ChangeLog, use
4553         ${VC_LIST_EXCEPT_DEFAULT-ChangeLog} as the default exclusion.
4554         (update-copyright): Don't force inclusion of top-level
4555         ChangeLog.  Don't force exclusion of all COPYING files, but make
4556         them the default exclusion instead.
4557
4558 2009-08-16  Bruno Haible  <bruno@clisp.org>
4559
4560         Fix test failures on Solaris 10.
4561         * tests/uniconv/test-u8-conv-from-enc.c (main): Disable autodetect_jp
4562         tests when Solaris iconv() is used.
4563         * tests/uniconv/test-u16-conv-from-enc.c (main): Likewise.
4564         * tests/uniconv/test-u32-conv-from-enc.c (main): Likewise.
4565         * tests/uniconv/test-u8-strconv-from-enc.c (main): Likewise.
4566         * tests/uniconv/test-u16-strconv-from-enc.c (main): Likewise.
4567         * tests/uniconv/test-u32-strconv-from-enc.c (main): Likewise.
4568
4569 2009-08-16  Bruno Haible  <bruno@clisp.org>
4570
4571         Fix test failures on Solaris 10.
4572         * tests/test-pipe-filter-ii1.sh: Determine the filename of a working
4573         'tr' program and pass it as first argument.
4574         * tests/test-pipe-filter-gi1.sh: Likewise.
4575         * tests/test-pipe-filter-ii1.c (main): Except the filename of a 'tr'
4576         program as first argument.
4577         * tests/test-pipe-filter-gi1.c (main): Likewise.
4578
4579 2009-08-16  Eric Blake  <ebb9@byu.net>
4580
4581         fpurge: fix previous commits
4582         * modules/fpurge (Makefile.am): Make replacement conditional,
4583         partially reverting 2007-04-29 change; missed in previous
4584         attempt.
4585         * m4/fpurge.m4 (gl_FUNC_FPURGE): Also compile fpurge.c when fpurge
4586         is missing.
4587
4588 2009-08-16  Bruno Haible  <bruno@clisp.org>
4589
4590         Clarify fpurge's effect on the file position.
4591         * lib/stdio.in.h (fpurge): Specify the file position after fpurge.
4592         * tests/test-fpurge.c (main): Make a second pass for checking the file
4593         position.
4594
4595 2009-08-16  Bruno Haible  <bruno@clisp.org>
4596
4597         * m4/fpurge.m4 (gl_FUNC_FPURGE): Don't compile fpurge.c if only the
4598         declaration of fpurge is missing.
4599         * tests/test-fpurge.c (main): Check that the file has not more contents
4600         than expected. Close the file before removing it.
4601
4602 2009-08-15  Eric Blake  <ebb9@byu.net>
4603
4604         fpurge: don't wrap working cygwin implementation
4605         * lib/fpurge.c (fpurge): Fix comment typo.
4606         * m4/fpurge.m4 (gl_FUNC_FPURGE): Detect BSD bug, allowing cygwin
4607         1.7 to avoid replacement.
4608         * tests/test-fpurge.c (main): Enhance test.
4609
4610 2009-08-15  Eric Blake  <ebb9@byu.net>
4611         and Jim Meyering  <meyering@redhat.com>
4612
4613         test-update-copyright: skip if perl is insufficient
4614         * tests/test-update-copyright.sh: Failure to run maintainer tool
4615         should not cause testsuite failure on cygwin 1.5.
4616
4617 2009-08-14  Eric Blake  <ebb9@byu.net>
4618
4619         doc: mention more functions added in cygwin 1.7.0
4620         * doc/posix-headers/limits.texi (limits.h): Update for recent
4621         cygwin additions.
4622         * doc/posix-headers/wordexp.texi (wordexp.h): Likewise.
4623         * doc/posix-functions/wordexp.texi (wordexp): Likewise.
4624         * doc/posix-functions/wordfree.texi (wordfree): Likewise.
4625         * doc/posix-functions/setlocale.texi (setlocale): Likewise.
4626         * doc/posix-functions/nl_langinfo.texi (nl_langinfo): Likewise.
4627
4628 2009-08-14  Eric Blake  <ebb9@byu.net>
4629
4630         maint.mk: simplify update-copyright rule
4631         * top/maint.mk (update-copyright-local): Delete, and document how
4632         to do it in cfg.mk instead.
4633         (update-copyright-exclude-regexp): Delete, and document how to do
4634         it in .x-update-copyright instead.
4635         (update-copyright): Simplify, thanks to VC_LIST_EXCEPT.  Don't
4636         exclude ChangeLog.
4637
4638 2009-08-14  Bruno Haible  <bruno@clisp.org>
4639
4640         * m4/wchar.m4 (gl_WCHAR_H): Undo invalid optimization in last commit.
4641
4642 2009-08-14  Joel E. Denny  <jdenny@clemson.edu>
4643
4644         maint.mk: support update-copyright-env
4645         * top/maint.mk (update-copyright-env): Define place-holder.
4646         (update-copyright): Expand $(update-copyright-env) before
4647         invoking update-copyright.
4648
4649 2009-08-14  Joel E. Denny  <jdenny@clemson.edu>
4650
4651         update-copyright: implement forced reformatting
4652         * build-aux/update-copyright: Implement and document
4653         UPDATE_COPYRIGHT_FORCE.
4654         * tests/test-update-copyright.sh: Test it.
4655
4656 2009-08-14  Eric Blake  <ebb9@byu.net>
4657         and Bruno Haible  <bruno@clisp.org>
4658
4659         stddef: fix NetBSD 5.0 NULL bug, rather than working around it
4660         * tests/test-locale.c: Revert previous patch related to NULL.
4661         * tests/test-stdio.c: Likewise.
4662         * tests/test-stdlib.c: Likewise.
4663         * tests/test-string.c: Likewise.
4664         * tests/test-unistd.c: Likewise.
4665         * modules/time-tests (Depends-on): Add verify.
4666         * modules/wchar-tests (Depends-on): Likewise.
4667         * tests/test-time.c: Test for NULL compliance.
4668         * tests/test-wchar.c: Likewise.
4669         * modules/locale (Depends-on): Add stddef.
4670         * modules/stdio (Depends-on): Likewise.
4671         * modules/stdlib (Depends-on): Likewise.
4672         * modules/string (Depends-on): Likewise.
4673         * modules/time (Depends-on): Likewise.
4674         * modules/unistd (Depends-on): Likewise.
4675         * modules/wchar (Depends-on): Likewise.
4676         * lib/locale.in.h (includes): Use <stddef.h> to fix NULL.
4677         * lib/stdlib.in.h (includes): Likewise.
4678         * lib/string.in.h (includes): Likewise.
4679         * lib/time.in.h (includes): Likewise.
4680         * lib/unistd.in.h (includes): Likewise.
4681         * m4/locale_h.m4 (gl_LOCALE_H): Replace locale.h if stddef.h was
4682         replaced.
4683         * m4/wchar.m4 (gl_WCHAR_H): Likewise.
4684         * m4/stddef_h.m4: New file.
4685         * modules/stddef: Likewise.
4686         * lib/stddef.in.h: Likewise.
4687         * modules/stddef-tests: Likewise.
4688         * tests/test-stddef.c: Likewise.
4689         * MODULES.html.sh (Basic types <stddef.h>): Mention new module.
4690         * doc/posix-headers/stddef.texi (stddef.h): Document the bug.
4691         * doc/posix-headers/locale.texi (locale.h): Likewise.
4692         * doc/posix-headers/stdio.texi (stdio.h): Likewise.
4693         * doc/posix-headers/stdlib.texi (stdlib.h): Likewise.
4694         * doc/posix-headers/string.texi (string.h): Likewise.
4695         * doc/posix-headers/time.texi (time.h): Likewise.
4696         * doc/posix-headers/unistd.texi (unistd.h): Likewise.
4697         * doc/posix-headers/wchar.texi (wchar.h): Likewise.
4698
4699 2009-08-14  Eric Blake  <ebb9@byu.net>
4700
4701         doc: improve git diff of texinfo files
4702         * .gitattributes: Add rule for *.texi files, with hint on how to
4703         use it.
4704         Copied from m4, and based on a report by Bruno Haible.
4705
4706 2009-08-14  Bruno Haible  <bruno@clisp.org>
4707
4708         Disable multithread support by default on Cygwin 1.5.x for real.
4709         * m4/threadlib.m4 (gl_THREADLIB_EARLY_BODY): Fix last commit.
4710
4711 2009-08-14  Joel E. Denny  <jdenny@clemson.edu>
4712
4713         update-copyright: much ado about intervals
4714         * build-aux/update-copyright: Implement and document
4715         UPDATE_COPYRIGHT_USE_INTERVALS to control expansion and collapse
4716         of copyright year intervals.
4717         Also, document UPDATE_COPYRIGHT_YEAR.
4718         * tests/test-update-copyright.sh: Test it.
4719
4720         update-copyright: convert 2-digit to 4-digit years
4721         * build-aux/update-copyright: Implement and document.
4722         * tests/test-update-copyright.sh: Update.
4723
4724 2009-08-14  Jim Meyering  <meyering@redhat.com>
4725
4726         test-exclude: avoid coreutils "make check" failure
4727         * tests/test-exclude.c (ARGMATCH_DIE_DECL) [ARGMATCH_DIE_DECL]: Define,
4728         just as in test-argmatch.c.
4729
4730 2009-08-13  Eric Blake  <ebb9@byu.net>
4731
4732         test-dup2: fix bad assumption
4733         * tests/test-dup2.c (main): Tolerate leaked fds from environment.
4734         Reported by Peter Breitenlohner <peb@mppmu.mpg.de>.
4735
4736         test-version-etc: fix CRLF portability issue
4737         * tests/test-version-etc.sh: Use tr, not sed, as not all sed
4738         recognize \r.
4739         * tests/test-argp-version-etc-1.sh: Likewise.
4740
4741         getopt: update client modules
4742         * modules/argp (Depends-on): Use getopt-gnu.
4743         * modules/git-merge-changelog (Depends-on): Likewise.
4744         * modules/long-options (Depends-on): Likewise.
4745         * modules/xstrtol (Depends-on): Likewise.
4746
4747 2009-08-13  Simon Josefsson  <simon@josefsson.org>
4748
4749         * tests/test-version-etc.sh: Don't fail on different
4750         project/version.  Don't fail on CRLF differences.  Rewrite to use
4751         multiple -e instead of multiple sed forks, suggested by Eric Blake
4752         <ebb9@byu.net>.
4753         * tests/test-argp-version-etc-1.sh: Likewise.
4754
4755 2009-08-13  Simon Josefsson  <simon@josefsson.org>
4756
4757         * tests/test-version-etc.sh: Don't fail on different
4758         project/version.
4759
4760 2009-08-12  Bruno Haible  <bruno@clisp.org>
4761
4762         Tests for modules 'getopt-posix', 'getopt-gnu'.
4763         * modules/getopt-posix-tests: New file.
4764         * tests/test-getopt.c: New file.
4765         * tests/test-getopt.h: New file.
4766         * tests/test-getopt_long.h: New file.
4767
4768         New modules 'getopt-posix', 'getopt-gnu'.
4769         * modules/getopt-gnu: New file, renamed from modules/getopt.
4770         * modules/getopt-posix: New file.
4771         * modules/getopt: Turn into an obsolete alias for getopt-gnu.
4772         * m4/getopt.m4 (gl_FUNC_GETOPT_POSIX, gl_FUNC_GETOPT_GNU): New macros.
4773         (gl_GETOPT): Remove macro.
4774         (gl_GETOPT_CHECK_HEADERS): Do some checks only for gl_FUNC_GETOPT_GNU.
4775         Disable the test against BSD systems that declare optreset. Test
4776         against mingw bug. Test against lack of support of optional arguments
4777         on many platforms.
4778         * doc/glibc-headers/getopt.texi: Update module name and list of
4779         relevant platforms.
4780         * doc/posix-functions/getopt.texi: Mention modules 'getopt-posix' and
4781         'getopt-gnu' and more portability problems.
4782         * NEWS: Mention the changes.
4783
4784 2009-08-12  Bruno Haible  <bruno@clisp.org>
4785
4786         Ensure that optarg etc. get declared by <unistd.h>.
4787         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Require
4788         AC_USE_SYSTEM_EXTENSIONS.
4789         * modules/getopt (Depends-on): Add 'extensions'.
4790
4791 2009-08-12  Bruno Haible  <bruno@clisp.org>
4792
4793         Avoid test link errors.
4794         * modules/pipe-filter-ii-tests (Makefile.am): Define
4795         test_pipe_filter_ii1_LDADD and test_pipe_filter_ii2_main_LDADD.
4796         * modules/pipe-filter-gi-tests (Makefile.am): Define
4797         test_pipe_filter_gi1_LDADD and test_pipe_filter_gi2_main_LDADD.
4798         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
4799
4800 2009-08-12  Bruno Haible  <bruno@clisp.org>
4801
4802         * m4/getopt.m4 (gl_REPLACE_GETOPT): New macro, was called
4803         gl_GETOPT_SUBSTITUTE before.
4804         (gl_GETOPT): Use it.
4805         * m4/argp.m4 (gl_ARGP): Update.
4806         Reported by Sergey Poznyakoff.
4807
4808         * m4/getopt.m4: Reorder macros.
4809         (gl_GETOPT): Inline gl_GETOPT_SUBSTITUTE.
4810         (gl_GETOPT_SUBSTITUTE): Remove macro.
4811
4812 2009-08-12  Sergey Poznyakoff  <gray@gnu.org.ua>
4813
4814         Minor improvement in gitlog-to-changelog
4815
4816         * build-aux/gitlog-to-changelog: New option `--format' makes
4817         output format string configurable.
4818
4819 2009-08-12  Sergey Poznyakoff  <gray@gnu.org.ua>
4820
4821         Optimize exclude: use hash tables for non-wildcard patterns.
4822
4823         * lib/exclude.c: Include hash.h and mbuiter.h
4824         (struct exclude_pattern, exclude_segment): New data types.
4825         (struct exclude): Rewrite.
4826         (fnmatch_pattern_has_wildcards): New function.
4827         (new_exclude_segment, free_exclude_segment): New functions.
4828         (excluded_file_pattern_p, excluded_file_name_p): New functions.
4829         (excluded_file_name, add_exclude): Rewrite using new struct exclude.
4830         * lib/exclude.h (is_fnmatch_pattern): New prototype.
4831         * modules/exclude: Depend on hash and mbuiter.
4832
4833         * modules/exclude-tests: New file.
4834         * tests/test-exclude.c: New file.
4835         * tests/test-exclude1.sh: New file.
4836         * tests/test-exclude2.sh: New file.
4837         * tests/test-exclude3.sh: New file.
4838         * tests/test-exclude4.sh: New file.
4839         * tests/test-exclude5.sh: New file.
4840         * tests/test-exclude6.sh: New file.
4841         * tests/test-exclude7.sh: New file.
4842
4843 2009-08-12  Bruno Haible  <bruno@clisp.org>
4844
4845         Ensure that getopt() gets declared by <unistd.h>.
4846         * lib/unistd.in.h: Conditionally include getopt.h.
4847         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE): Require gl_UNISTD_H_DEFAULTS.
4848         Set GNULIB_UNISTD_H_GETOPT.
4849         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
4850         GNULIB_UNISTD_H_GETOPT.
4851         * modules/unistd (Makefile.am): Substitute GNULIB_UNISTD_H_GETOPT.
4852
4853 2009-08-12  Bruno Haible  <bruno@clisp.org>
4854
4855         Clarify logic.
4856         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS, gl_GETOPT_IFELSE): Use
4857         gl_replace_getopt instead of GETOPT_H.
4858
4859 2009-08-12  Bruno Haible  <bruno@clisp.org>
4860
4861         * m4/getopt.m4: Add comments.
4862
4863 2009-08-12  Bruno Haible  <bruno@clisp.org>
4864
4865         Disable multithread support by default on Cygwin 1.5.x.
4866         * m4/threadlib.m4 (gl_THREADLIB_EARLY_BODY): On Cygwin 1.5.x and older,
4867         set gl_use_threads=no if not specified otherwise.
4868
4869 2009-08-11  Bruno Haible  <bruno@clisp.org>
4870
4871         Avoid compilation error on NetBSD 5.0.
4872         * tests/test-locale.c: Write sizeof (NULL) instead of sizeof NULL.
4873         * tests/test-stdio.c: Likewise.
4874         * tests/test-stdlib.c: Likewise.
4875         * tests/test-string.c: Likewise.
4876         * tests/test-unistd.c: Likewise.
4877         Reported by Greg Troxel <gdt@ir.bbn.com>
4878         at <https://savannah.gnu.org/support/?106973>.
4879
4880 2009-08-11  Bruno Haible  <bruno@clisp.org>
4881
4882         * modules/dup2-tests (Depends-on): Remove close.
4883
4884         Undo 2009-07-19 commit.
4885         * modules/acl-tests (Depends-on): Remove close.
4886         * modules/binary-io-tests (Depends-on): Likewise.
4887         * modules/closein-tests (Depends-on): Likewise.
4888         * modules/flock-tests (Depends-on): Likewise.
4889         * modules/fsync-tests (Depends-on): Likewise.
4890         * modules/lseek-tests (Depends-on): Likewise.
4891         * modules/pipe-tests (Depends-on): Likewise.
4892         * modules/posix_spawn-tests (Depends-on): Likewise.
4893         * modules/posix_spawnp-tests (Depends-on): Likewise.
4894         * modules/stat-time-tests (Depends-on): Likewise.
4895         * modules/yesno-tests (Depends-on): Likewise.
4896
4897 2009-08-10  Bruno Haible  <bruno@clisp.org>
4898
4899         * lib/vasnprintf.c (DCHAR_SET): Undefine at the end.
4900
4901 2009-08-10  Bruno Haible  <bruno@clisp.org>
4902
4903         Fix a gcc warning.
4904         * lib/write.c (rpl_write): Cast result of _get_osfhandle.
4905
4906 2009-08-10  Bruno Haible  <bruno@clisp.org>
4907
4908         Don't optimize AC_LIBOBJs, as they may appear in different contexts.
4909         * m4/close.m4 (gl_REPLACE_CLOSE): Execute AC_LIBOBJ unconditionally,
4910         not only the first time.
4911         * m4/fclose.m4 (gl_REPLACE_FCLOSE): Likewise.
4912         * m4/open.m4 (gl_REPLACE_OPEN): Likewise.
4913         * m4/strstr.m4 (gl_FUNC_STRSTR): Execute AC_LIBOBJ when REPLACE_STRSTR
4914         is 1, not only the the first time.
4915
4916 2009-08-10  Bruno Haible  <bruno@clisp.org>
4917
4918         Make it possible to use module 'gethostname' without module 'close'.
4919         * lib/unistd.in.h (close): Evoke a link error only if
4920         UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS is set.
4921         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
4922         UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS.
4923         * modules/unistd (Makefile.am): Substitute
4924         UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS.
4925         * lib/sys_ioctl.in.h (ioctl): Evoke a link error only if
4926         SYS_IOCTL_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS is set.
4927         * m4/sys_ioctl_h.m4 (gl_SYS_IOCTL_H_DEFAULTS): Initialize
4928         SYS_IOCTL_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS.
4929         * modules/sys_ioctl (Makefile.am): Substitute
4930         SYS_IOCTL_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS.
4931         * modules/socket (configure.ac): On native Windows, set
4932         UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS and
4933         SYS_IOCTL_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS.
4934         Reported by Sam Steingold <sds@gnu.org>.
4935
4936 2009-08-10  Bruno Haible  <bruno@clisp.org>
4937
4938         * m4/close.m4 (gl_FUNC_CLOSE): Add comment.
4939         * modules/ioctl (configure.ac): Likewise.
4940
4941 2009-08-10  Bruno Haible  <bruno@clisp.org>
4942
4943         Avoid collision between gnulib wrapper and libintl wrapper.
4944         * lib/stdio-write.c (printf): Don't define if a printf wrapper is
4945         already defined in intl/printf.c.
4946         (vprintf): Test REPLACE_VPRINTF_POSIX, not REPLACE_VFPRINTF_POSIX.
4947         (vfprintf): Test REPLACE_VFPRINTF_POSIX, not REPLACE_VPRINTF_POSIX.
4948
4949 2009-08-09  Bruno Haible  <bruno@clisp.org>
4950
4951         Make <sys/select.h> really self-contained, also on Solaris 10.
4952         * lib/sys_select.in.h: Include <string.h>.
4953         * m4/sys_select_h.m4 (gl_HEADER_SYS_SELECT): Test also against
4954         Solaris 10 problem.
4955         * tests/test-sys_select.c (main): Add check that FD_ZERO can be used.
4956         * doc/posix-headers/sys_select.texi: Mention the Solaris 10 problem.
4957         Reported by Jim Meyering.
4958
4959 2009-08-09  Bruno Haible  <bruno@clisp.org>
4960
4961         Avoid warnings from 'aclocal' that are due to a use of macro name
4962         AM_XGETTEXT_OPTION that is not defined in automake.
4963         * modules/argp (configure.ac): Hide use of AM_XGETTEXT_OPTION from
4964         automake.
4965         * modules/error (configure.ac): Likewise.
4966         * modules/propername (configure.ac): Likewise.
4967         * modules/vasprintf (configure.ac): Likewise.
4968         * modules/verror (configure.ac): Likewise.
4969         * modules/xprintf (configure.ac): Likewise.
4970         * modules/xvasprintf (configure.ac): Likewise.
4971
4972 2009-08-08  Bruno Haible  <bruno@clisp.org>
4973
4974         Avoid compilation error in C++ mode.
4975         * lib/gettimeofday.c (rpl_gettimeofday): Cast timezone argument.
4976         Reported by Sam Steingold <sds@gnu.org>.
4977
4978 2009-08-08  Bruno Haible  <bruno@clisp.org>
4979
4980         * m4/gethostname.m4 (gl_FUNC_GETHOSTNAME): Define HOST_NAME_MAX also
4981         for the various Unix platforms.
4982         * doc/posix-headers/limits.texi: Update platforms list regarding
4983         HOST_NAME_MAX.
4984         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
4985
4986 2009-08-07  Jim Meyering  <meyering@redhat.com>
4987
4988         selinux-at: fix typo in a comment
4989         * lib/selinux-at.h: s/getfileconat/getfilecon/ in a comment.
4990         Spotted by Paolo Bonzini.
4991
4992         selinux-at: remove redundant m4 code, add documentation
4993         * modules/selinux-at (configure.ac): Remove redundant code.
4994         LIB_SELINUX is already set via the dependent module, selinux-h.
4995         (Include): Add quotes around selinux-at.h.
4996         * lib/selinux-at.h: Add documentation.
4997         Reported by Bruno Haible in
4998         http://marc.info/?l=gnulib-bug&m=124958988300749
4999
5000 2009-08-07  Bruno Haible  <bruno@clisp.org>
5001
5002         Avoid link error on MacOS X 10.3 and 10.4.
5003         * lib/argp-ba.c (argp_program_bug_address): Explicitly zero-initialize
5004         on non-ELF systems.
5005         * lib/argp-pv.c (argp_program_version): Likewise.
5006         Reported by Simon Josefsson.
5007
5008 2009-08-07  Simon Josefsson  <simon@josefsson.org>
5009
5010         * tests/test-version-etc.sh: Use $EXEEXT.
5011
5012 2009-08-06  Joel E. Denny  <jdenny@clemson.edu>
5013
5014         update-copyright: update documentation to point to maint.mk
5015         * build-aux/update-copyright: Here.
5016
5017 2009-08-06  Jim Meyering  <meyering@redhat.com>
5018
5019         maint.mk: support update-copyright-local
5020         * top/maint.mk (update-copyright-local): Define place-holder.
5021         (update-copyright): Depend on $(update-copyright-local).
5022
5023 2009-08-06  Jim Meyering  <meyering@redhat.com>
5024
5025         selinux-at: new module
5026         Initially written for coreutils, this module will soon be
5027         used by findutils, too.
5028         * MODULES.html.sh [Misc]: Add selinux-at.
5029         * lib/selinux-at.h: New file, from coreutils.
5030         * lib/selinux-at.c: Likewise.
5031         * modules/selinux-at: Likewise.
5032         (License): Change from LGPL to GPL, since it depends
5033         on the GPL'd openat module.
5034
5035         doc: update README
5036         * README: Remove references to cogito.
5037         Remove cvs-repo-updating instructions from 2007.
5038         Don't imply that CVS is better if you have limited disk space.
5039
5040 2009-08-05  Joel E. Denny  <jdenny@clemson.edu>
5041
5042         update-copyright: support C-style comments
5043         * build-aux/update-copyright: Implement and document.
5044         * tests/test-update-copyright.sh: Test.
5045
5046 2009-08-05  Joel E. Denny  <jdenny@clemson.edu>
5047
5048         update-copyright: support omitted "(C)"
5049         * build-aux/update-copyright: Implement and document.  Also,
5050         allow variable whitespace before "(C)".
5051         * tests/test-update-copyright.sh: Test.
5052
5053 2009-08-05  Joel E. Denny  <jdenny@clemson.edu>
5054
5055         update-copyright: don't trip on non-FSF copyright statements
5056         * build-aux/update-copyright: Fix so that the first correctly
5057         formatted FSF copyright statement is recognized no matter what
5058         appears before it.  Update documentation.
5059         * tests/test-update-copyright.sh: Test that.
5060
5061 2009-08-05  Joel E. Denny  <jdenny@clemson.edu>
5062
5063         update-copyright: clean up code a little
5064         * build-aux/update-copyright: Append "_re" to the name of any
5065         variable holding a regular expression.
5066         Replace "old" and "new" with "stmt" in variable names.
5067         Do not accept 2-digit UPDATE_COPYRIGHT_YEAR, which was not
5068         handled correctly.
5069         Format code more consistently.
5070
5071 2009-08-05  Joel E. Denny  <jdenny@clemson.edu>
5072
5073         update-copyright-tests: improve portability
5074         * tests/test-update-copyright.sh: Use cmp if diff cannot handle
5075         -u or /dev/null.  Suggested by Jim Meyering and Eric Blake.
5076
5077 2009-08-03  Joel E. Denny  <jdenny@clemson.edu>
5078
5079         update-copyright: support @copyright{} and &copy;
5080         * build-aux/update-copyright: Implement and document.
5081         * tests/test-update-copyright.sh: Test.
5082
5083 2009-08-04  Jim Meyering  <meyering@redhat.com>
5084
5085         update-copyright-tests: correctly test EOL=\r\n handling
5086         * tests/test-update-copyright.sh: Put \r at the end of some lines
5087         for the dos-eol tests.  Based on a patch by Joel E. Denny.
5088
5089         maint.mk: make update-copyright exclusion list more configurable
5090         * top/maint.mk (update-copyright): Default to excluding COPYING,
5091         but allow an override, in case someone does want to update that file.
5092
5093         maint.mk: don't update copyright date in COPYING
5094         * top/maint.mk (update-copyright): Exclude COPYING.
5095
5096         maint.mk: add a copyright-updating rule
5097         * top/maint.mk (update-copyright): New rule.
5098         Derived from coreutils/Makefile.am.
5099
5100         update-copyright: rename some variables
5101         * build-aux/update-copyright: Rename a few variables for clarity.
5102         Tweak syntax.  List Joel E. Denny as coauthor.
5103
5104 2009-08-03  Joel E. Denny  <jdenny@clemson.edu>
5105
5106         update-copyright: fix bug for 2-digit last year and add tests
5107         * build-aux/update-copyright: Fix bug.
5108         Use UPDATE_COPYRIGHT_YEAR from environment as current year if
5109         specified.
5110         * modules/update-copyright-tests: New
5111         * tests/test-update-copyright.sh: New.
5112
5113 2009-07-31  Joel E. Denny  <jdenny@clemson.edu>
5114
5115         update-copyright: handle leading tabs in line prefix
5116         * build-aux/update-copyright: Count leading tabs as 8 spaces
5117         when computing margin.  This helps with the formatting of
5118         ChangeLogs, for example.
5119         Fix documentation a little.
5120
5121 2009-07-31  Joel E. Denny  <jdenny@clemson.edu>
5122
5123         update-copyright: support EOL=\r\n
5124         * build-aux/update-copyright: Implement that.
5125
5126 2009-07-31  Joel E. Denny  <jdenny@clemson.edu>
5127
5128         update-copyright: automatically format copyright statements
5129         * build-aux/update-copyright: Implement that.
5130         Also, be a little more predictable and safer by always failing
5131         when the full copyright format is not perfectly recognized as an
5132         unbroken whole.  Discussed at
5133         <http://lists.gnu.org/archive/html/bug-gnulib/2009-07/msg00131.html>.
5134         Rewrite documentation.
5135
5136 2009-08-03  Bruno Haible  <bruno@clisp.org>
5137
5138         * m4/iconv.m4 (AM_ICONV): Fix displayed message with autoconf-2.64.
5139
5140 2009-08-02  Bruno Haible  <bruno@clisp.org>
5141
5142         Tests for module 'uname'.
5143         * modules/uname-tests: New file.
5144         * tests/test-uname.c: New file.
5145
5146         New module 'uname'.
5147         * lib/uname.c: New file.
5148         * m4/uname.m4: New file.
5149         * modules/uname: New file.
5150         * doc/posix-functions/uname.texi: Mention the new module.
5151
5152 2009-08-02  Bruno Haible  <bruno@clisp.org>
5153
5154         Tests for module 'sys_utsname'.
5155         * modules/sys_utsname-tests: New file.
5156         * tests/test-sys_utsname.c: New file.
5157
5158         New module 'sys_utsname'.
5159         * lib/sys_utsname.in.h: New file, based on glibc's <sys/utsname.h>.
5160         * m4/sys_utsname_h.m4: New file.
5161         * modules/sys_utsname: New file.
5162         * doc/posix-headers/sys_utsname.texi: Mention the new module.
5163
5164 2009-08-02  Bruno Haible  <bruno@clisp.org>
5165
5166         Implicitly initialize the sockets library.
5167         * lib/gethostname.c: Include sockets.h.
5168         (rpl_gethostname): Invoke gl_sockets_startup.
5169         * lib/socket.c: Include sockets.h.
5170         (rpl_socket): Invoke gl_sockets_startup.
5171         * modules/gethostname (Depends-on): Add sockets.
5172         * modules/socket (Depends-on): Likewise.
5173         * tests/test-poll.c: Don't include sockets.h.
5174         (main): Don't invoke gl_sockets_startup.
5175         * tests/test-select.c: Don't include sockets.h.
5176         (main): Don't invoke gl_sockets_startup.
5177
5178 2009-08-02  Bruno Haible  <bruno@clisp.org>
5179
5180         Allow multiple calls to gl_sockets_startup.
5181         * lib/sockets.c (initialized_sockets_version): New variable.
5182         (gl_sockets_startup): Do nothing if already called for this or a higher
5183         version.
5184         (gl_sockets_cleanup): Reset initialized_sockets_version.
5185
5186 2009-08-03  Simon Josefsson  <simon@josefsson.org>
5187
5188         * tests/test-argp-version-etc-1.sh: Use EXEEXT.  Don't fail on
5189         different project/version.
5190
5191 2009-08-02  Paolo Bonzini  <bonzini@gnu.org>
5192             Bruno Haible  <bruno@clisp.org>
5193
5194         Tests for module 'pipe-filter-gi'.
5195         * modules/pipe-filter-gi-tests: New file.
5196         * tests/test-pipe-filter-gi1.sh: New file.
5197         * tests/test-pipe-filter-gi1.c: New file.
5198         * tests/test-pipe-filter-gi2.sh: New file.
5199         * tests/test-pipe-filter-gi2-main.c: New file.
5200         * tests/test-pipe-filter-gi2-child.c: New file.
5201
5202         New module 'pipe-filter-gi'.
5203         * lib/pipe-filter-gi.c: New file.
5204         * modules/pipe-filter-gi: New file.
5205
5206 2009-08-02  Bruno Haible  <bruno@clisp.org>
5207             Paolo Bonzini  <bonzini@gnu.org>
5208
5209         Tests for module 'pipe-filter-ii'.
5210         * modules/pipe-filter-ii-tests: New file.
5211         * tests/test-pipe-filter-ii1.sh: New file.
5212         * tests/test-pipe-filter-ii1.c: New file.
5213         * tests/test-pipe-filter-ii2.sh: New file.
5214         * tests/test-pipe-filter-ii2-main.c: New file.
5215         * tests/test-pipe-filter-ii2-child.c: New file.
5216
5217         New module 'pipe-filter-ii'.
5218         * lib/pipe-filter.h: New file.
5219         * lib/pipe-filter-ii.c: New file.
5220         * lib/pipe-filter-aux.h: New file.
5221         * modules/pipe-filter-ii: New file.
5222
5223 2009-08-02  Simon Josefsson  <simon@josefsson.org>
5224
5225         * lib/gc-libgcrypt.c: Change copyright to FSF.
5226         * lib/gc-gnulib.c: Likewise.
5227
5228 2009-08-02  Martin Lambers  <marlam@marlam.de>  (tiny change)
5229
5230         * lib/gethostname.c: Include limits.h.
5231
5232 2009-08-02  Simon Josefsson  <simon@josefsson.org>
5233             Bruno Haible  <bruno@clisp.org>
5234
5235         Ensure HOST_NAME_MAX as part of the gethostname module.
5236         * m4/gethostname.m4 (gl_FUNC_GETHOSTNAME): On native Windows platforms,
5237         define also HOST_NAME_MAX.
5238         * tests/test-gethostname.c: Include <limits.h>.
5239         (main): Check also HOST_NAME_MAX.
5240         * doc/posix-headers/limits.texi: Document the mingw problem.
5241
5242 2009-08-02  Bruno Haible  <bruno@clisp.org>
5243
5244         * lib/gethostname.c (gethostname): Fix handling of large len argument.
5245         Add comments.
5246
5247 2009-03-31  Simon Josefsson  <simon@josefsson.org>
5248
5249         * lib/gethostname.c: Add Windows wrapper.
5250         * m4/gethostname.m4: Look for gethostname in -lws2_32.
5251         * modules/gethostname: Depend on sys_socket & errno, for also
5252         added lib/w32sock.h.  Add GETHOSTNAME_LIB link directive.
5253         * modules/gethostname-tests: Link to @GETHOSTNAME_LIB@.
5254
5255 2009-07-31  Jim Meyering  <meyering@redhat.com>
5256
5257         getloadavg: fix symbol name in comment
5258         * lib/getloadavg.c: Correct a typo I introduced when adding
5259         comments to Matt's change: s/NLIST_POINTER/N_NAME_POINTER/.
5260         Matt Kraai spotted the problem.
5261
5262 2009-07-29  Matt Kraai  <mkraai@beckman.com>
5263
5264         getloadavg: check whether n_name is a pointer, for QNX 6.4.1
5265         * lib/getloadavg.c (getloadavg): Use the strcpy-into-nlist.n_name
5266         code also if ! defined N_NAME_POINTER.
5267         * m4/getloadavg.m4 (gl_GETLOADAVG): Add a link-test for N_NAME_POINTER.
5268         This is required on QNX 6.4.1, where /usr/include/nlist.h exists,
5269         but the n_name member is a 12-byte array.
5270
5271 2009-07-29  Joel E. Denny  <jdenny@clemson.edu>
5272
5273         update-copyright: generalize comment handling
5274         * build-aux/update-copyright: Handle copyright statements
5275         within more comment styles.
5276         Document usage.
5277         Report any file with an external copyright holder or parse failure.
5278
5279 2009-07-29  Jim Meyering  <meyering@redhat.com>
5280
5281         mktime: correct setting of REPLACE_MKTIME
5282         * m4/mktime.m4 (gl_FUNC_MKTIME): Set REPLACE_MKTIME=0, when required.
5283
5284         update-copyright: new module
5285         * modules/update-copyright: New file.
5286         * build-aux/update-copyright: New file.
5287         * MODULES.html.sh (maint+release support): Add update-copyright.
5288
5289 2009-07-27  Bruno Haible  <bruno@clisp.org>
5290
5291         Fix compilation error when <ctime> is used and mktime is replaced.
5292         * lib/time.in.h (mktime): New declaration.
5293         * m4/mktime.m4 (gl_FUNC_MKTIME): Require gl_HEADER_TIME_H_DEFAULTS. Set
5294         REPLACE_MKTIME instead of defining mktime in config.h.
5295         * m4/time_h.m4 (gl_HEADER_TIME_H_DEFAULTS): Initialize REPLACE_MKTIME.
5296         * modules/time (Makefile.am): Substitute REPLACE_MKTIME.
5297         Reported by Ross McFarland <rwmcfa1@neces.com>.
5298
5299 2009-07-27  Bruno Haible  <bruno@clisp.org>
5300
5301         * lib/math.in.h (cosl, logl, sinl): Undefine before declaring it.
5302         Reported by Matt Kraai <mkraai@beckman.com>.
5303
5304 2009-07-25  Jim Meyering  <meyering@redhat.com>
5305
5306         maint.mk: avoid warnings about missing files
5307         * top/maint.mk (PREV_VERSION): Suppress stderr, to hide a
5308         diagnostic when .prev-version does not exist.
5309         (_cfg_mk): Define, so it can be empty when cfg.mk does not exist.
5310         (syntax-check-rules): Use $(_cfg_mk) to avoid a diagnostic about
5311         nonexistent cfg.mk.
5312         Suggestions from Simon Josefsson.
5313
5314 2009-07-25  Bruno Haible  <bruno@clisp.org>
5315
5316         * lib/math.in.h (cosl, logl, sinl): Don't declare if they are already
5317         defined as macros. Needed on QNX 6.4.1.
5318         Reported by Matt Kraai <mkraai@beckman.com>.
5319
5320 2009-07-23  Jim Meyering  <meyering@redhat.com>
5321
5322         maint.mk: invoke "make dist" with a working value of XZ_OPT
5323         * top/maint.mk (vc-dist): Use no "-" in the value of XZ_OPT.
5324
5325 2009-07-22  Matt Kraai  <mkraai@beckman.com>  (tiny change)
5326
5327         Make fseeko.c compile on QNX.
5328         * lib/fseeko.c (rpl_fseeko): Use the numerical value of _MWRITE.
5329
5330 2009-07-22  Peter Simons  <simons@cryp.to>
5331
5332         C++: wrap md2,md5,sha1,etc. function declarations in extern "C" scope
5333         * lib/md2.h [__cplusplus]: Wrap declarations in extern "C" scope.
5334         * lib/md4.h: Likewise.
5335         * lib/md5.h: Likewise.
5336         * lib/sha1.h: Likewise.
5337         * lib/sha256.h: Likewise.
5338         * lib/sha512.h: Likewise.
5339
5340         tests-sha1: don't assign literal string to 'char *' variable
5341         * tests/test-sha1.c (main): Declare locals with "const" to match
5342         attributes of the right hand side.
5343
5344 2009-07-21  Eric Blake  <ebb9@byu.net>
5345
5346         dup2: fix more mingw problems
5347         * lib/dup2.c (rpl_dup2) [_WIN32]: Avoid hanging when duplicating
5348         fd to itself.
5349         * doc/posix-functions/dup2.texi (dup2): Document the bug.
5350         * lib/unistd.in.h (dup2) [REPLACE_FCHDIR]: Avoid name collision.
5351         * lib/fchdir.c (dup2): Manage preprocessor macros correctly.
5352         (rpl_dup2_fchdir): Rename from rpl_dup2, and let dup2 module take
5353         care of mingw bugs.
5354
5355 2009-07-21  Jim Meyering  <meyering@redhat.com>
5356
5357         vc-list-files: avoid failure when /bin/sh is dash
5358         * build-aux/vc-list-files: Avoid a shell portability problem with dash.
5359         On some Debian based systems, /bin/sh is a symlink to dash, and running
5360         this command would omit the "/" following each 'tests' prefix:
5361           dash -x build-aux/vc-list-files -C . tests
5362         That is because bash and dash work differently:
5363           $ for i in bash dash; do $i -c 'a=odd; a=ok b=$a; echo '$i' $b'; done
5364           bash ok
5365           dash odd
5366
5367 2009-07-21  Eric Blake  <ebb9@byu.net>
5368
5369         dup2-tests: test previous patch
5370         * modules/dup2-tests: New file.
5371         * tests/test-dup2.c: Likewise.
5372         * tests/test-open.c (main): Avoid unspecified behavior.
5373         * tests/test-pipe.c (child_main): Use dup2 semantics to simplify
5374         test.
5375
5376         dup2: work around mingw and cygwin 1.5 bug
5377         * m4/dup2.m4 (gl_FUNC_DUP2): Detect mingw bug.
5378         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add witness.
5379         * modules/unistd (Makefile.am): Substitute it.
5380         * lib/unistd.in.h (dup2): Declare the replacement.
5381         * lib/dup2.c (dup2) [REPLACE_DUP2]: Implement it.
5382         * doc/posix-functions/dup2.texi (dup2): Document the bugs.
5383         * lib/fchdir.c (rpl_dup2): Don't collide with mingw replacement.
5384         * modules/execute (Depends-on): Add dup2.
5385         * modules/fseterr (Depends-on): Likewise.
5386         * modules/pipe (Depends-on): Likewise.
5387         * modules/posix_spawn-internal (Depends-on): Likewise.
5388
5389 2009-07-21  Bruno Haible  <bruno@clisp.org>
5390
5391         * modules/.gitattributes: New file.
5392
5393 2009-07-20  Bruno Haible  <bruno@clisp.org>
5394
5395         * tests/test-pipe.c (BACKUP_STDERR_FILENO): New macro.
5396         (main): Use it.
5397
5398 2009-07-20  Eric Blake  <ebb9@byu.net>
5399
5400         test-pipe: make a bit more robust.
5401         * tests/test-pipe.c (myerr): Allow error messages regardless of
5402         what we do to stderr.
5403         (test_pipe): Rearrange to avoid deadlock.
5404         (child_main): Try a larger read, to ensure we avoided deadlock.
5405         * lib/pipe.c (create_pipe) [_WIN32]: Fix comment.
5406         * lib/pipe.h (create_pipe_bidi): Document potential for deadlock
5407         if misused.
5408
5409 2009-07-19  Jim Meyering  <meyering@redhat.com>
5410
5411         fts: avoid false-positive cycle-detection
5412         * lib/fts.c (fts_read): Reinitialize cycle-detection data structures
5413         for each new command line argument.
5414
5415 2009-07-19  Bruno Haible  <bruno@clisp.org>
5416
5417         Fix build error on mingw with the modules sys_select and unistd.
5418         * modules/acl-tests (Depends-on): Add close.
5419         * modules/binary-io-tests (Depends-on): Likewise.
5420         * modules/closein-tests (Depends-on): Likewise.
5421         * modules/flock-tests (Depends-on): Likewise.
5422         * modules/fsync-tests (Depends-on): Likewise.
5423         * modules/lseek-tests (Depends-on): Likewise.
5424         * modules/pipe-tests (Depends-on): Likewise.
5425         * modules/posix_spawn-tests (Depends-on): Likewise.
5426         * modules/posix_spawnp-tests (Depends-on): Likewise.
5427         * modules/stat-time-tests (Depends-on): Likewise.
5428         * modules/yesno-tests (Depends-on): Likewise.
5429
5430 2009-07-19  Bruno Haible  <bruno@clisp.org>
5431
5432         Unify conditionals.
5433         * lib/pipe.h: Detect native Win32 by looking at _WIN32 and __WIN32__
5434         macros, not at the compiler macros.
5435         * lib/pipe.c: Likewise.
5436         * lib/execute.c: Likewise.
5437         * lib/spawni.c: Likewise.
5438
5439 2009-07-19  Bruno Haible  <bruno@clisp.org>
5440
5441         Fix handling of closed stdin/stdout/stderr on mingw.
5442         * lib/w32spawn.h: Include unistd.h.
5443         (dup_noinherit): Return -1 if the old handle is invalid. Allocate new
5444         file descriptor with O_NOINHERIT flag.
5445         (fd_safer_noinherit): New function, based on fd-safer.c.
5446         (dup_safer_noinherit): New function, based on dup-safer.c.
5447         (undup_safer_noinherit): New function.
5448         * lib/execute.c (execute) [WIN32]: Use dup_safer_noinherit instead of
5449         dup_noinherit. Use undup_safer_noinherit instead of dup2 and close.
5450         * lib/pipe.c (create_pipe) [WIN32]: Likewise. Use fd_safer_noinherit
5451         instead of fd_safer.
5452         * tests/test-pipe.c: Include <windows.h>.
5453         (child_main) [WIN32]: Test the handle of STDERR_FILENO, not its close() result.
5454
5455         * tests/test-pipe.c (child_main, parent_main): New functions, extracted
5456         from main.
5457         (test_pipe): Pass an extra argument for disambiguation.
5458         (main): Invoke parent_main or child_main.
5459
5460         * tests/test-pipe.c (test_pipe): Pass slave_process = true argument
5461         consistently.
5462
5463 2009-07-18  Eric Blake  <ebb9@byu.net>
5464
5465         test-pipe: fix mingw build
5466         * tests/test-pipe.c (main): Avoid fcntl on mingw.
5467
5468 2009-07-18  Bruno Haible  <bruno@clisp.org>
5469
5470         * modules/pipe-tests (Makefile.am): Fix typo.
5471
5472 2009-07-18  Eric Blake  <ebb9@byu.net>
5473
5474         error: fix mingw build
5475         * lib/error.c (error, error_at_line): Avoid fcntl on mingw.
5476         Reported by Bruno Haible.
5477
5478         error: avoid undefined use of stdout
5479         * lib/error.c (error, error_at_line): Check that fd 1 is open
5480         before flushing stdout.  Avoids a crash on cygwin when libsigsegv
5481         is handling faults and the close_stdout module wants to report the
5482         detection of closed stdout as an error.
5483
5484 2009-07-17  Eric Blake  <ebb9@byu.net>
5485
5486         pipe: be robust in face of closed fds
5487         * lib/pipe.c (create_pipe): Closed standard descriptors in parent
5488         should cause child to misbehave.
5489         * modules/pipe-tests: New module.
5490         * tests/test-pipe.c: New file.
5491         * tests/test-pipe.sh: New file.
5492         Reported by Akim Demaille.
5493
5494 2009-07-14  Bruno Haible  <bruno@clisp.org>
5495
5496         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Guess it works on glibc systems.
5497         Reported by anonymous kc.
5498
5499 2009-07-07  Jim Meyering  <meyering@redhat.com>
5500
5501         maint.mk: don't look for translatable strings in *.m4 or *.mk
5502         * top/maint.mk (sc_po_check): Skip *.m4 and *.mk files,
5503         when searching for translatable strings.
5504
5505 2009-07-05  Jim Meyering  <meyering@redhat.com>
5506
5507         remove superfluous parentheses in STREQ definition
5508         * tests/test-argv-iter.c (STREQ): Remove redundant parentheses.
5509         * lib/getugroups.c (STREQ): Likewise.
5510         * lib/fnmatch.c (STREQ): Likewise.
5511         Spotted by Bruno Haible.
5512
5513 2009-07-04  Jim Meyering  <meyering@redhat.com>
5514
5515         argv-iter: new module
5516         * MODULES.html.sh: Add argv-iter.
5517         * lib/argv-iter.c, lib/argv-iter.h: New files.
5518         * modules/argv-iter: New file.
5519         * modules/argv-iter-tests: New file.
5520         * tests/test-argv-iter.c: Test it.
5521
5522 2009-07-04  Bruno Haible  <bruno@clisp.org>
5523
5524         Fix assertion.
5525         * lib/git-merge-changelog.c (compute_mapping): In the case where file1
5526         contains more exact copies of a given entry than file2, leave the extra
5527         copies unpaired rather than aborting.
5528         Reported by Eric Blake.
5529
5530 2009-07-02  Bruno Haible  <bruno@clisp.org>
5531
5532         Speedup git-merge-changelog for git cherry-pick.
5533         * lib/git-merge-changelog.c (struct entries_mapping): New type.
5534         (entries_mapping_get): New function, extracted from compute_mapping.
5535         (entries_mapping_reverse_get): New function.
5536         (compute_mapping): Add a 'full' argument. Return the result in a
5537         'struct entries_mapping'.
5538         (main): Update. Access the mappings through entries_mapping_get.
5539         Reported by Eric Blake.
5540
5541 2009-07-02  Bruno Haible  <bruno@clisp.org>
5542
5543         * lib/git-merge-changelog.c (compute_mapping): Fix determination of
5544         best_i.
5545
5546 2009-07-02  Bruno Haible  <bruno@clisp.org>
5547
5548         Speed up approximate search for matching ChangeLog entries.
5549         * lib/git-merge-changelog.c (entry_fstrcmp): Add a lower_bound
5550         argument. Call fstrcmp_bounded instead of fstrcmp.
5551         (compute_mapping, try_split_merged_entry, main): Update callers.
5552
5553 2009-07-02  Bruno Haible  <bruno@clisp.org>
5554
5555         * lib/git-merge-changelog.c (main): Add comment about git cherry-pick.
5556
5557 2009-06-30  Bruno Haible  <bruno@clisp.org>
5558
5559         Reduce the number of uc_is_cased calls.
5560         * lib/unicase.h (casing_suffix_context_t): Add
5561         'first_char_except_ignorable' field.
5562         * lib/unicase/context.h (SCC_FINAL_SIGMA_MASK): Remove macro.
5563         (SCC_MORE_ABOVE_MASK, SCC_BEFORE_DOT_MASK): Update.
5564         * lib/unicase/empty-suffix-context.c (unicase_empty_suffix_context):
5565         Update initializer.
5566         * lib/unicase/u-casemap.h (FUNC): Don't invoke uc_is_cased on
5567         case-ignorable characters.
5568         * lib/unicase/u-ct-totitle.h (FUNC): Likewise.
5569         * lib/unicase/u-suffix-context.h (FUNC2): Don't call uc_is_cased here.
5570         * modules/unicase/u8-suffix-context (Depends-on): Remove unicase/cased.
5571         * modules/unicase/u16-suffix-context (Depends-on): Likewise.
5572         * modules/unicase/u32-suffix-context (Depends-on): Likewise.
5573
5574 2009-06-30  Bruno Haible  <bruno@clisp.org>
5575
5576         Tests for module 'unicase/ignorable'.
5577         * modules/unicase/ignorable-tests: New file.
5578         * tests/unicase/test-ignorable.c: New file, generated by
5579         gen-uni-tables.
5580
5581         Tests for module 'unicase/cased'.
5582         * modules/unicase/cased-tests: New file.
5583         * tests/unicase/test-cased.c: New file, generated by gen-uni-tables.
5584         * tests/unicase/test-predicate-part1.h: New file, derived from
5585         tests/unictype/test-predicate-part1.h.
5586         * tests/unicase/test-predicate-part2.h: New file, same as
5587         tests/unictype/test-predicate-part2.h.
5588
5589         Fix evaluation of "Before C" condition of FINAL_SIGMA.
5590         * lib/gen-uni-tables.c (is_cased, is_case_ignorable): New functions.
5591         (output_casing_properties): New function.
5592         (main): Call it.
5593         * lib/unicase/cased.h: New file, generated by gen-uni-tables.
5594         * lib/unicase/cased.c: Include unictype/bitmap.h.
5595         (uc_is_cased): Define through a bitmap lookup.
5596         * lib/unicase/ignorable.h: New file, generated by gen-uni-tables.
5597         * lib/unicase/ignorable.c: Include unictype/bitmap.h.
5598         (uc_is_case_ignorable): Define through a bitmap lookup.
5599         * modules/unicase/cased (Files): Add lib/unicase/cased.h,
5600         lib/unictype/bitmap.h.
5601         (Depends-on): Add inline. Clean up.
5602         * modules/unicase/ignorable (Files): Add lib/unicase/ignorable.h,
5603         lib/unictype/bitmap.h.
5604         (Depends-on): Add inline. Clean up.
5605         * tests/unicase/test-u8-tolower.c (main): Add more tests of FINAL_SIGMA
5606         recognition.
5607         * tests/unicase/test-u16-tolower.c (main): Likewise.
5608         * tests/unicase/test-u32-tolower.c (main): Likewise.
5609
5610 2009-06-30  Bruno Haible  <bruno@clisp.org>
5611
5612         * lib/unicase/u8-casemap.c: Don't include uniwbrk.h.
5613         * lib/unicase/u16-casemap.c: Likewise.
5614         * lib/unicase/u32-casemap.c: Likewise.
5615
5616 2009-06-29  Bruno Haible  <bruno@clisp.org>
5617
5618         Define u32_casefold as a wrapper around u32_ct_casefold.
5619         * lib/unicase/u32-casefold.c: Update.
5620         * modules/unicase/u32-casefold (Depends-on): Add
5621         unicase/u32-ct-casefold, unicase/empty-prefix-context,
5622         unicase/empty-suffix-context. Clean up.
5623
5624         Define u16_casefold as a wrapper around u16_ct_casefold.
5625         * lib/unicase/u16-casefold.c: Update.
5626         * modules/unicase/u16-casefold (Depends-on): Add
5627         unicase/u16-ct-casefold, unicase/empty-prefix-context,
5628         unicase/empty-suffix-context. Clean up.
5629
5630         Define u8_casefold as a wrapper around u8_ct_casefold.
5631         * lib/unicase/u-casefold.h (FUNC): Delegate to U_CT_CASEFOLD.
5632         * lib/unicase/u8-casefold.c: Update.
5633         * modules/unicase/u8-casefold (Depends-on): Add unicase/u8-ct-casefold,
5634         unicase/empty-prefix-context, unicase/empty-suffix-context. Clean up.
5635
5636         Define u32_totitle as a wrapper around u32_ct_totitle.
5637         * lib/unicase/u32-totitle.c: Update.
5638         * modules/unicase/u32-totitle (Depends-on): Add unicase/u32-ct-totitle,
5639         unicase/empty-prefix-context, unicase/empty-suffix-context. Clean up.
5640
5641         Define u16_totitle as a wrapper around u16_ct_totitle.
5642         * lib/unicase/u16-totitle.c: Update.
5643         * modules/unicase/u16-totitle (Depends-on): Add unicase/u16-ct-totitle,
5644         unicase/empty-prefix-context, unicase/empty-suffix-context. Clean up.
5645
5646         Define u8_totitle as a wrapper around u8_ct_totitle.
5647         * lib/unicase/u-totitle.h (is_cased, is_case_ignorable): Remove
5648         functions.
5649         (FUNC): Delegate to U_CT_TOTITLE.
5650         * lib/unicase/u8-totitle.c: Update.
5651         * modules/unicase/u8-totitle (Depends-on): Add unicase/u8-ct-totitle,
5652         unicase/empty-prefix-context, unicase/empty-suffix-context. Clean up.
5653
5654         * lib/unicase/u32-tolower.c (u32_tolower): Update u32_casemap
5655         invocation.
5656         * modules/unicase/u32-tolower (Depends-on): Add
5657         unicase/empty-prefix-context, unicase/empty-suffix-context.
5658
5659         * lib/unicase/u16-tolower.c (u16_tolower): Update u16_casemap
5660         invocation.
5661         * modules/unicase/u16-tolower (Depends-on): Add
5662         unicase/empty-prefix-context, unicase/empty-suffix-context.
5663
5664         * lib/unicase/u8-tolower.c (u8_tolower): Update u8_casemap invocation.
5665         * modules/unicase/u8-tolower (Depends-on): Add
5666         unicase/empty-prefix-context, unicase/empty-suffix-context.
5667
5668         * lib/unicase/u32-toupper.c (u32_toupper): Update u32_casemap
5669         invocation.
5670         * modules/unicase/u32-toupper (Depends-on): Add
5671         unicase/empty-prefix-context, unicase/empty-suffix-context.
5672
5673         * lib/unicase/u16-toupper.c (u16_toupper): Update u16_casemap
5674         invocation.
5675         * modules/unicase/u16-toupper (Depends-on): Add
5676         unicase/empty-prefix-context, unicase/empty-suffix-context.
5677
5678         * lib/unicase/u8-toupper.c (u8_toupper): Update u8_casemap invocation.
5679         * modules/unicase/u8-toupper (Depends-on): Add
5680         unicase/empty-prefix-context, unicase/empty-suffix-context.
5681
5682         New module 'unicase/u32-ct-casefold'.
5683         * lib/unicase/u32-ct-casefold.c: New file.
5684         * modules/unicase/u32-ct-casefold: New file.
5685
5686         New module 'unicase/u16-ct-casefold'.
5687         * lib/unicase/u16-ct-casefold.c: New file.
5688         * modules/unicase/u16-ct-casefold: New file.
5689
5690         New module 'unicase/u8-ct-casefold'.
5691         * lib/unicase/u8-ct-casefold.c: New file.
5692         * lib/unicase/u-ct-casefold.h: New file, derived from
5693         lib/unicase/u-casefold.h.
5694         * modules/unicase/u8-ct-casefold: New file.
5695
5696         New module 'unicase/u32-ct-totitle'.
5697         * lib/unicase/u32-ct-totitle.c: New file.
5698         * modules/unicase/u32-ct-totitle: New file.
5699
5700         New module 'unicase/u16-ct-totitle'.
5701         * lib/unicase/u16-ct-totitle.c: New file.
5702         * modules/unicase/u16-ct-totitle: New file.
5703
5704         New module 'unicase/u8-ct-totitle'.
5705         * lib/unicase/u8-ct-totitle.c: New file.
5706         * lib/unicase/u-ct-totitle.h: New file, derived from
5707         lib/unicase/u-totitle.h.
5708         * modules/unicase/u8-ct-totitle: New file.
5709
5710         New module 'unicase/u32-ct-tolower'.
5711         * lib/unicase/u32-ct-tolower.c: New file.
5712         * modules/unicase/u32-ct-tolower: New file.
5713
5714         New module 'unicase/u16-ct-tolower'.
5715         * lib/unicase/u16-ct-tolower.c: New file.
5716         * modules/unicase/u16-ct-tolower: New file.
5717
5718         New module 'unicase/u8-ct-tolower'.
5719         * lib/unicase/u8-ct-tolower.c: New file.
5720         * modules/unicase/u8-ct-tolower: New file.
5721
5722         New module 'unicase/u32-ct-toupper'.
5723         * lib/unicase/u32-ct-toupper.c: New file.
5724         * modules/unicase/u32-ct-toupper: New file.
5725
5726         New module 'unicase/u16-ct-toupper'.
5727         * lib/unicase/u16-ct-toupper.c: New file.
5728         * modules/unicase/u16-ct-toupper: New file.
5729
5730         New module 'unicase/u8-ct-toupper'.
5731         * lib/unicase/u8-ct-toupper.c: New file.
5732         * modules/unicase/u8-ct-toupper: New file.
5733
5734         Add context arguments to u*_casemap functions.
5735         * lib/unicase/unicasemap.h: Include unicase.h.
5736         (u8_casemap, u16_casemap, u32_casemap): Add prefix_context and
5737         suffix_context arguments.
5738         * lib/unicase/u-casemap.h (is_cased, is_case_ignorable): Remove
5739         functions.
5740         (FUNC): Add prefix_context and suffix_context arguments. Use
5741         uc_is_cased and uc_is_case_ignorable.
5742         * lib/unicase/u8-casemap.c: Include caseprop.h and context.h.
5743         * lib/unicase/u16-casemap.c: Likewise.
5744         * lib/unicase/u32-casemap.c: Likewise.
5745         * modules/unicase/u8-casemap (Files): Add lib/unicase/context.h.
5746         (Depends-on): Add unicase/cased, unicase/ignorable. Clean up.
5747         * modules/unicase/u16-casemap (Files): Add lib/unicase/context.h.
5748         (Depends-on): Add unicase/cased, unicase/ignorable. Clean up.
5749         * modules/unicase/u32-casemap (Files): Add lib/unicase/context.h.
5750         (Depends-on): Add unicase/cased, unicase/ignorable. Clean up.
5751
5752         New module 'unicase/u32-suffix-context'.
5753         * lib/unicase/u32-suffix-context.c: New file.
5754         * modules/unicase/u32-suffix-context: New file.
5755
5756         New module 'unicase/u16-suffix-context'.
5757         * lib/unicase/u16-suffix-context.c: New file.
5758         * modules/unicase/u16-suffix-context: New file.
5759
5760         New module 'unicase/u8-suffix-context'.
5761         * lib/unicase/u8-suffix-context.c: New file.
5762         * lib/unicase/u-suffix-context.h: New file.
5763         * modules/unicase/u8-suffix-context: New file.
5764
5765         New module 'unicase/empty-suffix-context'.
5766         * lib/unicase/empty-suffix-context.c: New file.
5767         * modules/unicase/empty-suffix-context: New file.
5768
5769         New module 'unicase/u32-prefix-context'.
5770         * lib/unicase/u32-prefix-context.c: New file.
5771         * modules/unicase/u32-prefix-context: New file.
5772
5773         New module 'unicase/u16-prefix-context'.
5774         * lib/unicase/u16-prefix-context.c: New file.
5775         * modules/unicase/u16-prefix-context: New file.
5776
5777         New module 'unicase/u8-prefix-context'.
5778         * lib/unicase/u8-prefix-context.c: New file.
5779         * lib/unicase/u-prefix-context.h: New file.
5780         * lib/unicase/context.h: New file.
5781         * modules/unicase/u8-prefix-context: New file.
5782
5783         New module 'unicase/empty-prefix-context'.
5784         * lib/unicase/empty-prefix-context.c: New file.
5785         * modules/unicase/empty-prefix-context: New file.
5786
5787         New module 'unicase/ignorable'.
5788         * lib/unicase/ignorable.c: New file.
5789         * modules/unicase/ignorable: New file.
5790
5791         New module 'unicase/cased'.
5792         * lib/unicase/caseprop.h: New file.
5793         * lib/unicase/cased.c: New file.
5794         * modules/unicase/cased: New file.
5795
5796         New functions for case mapping of substrings.
5797         * lib/unicase.h (casing_prefix_context_t): New type.
5798         (unicase_empty_prefix_context): New variable.
5799         (u8_casing_prefix_context, u16_casing_prefix_context,
5800         u32_casing_prefix_context, u8_casing_prefixes_context,
5801         u16_casing_prefixes_context, u32_casing_prefixes_context): New
5802         declarations.
5803         (casing_suffix_context_t): New type.
5804         (unicase_empty_suffix_context): New variable.
5805         (u8_casing_suffix_context, u16_casing_suffix_context,
5806         u32_casing_suffix_context, u8_casing_suffixes_context,
5807         u16_casing_suffixes_context, u32_casing_suffixes_context,
5808         u8_ct_toupper, u16_ct_toupper, u32_ct_toupper, u8_ct_tolower,
5809         u16_ct_tolower, u32_ct_tolower, u8_ct_totitle, u16_ct_totitle,
5810         u32_ct_totitle, u8_ct_casefold, u16_ct_casefold, u32_ct_casefold): New
5811         declarations.
5812
5813 2009-06-28  Jim Meyering  <meyering@redhat.com>
5814
5815         boostrap: indent only with spaces
5816         * build-aux/bootstrap: Indent only with spaces, never TABs.
5817
5818         bootstrap: split long lines
5819         * build-aux/bootstrap: Keep line length < 80.
5820
5821         bootstrap: sync from coreutils
5822         * build-aux/bootstrap: Honor variables like $ACLOCAL, etc.,
5823         just as autoreconf does.  Verify a list of prerequisite
5824         package-name,version-number pairs if defined in bootstrap.conf.
5825         Refer to README-prereq, if prerequisites are not satisfied.
5826
5827 2009-06-27  Eric Blake  <ebb9@byu.net>
5828
5829         tests: add test for bogus NULL definition
5830         * tests/test-stdio.c: Ensure POSIX 2008 requirement on NULL.
5831         * tests/test-stdlib.c: Likewise.
5832         * tests/test-string.c: Likewise.
5833         * tests/test-locale.c: Likewise.
5834         * tests/test-unistd.c: Likewise.
5835         * modules/stdio-tests (Depends-on): Add verify.
5836         * modules/stdlib-tests (Depends-on): Likewise.
5837         * modules/string-tests (Depends-on): Likewise.
5838         * modules/locale-tests (Depends-on): Likewise.
5839         * modules/unistd-tests (Depends-on): Likewise.
5840
5841 2009-06-27  Paolo Bonzini  <bonzini@gnu.org>
5842
5843         * m4/selinux-context-h (gl_HEADERS_SELINUX_CONTEXT_H): Remove
5844         self-explaining comment.
5845         * m4/selinux-selinux-h: Update serial.
5846         (gl_LIBSELINUX): New macro, adding a warning for missing development
5847         packages to code extracted from...
5848         (gl_HEADERS_SELINUX_SELINUX_H): ... this one.  Require gl_LIBSELINUX.
5849         Add warning for missing development packages here, too.
5850
5851 2009-06-26  Paolo Bonzini  <bonzini@gnu.org>
5852
5853         * build-aux/bootstrap: Do not use GIT_CONFIG_LOCAL.
5854
5855 2009-06-25  Eric Blake  <ebb9@byu.net>
5856
5857         version-etc: fix regression
5858         * lib/version-etc.h (ATTRIBUTE_SENTINEL): Define for new enough
5859         gcc.
5860         (version_etc): Use it, to catch bugs with trailing NULL.
5861         * lib/version-etc.c (version_etc_arn): Delete unused argument.
5862         (version_etc_va): Fix logic bug.
5863         * modules/version-etc-tests: Add test.
5864         * tests/test-version-etc.c: New file.
5865         * tests/test-version-etc.sh: Likewise.
5866
5867 2009-06-25  Sam Steingold  <sds@gnu.org>
5868
5869         * mbrtowc.m4 (gl_MBRTOWC_SANITYCHECK): Include <stdlib.h>, for the
5870         mbtowc declaration.
5871
5872 2009-06-25  Eric Blake  <ebb9@byu.net>
5873
5874         fpurge: migrate into <stdio.h>
5875         * lib/fpurge.h: Delete...
5876         * lib/stdio.in.h (fpurge): ...and declare here, instead.
5877         * lib/fpurge.c (fpurge): Change declaring header.
5878         * modules/fpurge (Files): Drop deleted file.
5879         (Depends-on): Add stdio.
5880         (configure.ac): Set witness.
5881         * modules/stdio (Makefile.am): Support fpurge macros.
5882         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Likewise.
5883         * m4/fpurge.m4 (gl_FUNC_FPURGE): Set appropriate variables.
5884         * lib/fflush.c: Update client.
5885         * tests/test-fpurge.c: Likewise.
5886         * NEWS: Mention the change.
5887
5888 2009-06-25  Sergey Poznyakoff  <gray@gnu.org.ua>
5889
5890         * lib/argp-version-etc.c (program_authors): Add const
5891         qualifier.
5892         * lib/version-etc.c: Fix typos in the comments.
5893         * modules/argp-version-etc: Depends on version-etc.
5894
5895 2009-06-25  Sergey Poznyakoff  <gray@gnu.org.ua>
5896
5897         argp-version-etc: new module.
5898
5899         * lib/argp-version-etc.c: New file.
5900         * lib/argp-version-etc.h: New file.
5901         * modules/argp-version-etc: New file.
5902         * modules/argp-version-etc-tests: New file.
5903         * tests/test-argp-version-etc.c: New test.
5904         * tests/test-argp-version-etc-1.sh: New test.
5905
5906 2009-06-25  Sergey Poznyakoff  <gray@gnu.org.ua>
5907
5908         Provide additional interfaces and documentation for version-etc
5909         module.
5910
5911         * lib/version-etc.c (version_etc_arn, version_etc_ar): New
5912         interfaces.
5913         * lib/version-etc.h (version_etc_arn, version_etc_ar): New
5914         prototypes.
5915
5916 2009-06-24  Bruno Haible  <bruno@clisp.org>
5917
5918         * m4/lib-link.m4 (AC_LIB_HAVE_LINKFLAGS): Fix description of
5919         HAVE_LIB${NAME} macro.
5920         Reported by Sam Steingold <sds@gnu.org>.
5921
5922 2009-06-23  Simon Josefsson  <simon@josefsson.org>
5923
5924         * modules/hash-tests (test_hash_LDADD): Link to libintl when
5925         needed.
5926
5927 2009-06-21  Bruno Haible  <bruno@clisp.org>
5928
5929         Make two consecutive identical invocations of AC_LIB_HAVE_LINKFLAGS
5930         work.
5931         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Reset HAVE_LIB${NAME}
5932         together with LIB${NAME}, LTLIB${NAME}.
5933         Reported by Sam Steingold <sds@gnu.org>.
5934
5935 2009-06-20  Jim Meyering  <meyering@redhat.com>
5936
5937         tests: make sc_require_test_exit_idiom more generic
5938         * top/maint.mk (Exit_witness_file): New overridable variable.
5939         (sc_require_test_exit_idiom): Don't hard-code tests/test-lib.sh.
5940         Relax test for /^Exit \$fail$$/ to just /^Exit ./.
5941
5942 2009-06-19  Jim Meyering  <meyering@redhat.com>
5943
5944         hash: reverse order of src/dst parameters in an internal interface
5945         * lib/hash.c (transfer_entries): Reverse order of parameters to
5946         put DST before SRC.  Adjust callers.
5947
5948         tests: test-hash: avoid wholesale duplication
5949         * tests/test-hash.c (main): Don't copy/paste a 60-line loop.
5950         Instead, use a loop and add a single conditional.
5951
5952         tests: test-hash: allow seed selection via a command line argument
5953         * tests/test-hash.c (get_seed): New function.
5954         (main): Use it.
5955
5956 2009-06-19  Eric Blake  <ebb9@byu.net>
5957
5958         hash: avoid memory leak on allocation failure
5959         * lib/hash.c: (hash_rehash): Avoid memory leak on allocation
5960         failure.  Factor repeated algorithm...
5961         (transfer_entries): ...into new helper routine.
5962         (hash_delete): React to hash_rehash return value.
5963
5964         hash: reduce memory pressure in hash_rehash no-op case
5965         * lib/hash.c (next_prime): Avoid overflow.
5966         (hash_initialize): Factor bucket size computation...
5967         (compute_bucket_size): ...into new helper function.
5968         (hash_rehash): Use new function and open coding to reduce memory
5969         pressure, and avoid a memory leak in USE_OBSTACK code.
5970         Reported by Jim Meyering.
5971
5972 2009-06-18  Eric Blake  <ebb9@byu.net>
5973
5974         hash: make rotation more obvious
5975         * modules/hash (Depends-on): Add bitrotate and stdint.
5976         * lib/bitrotate.h (rotl_sz, rotr_sz): New functions.
5977         * lib/hash.c (headers): Drop limits.h.  Add stdint.h.
5978         (SIZE_MAX): Rely on headers for definition.
5979         (hash_string) [USE_DIFF_HASH]: Use rotl_sz.
5980         (raw_hasher): Use rotr_sz.
5981         Suggested by Jim Meyering.
5982
5983         hash: fix memory leak in last patch
5984         * lib/hash.c (hash_rehash): Avoid memory leak.
5985
5986         hash: avoid no-op rehashing
5987         * lib/hash.c (hash_rehash): Recognize useless rehash attempts.
5988
5989         hash: provide default callback functions
5990         * lib/hash.c (raw_hasher, raw_comparator): New functions.
5991         (hash_initialize): Use them as defaults.
5992         * tests/test-hash.c (main): Test this.
5993
5994         hash: minor optimization
5995         * lib/hash.c (hash_lookup, hash_find_entry): Avoid function call
5996         when possible.
5997         (hash_initialize): Document this promise.
5998         (hash_do_for_each, hash_clear, hash_free): Use C89 syntax.
5999         * tests/test-hash.c (hash_compare_strings): Test this.
6000
6001 2009-06-18  Bruno Haible  <bruno@clisp.org>
6002
6003         * m4/strstr.m4 (gl_FUNC_STRSTR): Skip linear time test if strstr is
6004         going to be replaced anyway.
6005
6006 2009-06-18  Bruno Haible  <bruno@clisp.org>
6007
6008         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR_SIMPLE): Invoke AC_LIBOBJ only
6009         in one place.
6010         (gl_FUNC_STRCASESTR): Skip linear time test if strcasestr is going to
6011         be replaced anyway.
6012
6013 2009-06-18  Eric Blake  <ebb9@byu.net>
6014
6015         hash: check for resize before insertion
6016         * lib/hash.c (hash_insert): Check whether bucket usage exceeds
6017         threshold before insertion, so that a pathological hash_rehash
6018         that fills every bucket can still trigger another rehash.
6019
6020 2009-06-18  Jim Meyering  <meyering@redhat.com>
6021
6022         hash-tests: add a loop around the small tests
6023         * tests/test-hash.c (main): Repeat small tests with selected
6024         small initial table sizes.
6025
6026 2009-06-17  Eric Blake  <ebb9@byu.net>
6027
6028         hash: minor cleanups
6029         * lib/hash.h (hash_entry): Make opaque, by moving...
6030         * lib/hash.c (hash_entry): ...here.
6031         (hash_insert): Clarify restrictions on what can be inserted.
6032         (hash_get_next): Clarify when it is safe to remove an element
6033         during traversal.
6034         (check_tuning): Skip verification when tuning is known safe.
6035         (hash_initialize): Clarify restrictions on tuning.
6036
6037 2009-06-17  Jim Meyering  <jim@meyering.net>
6038         and Eric Blake  <ebb9@byu.net>
6039
6040         hash-tests: new module
6041         * modules/hash-tests: New file.
6042         * tests/test-hash.c: New file.
6043
6044 2009-06-17  Eric Blake  <ebb9@byu.net>
6045
6046         strstr-simple: document new module
6047         * MODULES.html.sh: Document new module.
6048
6049         strstr, strcasestr: replace on platforms with broken memchr
6050         * modules/strstr: Split into...
6051         * modules/strstr-simple: ...new module that does not care about
6052         performance, but does care about glibc bug.
6053         * m4/strstr.m4 (gl_FUNC_STRSTR): Split...
6054         (gl_FUNC_STRSTR_SIMPLE): ...into new macro, which replaces strstr
6055         if platform memchr is broken, per Debian bug 521737.
6056         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR_SIMPLE): React to broken
6057         memchr.
6058         * m4/memchr.m4 (gl_FUNC_MEMCHR): Only expand once.
6059         * doc/posix-functions/strstr.texi (strstr): Document the fix.
6060         * doc/glibc-functions/strcasestr.texi (strcasestr): Likewise.
6061         * modules/mountlist (Depends-on): Add strstr-simple.
6062         * modules/gen-uni-tables (Depends-on): Likewise.
6063         * modules/argz (Depends-on): Add strstr.
6064
6065 2009-06-17  Bruno Haible  <bruno@clisp.org>
6066
6067         * modules/posix_spawn-internal (Depends-on): Add errno.
6068
6069 2009-06-17  Bruno Haible  <bruno@clisp.org>
6070
6071         Define missing ESTALE on Interix 3.5.
6072         * lib/errno.in.h (ESTALE): Assign a value if missing.
6073         * lib/strerror.c (rpl_strerror): Handle missing ESTALE and ECANCELED.
6074         * m4/errno_h.m4 (gl_HEADER_ERRNO_H): Also test whether ESTALE is
6075         missing.
6076         * doc/posix-headers/errno.texi: Mention the Interix bug.
6077         Reported by Jay Krell <jay.krell@cornell.edu> via Eric Blake.
6078
6079 2009-06-15  Eric Blake  <ebb9@byu.net>
6080
6081         memchr, memchr2: add valgrind exception
6082         * lib/memchr.valgrind: New file.
6083         * lib/memchr2.valgrind: New file.
6084         * modules/memchr (Files): Distribute valgrind file.
6085         * modules/memchr2 (Files): Likewise.
6086
6087         docs: memchr is no longer obsolete
6088         * MODULES.html.sh: Move memchr from obsolete to string.h section.
6089         * lib/string.in.h (memchr): Simplify logic.
6090
6091 2009-06-14  Jim Meyering  <meyering@redhat.com>
6092
6093         link-follow: fix the "checking..." message to not mention trailing slash
6094         * m4/link-follow.m4 (gl_AC_FUNC_LINK_FOLLOWS_SYMLINK): This test has
6095         never considered trailing slashes.
6096
6097 2009-06-14  Bruno Haible  <bruno@clisp.org>
6098
6099         * m4/memchr.m4: Mention also the bug on IA-64.
6100         * doc/posix-functions/memchr.texi: Likewise.
6101
6102 2009-06-12  Eric Blake  <ebb9@byu.net>
6103
6104         memchr: detect broken x86_64 and alpha implementations
6105         * modules/memchr-tests (Depends-on): Move mmap detection...
6106         * modules/memchr (Depends-on): ...here.
6107         (configure.ac): Set indicator.
6108         * lib/string.in.h (memchr): Declare replacement.
6109         * modules/string (Makefile.am): Trigger replacement.
6110         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Likewise.
6111         * m4/memchr.m4 (gl_FUNC_MEMCHR): Use mmap to detect platform
6112         bugs.
6113         * doc/posix-functions/memchr.texi (memchr): Document the bug.
6114         * modules/getpagesize (License): Relax license.
6115
6116 2009-06-11  Bruno Haible  <bruno@clisp.org>
6117
6118         * lib/idpriv.h: Add more references.
6119
6120 2009-06-08  Bruno Haible  <bruno@clisp.org>
6121
6122         Tests for module 'idpriv-droptemp'.
6123         * modules/idpriv-droptemp-tests: New file.
6124         * tests/test-idpriv-droptemp.sh: New file.
6125         * tests/test-idpriv-droptemp.su.sh: New file.
6126         * tests/test-idpriv-droptemp.c: New file.
6127
6128         New module 'idpriv-droptemp'.
6129         * lib/idpriv-droptemp.c: New file.
6130         * modules/idpriv-droptemp: New file.
6131
6132 2009-06-08  Bruno Haible  <bruno@clisp.org>
6133
6134         Tests for module 'idpriv-drop'.
6135         * modules/idpriv-drop-tests: New file.
6136         * tests/test-idpriv-drop.sh: New file.
6137         * tests/test-idpriv-drop.su.sh: New file.
6138         * tests/test-idpriv-drop.c: New file.
6139
6140         New module 'idpriv-drop'.
6141         * lib/idpriv.h: New file.
6142         * lib-idpriv-drop.c: New file.
6143         * m4/idpriv.m4: New file.
6144         * modules/idpriv-drop: New file.
6145
6146 2009-06-08  Bruno Haible  <bruno@clisp.org>
6147
6148         * modules/unistdio/u8-vasnprintf (Depends-on): Add memchr.
6149         * modules/unistdio/u8-u8-vasnprintf (Depends-on): Likewise.
6150         * modules/unistdio/u16-vasnprintf (Depends-on): Likewise.
6151         * modules/unistdio/u16-u16-vasnprintf (Depends-on): Likewise.
6152         * modules/unistdio/u32-vasnprintf (Depends-on): Likewise.
6153         * modules/unistdio/u32-u32-vasnprintf (Depends-on): Likewise.
6154         * modules/unistdio/ulc-vasnprintf (Depends-on): Likewise.
6155
6156 2009-06-08  Eric Blake  <ebb9@byu.net>
6157
6158         test-strstr: use memory fence, when possible
6159         * tests/test-strstr.c (main): Use memory fence, in order to be
6160         more likely to trigger Debian bug 521737.
6161         * modules/strstr-tests (Files): Pull in additional files.
6162
6163         memchr: no longer obsolete, for wider field testing
6164         * modules/memchr (Status, Notice): Delete, this module is no
6165         longer obsolete.
6166         * modules/vasnprintf (Depends-on): Add memchr.
6167
6168 2009-06-07  Jim Meyering  <meyering@redhat.com>
6169
6170         hash: declare some functions with the warn_unused_result attribute
6171         * lib/hash.h (__attribute__, ATTRIBUTE_WUR): Define.
6172
6173 2009-06-07  Bruno Haible  <bruno@clisp.org>
6174
6175         * tests/test-alignof.c: Don't test int64_t if it does not exist.
6176         Reported by Eric Blake.
6177
6178 2009-06-06  Eric Blake  <ebb9@byu.net>
6179
6180         test-alignof: fix typo with long double
6181         * tests/test-alignof.c (CHECK): Use longdouble typedef to avoid
6182         compiler error.
6183
6184 2009-06-06  Neil Jerram  <neil@ossau.uklinux.net>  (tiny change)
6185
6186         Escape non-texinfo { and }s.
6187         * doc/ld-output-def.texi (Visual Studio Compatibility): Fix
6188         markup error.
6189
6190 2009-06-04  Jim Meyering  <meyering@redhat.com>
6191
6192         gitlog-to-changelog: don't infloop on an empty commit log
6193         * build-aux/gitlog-to-changelog: Warn about an empty log message.
6194         Reported by Boris Petersen <transacid@centerim.org>.
6195
6196 2009-06-03  Mike Frysinger  <vapier@gentoo.org>
6197
6198         version-etc: extend for packagers
6199         Add three new configure options, intended for packagers:
6200           --with-packager="packager name"
6201           --with-packager-version="packager-specific version"
6202           --with-packager-bug-reports="packager bug reporting"
6203         An example with coreutils:
6204           $ ./configure \
6205             --with-packager=Gentoo \
6206             --with-packager-bug-report=http://bugs.gentoo.org/ \
6207             --with-packager-version="patchset 1.6"
6208           $ ./src/ls --version | head -n3
6209           ls (GNU coreutils) 7.1-dirty
6210           Packaged by Gentoo (patchset 1.6)
6211           Copyright (C) 2009 Free Software Foundation, Inc.
6212         Note that the bug reporting info via --help doesn't show up because
6213         coreutils uses its own custom emit_bug_reporting_address() implementation
6214         in src/system.h.  If it didn't, it'd look like:
6215           $ ./src/ls --help | tail -n4
6216           Report bugs to <bug-coreutils@gnu.org>.
6217           Report Gentoo bugs to <http://bugs.gentoo.org/>.
6218           GNU coreutils home page: <http://www.gnu.org/software/coreutils/>.
6219           General help using GNU software: <http://www.gnu.org/gethelp/>.
6220         * lib/version-etc.c: Print new information, if provided.
6221         * m4/version-etc.m4: New file.
6222         * modules/version-etc (Files): Add m4/version-etc.m4.
6223         (configure.ac): Add gl_VERSION_ETC.
6224
6225 2009-05-31  Bruno Haible  <bruno@clisp.org>
6226
6227         * tests/test-alignof.c: Include <stdint.h>. Check also 'long double'
6228         and 'int64_t'.
6229         * modules/alignof-tests (Dependencies): Add stdint.
6230         Reported by Eric Blake.
6231
6232 2009-05-31  Bruno Haible  <bruno@clisp.org>
6233
6234         * lib/alignof.h (alignof_slot, alignof_type, alignof): Document
6235         restriction due to compiler bugs.
6236         Reported by Eric Blake.
6237
6238 2009-05-31  Simon Josefsson  <simon@josefsson.org>
6239             Bruno Haible  <bruno@clisp.org>
6240
6241         Fix test-alignof failure.
6242         * lib/alignof.h (alignof_slot): New macro.
6243         (alignof_type): New macro, with the same semantics as the previous
6244         'alignof'.
6245         (alignof): Alias to alignof_slot.
6246         * tests/test-alignof.c (CHECK): Check alignof_slot, not alignof. Also
6247         check that the results are usable as constant expressions.
6248
6249 2009-05-31  Bruno Haible  <bruno@clisp.org>
6250
6251         * tests/zerosize-ptr.h (zerosize_ptr): Specify more details.
6252         * tests/test-memchr.c (main): Check that memchr does not read past the
6253         first occurrence of the byte.
6254         * tests/test-strstr.c (main): Update comment.
6255         Suggested by Eric Blake.
6256
6257 2009-05-30  Bruno Haible  <bruno@clisp.org>
6258
6259         * doc/ld-output-def.texi (Visual Studio Compatibility): Explain in more
6260         detail how to use dumpbin.
6261         Reported by David Byron <dbyron@dbyron.com>.
6262
6263 2009-06-02  Simon Josefsson  <simon@josefsson.org>
6264
6265         * tests/test-parse-duration.sh: Don't use non-portable 'read -u3'.
6266
6267 2009-06-02  Simon Josefsson  <simon@josefsson.org>
6268
6269         * m4/manywarnings.m4: Add GCC 4.4 warnings.
6270
6271 2009-05-28  Bruno Haible  <bruno@clisp.org>
6272
6273         * gnulib-tool (func_import): Don't do HAVE_CONFIG_H replacements on
6274         build-aux/ files.
6275
6276 2009-05-28  Simon Josefsson  <simon@josefsson.org>
6277
6278         * gnulib-tool (func_import): Transform license on build-aux/ files too.
6279
6280 2009-05-27  Simon Josefsson  <simon@josefsson.org>
6281
6282         * gnulib-tool (sed_transform_main_lib_file)
6283         (sed_transform_testsrelated_lib_file): : Don't use non-POSIX
6284         regexps.
6285
6286 2009-05-26  Simon Josefsson  <simon@josefsson.org>
6287
6288         * tests/test-strstr.c: Add another self-test.
6289         * tests/test-strstr.c: Rewrite to use malloc/strcpy instead of
6290         strdup.  Suggested by Eric Blake  <ebb9@byu.net>.
6291
6292 2009-05-23  Bruno Haible  <bruno@clisp.org>
6293
6294         * doc/havelib.texi (AC_LIB_HAVE_LINKFLAGS): Update for 2009-04-26
6295         change.
6296
6297 2009-05-21  Bruno Haible  <bruno@clisp.org>
6298
6299         Simplify use of mode_t varargs.
6300         * lib/open.c (open): Use PROMOTED_MODE_T instead of a conditional that
6301         uses 'mode_t' or 'int'.
6302         * lib/openat.c (openat): Likewise.
6303         * lib/open-safer.c (open_safer): Likewise.
6304         * m4/mode_t.m4: New file.
6305         * m4/open.m4 (gl_PREREQ_OPEN): Require gl_PROMOTED_TYPE_MODE_T.
6306         * m4/openat.m4 (gl_PREREQ_OPENAT): Likewise.
6307         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Likewise.
6308         * modules/open (Files): Add m4/mode_t.m4.
6309         * modules/openat (Files): Likewise.
6310         * modules/fcntl-safer (Files): Likewise.
6311         Suggested by Eric Blake.
6312
6313 2009-05-21  Pádraig Brady  <P@draigbrady.com>
6314
6315         * doc/glibc-functions/fallocate.texi: New file.
6316         * doc/gnulib.texi: Include it.
6317
6318 2009-05-21  Eric Blake  <ebb9@byu.net>
6319             Bruno Haible  <bruno@clisp.org>
6320
6321         * m4/include_next.m4 (gl_CHECK_NEXT_HEADERS): Remove redundant m4_quote
6322         invocations.
6323         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Likewise.
6324
6325 2009-05-21  Eric Blake  <ebb9@byu.net>
6326             Bruno Haible  <bruno@clisp.org>
6327
6328         Second attempt to work around an AIX 5.3, 6.1 compiler bug with
6329         include_next. Fix of 2008-11-20 commit.
6330         * m4/include_next.m4 (gl_CHECK_NEXT_HEADERS): Also set
6331         NEXT_AS_FIRST_DIRECTIVE_FOO_H.
6332         * lib/math.in.h: Use NEXT_AS_FIRST_DIRECTIVE_MATH_H instead of
6333         NEXT_MATH_H.
6334         * modules/math (Makefile.am): Substitute NEXT_AS_FIRST_DIRECTIVE_MATH_H
6335         instead of NEXT_MATH_H.
6336
6337 2009-05-21  Bruno Haible  <bruno@clisp.org>
6338
6339         Avoid redefinition warnings for SIZE_MAX.
6340         * m4/size_max.m4 (gl_SIZE_MAX): Avoid redefining SIZE_MAX in config.h.
6341         Reported by Simon Josefsson.
6342
6343 2009-05-21  Bruno Haible  <bruno@clisp.org>
6344
6345         * m4/size_max.m4 (gl_SIZE_MAX): Use AC_CACHE_CHECK instead of
6346         AC_CACHE_VAL.
6347
6348 2009-05-20  Bruno Haible  <bruno@clisp.org>
6349
6350         Make zeroptr.h work on mingw.
6351         * tests/zerosize-ptr.h: Test for the presence of <sys/mman.h> and
6352         mprotect.
6353         * modules/memchr-tests (configure.ac): Also test for sys/mman.h.
6354         * modules/memchr2-tests (configure.ac): Likewise.
6355         * modules/memcmp-tests (configure.ac): Likewise.
6356         * modules/memmem-tests (configure.ac): Likewise.
6357         * modules/memrchr-tests (configure.ac): Likewise.
6358         Reported by Simon Josefsson.
6359
6360 2009-05-20  Simon Josefsson  <simon@josefsson.org>
6361
6362         * tests/test-glob.c: Include string.h for strcmp prototype.
6363
6364 2009-05-20  Simon Josefsson  <simon@josefsson.org>
6365
6366         * modules/getdelim (Depends-on): Add explicit stdint, although it
6367         was implicitly already pulled in via realloc-posix.
6368         * lib/getdelim.c: Get SIZE_MAX from stdint.h.
6369
6370 2009-05-20  Simon Josefsson  <simon@josefsson.org>
6371
6372         MinGW and IRIX does not have sa_family_t type.  Reported by "Tom
6373         G. Christensen" <tgc@jupiterrise.com>.
6374         * m4/sys_socket_h.m4: Check for sa_family_t.
6375         * lib/sys_socket.in.h: Typedef sa_family_t when needed.
6376         * modules/sys_socket: Substitute HAVE_SA_FAMILY_T.
6377         * tests/test-sys_socket.c: Check that sa_family_t works.
6378
6379 2009-05-18  Eric Blake  <ebb9@byu.net>
6380
6381         maint.mk: allow gnulib_dir in VPATH build
6382         * top/maint.mk (gnulib_dir): Make relative to $(srcdir).
6383
6384 2009-05-15  Jim Meyering  <meyering@redhat.com>
6385
6386         maint.mk: Give gnulib_dir a default definition.
6387         * top/maint.mk (gnulib_dir): Define to 'gnulib', by default.
6388         Thus, most packages no longer need to specify this variable in cfg.mk
6389
6390 2009-05-14  Tom Prince  <tom.prince@ualberta.net>  (tiny change)
6391
6392         rename.m4: fix typos that would make non-mingw cross-configure fail
6393         * m4/rename.m4 (gl_FUNC_RENAME): Fix typos.
6394
6395 2009-05-13  Eric Blake  <ebb9@byu.net>
6396
6397         mmap-anon: avoid out-of-order autoconf expansion
6398         * m4/mmap-anon.m4 (gl_FUNC_MMAP_ANON): Use correct
6399         SYSTEM_EXTENSIONS macro to silence warnings from autoconf 2.63b.
6400         * modules/memchr-tests (Depends-on): Add extensions.
6401         * modules/memchr2-tests (Depends-on): Add extensions.
6402         * modules/memcmp-tests (Depends-on): Add extensions.
6403         * modules/memmem-tests (Depends-on): Add extensions.
6404         * modules/memrchr-tests (Depends-on): Add extensions.
6405
6406 2009-05-13  Bruno Haible  <bruno@clisp.org>
6407
6408         Make some tests ISO C 99 compliant.
6409         * tests/zerosize-ptr.h: New file.
6410         * tests/test-memchr.c: Include zerosize-ptr.h.
6411         (main): Use a zero-size object pointer instead of NULL.
6412         * tests/test-memchr2.c: Include zerosize-ptr.h.
6413         (main): Use a zero-size object pointer instead of NULL.
6414         * tests/test-memcmp.c: Include zerosize-ptr.h.
6415         (main): Use a zero-size object pointer instead of NULL.
6416         * tests/test-memmem.c: Include zerosize-ptr.h.
6417         (main): Use a zero-size object pointer instead of NULL.
6418         * tests/test-memrchr.c: Include zerosize-ptr.h.
6419         (main): Use a zero-size object pointer instead of NULL.
6420         * modules/memchr-tests (Files): Add tests/zerosize-ptr.h,
6421         m4/mmap-anon.m4.
6422         (Depends-on): Add getpagesize.
6423         (configure.ac): Invoke gl_FUNC_MMAP_ANON. Check for mprotect.
6424         * modules/memchr2-tests (Files): Add tests/zerosize-ptr.h,
6425         m4/mmap-anon.m4.
6426         (Depends-on): Add getpagesize.
6427         (configure.ac): Invoke gl_FUNC_MMAP_ANON. Check for mprotect.
6428         * modules/memcmp-tests (Files): Add tests/zerosize-ptr.h,
6429         m4/mmap-anon.m4.
6430         (Depends-on): Add getpagesize.
6431         (configure.ac): Invoke gl_FUNC_MMAP_ANON. Check for mprotect.
6432         * modules/memmem-tests (Files): Add tests/zerosize-ptr.h,
6433         m4/mmap-anon.m4.
6434         (Depends-on): Add getpagesize.
6435         (configure.ac): Invoke gl_FUNC_MMAP_ANON. Check for mprotect.
6436         * modules/memrchr-tests (Files): Add tests/zerosize-ptr.h,
6437         m4/mmap-anon.m4.
6438         (Depends-on): Add getpagesize.
6439         (configure.ac): Invoke gl_FUNC_MMAP_ANON. Check for mprotect.
6440
6441 2009-05-12  Bruno Haible  <bruno@clisp.org>
6442
6443         Tests for module 'alignof'.
6444         * modules/alignof-tests: New file.
6445         * tests/test-alignof.c: New file.
6446
6447 2009-05-12  Bruno Haible  <bruno@clisp.org>
6448
6449         Fix alignof macro.
6450         * lib/alignof.h (alignof): Remove special cases for AIX and HP-UX
6451         vendor compilers that are always correct.
6452
6453 2009-05-12  Bruno Haible  <bruno@clisp.org>
6454
6455         Make the MAP_ANONYMOUS detection work on HP-UX 11.
6456         * m4/mmap-anon.m4 (gl_FUNC_MMAP_ANON): Check whether mmap exists, but
6457         not whether its fully works.
6458
6459 2009-05-12  Bruno Haible  <bruno@clisp.org>
6460
6461         * m4/mmap-anon.m4 (gl_FUNC_MMAP_ANON): Add comments.
6462
6463 2009-05-12  Jim Meyering  <meyering@redhat.com>
6464
6465         * top/maint.mk: Adjust backslash alignment.
6466
6467 2009-05-11  Simon Josefsson  <simon@josefsson.org>
6468
6469         * top/maint.mk: Make $(srcdir)/build-aux configurable.
6470
6471 2009-05-11  Eric Blake  <ebb9@byu.net>
6472
6473         argp: avoid undefined behavior
6474         * lib/argp-fmtstream.c (weak_alias): Pass correct types to ctype
6475         macros.
6476
6477 2009-05-08  Simon Josefsson  <simon@josefsson.org>
6478
6479         * tests/test-vc-list-files-git.sh: Do git config of user.email and
6480         user.name to prevent git commit from complaining.
6481
6482 2009-05-10  Bruno Haible  <bruno@clisp.org>
6483
6484         * gnulib-tool (func_import, func_create_testdir, copy-file): Change
6485         sed_rewrite_old_files, sed_rewrite_new_files, sed_rewrite_files so that
6486         it rewrites every file name only once.
6487         Reported by Simon Josefsson. Helped by Ralf Wildenhues.
6488
6489 2009-05-08  Bruno Haible  <bruno@clisp.org>
6490
6491         * lib/sys_socket.in.h (_SS_PADSIZE): Use a conditional expression
6492         instead of 'max'.
6493
6494 2009-05-08  Simon Josefsson  <simon@josefsson.org>
6495
6496         * m4/sys_socket_h.m4: Test for ws2tcpip.h earlier, needed for
6497         sockaddr_storage test.
6498
6499 2009-05-07  Simon Josefsson  <simon@josefsson.org>
6500
6501         * modules/sys_socket (Makefile.am): Substitute
6502         HAVE_STRUCT_SOCKADDR_STORAGE.  Depend on alignof.
6503         * m4/sys_socket_h.m4: Check for sockaddr_storage.
6504         * lib/sys_socket.in.h (sockaddr_storage): Define when needed.
6505         * tests/test-sys_socket.c: Check sockaddr_storage.
6506
6507 2009-05-08  Bruno Haible  <bruno@clisp.org>
6508
6509         New module 'alignof'.
6510         * lib/alignof.h: New file.
6511         * modules/alignof: New file.
6512
6513 2009-05-04  David Bartley  <dtbartle@csclub.uwaterloo.ca>
6514             Bruno Haible  <bruno@clisp.org>
6515
6516         Fix test-file-has-acl on FreeBSD.
6517         * tests/test-file-has-acl.sh: Also test a directory. On FreeBSD, the
6518         mask is implicitly added.
6519         * tests/test-file-has-acl.c: Include <signal.h>.
6520         (main): Terminate the test after 5 seconds.
6521         * modules/acl-tests (configure.ac): Check for alarm function.
6522
6523 2009-05-04  Bruno Haible  <bruno@clisp.org>
6524
6525         Exploit new semantics of AC_DEFUN_ONCE available since 2009-01-26.
6526         * m4/errno_h.m4 (gl_HEADER_ERRNO_H): Remove outdated comment.
6527         * modules/errno (configure.ac): Drop AC_REQUIRE.
6528         * m4/multiarch.m4 (gl_MULTIARCH): Remove outdated comment.
6529         * modules/multiarch (configure.ac): Drop AC_REQUIRE.
6530
6531 2009-05-04  Simon Josefsson  <simon@josefsson.org>
6532
6533         * modules/glob-tests: New module.
6534         * tests/test-glob.c: Add.
6535
6536 2009-05-04  Simon Josefsson  <simon@josefsson.org>
6537
6538         * modules/fnmatch-tests: New module.
6539         * tests/test-fnmatch.c: Add.
6540
6541 2009-05-04  Eric Blake  <ebb9@byu.net>
6542
6543         maint: make the new no-submodule-changes rule VPATH-safe
6544         * top/maint.mk (no-submodule-changes): Don't assume a srcdir build.
6545
6546 2009-05-04  David Bartley  <dtbartle@csclub.uwaterloo.ca>
6547             Bruno Haible  <bruno@clisp.org>
6548
6549         acl: Fix infinite loop on FreeBSD.
6550         * lib/acl_entries.c (acl_entries) [Linux, FreeBSD]: Fix interpretation
6551         of return value from acl_get_entry.
6552         * lib/file-has-acl.c (acl_access_nontrivial) [Linux, FreeBSD]:
6553         Likewise.
6554
6555 2009-05-03  Bruno Haible  <bruno@clisp.org>
6556
6557         * lib/acl-internal.h (acl_entries): Clarify return value.
6558         * lib/acl_entries.c (acl_entries): Likewise.
6559
6560 2009-05-04  David Bartley  <dtbartle@csclub.uwaterloo.ca>
6561
6562         Bug fix in acl module.
6563         * lib/set-mode-acl.c: Use correct struct with ACL_SETACL.
6564
6565 2009-05-03  Bruno Haible  <bruno@clisp.org>
6566
6567         Create gperf-generated file in the source dir, not in the build dir.
6568         * modules/iconv_open (iconv_open-aix.h, iconv_open-hpux.h,
6569         iconv_open-irix.h, iconv_open-osf.h): Create file in the source tree.
6570         * modules/unicase/locale-language (unicase/locale-languages.h):
6571         Likewise.
6572         * modules/unicase/special-casing (unicase/special-casing-table.h):
6573         Likewise.
6574         * modules/unictype/property-byname (unictype/pr_byname.h): Likewise.
6575         * modules/unictype/scripts (unictype/scripts_byname.h): Likewise.
6576         * modules/uninorm/composition (uninorm/composition-table.h): Likewise.
6577         Reported by Ralf Wildenhues.
6578
6579 2009-05-03  Bruno Haible  <bruno@clisp.org>
6580
6581         * modules/fnmatch (Description, configure.ac): Taken from
6582         fnmatch-posix.
6583         * modules/fnmatch-posix: Turn into a symbolic reference to the
6584         'fnmatch' module, and deprecate.
6585         * doc/posix-functions/fnmatch.texi: Mention the fnmatch module.
6586
6587 2009-05-03  Bruno Haible  <bruno@clisp.org>
6588
6589         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF,
6590         gl_PREREQ_VASNPRINTF_LONG_DOUBLE): Define through AC_DEFUN_ONCE.
6591         Reported by Ralf Wildenhues.
6592
6593 2009-05-04  Simon Josefsson  <simon@josefsson.org>
6594
6595         * m4/fnmatch.m4: Fix fnmatch re-define.
6596
6597 2009-04-27  David Bartley  <dtbartle@csclub.uwaterloo.ca>
6598
6599         priv-set: new module and tests; adapt write-any-file
6600         * lib/priv-set.c: New file.
6601         * lib/priv-set.h: New file.
6602         * lib/unlinkdir.c: Make cannot_unlink_dir thread-safe.
6603         * lib/write-any-file.c: Simplify by using priv-set module.
6604         * m4/priv-set.m4: New file.
6605         * modules/priv-set: New file.
6606         * modules/unlinkdir: Add dependency on priv-set module.
6607         * modules/write-any-file: Likewise.
6608
6609         Tests for module 'priv-set'.
6610         * modules/priv-set-tests: New file.
6611         * tests/test-priv-set.c: New file.
6612
6613 2009-05-03  Jim Meyering  <meyering@redhat.com>
6614             Bruno Haible  <bruno@clisp.org>
6615
6616         * lib/propername.c (proper_name_utf8): Ignore no-op translations;
6617         use the converted UTF-8 variant of the name instead.
6618
6619 2009-05-03  Jim Meyering  <meyering@redhat.com>
6620
6621         tests: tighten some getdate tests
6622         * tests/test-getdate.c (main): Tighten tests: require equality,
6623         not just greater than.  Set TZ envvar to UTC0.
6624
6625 2009-05-03  Giuseppe Scrivano  <gscrivano@gnu.org>
6626
6627         getdate: correctly interpret "next monday" when run on a Monday
6628         * lib/getdate.y (get_date): Correct the calculation of tm_mday so
6629         that e.g., "next tues" (when run on a tuesday) results in a date
6630         that is one week in the future, and not today's date.
6631         I.e., add a week when the wday is the same as the current one.
6632         Reported by Tom Broadhurst in http://savannah.gnu.org/bugs/?25406,
6633         and earlier by Martin Bernreuther and Jan Minář.
6634         * tests/test-getdate.c (main): Check that "next DAY" is always in
6635         the future and that "last DAY" is always in the past.
6636
6637 2009-05-02  Jim Meyering  <meyering@redhat.com>
6638
6639         build: ensure that a release build fails when a submodule is unclean
6640         * top/maint.mk (no-submodule-changes): New rule.
6641         (alpha beta major): Depend on it.
6642
6643 2009-05-02  Bruno Haible  <bruno@clisp.org>
6644
6645         Remove incompatibility between modules fnmatch-posix and fnmatch-gnu.
6646         * m4/fnmatch.m4 (gl_FUNC_FNMATCH_POSIX, gl_FUNC_FNMATCH_GNU): Use a
6647         shell variable gl_fnmatch_required to detect which variant is
6648         requested.
6649         (_AC_FUNC_FNMATCH_IF, _AC_LIBOBJ_FNMATCH): Remove macros. Inlined into
6650         gl_FUNC_FNMATCH_POSIX.
6651         * gnulib-tool (func_create_testdir, func_create_megatestdir): Don't
6652         exclude fnmatch-posix.
6653
6654 2009-05-02  Bruno Haible  <bruno@clisp.org>
6655
6656         Relicense mbsrtowcs and strnlen1 under LGPLv2+.
6657         * modules/mbsrtowcs (License): Change to LGPLv2+.
6658         * modules/strnlen1 (License): Likewise.
6659         Reported by Simon Josefsson.
6660
6661 2009-05-02  Bruno Haible  <bruno@clisp.org>
6662
6663         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Say "guessing no" instead of
6664         "cross".
6665         (gl_FUNC_FNMATCH_POSIX, gl_FUNC_FNMATCH_GNU): Update. Don't assume that
6666         gnulib-tool was called with option --source-base=lib.
6667
6668 2009-05-02  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
6669
6670         Use automake *-local hooks without commands, for extensibility.
6671         * modules/localcharset (Makefile.am): Rename install-exec-local
6672         rule to install-exec-localcharset, and make it a prerequisite of
6673         install-exec-local.  Likewise, rename the uninstall-local rule to
6674         uninstall-localcharset, and make it a prerequisite of the former.
6675
6676 2009-05-01  Bruno Haible  <bruno@clisp.org>
6677
6678         * lib/wchar.in.h (wcsnrtombs): Define if REPLACE_WCSNRTOMBS is 1.
6679         * m4/wcsnrtombs.m4 (gl_FUNC_WCSRTOMBS): Invoke gl_MBSTATE_T_BROKEN, and
6680         set REPLACE_WCSNRTOMBS if mbstate_t must be replaced.
6681         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize REPLACE_WCSNRTOMBS.
6682         * modules/wchar (Makefile.am): Substitute REPLACE_WCSNRTOMBS.
6683         * modules/wcsnrtombs (Files): Add m4/mbrtowc.m4, m4/locale-ja.m4,
6684         m4/locale-zh.m4, m4/codeset.m4.
6685
6686         * m4/wcsrtombs.m4 (gl_FUNC_WCSNRTOMBS): Invoke gl_MBSTATE_T_BROKEN, and
6687         set REPLACE_WCSRTOMBS if mbstate_t must be replaced.
6688         * modules/wcsrtombs (Files): Add m4/mbrtowc.m4, m4/locale-ja.m4,
6689         m4/locale-zh.m4.
6690
6691         * m4/wcrtomb.m4 (gl_FUNC_WCRTOMB): Invoke gl_MBSTATE_T_BROKEN, and set
6692         REPLACE_WCRTOMB if mbstate_t must be replaced.
6693         * modules/wcrtomb (Files): Add m4/mbrtowc.m4.
6694         Reported by Jens Rehsack <rehsack@googlemail.com> via Eric Blake.
6695
6696 2009-05-01  Bruno Haible  <bruno@clisp.org>
6697
6698         Avoid compiler warnings when redefining macros defined by <libintl.h>.
6699         * lib/gettext.h [!ENABLE_NLS] (gettext, dgettext, dcgettext, ngettext,
6700         dngettext, dcngettext, textdomain, bindtextdomain,
6701         bind_textdomain_codeset): Undefine before redefining.
6702
6703 2009-04-30  Bruno Haible  <bruno@clisp.org>
6704
6705         Fix bug introduced on 2009-04-25.
6706         * lib/math.in.h (gl_signbitf_OPTIMIZED_MACRO,
6707         gl_signbitd_OPTIMIZED_MACRO, gl_signbitl_OPTIMIZED_MACRO): New macros.
6708         * lib/signbitf.c (gl_signbitd): Undefine if gl_signbitf_OPTIMIZED_MACRO
6709         is defined.
6710         * lib/signbitd.c (gl_signbitd): Undefine if gl_signbitd_OPTIMIZED_MACRO
6711         is defined.
6712         * lib/signbitl.c (gl_signbitd): Undefine if gl_signbitl_OPTIMIZED_MACRO
6713         is defined.
6714         Reported by Elbert_Pol <elbert.pol@gmail.com>.
6715
6716 2009-04-28  Bruno Haible  <bruno@clisp.org>
6717
6718         Comment tweaks.
6719         * lib/unistr.h (u*_cmp2): Clarify what memcmp2 is.
6720         * lib/uninorm.h (u*_normxfrm): Fix description of return value.
6721         * lib/unicase.h (u*_casexfrm): Likewise.
6722         Reported by Paolo Bonzini.
6723
6724 2009-04-28  Bruno Haible  <bruno@clisp.org>
6725
6726         Fix a compilation error.
6727         * lib/mbsrtowcs-state.c (_gl_mbsrtowcs_state): Fix initializer.
6728         * lib/wcsrtombs-state.c (_gl_wcsrtombs_state): Likewise.
6729         Reported by Jim Meyering.
6730
6731 2009-04-27  Bruno Haible  <bruno@clisp.org>
6732
6733         New module 'libunistring'.
6734         * modules/libunistring: New file.
6735         * m4/libunistring.m4: New file.
6736         * MODULES.html.sh (Unicode string functions): Add it.
6737
6738 2009-04-27  Eric Blake  <ebb9@byu.net>
6739
6740         maint.mk: allow package-specific header to provide <config.h>
6741         * top/maint.mk (sc_require_config_h): New variable.
6742         (sc_require_config_h, sc_require_config_h_first): Use it.
6743
6744 2009-04-27  Simon Josefsson  <simon@josefsson.org>
6745
6746         * top/maint.mk (sc_avoid_if_before_free): Except
6747         useless-if-before-free script.
6748
6749 2009-04-27  Eric Blake  <ebb9@byu.net>
6750
6751         maintainer-makefile: depend on all required helper scripts
6752         * modules/maintainer-makefile (Depends-on): Add vc-list-files and
6753         useless-if-before-free.
6754         * top/maint.mk (VC_LIST, sc_avoid_if_before_free): Use local
6755         version, rather than assuming gnulib checkout is available.
6756         Reported by Simen Josefsson.
6757
6758 2009-04-26  Bruno Haible  <bruno@clisp.org>
6759
6760         Make the lib vs. lib64 recognition work on openSUSE 11 with "gcc -m32".
6761         * m4/lib-prefix.m4 (AC_LIB_PREPARE_MULTILIB): Ignore paths that end in
6762         "../" or "..".
6763
6764 2009-04-26  Bruno Haible  <bruno@clisp.org>
6765
6766         * m4/lib-link.m4 (AC_LIB_HAVE_LINKFLAGS): Accept a fifth argument.
6767         * m4/libsigsegv.m4 (gl_LIBSIGSEGV): Simplify by using
6768         AC_LIB_HAVE_LINKFLAGS.
6769
6770 2009-04-26  Bruno Haible  <bruno@clisp.org>
6771
6772         Simplify calling convention of u*_conv_from_encoding.
6773         * lib/uniconv.h (u8_conv_from_encoding, u16_conv_from_encoding,
6774         u32_conv_from_encoding): Expect a resultbuf argument and return the
6775         result directly as a pointer.
6776         * lib/uniconv/u8-conv-from-enc.c (u8_conv_from_encoding): Likewise.
6777         * lib/uniconv/u-conv-from-enc.h (FUNC): Likewise.
6778         * lib/uniconv/u-strconv-from-enc.h (FUNC): Update.
6779         * lib/unicase/ulc-casecmp.c (ulc_u8_casefold): Update.
6780         * lib/unicase/ulc-casexfrm.c (ulc_casexfrm): Update.
6781         * lib/unilbrk/ulc-possible-linebreaks.c (ulc_possible_linebreaks):
6782         Update.
6783         * lib/unilbrk/ulc-width-linebreaks.c (ulc_width_linebreaks): Update.
6784         * lib/uniwbrk/ulc-wordbreaks.c (ulc_wordbreaks): Update.
6785         * lib/vasnprintf.c (VASNPRINTF): Update.
6786         * tests/uniconv/test-u8-conv-from-enc.c (main): Update.
6787         * tests/uniconv/test-u16-conv-from-enc.c (main): Update.
6788         * tests/uniconv/test-u32-conv-from-enc.c (main): Update.
6789         * NEWS: Mention the change.
6790
6791 2009-04-26  Bruno Haible  <bruno@clisp.org>
6792
6793         Simplify calling convention of u*_conv_to_encoding.
6794         * lib/uniconv.h (u8_conv_to_encoding, u16_conv_to_encoding,
6795         u32_conv_to_encoding): Expect a resultbuf argument and return the
6796         result directly as a pointer.
6797         * lib/uniconv/u8-conv-to-enc.c (u8_conv_to_encoding): Likewise.
6798         * lib/uniconv/u-conv-to-enc.h (FUNC): Likewise. Preserve errno while
6799         freeing scaled_offsets if mem_iconveha failed.
6800         * lib/unicase/u-casexfrm.h (FUNC): Update.
6801         * lib/uninorm/u-normxfrm.h (FUNC): Update.
6802         * lib/vasnprintf.c (VASNPRINTF): Update.
6803         * tests/uniconv/test-u8-conv-to-enc.c (main): Update.
6804         * tests/uniconv/test-u16-conv-to-enc.c (main): Update.
6805         * tests/uniconv/test-u32-conv-to-enc.c (main): Update.
6806         * NEWS: Mention the change.
6807
6808 2009-04-26  Bruno Haible  <bruno@clisp.org>
6809
6810         Avoid test failures on AIX and OSF/1.
6811         * lib/uniconv/u8-conv-from-enc.c (u8_conv_from_encoding): Avoid calling
6812         malloc(0).
6813         * lib/uniconv/u8-conv-to-enc.c (u8_conv_to_encoding): Likewise.
6814         * lib/unilbrk/ulc-possible-linebreaks.c (ulc_possible_linebreaks):
6815         Likewise.
6816         * lib/unilbrk/ulc-width-linebreaks.c (ulc_width_linebreaks): Likewise.
6817         * lib/uniwbrk/ulc-wordbreaks.c (ulc_wordbreaks): Likewise.
6818         * lib/uniconv/u-conv-to-enc.h (FUNC): Likewise. Fix memory leak.
6819         * lib/unistr/u-cpy-alloc.h (FUNC): Call malloc(1) instead of malloc(0).
6820         * doc/posix-functions/malloc.texi: Document the portability problem
6821         related to malloc(0).
6822
6823 2009-04-26  Bruno Haible  <bruno@clisp.org>
6824
6825         * modules/unistr/u8-cpy-alloc (Depends-on): Add malloc-posix.
6826         * modules/unistr/u16-cpy-alloc (Depends-on): Likewise.
6827         * modules/unistr/u32-cpy-alloc (Depends-on): Likewise.
6828
6829 2009-04-25  Bruno Haible  <bruno@clisp.org>
6830
6831         Avoid link error when creating a namespace clean library.
6832         * lib/math.in.h (gl_signbitf, gl_signbitd, gl_signbitl): Don't define
6833         as macro with arguments if already defined as an alias.
6834         * lib/signbitf.c (gl_signbitf): Don't undefine.
6835         * lib/signbitd.c (gl_signbitd): Don't undefine.
6836         * lib/signbitl.c (gl_signbitl): Don't undefine.
6837
6838 2009-04-25  Jim Meyering  <meyering@redhat.com>
6839
6840         vc-list-files: fix another quoting bug
6841         * build-aux/vc-list-files: Avoid sed backslash expansion
6842         of pathological directory names.
6843
6844 2009-04-25  Eric Blake  <ebb9@byu.net>
6845
6846         vc-list-files: fix shell quoting error
6847         * build-aux/vc-list-files: Protect against $ in $dir.  Normalize
6848         timestamp.
6849
6850 2009-04-25  Jim Meyering  <meyering@redhat.com>
6851
6852         vc-list-files: restore lost functionality with subdir argument
6853         * build-aux/vc-list-files: When given a non-"." sub-directory
6854         argument, substitute the $dir/ prefix back onto each resulting name.
6855         Otherwise, coreutils' root_tests check would fail.
6856
6857 2009-04-24  Eric Blake  <ebb9@byu.net>
6858
6859         vc-list-files: ignore git symlinks
6860         * build-aux/vc-list-files (.git): Use ls-tree and a filter, rather
6861         than ls-files, to ignore git symlinks.
6862
6863         maint.mk: import improvements from m4
6864         * top/maint.mk (VC-tag): Use signing key from cfg.mk.
6865         (move_if_change): Delete unused macro.
6866         (news-date-check, vc-diff-check): Support VPATH builds.
6867         (announcement): Likewise.  Split --bootstrap-tools list...
6868         (boostrap-tools): ...into separate list, which can be overridden
6869         in cfg.mk.
6870         (sc_avoid_if_before_free): Point to $(gnulib_dir), rather than
6871         requiring dependency on useless-if-before-free module.
6872         (VC_LIST, VC_LIST_EXCEPT): Likewise for vc-list-files module.
6873         Support VPATH builds.
6874
6875 2009-04-24  Jim Meyering  <meyering@redhat.com>
6876
6877         maint.mk: remove coreutils-specific rules and variables
6878         * top/maint.mk (bin, taint-distcheck, coreutils-path-check, t): Remove.
6879         (fake_home, install-transform-check, my-instcheck, pfx, TMPDIR): Remove.
6880         (t_prefix, t_taint, tp, warn_cflags, write_loser, my-distcheck): Remove.
6881
6882         maint.mk: remove obsolete rule
6883         * top/maint.mk (rel-check): Remove rule.
6884         (WGET, WGETFLAGS): Remove now-unused variables.
6885
6886 2009-04-24  Simon Josefsson  <simon@josefsson.org>
6887
6888         * top/maint.mk (makefile-check): Renamed to sc_makefile_check for
6889         consistency.
6890
6891         * modules/vc-list-files-tests (TESTS_ENVIRONMENT): Use
6892         '$(PATH_SEPARATOR)' instead of ':'.
6893
6894 2009-04-24  Simon Josefsson  <simon@josefsson.org>
6895
6896         * lib/getopt1.c (main): Use 'const' for static array.
6897
6898 2009-04-24  Simon Josefsson  <simon@josefsson.org>
6899
6900         * top/maint.mk: Sync with coreutils.
6901         * NEWS: Explain incompatibilities.
6902
6903 2009-04-22  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
6904             Bruno Haible  <bruno@clisp.org>
6905
6906         Fix cross-compilation results.
6907         * m4/btowc.m4 (gl_FUNC_BTOWC): Use no-op statement, rather than empty
6908         statement, as third argument of AC_TRY_RUN.
6909         * m4/mbrtowc.m4 (gl_MBRTOWC_INCOMPLETE_STATE, gl_MBRTOWC_SANITYCHECK,
6910         gl_MBRTOWC_NULL_ARG, gl_MBRTOWC_RETVAL, gl_MBRTOWC_NUL_RETVAL):
6911         Likewise.
6912         * m4/mbsrtowcs.m4 (gl_MBSRTOWCS_WORKS): Likewise.
6913         * m4/wcsrtombs.m4 (gl_WCSRTOMBS_TERMINATION, gl_WCSRTOMBS_NULL):
6914         Likewise.
6915         * m4/wctob.m4 (gl_FUNC_WCTOB): Likewise.
6916         * m4/wcrtomb.m4 (gl_FUNC_WCRTOMB): Likewise. Update for AIX 4.3.
6917         * doc/posix-functions/wcrtomb.texi: Mention the bug on AIX 4.3.
6918
6919 2009-04-20  Bruno Haible  <bruno@clisp.org>
6920
6921         Avoid test failure on mingw.
6922         * tests/uniwidth/test-uc_width2.sh: Convert newlines in output.
6923
6924 2009-04-20  Bruno Haible  <bruno@clisp.org>
6925
6926         Avoid compilation error on mingw.
6927         * modules/localename-tests (Depends-on): Add locale.
6928
6929 2009-04-19  Bruno Haible  <bruno@clisp.org>
6930
6931         Support for building a shared library on Windows platforms.
6932         * tests/uninorm/test-nfc.c (n): Don't define if WOE32DLL.
6933         (main): Test the presence of UNINORM_NFC here.
6934         * tests/uninorm/test-nfd.c (n): Don't define if WOE32DLL.
6935         (main): Test the presence of UNINORM_NFD here.
6936         * tests/uninorm/test-nfkc.c (n): Don't define if WOE32DLL.
6937         (main): Test the presence of UNINORM_NFKC here.
6938         * tests/uninorm/test-nfkd.c (n): Don't define if WOE32DLL.
6939         (main): Test the presence of UNINORM_NFKD here.
6940
6941 2009-04-19  Bruno Haible  <bruno@clisp.org>
6942
6943         Avoid a compiler warning.
6944         * tests/uninorm/test-u32-normalize-big.c (read_normalization_test_file):
6945         Change type of variable 'sequence'.
6946
6947 2009-04-19  Bruno Haible  <bruno@clisp.org>
6948
6949         * modules/configmake (Makefile.am): When the contents of configmake.h
6950         does not change, arrange to preserve its modification time.
6951
6952 2009-04-17  Simon Josefsson  <simon@josefsson.org>
6953
6954         * top/maint.mk (PO_DOMAIN): New variable, allows overriding of
6955         gettext domain.
6956
6957 2009-04-16  Jim Meyering  <meyering@redhat.com>
6958
6959         useless-if-before-free: improve conversion code
6960         * build-aux/useless-if-before-free: Adjust code-in-comment to match
6961         "...!= 0" as well as "...!= NULL".  emacs has one of the former.
6962
6963 2009-04-14  Bruno Haible  <bruno@clisp.org>
6964
6965         * modules/fcntl (Depends-on): Add extensions.
6966         * m4/fcntl_h.m4 (gl_FCNTL_H): Add a comment.
6967
6968 2009-04-12  Ben Pfaff  <blp@gnu.org>
6969
6970         Make fcntl module detect O_NOATIME, O_NOFOLLOW on GNU/Linux.
6971         * m4/fcntl_h.m4 (gl_FCNTL_H): Require AC_USE_SYSTEM_EXTENSIONS.
6972
6973 2009-03-20  Ben Pfaff  <blp@gnu.org>
6974
6975         Make rename replace existing destinations on Windows.
6976         * m4/rename.m4: Add test for Mingw.
6977         * lib/rename.c: Add rename replacement that uses MoveFileEx with
6978         MOVEFILE_REPLACE_EXISTING to replace existing destination files.
6979         * doc/posix-functions/rename.texi: Document.
6980
6981 2009-04-10  Bruno Haible  <bruno@clisp.org>
6982
6983         New include file "iconveh.h".
6984         * lib/iconveh.h: New file, extracted from lib/striconveh.h.
6985         * lib/striconveh.h: Include it.
6986         (enum iconv_ilseq_handler): Remove definition.
6987         * lib/striconveha.h: Include <stddef.h> and iconveh.h instead of
6988         striconveh.h.
6989         * lib/striconveha.c: Include striconveh.h.
6990         * lib/uniconv.h: Include iconveh.h instead of striconveh.h.
6991         * modules/striconveh (Files): Add lib/iconveh.h.
6992         * modules/uniconv/base (Files): Add lib/iconveh.h. Remove
6993         lib/striconveh.h.
6994
6995 2009-04-10  Bruno Haible  <bruno@clisp.org>
6996
6997         * lib/uniconv.h: Update comment.
6998
6999 2009-04-10  Bruno Haible  <bruno@clisp.org>
7000
7001         * lib/unistr/u8-mbtouc-aux.c: Inside libunistring, define the function
7002         always.
7003         * lib/unistr/u8-mbtouc-unsafe-aux.c: Likewise.
7004         * lib/unistr/u16-mbtouc-aux.c: Likewise.
7005         * lib/unistr/u16-mbtouc-unsafe-aux.c: Likewise.
7006         * lib/unistr/u8-mbtouc.c: Inside libunistring, include
7007         "unistring-notinline.h", so that the function gets defined always.
7008         * lib/unistr/u8-mbtouc-unsafe.c: Likewise.
7009         * lib/unistr/u8-uctomb.c: Likewise.
7010         * lib/unistr/u16-mbtouc.c: Likewise.
7011         * lib/unistr/u16-mbtouc-unsafe.c: Likewise.
7012         * lib/unistr/u16-uctomb.c: Likewise.
7013         * lib/unistr/u32-mbtouc.c: Likewise.
7014         * lib/unistr/u32-mbtouc-unsafe.c: Likewise.
7015         * lib/unistr/u32-uctomb.c: Likewise.
7016
7017 2009-04-10  Bruno Haible  <bruno@clisp.org>
7018
7019         Mark 'utime' obsolete.
7020         * modules/utime (Status, Notice): New sections.
7021         Suggested by Jim Meyering.
7022
7023         Fix cross-compile guess for utime test.
7024         * m4/utime.m4 (AC_FUNC_UTIME_NULL): Add definition from newest unstable
7025         autoconf.
7026         * doc/posix-functions/utime.texi: Give more precisions.
7027         Reported by Jan <ipif@ymail.com>.
7028
7029 2009-04-09  Kamil Dudka  <kdudka@redhat.com>
7030
7031         filevercmp: correct today's change
7032         * lib/filevercmp.c: Also handle coreutils' test inputs.
7033         * tests/test-filevercmp.c: Add inputs from one of coreutils' test scripts.
7034
7035         Fix regression in 'filevercmp' module. Thanks Sven Joachim
7036         for reporting it.
7037         * lib/filevercmp.c: Special handle for "", "." and "..".
7038         * tests/test-filevercmp.c: Enlarge the set suite.
7039
7040 2009-04-07  Jim Meyering  <meyering@redhat.com>
7041
7042         useless-if-before-free: show how to remove braced useless free, too
7043         * build-aux/useless-if-before-free: still only in a comment, though.
7044
7045 2009-04-07  Reuben Thomas  <rrt@sc3d.org>
7046
7047         maint.mk: import changes to syntax-check macros from coreutils
7048         * top/maint.mk (_prohibit_regexp, _header_without_use): Define.
7049         Use them in the relevant macros.
7050
7051 2009-04-06  Bruno Haible  <bruno@clisp.org>
7052
7053         Fix unportable use of bit-fields.
7054         * lib/unicase/special-casing.h (struct special_casing_rule): Change the
7055         bit-field type from 'int' to 'signed int'. Otherwise Solaris cc,
7056         AIX xlc, and OSF/1 cc interpret it as 'unsigned int'.
7057
7058 2009-04-06  Bruno Haible  <bruno@clisp.org>
7059
7060         Avoid test failures on AIX and OSF/1.
7061         * tests/unicase/test-u8-casefold.c (check): Account for the possibility
7062         that malloc(0) = NULL.
7063         * tests/unicase/test-u8-tolower.c (check): Likewise.
7064         * tests/unicase/test-u8-totitle.c (check): Likewise.
7065         * tests/unicase/test-u8-toupper.c (check): Likewise.
7066         * tests/unicase/test-u16-casefold.c (check): Likewise.
7067         * tests/unicase/test-u16-tolower.c (check): Likewise.
7068         * tests/unicase/test-u16-totitle.c (check): Likewise.
7069         * tests/unicase/test-u16-toupper.c (check): Likewise.
7070         * tests/unicase/test-u32-casefold.c (check): Likewise.
7071         * tests/unicase/test-u32-tolower.c (check): Likewise.
7072         * tests/unicase/test-u32-totitle.c (check): Likewise.
7073         * tests/unicase/test-u32-toupper.c (check): Likewise.
7074         * tests/uninorm/test-u8-nfc.c (check): Likewise.
7075         * tests/uninorm/test-u8-nfd.c (check): Likewise.
7076         * tests/uninorm/test-u8-nfkc.c (check): Likewise.
7077         * tests/uninorm/test-u8-nfkd.c (check): Likewise.
7078         * tests/uninorm/test-u16-nfc.c (check): Likewise.
7079         * tests/uninorm/test-u16-nfd.c (check): Likewise.
7080         * tests/uninorm/test-u16-nfkc.c (check): Likewise.
7081         * tests/uninorm/test-u16-nfkd.c (check): Likewise.
7082         * tests/uninorm/test-u32-nfc.c (check): Likewise.
7083         * tests/uninorm/test-u32-nfd.c (check): Likewise.
7084         * tests/uninorm/test-u32-nfkc.c (check): Likewise.
7085         * tests/uninorm/test-u32-nfkd.c (check): Likewise.
7086
7087 2009-04-05  Bruno Haible  <bruno@clisp.org>
7088
7089         Work around an autoconf limitation.
7090         * gnulib-tool (func_emit_lib_Makefile_am): Omit the "Reproduce by"
7091         comment line if it would be longer than 3 KB.
7092
7093 2009-04-05  Bruno Haible  <bruno@clisp.org>
7094
7095         Avoid test failure with libiconv-1.13.
7096         * tests/test-striconveh.c (main): Allow result of libiconv 1.13 as one
7097         of the expected test results.
7098
7099 2009-04-05  Bruno Haible  <bruno@clisp.org>
7100
7101         * gnulib-tool (func_emit_lib_Makefile_am): Don't add the library to
7102         noinst_LTLIBRARIES if the Makefile.am in the same directory specifies
7103         that it should be installed.
7104
7105 2009-04-05  Bruno Haible  <bruno@clisp.org>
7106
7107         * gnulib-tool: New option --copy-file.
7108         (func_usage): Document it.
7109         (func_dest_tmpfilename): Moved out of func_import.
7110         (func_add_file, func_update_file): New functions, extracted from
7111         func_import.
7112         (func_import): Update.
7113
7114 2009-04-05  Karl Berry  <karl@gnu.org>
7115
7116         * README: prominently mention gnulib-tool.
7117         Rearrange sections so getting the code is near the top.
7118
7119 2009-04-05  Bruno Haible  <bruno@clisp.org>
7120
7121         * lib/unicase.h: Mention u*_cmp2.
7122         * lib/unicase/u-casecmp.h (FUNC): Invoke U_CMP2 instead of U_CMP.
7123         * lib/unicase/u8-casecmp.c: Use u8_cmp2 instead of u8_cmp.
7124         * lib/unicase/ulc-casecmp.c: Likewise.
7125         * lib/unicase/u16-casecmp.c: Use u16_cmp2 instead of u16_cmp.
7126         * lib/unicase/u32-casecmp.c: Use u32_cmp2 instead of u32_cmp.
7127         * modules/unicase/u8-casecmp (Depends-on): Add unistr/u8-cmp2, remove
7128         unistr/u8-cmp.
7129         * modules/unicase/ulc-casecmp (Depends-on): Likewise.
7130         * modules/unicase/u16-casecmp (Depends-on): Add unistr/u16-cmp2, remove
7131         unistr/u16-cmp.
7132         * modules/unicase/u32-casecmp (Depends-on): Add unistr/u32-cmp2, remove
7133         unistr/u32-cmp.
7134
7135         * lib/uninorm.h: Mention u*_cmp2.
7136         * lib/uninorm/u-normcmp.h (FUNC): Invoke U_CMP2 instead of U_CMP.
7137         * lib/uninorm/u8-normcmp.c: Use u8_cmp2 instead of u8_cmp.
7138         * lib/uninorm/u16-normcmp.c: Use u16_cmp2 instead of u16_cmp.
7139         * lib/uninorm/u32-normcmp.c: Use u32_cmp2 instead of u32_cmp.
7140         * modules/uninorm/u8-normcmp (Depends-on): Add unistr/u8-cmp2, remove
7141         unistr/u8-cmp.
7142         * modules/uninorm/u16-normcmp (Depends-on): Add unistr/u16-cmp2, remove
7143         unistr/u16-cmp.
7144         * modules/uninorm/u32-normcmp (Depends-on): Add unistr/u32-cmp2, remove
7145         unistr/u32-cmp.
7146
7147         New module 'unistr/u32-cmp2'.
7148         * lib/unistr/u32-cmp2.c: New file.
7149         * modules/unistr/u32-cmp2: New file.
7150
7151         New module 'unistr/u16-cmp2'.
7152         * lib/unistr/u16-cmp2.c: New file.
7153         * modules/unistr/u16-cmp2: New file.
7154
7155         New module 'unistr/u8-cmp2'.
7156         * lib/unistr.h (u8_cmp2, u16_cmp2, u32_cmp2): New declarations.
7157         * lib/unistr/u8-cmp2.c: New file.
7158         * lib/unistr/u-cmp2.h: New file.
7159         * modules/unistr/u8-cmp2: New file.
7160
7161 2009-04-05  Bruno Haible  <bruno@clisp.org>
7162
7163         * lib/unictype.h (uc_property_is_valid): New macro.
7164         * tests/unictype/test-pr_byname.c (main): Use it.
7165
7166         * lib/unistr.h: Doc fixes.
7167         * lib/uniconv.h: Doc fixes.
7168         * lib/unictype.h: Doc fixes.
7169
7170 2009-04-03  Paul Eggert  <eggert@cs.ucla.edu>
7171
7172         Port coreutils 7.2 to Solaris 8.
7173
7174         * modules/arpa_inet (arpa/inet.h): Depend on arpa_inet.in.h.
7175         * m4/inet_ntop.m4 (gl_INET_NTOP): Search for inet_ntop in -lnsl,
7176         for Solaris 8.  This is a bit of a hack, as it means it's the
7177         caller's responsibility to add -lnsl if needed, but most likely it
7178         won't be needed since only getaddrinfo uses this and getaddrinfo
7179         isn't needed on Solaris 8.
7180
7181         * modules/fnmatch (Depends-on): Add mbsrtowcs, to fix a porting
7182         problem to Solaris 8 encountered with coreutils 7.2, which
7183         resulted in a message "fnmatch.c:292: warning: passing argument 4
7184         of 'mbsrtowcs' from incompatible pointer type".  Also, add mbsinit
7185         at the suggestion of Bruno Haible, since fnmatch uses mbsinit.
7186
7187 2009-04-03  Simon Josefsson  <simon@josefsson.org>
7188
7189         * m4/ld-version-script.m4: Add FIXME comment.
7190
7191 2009-04-02  Simon Josefsson  <simon@josefsson.org>
7192
7193         * doc/ld-output-def.texi: Use DLL_VERSION instead of confusing
7194         SOVERSION variable.
7195
7196 2009-04-02  Bruno Haible  <bruno@clisp.org>
7197
7198         * Makefile (info, html, dvi, pdf): Combine the rules.
7199         Suggested by Jim Meyering.
7200
7201 2009-04-01  Bruno Haible  <bruno@clisp.org>
7202
7203         * Makefile (info, html, dvi, pdf): New targets.
7204         Reported by Reuben Thomas <rrt@sc3d.org>.
7205
7206 2009-04-01  Bruno Haible  <bruno@clisp.org>
7207
7208         * doc/gnulib-tool.texi (Invoking gnulib-tool): Document how gnulib-tool
7209         can be put into PATH.
7210         Reported by Reuben Thomas <rrt@sc3d.org>. Suggested by Karl Berry.
7211
7212 2009-04-01  Bruno Haible  <bruno@clisp.org>
7213
7214         * doc/lib-symbol-visibility.texi: Follow texinfo style conventions.
7215
7216 2009-04-01  Bruno Haible  <bruno@clisp.org>
7217
7218         Rename module 'visibility'.
7219         * modules/lib-symbol-visibility: Renamed from modules/visibility.
7220         * doc/lib-symbol-visibility.texi: Renamed from visibility.texi.
7221         * doc/gnulib.texi: Update.
7222         * MODULES.html.sh (Misc): Update.
7223         * NEWS: Mention the change.
7224
7225 2009-04-01  Simon Josefsson  <simon@josefsson.org>
7226
7227         * modules/lib-msvc-compat: New module.  Thanks to Bruno Haible
7228         <bruno@clisp.org>, Ralf Wildenhues <Ralf.Wildenhues@gmx.de>, and
7229         Eric Blake <ebb9@byu.net> for review.
7230         * MODULES.html.sh: Add lib-msvc-compat.
7231         * doc/gnulib.texi: Link to new section.
7232         * m4/ld-output-def.m4: New file.
7233         * doc/ld-output-def.texi: New file.
7234
7235 2009-04-01  Simon Josefsson  <simon@josefsson.org>
7236
7237         Rename ld-version-script to lib-symbol-versions.  Suggested by
7238         Bruno Haible <bruno@clisp.org>.
7239         * modules/ld-version-script: Renamed to lib-symbol-versions.
7240         * doc/ld-version-script.texi: Fix module name.
7241         * MODULES.html.sh: Add lib-symbol-versions.
7242
7243 2009-03-31  Simon Josefsson  <simon@josefsson.org>
7244
7245         * modules/u64-tests: New file.
7246         * tests/test-u64.c: New file.
7247
7248 2009-03-04  Simon Josefsson  <simon@josefsson.org>
7249
7250         * MODULES.html.sh: Mention u64.
7251         * modules/u64: New module.
7252         * modules/crypto/sha512: Depend on u64 module instead of providing
7253         u64.h.
7254
7255 2009-03-27  Eric Blake  <ebb9@byu.net>
7256
7257         test-strerror: make debugging EAI_SYSTEM easier
7258         * modules/getaddrinfo-tests (Depends-on): Add strerror.
7259         * test-getaddrinfo.c (simple) [ENABLE_DEBUGGING]: Report errno if
7260         failure was EAI_SYSTEM.
7261
7262 2009-03-25  Bruno Haible  <bruno@clisp.org>
7263
7264         Fix a problem with --enable-relocatable on Solaris 7.
7265         * modules/relocatable-prog-wrapper (Depends-on): Add environ. Needed
7266         since 2008-02-24.
7267
7268 2009-03-25  Eric Blake  <ebb9@byu.net>
7269
7270         test-sockets: avoid gcc warning
7271         * tests/test-sockets.c (main): Silence compiler warning.
7272
7273 2009-03-25  Paul Eggert  <eggert@cs.ucla.edu>
7274
7275         New modules nproc, pthread, contributed by Glen Lenker.
7276
7277         * MODULES.html.sh: Add pthread, nproc.
7278         * lib/nproc.c: New file.
7279         * lib/nproc.h: New file.
7280         * lib/pthread.in.h: New file.
7281         * m4/pthread.m4: New file.
7282         * modules/nproc: New file.
7283         * modules/pthread: New file.
7284
7285 2009-03-24  Simon Josefsson  <simon@josefsson.org>
7286
7287         * modules/unicase/locale-language-tests (test_locale_language_LDADD):
7288         New variable.
7289
7290 2009-03-24  Kamil Dudka  <kdudka@redhat.com>
7291
7292         filevercmp: handle simple~ and numbered.~3~ backup suffixes
7293         * lib/filevercmp.c: Handle simple~ and numbered.~3~ backup suffixes.
7294         * tests/test-filevercmp.c: Add tests for backup suffixes.
7295
7296 2009-03-24  Simon Josefsson  <simon@josefsson.org>
7297
7298         * modules/stdlib (Depends-on): Add stdint, needed when defining
7299         struct random_data on, for example, HP-UX 10.20.  Reported by
7300         Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
7301
7302 2009-03-24  Simon Josefsson  <simon@josefsson.org>
7303
7304         * lib/readline.c (readline): Call fflush on stdout after printing
7305         prompt.
7306
7307 2009-03-20  Bruno Haible  <bruno@clisp.org>
7308
7309         Remove dependency from 'close' module to -lws2_32 on native Windows.
7310         * lib/close-hook.h: New file.
7311         * lib/close-hook.c: New file.
7312         * lib/close.c: Include close-hook.h. Don't include <sys/socket.h>,
7313         w32sock.h.
7314         (_gl_close_fd_maybe_socket): Remove function.
7315         (rpl_close): Invoke execute_all_close_hooks instead of
7316         _gl_close_fd_maybe_socket.
7317         * lib/sockets.c: Include close-hook.h, w32sock.h.
7318         (close_fd_maybe_socket): New function, essentially from lib/close.c.
7319         (close_sockets_hook): New variable.
7320         (gl_sockets_startup): Register close_fd_maybe_socket as a hook.
7321         (gl_sockets_cleanup): Unregister it.
7322         * lib/unistd.in.h (HAVE__GL_CLOSE_FD_MAYBE_SOCKET): Remove macro.
7323         * m4/close.m4 (gl_REPLACE_CLOSE): Undo 2009-02-05 change.
7324         * modules/close-hook: New file.
7325         * modules/close (Files): Remove lib/w32sock.h.
7326         (Depends-on): Add close-hook.
7327         (Link): Remove section.
7328         * modules/sockets (Files): Add lib/w32sock.h.
7329         (Depends-on): Add close-hook.
7330         * modules/sys_socket (configure.ac): Remove gl_MODULE_INDICATOR
7331         invocation.
7332         * NEWS: Mention that LIB_CLOSE is gone.
7333
7334 2009-03-23  Eric Blake  <ebb9@byu.net>
7335
7336         signal-tests: test previous patch
7337         * tests/test-signal.c: New file.
7338         * modules/signal-tests: Likewise.
7339
7340         signal.h: always support 'volatile sig_atomic_t'
7341         * m4/signal_h.m4 (gl_SIGNAL_H): Check for AIX limitation.
7342         (gl_SIGNAL_H_DEFAULTS): Add a default.
7343         * modules/signal (Makefile.am): Substitute if needed.
7344         * lib/signal.in.h (sig_atomic_t): Redefine if needed, so that
7345         users can blindly add volatile.
7346         * doc/posix-headers/signal.texi (signal.h): Document it.
7347         Reported by Matthew Woehlke.
7348
7349 2009-03-23  Jim Meyering  <meyering@redhat.com>
7350
7351         pathmax: PATH_MAX: use pathconf only when available
7352         * lib/pathmax.h (PATH_MAX): Select the pathconf-using definition
7353         only if HAVE_PATHCONF is defined.  Patch by Sylvain Beucler.
7354         * m4/pathmax.m4 (gl_PATHMAX): Check for pathconf.
7355         This avoids a link failure in a PSP cross-compilation environment
7356         described in http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/17048
7357
7358         * lib/vasnprintf.c (divide): Fix typo in comment.
7359
7360 2009-03-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
7361
7362         * gnulib-tool (func_filter_filelist): Fix comment.
7363
7364 2009-03-20  Bruno Haible  <bruno@clisp.org>
7365
7366         Make sockets.h self-contained.
7367         * lib/sockets.c: Include sockets.h first.
7368         * lib/sockets.h: Include <sys/socket.h> before using the SOCKET type.
7369
7370 2009-03-19  Eric Blake  <ebb9@byu.net>
7371
7372         doc: mention more functions added in cygwin 1.7.0
7373         * doc/posix-functions/log2.texi: Mention recent cygwin 1.7.0
7374         addition.
7375         * doc/posix-functions/log2f.texi: Likewise.
7376
7377 2009-03-19  Jim Meyering  <meyering@redhat.com>
7378
7379         fsusage: avoid syntax error due to statement-before-declaration
7380         * lib/fsusage.c (get_fs_usage): Put warning-avoidance statement
7381         after all declarations.  Reported by Matthew Woehlke in
7382         http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/16231
7383
7384 2009-03-18  Eric Blake  <ebb9@byu.net>
7385
7386         build-aux/compile: sync from automake
7387         * build-aux/compile: New file, from automake.
7388         * config/srclist.txt: Mention build-aux/compile.
7389
7390 2009-03-17  Bruno Haible  <bruno@clisp.org>
7391
7392         * lib/git-merge-changelog.c: Fix typo in comment.
7393         Reported by Reuben Thomas <rrt@sc3d.org>.
7394
7395 2009-03-17  Reuben Thomas  <rrt@sc3d.org>
7396
7397         * m4/regex.m4: update and improve help for
7398         --without-included-regex.
7399
7400 2009-03-17  Simon Josefsson  <simon@josefsson.org>
7401
7402         * modules/isnanl-nolibm-tests (Files): Add tests/nan.h to avoid
7403         failure on missing include files.
7404
7405 2009-03-17  Eric Blake  <ebb9@byu.net>
7406
7407         doc: mention more functions added in cygwin 1.7.0
7408         * doc/posix-functions/fwprintf.texi: Mention recent cygwin 1.7.0
7409         addition.
7410         * doc/posix-functions/fwscanf.texi: Likewise.
7411         * doc/posix-functions/swprintf.texi: Likewise.
7412         * doc/posix-functions/swscanf.texi: Likewise.
7413         * doc/posix-functions/vfwprintf.texi: Likewise.
7414         * doc/posix-functions/vfwscanf.texi: Likewise.
7415         * doc/posix-functions/vswprintf.texi: Likewise.
7416         * doc/posix-functions/vswscanf.texi: Likewise.
7417         * doc/posix-functions/vwprintf.texi: Likewise.
7418         * doc/posix-functions/vwscanf.texi: Likewise.
7419         * doc/posix-functions/wcscasecmp.texi: Likewise.
7420         * doc/posix-functions/wcsdup.texi: Likewise.
7421         * doc/posix-functions/wcsftime.texi: Likewise.
7422         * doc/posix-functions/wcsncasecmp.texi: Likewise.
7423         * doc/posix-functions/wprintf.texi: Likewise.
7424         * doc/posix-functions/wscanf.texi: Likewise.
7425         * doc/glibc-functions/gethostbyname2.texi: Likewise.
7426
7427 2009-03-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
7428
7429         maint.mk: really add $(AM_MAKEFLAGS)
7430         * top/maint.mk (init-coverage, build-coverage): `$(AM_MAKEFLAGS)'
7431         was inadvertently omitted in the last commit.
7432         Spotted by Bruno Haible.
7433
7434         maint.mk: use $(MAKE) $(AM_MAKEFLAGS) not make
7435         * top/maint.mk (init-coverage, build-coverage): Use `$(MAKE)
7436         $(AM_MAKEFLAGS)' rather than plain `make'.
7437
7438         gnulib-tool: execute $MAKE not make
7439         * gnulib-tool: Default $MAKE to 'make'.
7440         (func_create_testdir, func_create_megatestdir): Use $MAKE rather
7441         than make.  Initialize $MAKE in the do-autobuild script.
7442
7443         gnulib-tool: use $MAKE not make in generated files
7444         * gnulib-tool (func_create_megatestdir): Use $MAKE rather than
7445         make, in generated files.  Initialize $MAKE in the do-autobuild
7446         script.
7447
7448         * top/GNUmakefile (_have-git-version-gen): Fix typo.
7449
7450         GNUmakefile: disable parallelism only for multiple, recursive targets
7451         * top/GNUmakefile (ALL_RECURSIVE_TARGETS): New macro; allow user
7452         additions in the Makefile.
7453         (AM_RECURSIVE_TARGETS): New macro, override only if not provided
7454         by Automake.
7455         (.NOTPARALLEL): Only disable parallel builds if multiple targets
7456         are listed on the command line and at least one of them is
7457         listed in $(ALL_RECURSIVE_TARGETS).
7458
7459 2009-03-14  Bruno Haible  <bruno@clisp.org>
7460
7461         * modules/unilbrk/u8-possible-linebreaks (Depends-on): Replace
7462         utf8-ucs4-unsafe with unistr/u8-mbtouc-unsafe.
7463         * modules/unilbrk/u8-width-linebreaks (Depends-on): Likewise.
7464         * modules/unilbrk/u16-possible-linebreaks (Depends-on): Replace
7465         utf16-ucs4-unsafe with unistr/u16-mbtouc-unsafe.
7466         * modules/unilbrk/u16-width-linebreaks (Depends-on): Likewise.
7467         * modules/unistr/u8-chr (Depends-on): Replace ucs4-utf8 with
7468         unistr/u8-uctomb.
7469         * modules/unistr/u8-strchr (Depends-on): Likewise.
7470         * modules/unistr/u8-strrchr (Depends-on): Likewise.
7471         * modules/unistr/u16-chr (Depends-on): Replace ucs4-utf16 with
7472         unistr/u16-uctomb.
7473         * modules/unistr/u16-strchr (Depends-on): Likewise.
7474         * modules/unistr/u16-strrchr (Depends-on): Likewise.
7475
7476 2009-03-12  Bruno Haible  <bruno@clisp.org>
7477
7478         Work around select() bug on Interix 3.5.
7479         * lib/sys_select.in.h (select): Also replace if REPLACE_SELECT is 1.
7480         * lib/select.c (rpl_select): Add an implementation for Unix platforms.
7481         * m4/select.m4: New file.
7482         * m4/sys_select_h.m4 (gl_SYS_SELECT_H_DEFAULTS): Initialize REPLACE_SELECT.
7483         * modules/sys_select (Makefile.am): Substitute REPLACE_SELECT.
7484         * modules/select (Files): Add m4/select.m4.
7485         (configure.ac): Move conditional to m4/select.m4. Invoke gl_FUNC_SELECT.
7486         * modules/nanosleep (Depends-on): Add select.
7487         * modules/poll (Depends-on): Likewise.
7488         * doc/posix-functions/select.texi: Mention the Interix bug.
7489         Reported by Markus Duft <mduft@gentoo.org>.
7490
7491         * lib/select.c: Renamed from lib/winsock-select.c.
7492         * modules/select (Files): Add lib/select.c, remove
7493         lib/winsock-select.c.
7494         (configure.ac): Update.
7495
7496 2009-03-12  Jim Meyering  <meyering@redhat.com>
7497
7498         avoid gcc warnings about unused macro definitions
7499         * lib/readtokens.c (STREQ): Remove unused definition.
7500         * lib/xmalloc.c (SIZE_MAX): Likewise.
7501         * lib/openat-die.c (N_): Likewise.
7502         * lib/mountlist.c (SIZE_MAX): Remove definition.
7503         Instead, include <stdint.h>.
7504         * lib/readutmp.c: Likewise.
7505         * modules/readutmp (Depends-on): Add stdint.
7506         * modules/mountlist (Depends-on): Add stdint.
7507         * lib/userspec.c (ISDIGIT): Move definition into #if block where used.
7508
7509 2009-03-10  Bruno Haible  <bruno@clisp.org>
7510
7511         Tests for module 'mbmemcasecoll'.
7512         * modules/mbmemcasecoll-tests: New file.
7513         * tests/test-mbmemcasecoll1.sh: New file.
7514         * tests/test-mbmemcasecoll2.sh: New file.
7515         * tests/test-mbmemcasecoll3.sh: New file.
7516         * tests/test-mbmemcasecoll.c: New file.
7517
7518         New module 'mbmemcasecoll'.
7519         * lib/mbmemcasecoll.h: New file.
7520         * lib/mbmemcasecoll.c: New file.
7521         * modules/mbmemcasecoll: New file.
7522
7523         * tests/test-mbmemcasecmp.h: New file, extracted from
7524         tests/test-mbmemcasecmp.c.
7525         * tests/test-mbmemcasecmp.c: Include test-mbmemcasecmp.h.
7526         (test_ascii, test_iso_8859_1, test_utf_8): Remove functions.
7527         (main): Update.
7528         * modules/mbmemcasecmp-tests (Files): Add tests/test-mbmemcasecmp.h.
7529
7530 2009-03-09  Bruno Haible  <bruno@clisp.org>
7531
7532         Tests for module 'mbmemcasecmp'.
7533         * modules/mbmemcasecmp-tests: New file.
7534         * tests/test-mbmemcasecmp1.sh: New file.
7535         * tests/test-mbmemcasecmp2.sh: New file.
7536         * tests/test-mbmemcasecmp3.sh: New file.
7537         * tests/test-mbmemcasecmp.c: New file.
7538
7539         New module 'mbmemcasecmp'.
7540         * lib/mbmemcasecmp.h: New file.
7541         * lib/mbmemcasecmp.c: New file.
7542         * modules/mbmemcasecmp: New file.
7543
7544 2009-03-09  Bruno Haible  <bruno@clisp.org>
7545
7546         Tests for module 'unicase/ulc-casecoll'.
7547         * modules/unicase/ulc-casecoll-tests: New file.
7548         * tests/unicase/test-ulc-casecoll1.sh: New file.
7549         * tests/unicase/test-ulc-casecoll2.sh: New file.
7550         * tests/unicase/test-ulc-casecoll.c: New file.
7551
7552         New module 'unicase/ulc-casecoll'.
7553         * lib/unicase.h (ulc_casecoll): New declaration.
7554         * lib/unicase/ulc-casecoll.c: New file.
7555         * modules/unicase/ulc-casecoll: New file.
7556
7557         New module 'unicase/ulc-casexfrm'.
7558         * lib/unicase.h (ulc_casexfrm): New declaration.
7559         * lib/unicase/ulc-casexfrm.c: New file.
7560         * modules/unicase/ulc-casexfrm: New file.
7561
7562 2009-03-09  Bruno Haible  <bruno@clisp.org>
7563
7564         Followup to 2008-12-22 commit: Remove unnecessary AC_FUNC_MBRTOWC
7565         invocations.
7566
7567         * m4/mbscasecmp.m4: Remove file.
7568         * modules/mbscasecmp (Files): Remove it and m4/mbrtowc.m4
7569         (configure.ac): Remove gl_FUNC_MBSCASECMP invocation.
7570
7571         * m4/mbscasestr.m4: Remove file.
7572         * modules/mbscasestr (Files): Remove it and m4/mbrtowc.m4
7573         (configure.ac): Remove gl_FUNC_MBSCASESTR invocation.
7574
7575         * m4/mbschr.m4: Remove file.
7576         * modules/mbschr (Files): Remove it and m4/mbrtowc.m4
7577         (configure.ac): Remove gl_FUNC_MBSCHR invocation.
7578
7579         * m4/mbscspn.m4: Remove file.
7580         * modules/mbscspn (Files): Remove it and m4/mbrtowc.m4
7581         (configure.ac): Remove gl_FUNC_MBSCSPN invocation.
7582
7583         * m4/mbslen.m4: Remove file.
7584         * modules/mbslen (Files): Remove it and m4/mbrtowc.m4
7585         (configure.ac): Remove gl_FUNC_MBSLEN invocation.
7586
7587         * m4/mbsncasecmp.m4: Remove file.
7588         * modules/mbsncasecmp (Files): Remove it and m4/mbrtowc.m4
7589         (configure.ac): Remove gl_FUNC_MBSNCASECMP invocation.
7590
7591         * m4/mbsnlen.m4: Remove file.
7592         * modules/mbsnlen (Files): Remove it and m4/mbrtowc.m4
7593         (configure.ac): Remove gl_FUNC_MBSNLEN invocation.
7594
7595         * m4/mbspbrk.m4: Remove file.
7596         * modules/mbspbrk (Files): Remove it and m4/mbrtowc.m4
7597         (configure.ac): Remove gl_FUNC_MBSPBRK invocation.
7598
7599         * m4/mbspcasecmp.m4: Remove file.
7600         * modules/mbspcasecmp (Files): Remove it and m4/mbrtowc.m4
7601         (configure.ac): Remove gl_FUNC_MBSPCASECMP invocation.
7602
7603         * m4/mbsrchr.m4: Remove file.
7604         * modules/mbsrchr (Files): Remove it and m4/mbrtowc.m4
7605         (configure.ac): Remove gl_FUNC_MBSRCHR invocation.
7606
7607         * m4/mbssep.m4: Remove file.
7608         * modules/mbssep (Files): Remove it and m4/mbrtowc.m4
7609         (configure.ac): Remove gl_FUNC_MBSSEP invocation.
7610
7611         * m4/mbsspn.m4: Remove file.
7612         * modules/mbsspn (Files): Remove it and m4/mbrtowc.m4
7613         (configure.ac): Remove gl_FUNC_MBSSPN invocation.
7614
7615         * m4/mbsstr.m4: Remove file.
7616         * modules/mbsstr (Files): Remove it and m4/mbrtowc.m4
7617         (configure.ac): Remove gl_FUNC_MBSSTR invocation.
7618
7619         * m4/mbstok_r.m4: Remove file.
7620         * modules/mbstok_r (Files): Remove it and m4/mbrtowc.m4
7621         (configure.ac): Remove gl_FUNC_MBSTOK_R invocation.
7622
7623         * m4/mbswidth.m4 (gl_MBSWIDTH): Remove AC_FUNC_MBRTOWC invocation.
7624
7625         * m4/quotearg.m4 (gl_QUOTEARG): Remove mbsinit test and
7626         AC_TYPE_MBSTATE_T, AC_FUNC_MBRTOWC invocations.
7627
7628         * modules/trim (configure.ac): Remove AC_FUNC_MBRTOWC invocation.
7629
7630 2009-03-08  Bruno Haible  <bruno@clisp.org>
7631
7632         Tests for module 'unicase/ulc-casecmp'.
7633         * modules/unicase/ulc-casecmp-tests: New file.
7634         * tests/unicase/test-ulc-casecmp1.sh: New file.
7635         * tests/unicase/test-ulc-casecmp2.sh: New file.
7636         * tests/unicase/test-ulc-casecmp.c: New file.
7637
7638         New module 'unicase/ulc-casecmp'.
7639         * lib/unicase.h (ulc_casecmp): New declaration.
7640         * lib/unicase/ulc-casecmp.c: New file.
7641         * lib/unicase/u-casecmp.h (FUNC): Change argument types to
7642         'const SRC_UNIT *'.
7643         * lib/unicase/u8-casecmp.c (SRC_UNIT): Define like UNIT.
7644         * lib/unicase/u16-casecmp.c (SRC_UNIT): Likewise.
7645         * lib/unicase/u32-casecmp.c (SRC_UNIT): Likewise.
7646         * modules/unicase/ulc-casecmp: New file.
7647
7648         Tests for module 'unicase/u32-is-cased'.
7649         * modules/unicase/u32-is-cased-tests: New file.
7650         * tests/unicase/test-u32-is-cased.c: New file.
7651
7652         Tests for module 'unicase/u16-is-cased'.
7653         * modules/unicase/u16-is-cased-tests: New file.
7654         * tests/unicase/test-u16-is-cased.c: New file.
7655
7656         Tests for module 'unicase/u8-is-cased'.
7657         * modules/unicase/u8-is-cased-tests: New file.
7658         * tests/unicase/test-u8-is-cased.c: New file.
7659         * tests/unicase/test-is-cased.h: New file.
7660
7661         New module 'unicase/u32-is-cased'.
7662         * lib/unicase/u32-is-cased.c: New file.
7663         * modules/unicase/u32-is-cased: New file.
7664
7665         New module 'unicase/u16-is-cased'.
7666         * lib/unicase/u16-is-cased.c: New file.
7667         * modules/unicase/u16-is-cased: New file.
7668
7669         New module 'unicase/u8-is-cased'.
7670         * lib/unicase/u8-is-cased.c: New file.
7671         * lib/unicase/u-is-cased.h: New file.
7672         * modules/unicase/u8-is-cased: New file.
7673
7674         Tests for module 'unicase/u32-is-casefolded'.
7675         * modules/unicase/u32-is-casefolded-tests: New file.
7676         * tests/unicase/test-u32-is-casefolded.c: New file.
7677
7678         Tests for module 'unicase/u16-is-casefolded'.
7679         * modules/unicase/u16-is-casefolded-tests: New file.
7680         * tests/unicase/test-u16-is-casefolded.c: New file.
7681
7682         Tests for module 'unicase/u8-is-casefolded'.
7683         * modules/unicase/u8-is-casefolded-tests: New file.
7684         * tests/unicase/test-u8-is-casefolded.c: New file.
7685         * tests/unicase/test-is-casefolded.h: New file.
7686
7687         New module 'unicase/u32-is-casefolded'.
7688         * lib/unicase/u32-is-casefolded.c: New file.
7689         * modules/unicase/u32-is-casefolded: New file.
7690
7691         New module 'unicase/u16-is-casefolded'.
7692         * lib/unicase/u16-is-casefolded.c: New file.
7693         * modules/unicase/u16-is-casefolded: New file.
7694
7695         New module 'unicase/u8-is-casefolded'.
7696         * lib/unicase/u8-is-casefolded.c: New file.
7697         * modules/unicase/u8-is-casefolded: New file.
7698
7699         Tests for module 'unicase/u32-is-titlecase'.
7700         * modules/unicase/u32-is-titlecase-tests: New file.
7701         * tests/unicase/test-u32-is-titlecase.c: New file.
7702
7703         Tests for module 'unicase/u16-is-titlecase'.
7704         * modules/unicase/u16-is-titlecase-tests: New file.
7705         * tests/unicase/test-u16-is-titlecase.c: New file.
7706
7707         Tests for module 'unicase/u8-is-titlecase'.
7708         * modules/unicase/u8-is-titlecase-tests: New file.
7709         * tests/unicase/test-u8-is-titlecase.c: New file.
7710         * tests/unicase/test-is-titlecase.h: New file.
7711
7712         New module 'unicase/u32-is-titlecase'.
7713         * lib/unicase/u32-is-titlecase.c: New file.
7714         * modules/unicase/u32-is-titlecase: New file.
7715
7716         New module 'unicase/u16-is-titlecase'.
7717         * lib/unicase/u16-is-titlecase.c: New file.
7718         * modules/unicase/u16-is-titlecase: New file.
7719
7720         New module 'unicase/u8-is-titlecase'.
7721         * lib/unicase/u8-is-titlecase.c: New file.
7722         * modules/unicase/u8-is-titlecase: New file.
7723
7724         Tests for module 'unicase/u32-is-lowercase'.
7725         * modules/unicase/u32-is-lowercase-tests: New file.
7726         * tests/unicase/test-u32-is-lowercase.c: New file.
7727
7728         Tests for module 'unicase/u16-is-lowercase'.
7729         * modules/unicase/u16-is-lowercase-tests: New file.
7730         * tests/unicase/test-u16-is-lowercase.c: New file.
7731
7732         Tests for module 'unicase/u8-is-lowercase'.
7733         * modules/unicase/u8-is-lowercase-tests: New file.
7734         * tests/unicase/test-u8-is-lowercase.c: New file.
7735         * tests/unicase/test-is-lowercase.h: New file.
7736
7737         New module 'unicase/u32-is-lowercase'.
7738         * lib/unicase/u32-is-lowercase.c: New file.
7739         * modules/unicase/u32-is-lowercase: New file.
7740
7741         New module 'unicase/u16-is-lowercase'.
7742         * lib/unicase/u16-is-lowercase.c: New file.
7743         * modules/unicase/u16-is-lowercase: New file.
7744
7745         New module 'unicase/u8-is-lowercase'.
7746         * lib/unicase/u8-is-lowercase.c: New file.
7747         * modules/unicase/u8-is-lowercase: New file.
7748
7749         Tests for module 'unicase/u32-is-uppercase'.
7750         * modules/unicase/u32-is-uppercase-tests: New file.
7751         * tests/unicase/test-u32-is-uppercase.c: New file.
7752
7753         Tests for module 'unicase/u16-is-uppercase'.
7754         * modules/unicase/u16-is-uppercase-tests: New file.
7755         * tests/unicase/test-u16-is-uppercase.c: New file.
7756
7757         Tests for module 'unicase/u8-is-uppercase'.
7758         * modules/unicase/u8-is-uppercase-tests: New file.
7759         * tests/unicase/test-u8-is-uppercase.c: New file.
7760         * tests/unicase/test-is-uppercase.h: New file.
7761
7762         New module 'unicase/u32-is-uppercase'.
7763         * lib/unicase/u32-is-uppercase.c: New file.
7764         * modules/unicase/u32-is-uppercase: New file.
7765
7766         New module 'unicase/u16-is-uppercase'.
7767         * lib/unicase/u16-is-uppercase.c: New file.
7768         * modules/unicase/u16-is-uppercase: New file.
7769
7770         New module 'unicase/u8-is-uppercase'.
7771         * lib/unicase/u8-is-uppercase.c: New file.
7772         * modules/unicase/u8-is-uppercase: New file.
7773
7774         New module 'unicase/u32-is-invariant'.
7775         * lib/unicase/u32-is-invariant.c: New file.
7776         * modules/unicase/u32-is-invariant: New file.
7777
7778         New module 'unicase/u16-is-invariant'.
7779         * lib/unicase/u16-is-invariant.c: New file.
7780         * modules/unicase/u16-is-invariant: New file.
7781
7782         New module 'unicase/u8-is-invariant'.
7783         * lib/unicase/u8-is-invariant.c: New file.
7784         * lib/unicase/invariant.h: New file.
7785         * lib/unicase/u-is-invariant.h: New file.
7786         * modules/unicase/u8-is-invariant: New file.
7787
7788         Tests for module 'unicase/u32-casecoll'.
7789         * modules/unicase/u32-casecoll-tests: New file.
7790         * tests/unicase/test-u32-casecoll.c: New file.
7791
7792         Tests for module 'unicase/u16-casecoll'.
7793         * modules/unicase/u16-casecoll-tests: New file.
7794         * tests/unicase/test-u16-casecoll.c: New file.
7795
7796         Tests for module 'unicase/u8-casecoll'.
7797         * modules/unicase/u8-casecoll-tests: New file.
7798         * tests/unicase/test-u8-casecoll.c: New file.
7799
7800         New module 'unicase/u32-casecoll'.
7801         * lib/unicase/u32-casecoll.c: New file.
7802         * modules/unicase/u32-casecoll: New file.
7803
7804         New module 'unicase/u16-casecoll'.
7805         * lib/unicase/u16-casecoll.c: New file.
7806         * modules/unicase/u16-casecoll: New file.
7807
7808         New module 'unicase/u8-casecoll'.
7809         * lib/unicase/u8-casecoll.c: New file.
7810         * lib/unicase/u-casecoll.h: New file.
7811         * modules/unicase/u8-casecoll: New file.
7812
7813         New module 'unicase/u32-casexfrm'.
7814         * lib/unicase/u32-casexfrm.c: New file.
7815         * modules/unicase/u32-casexfrm: New file.
7816
7817         New module 'unicase/u16-casexfrm'.
7818         * lib/unicase/u16-casexfrm.c: New file.
7819         * modules/unicase/u16-casexfrm: New file.
7820
7821         New module 'unicase/u8-casexfrm'.
7822         * lib/unicase/u8-casexfrm.c: New file.
7823         * lib/unicase/u-casexfrm.h: New file.
7824         * modules/unicase/u8-casexfrm: New file.
7825
7826         Tests for module 'unicase/u32-casecmp'.
7827         * modules/unicase/u32-casecmp-tests: New file.
7828         * tests/unicase/test-u32-casecmp.c: New file.
7829
7830         Tests for module 'unicase/u16-casecmp'.
7831         * modules/unicase/u16-casecmp-tests: New file.
7832         * tests/unicase/test-u16-casecmp.c: New file.
7833
7834         Tests for module 'unicase/u8-casecmp'.
7835         * modules/unicase/u8-casecmp-tests: New file.
7836         * tests/unicase/test-u8-casecmp.c: New file.
7837         * tests/unicase/test-casecmp.h: New file.
7838
7839         New module 'unicase/u32-casecmp'.
7840         * lib/unicase/u32-casecmp.c: New file.
7841         * modules/unicase/u32-casecmp: New file.
7842
7843         New module 'unicase/u16-casecmp'.
7844         * lib/unicase/u16-casecmp.c: New file.
7845         * modules/unicase/u16-casecmp: New file.
7846
7847         New module 'unicase/u8-casecmp'.
7848         * lib/unicase/u8-casecmp.c: New file.
7849         * lib/unicase/u-casecmp.h: New file.
7850         * modules/unicase/u8-casecmp: New file.
7851
7852         Tests for module 'unicase/u32-casefold'.
7853         * modules/unicase/u32-casefold-tests: New file.
7854         * tests/unicase/test-u32-casefold.c: New file.
7855
7856         Tests for module 'unicase/u16-casefold'.
7857         * modules/unicase/u16-casefold-tests: New file.
7858         * tests/unicase/test-u16-casefold.c: New file.
7859
7860         Tests for module 'unicase/u8-casefold'.
7861         * modules/unicase/u8-casefold-tests: New file.
7862         * tests/unicase/test-u8-casefold.c: New file.
7863
7864         New module 'unicase/u32-casefold'.
7865         * lib/unicase/u32-casefold.c: New file.
7866         * modules/unicase/u32-casefold: New file.
7867
7868         New module 'unicase/u16-casefold'.
7869         * lib/unicase/u16-casefold.c: New file.
7870         * modules/unicase/u16-casefold: New file.
7871
7872         New module 'unicase/u8-casefold'.
7873         * lib/unicase/u8-casefold.c: New file.
7874         * lib/unicase/u-casefold.h: New file.
7875         * modules/unicase/u8-casefold: New file.
7876
7877         New module 'unicase/tocasefold'.
7878         * lib/unicase/casefold.h: New file.
7879         * lib/unicase/tocasefold.c: New file.
7880         * lib/unicase/tocasefold.h: New file, generated by gen-uni-tables.c.
7881         * modules/unicase/tocasefold: New file.
7882
7883         Tests for module 'unicase/u32-totitle'.
7884         * modules/unicase/u32-totitle-tests: New file.
7885         * tests/unicase/test-u32-totitle.c: New file.
7886
7887         Tests for module 'unicase/u16-totitle'.
7888         * modules/unicase/u16-totitle-tests: New file.
7889         * tests/unicase/test-u16-totitle.c: New file.
7890
7891         Tests for module 'unicase/u8-totitle'.
7892         * modules/unicase/u8-totitle-tests: New file.
7893         * tests/unicase/test-u8-totitle.c: New file.
7894
7895         New module 'unicase/u32-totitle'.
7896         * lib/unicase/u32-totitle.c: New file.
7897         * modules/unicase/u32-totitle: New file.
7898
7899         New module 'unicase/u16-totitle'.
7900         * lib/unicase/u16-totitle.c: New file.
7901         * modules/unicase/u16-totitle: New file.
7902
7903         New module 'unicase/u8-totitle'.
7904         * lib/unicase/u8-totitle.c: New file.
7905         * lib/unicase/u-totitle.h: New file.
7906         * modules/unicase/u8-totitle: New file.
7907
7908         Tests for module 'unicase/u32-tolower'.
7909         * modules/unicase/u32-tolower-tests: New file.
7910         * tests/unicase/test-u32-tolower.c: New file.
7911
7912         Tests for module 'unicase/u16-tolower'.
7913         * modules/unicase/u16-tolower-tests: New file.
7914         * tests/unicase/test-u16-tolower.c: New file.
7915
7916         Tests for module 'unicase/u8-tolower'.
7917         * modules/unicase/u8-tolower-tests: New file.
7918         * tests/unicase/test-u8-tolower.c: New file.
7919
7920         New module 'unicase/u32-tolower'.
7921         * lib/unicase/u32-tolower.c: New file.
7922         * modules/unicase/u32-tolower: New file.
7923
7924         New module 'unicase/u16-tolower'.
7925         * lib/unicase/u16-tolower.c: New file.
7926         * modules/unicase/u16-tolower: New file.
7927
7928         New module 'unicase/u8-tolower'.
7929         * lib/unicase/u8-tolower.c: New file.
7930         * modules/unicase/u8-tolower: New file.
7931
7932         Tests for module 'unicase/u32-toupper'.
7933         * modules/unicase/u32-toupper-tests: New file.
7934         * tests/unicase/test-u32-toupper.c: New file.
7935
7936         Tests for module 'unicase/u16-toupper'.
7937         * modules/unicase/u16-toupper-tests: New file.
7938         * tests/unicase/test-u16-toupper.c: New file.
7939
7940         Tests for module 'unicase/u8-toupper'.
7941         * modules/unicase/u8-toupper-tests: New file.
7942         * tests/unicase/test-u8-toupper.c: New file.
7943
7944         New module 'unicase/u32-toupper'.
7945         * lib/unicase/u32-toupper.c: New file.
7946         * modules/unicase/u32-toupper: New file.
7947
7948         New module 'unicase/u16-toupper'.
7949         * lib/unicase/u16-toupper.c: New file.
7950         * modules/unicase/u16-toupper: New file.
7951
7952         New module 'unicase/u8-toupper'.
7953         * lib/unicase/u8-toupper.c: New file.
7954         * modules/unicase/u8-toupper: New file.
7955
7956         New module 'unicase/u32-casemap'.
7957         * lib/unicase/u32-casemap.c: New file.
7958         * modules/unicase/u32-casemap: New file.
7959
7960         New module 'unicase/u16-casemap'.
7961         * lib/unicase/u16-casemap.c: New file.
7962         * modules/unicase/u16-casemap: New file.
7963
7964         New module 'unicase/u8-casemap'.
7965         * lib/unicase/unicasemap.h: New file.
7966         * lib/unicase/u8-casemap.c: New file.
7967         * lib/unicase/u-casemap.h: New file.
7968         * modules/unicase/u8-casemap: New file.
7969
7970         New module 'unicase/special-casing'.
7971         * lib/unicase/special-casing.h: New file.
7972         * lib/unicase/special-casing.c: New file.
7973         * lib/unicase/special-casing-table.gperf: New file, generated by
7974         gen-uni-tables.c.
7975         * modules/unicase/special-casing: New file.
7976
7977         Tests for module 'unicase/locale-language'.
7978         * modules/unicase/locale-language-tests: New file.
7979         * tests/unicase/test-locale-language.sh: New file.
7980         * tests/unicase/test-locale-language.c: New file.
7981
7982         New module 'unicase/locale-language'.
7983         * lib/unicase/locale-language.c: New file.
7984         * lib/unicase/locale-languages.gperf: New file.
7985         * modules/unicase/locale-language: New file.
7986
7987         Generate more tables for case conversion and case folding.
7988         * lib/gen-uni-tables.c (SCC_*): New enum items.
7989         (struct special_casing_rule): New type.
7990         (casing_rules, num_casing_rules, allocated_casing_rules): New
7991         variables.
7992         (add_casing_rule, fill_casing_rules): New functions.
7993         (struct casefold_rule): New type.
7994         (casefolding_rules, num_casefolding_rules,
7995         allocated_casefolding_rules): New variables.
7996         (fill_casefolding_rules): New function.
7997         (unicode_casefold): New variable.
7998         (to_casefold, redistribute_casefolding_rules, compare_casing_rules,
7999         sort_casing_rules, output_casing_rules): New functions.
8000         (main): Accept to more arguments: SpecialCasing.txt and
8001         CaseFolding.txt. Invoke fill_casing_rules, fill_casefolding_rules,
8002         redistribute_casefolding_rules, sort_casing_rules, output_casing_rules.
8003         Output mapping for casefolding.
8004
8005         * lib/unicase.h: Include stdbool.h, uninorm.h.
8006         (u8_toupper, u16_toupper, u32_toupper, u8_tolower, u16_tolower,
8007         u32_tolower, u8_totitle, u16_totitle, u32_totitle): Add nf argument.
8008         (u8_casefold, u16_casefold, u32_casefold): Add iso639_language and nf
8009         arguments.
8010         (u8_casecmp, u16_casecmp, u32_casecmp): Add iso639_language, nf,
8011         resultp arguments.
8012         (u8_casexfrm, u16_casexfrm, u32_casexfrm): New declarations.
8013         (u8_casecoll, u16_casecoll, u32_casecoll): Add iso639_language, nf,
8014         resultp arguments.
8015         (u8_is_uppercase, u16_is_uppercase, u32_is_uppercase, u8_is_lowercase,
8016         u16_is_lowercase, u32_is_lowercase, u8_is_titlecase, u16_is_titlecase,
8017         u32_is_titlecase, u8_is_casefolded, u16_is_casefolded,
8018         u32_is_casefolded, u8_is_cased, u16_is_cased, u32_is_cased): New
8019         declarations.
8020         * modules/unicase/base (Depends-on): Add uninorm/base, stdbool.
8021
8022 2009-03-08  Bruno Haible  <bruno@clisp.org>
8023
8024         * lib/uninorm.h (u8_normcmp, u16_normcmp, u32_normcmp, u8_normcoll,
8025         u16_normcoll, u32_normcoll): Rename argument 'result' to 'resultp'.
8026         * lib/uninorm/u-normcmp.h (FUNC): Likewise.
8027         * lib/uninorm/u-normcoll.h (FUNC): Likewise.
8028
8029 2009-03-07  Bruno Haible  <bruno@clisp.org>
8030
8031         Adjust u*_normcmp, u*_normcoll API.
8032         * lib/uninorm.h (u8_normcmp, u16_normcmp, u32_normcmp, u8_normcoll,
8033         u16_normcoll, u32_normcoll): Change failure conventions.
8034         * lib/uninorm/u-normcmp.h (FUNC): Upon failure, store the error code in
8035         errno and return -1.
8036         * lib/uninorm/u-normcoll.h (FUNC): Likewise.
8037
8038 2009-03-07  Bruno Haible  <bruno@clisp.org>
8039
8040         Tests for module 'uninorm/u32-normcoll'.
8041         * modules/uninorm/u32-normcoll-tests: New file.
8042         * tests/uninorm/test-u32-normcoll.c: New file.
8043
8044         Tests for module 'uninorm/u16-normcoll'.
8045         * modules/uninorm/u16-normcoll-tests: New file.
8046         * tests/uninorm/test-u16-normcoll.c: New file.
8047
8048         Tests for module 'uninorm/u8-normcoll'.
8049         * modules/uninorm/u8-normcoll-tests: New file.
8050         * tests/uninorm/test-u8-normcoll.c: New file.
8051
8052 2009-03-07  Bruno Haible  <bruno@clisp.org>
8053
8054         * tests/uninorm/test-u32-normcmp.h: New file, extracted from
8055         tests/uninorm/test-u32-normcmp.c.
8056         * tests/uninorm/test-u32-normcmp.c: Include it.
8057         (test_nonascii): New function, extracted from main. Add some more
8058         tests.
8059         (main): Invoke test_ascii and test_nonascii.
8060         * modules/uninorm/u32-normcmp-tests (Files): Add
8061         tests/uninorm/test-u32-normcmp.h.
8062         (Depends-on): Remove uninorm/u32-normcmp.
8063
8064         * tests/uninorm/test-u16-normcmp.h: New file, extracted from
8065         tests/uninorm/test-u16-normcmp.c.
8066         * tests/uninorm/test-u16-normcmp.c: Include it.
8067         (test_nonascii): New function, extracted from main. Add some more
8068         tests.
8069         (main): Invoke test_ascii and test_nonascii.
8070         * modules/uninorm/u16-normcmp-tests (Files): Add
8071         tests/uninorm/test-u16-normcmp.h.
8072         (Depends-on): Remove uninorm/u16-normcmp.
8073
8074         * tests/uninorm/test-u8-normcmp.h: New file, extracted from
8075         tests/uninorm/test-u8-normcmp.c.
8076         * tests/uninorm/test-u8-normcmp.c: Include it.
8077         (test_nonascii): New function, extracted from main. Add some more
8078         tests.
8079         (main): Invoke test_ascii and test_nonascii.
8080         * modules/uninorm/u8-normcmp-tests (Files): Add
8081         tests/uninorm/test-u8-normcmp.h.
8082         (Depends-on): Remove uninorm/u8-normcmp.
8083
8084 2009-03-07  Bruno Haible  <bruno@clisp.org>
8085
8086         New module 'uninorm/u32-normcoll'.
8087         * lib/uninorm/u32-normcoll.c: New file.
8088         * modules/uninorm/u32-normcoll: New file.
8089
8090         New module 'uninorm/u16-normcoll'.
8091         * lib/uninorm/u16-normcoll.c: New file.
8092         * modules/uninorm/u16-normcoll: New file.
8093
8094         New module 'uninorm/u8-normcoll'.
8095         * lib/uninorm.h (u8_normcoll, u16_normcoll, u32_normcoll): New
8096         declarations.
8097         * lib/uninorm/u8-normcoll.c: New file.
8098         * lib/uninorm/u-normcoll.h: New file.
8099         * modules/uninorm/u8-normcoll: New file.
8100
8101         New module 'uninorm/u32-normxfrm'.
8102         * lib/uninorm/u32-normxfrm.c: New file.
8103         * modules/uninorm/u32-normxfrm: New file.
8104
8105         New module 'uninorm/u16-normxfrm'.
8106         * lib/uninorm/u16-normxfrm.c: New file.
8107         * modules/uninorm/u16-normxfrm: New file.
8108
8109         New module 'uninorm/u8-normxfrm'.
8110         * lib/uninorm.h (u8_normxfrm, u16_normxfrm, u32_normxfrm): New
8111         declarations.
8112         * lib/uninorm/u8-normxfrm.c: New file.
8113         * lib/uninorm/u-normxfrm.h: New file.
8114         * modules/uninorm/u8-normxfrm: New file.
8115
8116 2009-03-07  Bruno Haible  <bruno@clisp.org>
8117
8118         * modules/uninorm/u8-normcmp (Depends-on): Add uninorm/base.
8119         * modules/uninorm/u16-normcmp (Depends-on): Likewise.
8120         * modules/uninorm/u32-normcmp (Depends-on): Likewise.
8121
8122 2009-03-07  Bruno Haible  <bruno@clisp.org>
8123
8124         New module 'memxfrm'.
8125         * lib/memxfrm.h: New file.
8126         * lib/memxfrm.c: New file.
8127         * modules/memxfrm: New file.
8128
8129 2009-03-07  Bruno Haible  <bruno@clisp.org>
8130
8131         New module 'memcmp2'.
8132         * lib/memcmp2.h: New file.
8133         * lib/memcmp2.c: New file.
8134         * modules/memcmp2: New file.
8135
8136 2009-03-07  Bruno Haible  <bruno@clisp.org>
8137
8138         Tests for module 'uninorm/decomposing-form'.
8139         * modules/uninorm/decomposing-form-tests: New file.
8140         * tests/uninorm/test-decomposing-form.c: New file.
8141
8142         New module 'uninorm/decomposing-form'.
8143         * lib/uninorm.h (uninorm_decomposing_form): New declaration.
8144         * lib/uninorm/normalize-internal.h (struct unicode_normalization_form):
8145         Add 'decomposing_variant' field.
8146         * lib/uninorm/decomposing-form.c: New file.
8147         * lib/uninorm/nfc.c (uninorm_nfc): Update.
8148         * lib/uninorm/nfd.c (uninorm_nfd): Update.
8149         * lib/uninorm/nfkc.c (uninorm_nfkc): Update.
8150         * lib/uninorm/nfkd.c (uninorm_nfkd): Update.
8151         * modules/uninorm/decomposing-form: New file.
8152         * modules/uninorm/nfc (Depends-on): Add uninorm/nfd.
8153         * modules/uninorm/nfkc (Depends-on): Add uninorm/nfkd.
8154
8155 2009-03-07  Bruno Haible  <bruno@clisp.org>
8156
8157         * lib/uninorm/u-normcmp.h (FUNC): Use stack=allocated buffers for small
8158         strings.
8159
8160 2009-03-06  Bruno Haible  <bruno@clisp.org>
8161
8162         Tests for module 'uninorm/u32-normcmp'.
8163         * tests/uninorm/test-u32-normcmp.c: New file.
8164         * modules/uninorm/u32-normcmp-tests: New file.
8165
8166         Tests for module 'uninorm/u16-normcmp'.
8167         * tests/uninorm/test-u16-normcmp.c: New file.
8168         * modules/uninorm/u16-normcmp-tests: New file.
8169
8170         Tests for module 'uninorm/u8-normcmp'.
8171         * tests/uninorm/test-u8-normcmp.c: New file.
8172         * modules/uninorm/u8-normcmp-tests: New file.
8173
8174         New module 'uninorm/u32-normcmp'.
8175         * lib/uninorm/u32-normcmp.c: New file.
8176         * modules/uninorm/u32-normcmp: New file.
8177
8178         New module 'uninorm/u16-normcmp'.
8179         * lib/uninorm/u16-normcmp.c: New file.
8180         * modules/uninorm/u16-normcmp: New file.
8181
8182         New module 'uninorm/u8-normcmp'.
8183         * lib/uninorm.h (u8_normcmp, u16_normcmp, u32_normcmp): New
8184         declarations.
8185         * lib/uninorm/u8-normcmp.c: New file.
8186         * lib/uninorm/u-normcmp.h: New file.
8187         * modules/uninorm/u8-normcmp: New file.
8188
8189 2009-03-06  Bruno Haible  <bruno@clisp.org>
8190
8191         * lib/w32spawn.h (dup_noinherit): Add cast, to avoid gcc warning.
8192         Reported by Eric Blake.
8193
8194 2009-03-06  Eric Blake  <ebb9@byu.net>
8195             Bruno Haible  <bruno@clisp.org>
8196
8197         * lib/spawni.c (__spawni) [WIN32_NATIVE]: Define as a stub.
8198         * modules/posix_spawn-tests (configure.ac): Define POSIX_SPAWN_PORTED
8199         condition.
8200         (Makefile.am): Do nothing if POSIX_SPAWN_PORTED is false.
8201         * modules/posix_spawnp-tests (configure.ac): Define POSIX_SPAWN_PORTED
8202         condition.
8203         (Makefile.am): Do nothing if POSIX_SPAWN_PORTED is false.
8204
8205 2009-03-06  Eric Blake  <ebb9@byu.net>
8206
8207         * lib/execute.c (execute) [WIN32_NATIVE]: Cast arguments of spawnvpe,
8208         to avoid compiler warnings.
8209         * lib/pipe.c (create_pipe) [WIN32_NATIVE]: Likewise.
8210
8211 2009-03-05  Bruno Haible  <bruno@clisp.org>
8212
8213         * tests/test-ftell.c (main): Disable test beyond end of file on
8214         FreeMiNT.
8215         Patch by Alan Hourihane <alanh@fairlite.co.uk>.
8216
8217 2009-03-05  Kamil Dudka  <kdudka@redhat.com>
8218
8219         * lib/filevercmp.c: Move hidden files up in ordering.
8220         * tests/test-filevercmp.c: Add tests for hidden files.
8221
8222 2009-03-04  Bruno Haible  <bruno@clisp.org>
8223
8224         * modules/visibility (Makefile.am): Augment AM_CFLAGS.
8225         * gnulib-tool (func_emit_lib_Makefile_am): Emit initialization of
8226         AM_CFLAGS.
8227         Reported by Simon Josefsson.
8228
8229 2009-03-03  Bruno Haible  <bruno@clisp.org>
8230
8231         * doc/visibility.texi: Recommend to use HAVE_VISIBILITY as a C macro.
8232         Reported by Simon Josefsson.
8233
8234         * doc/ld-version-script.texi: Update node reference.
8235
8236 2009-03-03  Bruno Haible  <bruno@clisp.org>
8237
8238         * modules/visibility (License): Change to 'unlimited'.
8239         Suggested by Simon Josefsson.
8240
8241 2009-03-03  Jim Meyering  <meyering@redhat.com>
8242
8243         unlinkdir: cannot_unlink_dir may modify process state
8244         * lib/unlinkdir.c (cannot_unlink_dir): Add a comment warning that
8245         it's neither thread-safe nor appropriate for use in a library.
8246
8247 2009-03-03  Eric Blake  <ebb9@byu.net>
8248
8249         test-closein: silence test under Darwin
8250         * tests/test-closein.sh: Ignore stderr from cat, since we don't
8251         care if it dies from EPIPE or EBADF.
8252
8253 2009-03-03  Bruno Haible  <bruno@clisp.org>
8254
8255         * doc/gnulib.texi: Include visibility.texi and ld-version-script.texi
8256         earlier.
8257         * doc/visibility.texi: Fix @node and @section.
8258
8259 2009-03-03  Simon Josefsson  <simon@josefsson.org>
8260
8261         * doc/gnulib.texi: Link to sections for ld version script and
8262         visibility.
8263         * doc/visibility.texi: Add @node and @section.
8264         * modules/ld-version-script: New module.
8265         * m4/ld-version-script.m4: New file.
8266         * doc/ld-version-script.texi: New file.
8267
8268 2009-03-02  David Lutterkort  <lutter@redhat.com>
8269
8270         * lib/safe-alloc.h (__GNUC_PREREQ): New macro.
8271         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
8272
8273 2009-03-02  Bruno Haible  <bruno@clisp.org>
8274
8275         * doc/visibility.texi: Mention libtool's -export-symbols option.
8276
8277 2009-03-02  Jim Meyering  <meyering@redhat.com>
8278
8279         announce-gen: new option: --no-print-checksums
8280         * build-aux/announce-gen (usage): Describe it.
8281         (print_checksums): Print a newline here, not in the [*] footnote.
8282         (main): Honor it.
8283
8284 2009-03-01  Bruno Haible  <bruno@clisp.org>
8285
8286         Use socklen_t in the native Windows replacements prototypes.
8287         * lib/sys_socket.in.h (rpl_getsockopt, rpl_setsockopt): Use socklen_t
8288         instead of 'int'.
8289         * lib/getsockopt.c (rpl_getsockopt): Likewise.
8290         * lib/setsockopt.c (rpl_setsockopt): Likewise.
8291         * modules/getsockopt (Depends-on): Add socklen.
8292         * modules/setsockopt (Depends-on): Add socklen.
8293
8294 2009-03-01  Bruno Haible  <bruno@clisp.org>
8295
8296         * gnulib-tool (sed): Do alias as "sed --posix" if sed's version is at
8297         least 4.2.
8298
8299 2009-03-01  Eric Blake  <ebb9@byu.net>
8300             Bruno Haible  <bruno@clisp.org>
8301
8302         * lib/wait-process.h (wait_subprocess): Describe effect of termsigp on
8303         error messages.
8304         * lib/wait-process.c (wait_subprocess): Omit error message about
8305         deadly signal sent to the child of termsigp != NULL.
8306
8307 2009-03-01  Eric Blake  <ebb9@byu.net>
8308
8309         * lib/wait-process.c (wait_subprocess): Remove unnecessary cast.
8310
8311 2009-03-01  Bruno Haible  <bruno@clisp.org>
8312
8313         Avoid a gcc warning.
8314         * tests/test-sched.c (b): Make global.
8315         Reported by Eric Blake.
8316
8317 2009-01-19  Martin Lambers  <marlam@marlam.de>
8318
8319         Provide POSIX semantics for socket timeout options on W32.
8320         * lib/setsockopt.c: Convert struct timeval to milliseconds on W32.
8321         * lib/getsockopt.c: Convert milliseconds to struct timeval on W32.
8322         * modules/setsockopt: Depend on sys_time module for struct timeval.
8323         * modules/getsockopt: Depend on sys_time module for struct timeval.
8324
8325 2009-03-01  Simon Josefsson  <simon@josefsson.org>
8326
8327         * lib/gai_strerror.c (values): Use EAI_INPROGRESS instead of
8328         __USE_GNU, for consistency with netdb.in.h.
8329         Reported by Alan Hourihane <alanh@fairlite.co.uk>.
8330
8331 2009-03-01  Bruno Haible  <bruno@clisp.org>
8332
8333         More support for FreeMiNT.
8334         * lib/fseeko.c (rpl_fseeko): Complete last commit.
8335         Reported by Alan Hourihane <alanh@fairlite.co.uk>.
8336
8337 2009-03-01  Bruno Haible  <bruno@clisp.org>
8338
8339         More support for FreeMiNT.
8340         * lib/fpurge.c (fpurge): Correct last commit.
8341         Reported by Alan Hourihane <alanh@fairlite.co.uk>.
8342
8343 2009-03-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8344
8345         Fix unportable awk script in vc-list-files.
8346         * build-aux/vc-list-files: In the replacement awk script, use
8347         substr with a second argument of 1, not zero.
8348         Report by Simon Josefsson.
8349
8350 2009-02-28  Bruno Haible  <bruno@clisp.org>
8351
8352         More support for FreeMiNT.
8353         * lib/freading.c (freading) [__MINT__]: Use new macros that were added
8354         to FreeMiNT today.
8355         * lib/fwriting.c (fwriting): Likewise.
8356         Based on patch by Alan Hourihane <alanh@fairlite.co.uk>.
8357
8358 2009-02-28  Bruno Haible  <bruno@clisp.org>
8359
8360         * tests/test-freadseek.c (main): Disable test beyond end of file on
8361         FreeMiNT.
8362         * tests/test-ftello.c (main): Likewise.
8363         Patch by Alan Hourihane <alanh@fairlite.co.uk>.
8364
8365 2009-02-28  Bruno Haible  <bruno@clisp.org>
8366
8367         Add tentative support for FreeMiNT.
8368         * lib/fbufmode.c (fbufmode) [__MINT__]: Add conditional code.
8369         * lib/fpurge.c (fpurge): Likewise.
8370         * lib/freadable.c (freadable): Likewise.
8371         * lib/freading.c (freading): Likewise.
8372         * lib/freadptr.c (freadptr): Likewise.
8373         * lib/freadseek.c (freadptrinc): Likewise.
8374         * lib/fseeko.c (rpl_fseeko): Likewise.
8375         * lib/fseterr.c (fseterr): Likewise.
8376         * lib/fwritable.c (fwritable): Likewise.
8377         * lib/fwriting.c (fwriting): Likewise.
8378         * lib/freadahead.c (freadahead): Likewise, based on code by Alan
8379         Hourihane.
8380         Reported by Alan Hourihane <alanh@fairlite.co.uk>.
8381
8382 2009-02-28  Bruno Haible  <bruno@clisp.org>
8383
8384         * lib/wait-process.h (wait_subprocess): Clarify restriction regarding
8385         SIGCHLD.
8386         Reported by Jim Meyering.
8387
8388 2009-02-28  Bruno Haible  <bruno@clisp.org>
8389
8390         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_LS): Separate the two first tests.
8391         Mention the results of these tests on various platforms.
8392         * doc/posix-functions/fprintf.texi: Mention platforms in canonical
8393         order.
8394         * doc/posix-functions/printf.texi: Likewise.
8395         * doc/posix-functions/snprintf.texi: Likewise.
8396         * doc/posix-functions/sprintf.texi: Likewise.
8397         * doc/posix-functions/vfprintf.texi: Likewise.
8398         * doc/posix-functions/vprintf.texi: Likewise.
8399         * doc/posix-functions/vsnprintf.texi: Likewise.
8400         * doc/posix-functions/vsprintf.texi: Likewise.
8401         * doc/glibc-functions/obstack_printf.texi: Likewise.
8402         * doc/glibc-functions/obstack_vprintf.texi: Likewise.
8403
8404 2009-02-28  Bruno Haible  <bruno@clisp.org>
8405
8406         * build-aux/po/Makefile.in.in: Update from GNU gettext 0.17.
8407         Reported by Loïc Minier <lool@dooz.org>.
8408
8409 2009-02-27  Bruno Haible  <bruno@clisp.org>
8410
8411         * gnulib-tool (func_import): Make the sed expression used to create the
8412         sed script for updating the .gitignore file POSIX compliant.
8413         Reported by Eric Blake.
8414
8415 2009-02-27  Bruno Haible  <bruno@clisp.org>
8416
8417         * gnulib-tool (sed): Don't alias as "sed --posix".
8418         Reported by Eric Blake.
8419
8420 2009-02-27  Bruno Haible  <bruno@clisp.org>
8421
8422         Avoid test link errors.
8423         * modules/uninorm/nfc-tests (test_u32_nfc_big_LDADD): New variable.
8424         * modules/uninorm/nfd-tests (test_u32_nfd_big_LDADD): New variable.
8425         * modules/uninorm/nfkc-tests (test_u32_nfkc_big_LDADD): New variable.
8426         * modules/uninorm/nfkd-tests (test_u32_nfkd_big_LDADD): New variable.
8427         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
8428
8429 2009-02-27  Bruno Haible  <bruno@clisp.org>
8430
8431         Avoid spurious "(cached)" in configure output.
8432         * m4/gnulib-common.m4 (gl_CACHE_VAL_SILENT): New macro.
8433         * m4/ceil.m4 (gl_FUNC_CEIL_LIBS): Use it instead of AC_CACHE_VAL.
8434         * m4/ceilf.m4 (gl_FUNC_CEILF_LIBS): Likewise.
8435         * m4/ceill.m4 (gl_FUNC_CEILL_LIBS): Likewise.
8436         * m4/floor.m4 (gl_FUNC_FLOOR_LIBS): Likewise.
8437         * m4/floorf.m4 (gl_FUNC_FLOORF_LIBS): Likewise.
8438         * m4/floorl.m4 (gl_FUNC_FLOORL_LIBS): Likewise.
8439         * m4/stdarg.m4 (gl_STDARG_H): Likewise.
8440         Reported by Eric Blake.
8441
8442 2009-02-27  Eric Blake  <ebb9@byu.net>
8443
8444         printf: fix regression in previous patch
8445         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_LS): Fix compilation error.
8446
8447 2009-02-27  Bruno Haible  <bruno@clisp.org>
8448
8449         * lib/inttypes.in.h: Test merely whether _LP64 is defined, not its
8450         value.
8451         * lib/stdint.in.h: Likewise.
8452         Suggested by Eric Blake. Reported by Peter Bray <pdb_ml@yahoo.com.au>.
8453
8454 2009-02-27  Eric Blake  <ebb9@byu.net>
8455
8456         doc: mention more functions added in cygwin 1.7.0
8457         * doc/posix-functions/mbsnrtowcs.texi: Mention recent cygwin 1.7.0
8458         addition.
8459         * doc/posix-functions/open_wmemstream.texi: Likewise.
8460         * doc/posix-functions/wcsnlen.texi: Likewise.
8461         * doc/posix-functions/wcsnrtombs.texi: Likewise.
8462         * doc/posix-functions/wcstod.texi: Likewise.
8463         * doc/posix-functions/wcstof.texi: Likewise.
8464         * doc/posix-functions/wcstoimax.texi: Likewise.
8465         * doc/posix-functions/wcstok.texi: Likewise.
8466         * doc/posix-functions/wcstoumax.texi: Likewise.
8467
8468         Detect bug in cygwin 1.5.x *printf on 1-character %ls.
8469         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_LS): Enhance filter.
8470         * doc/posix-functions/fprintf.texi: Update.
8471         * doc/posix-functions/printf.texi: Update.
8472         * doc/posix-functions/snprintf.texi: Update.
8473         * doc/posix-functions/sprintf.texi: Update.
8474         * doc/posix-functions/vfprintf.texi: Update.
8475         * doc/posix-functions/vprintf.texi: Update.
8476         * doc/posix-functions/vsnprintf.texi: Update.
8477         * doc/posix-functions/vsprintf.texi: Update.
8478         * doc/glibc-functions/obstack_printf.texi: Update.
8479         * doc/glibc-functions/obstack_vprintf.texi: Update.
8480
8481 2009-02-26  Eric Blake  <ebb9@byu.net>
8482
8483         avoid gcc 3.4.3 bug on long double NaN on Irix 6.5
8484         * tests/nan.h (NaNl): Rewrite as function on Irix, to avoid
8485         compilation bug by using runtime conversion.
8486         * m4/isfinite.m4 (gl_ISFINITE): Likewise.
8487         * m4/isnanl.m4 (gl_FUNC_ISNANL): Likewise.
8488         * modules/ceill-tests (Files): Use nan.h.
8489         * modules/floorl-tests (Files): Likewise.
8490         * modules/frexpl-tests (Files): Likewise.
8491         * modules/isnanl-tests (Files): Likewise.
8492         * modules/ldexpl-tests (Files): Likewise.
8493         * modules/roundl-tests (Files): Likewise.
8494         * modules/truncl-tests (Files): Likewise.
8495         * tests/test-ceill.c (main): Use a working NaN.
8496         * tests/test-floorl.c (main): Likewise.
8497         * tests/test-frexpl.c (main): Likewise.
8498         * tests/test-isnan.c (test_long_double): Likewise.
8499         * tests/test-isnanl.h (main): Likewise.
8500         * tests/test-ldexpl.h (main): Likewise.
8501         * tests/test-roundl.h (main): Likewise.
8502         * tests/test-truncl.h (main): Likewise.
8503         See http://lists.gnu.org/archive/html/bug-gnulib/2009-02/msg00190.html.
8504
8505 2009-02-26  Eric Blake  <ebb9@byu.net>
8506             Bruno Haible  <bruno@clisp.org>
8507
8508         Work around a *printf bug with %ls on Solaris.
8509         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_LS): Also test whether, when a
8510         precision is specified, sprintf stops converting the wide string
8511         argument when the number of bytes that have been produced by this
8512         conversion equals or exceeds the precision.
8513         * doc/posix-functions/fprintf.texi: Update.
8514         * doc/posix-functions/printf.texi: Update.
8515         * doc/posix-functions/snprintf.texi: Update.
8516         * doc/posix-functions/sprintf.texi: Update.
8517         * doc/posix-functions/vfprintf.texi: Update.
8518         * doc/posix-functions/vprintf.texi: Update.
8519         * doc/posix-functions/vsnprintf.texi: Update.
8520         * doc/posix-functions/vsprintf.texi: Update.
8521         * doc/glibc-functions/obstack_printf.texi: Update.
8522         * doc/glibc-functions/obstack_vprintf.texi: Update.
8523
8524 2009-02-26  Eric Blake  <ebb9@byu.net>
8525
8526         stdlib: favor compiler check of random.h
8527         * m4/stdlib_h.m4 (gl_STDLIB_H): Skip preprocessor check.  Needed
8528         to avoid an ObjC random.h installed by Swarm.
8529
8530 2009-02-26  Bruno Haible  <bruno@clisp.org>
8531
8532         Work around *printf bug with %g directive and 0.0 on HP-UX 10.20.
8533         * m4/printf.m4 (gl_PRINTF_INFINITE): Also test for %g output of -0.0.
8534         Reported by Gary V. Vaughan <gary@gnu.org>.
8535
8536 2009-02-26  Bruno Haible  <bruno@clisp.org>
8537
8538         Fix *printf behaviour regarding the %ls directive.
8539         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_LS): New macro.
8540         * lib/vasnprintf.c (local_wcslen, VASNPRINTF): Handle
8541         NEED_PRINTF_DIRECTIVE_LS.
8542         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_LS): New macro.
8543         (gl_PREREQ_VASNPRINTF_WITH_EXTRAS): Invoke it.
8544         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
8545         gl_PREREQ_VASNPRINTF_DIRECTIVE_LS and test its result. Invoke
8546         gl_PREREQ_VASNPRINTF_DIRECTIVE_LS.
8547         * m4/dprintf-posix.m4 (gl_FUNC_DPRINTF_POSIX): Likewise.
8548         * m4/obstack-printf-posix.m4 (gl_FUNC_OBSTACK_PRINTF_POSIX): Likewise.
8549         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
8550         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
8551         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
8552         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
8553         * m4/vdprintf-posix.m4 (gl_FUNC_VDPRINTF_POSIX): Likewise.
8554         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
8555         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
8556         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
8557         * doc/posix-functions/fprintf.texi: Update.
8558         * doc/posix-functions/printf.texi: Update.
8559         * doc/posix-functions/snprintf.texi: Update.
8560         * doc/posix-functions/sprintf.texi: Update.
8561         * doc/posix-functions/vfprintf.texi: Update.
8562         * doc/posix-functions/vprintf.texi: Update.
8563         * doc/posix-functions/vsnprintf.texi: Update.
8564         * doc/posix-functions/vsprintf.texi: Update.
8565         * doc/glibc-functions/obstack_printf.texi: Update.
8566         * doc/glibc-functions/obstack_vprintf.texi: Update.
8567         Reported by Eric Blake.
8568
8569 2009-02-25  Bruno Haible  <bruno@clisp.org>
8570
8571         * m4/mbrtowc.m4 (gl_MBRTOWC_NUL_RETVAL): Update guess for Solaris 8
8572         with known value.
8573         Reported by Gary V. Vaughan <gary@gnu.org>.
8574
8575 2009-02-25  Bruno Haible  <bruno@clisp.org>
8576
8577         Work around mbrtowc bug in zh_CN.GB18030 locale on Solaris 8.
8578         * m4/mbrtowc.m4 (gl_MBRTOWC_SANITYCHECK): New macro.
8579         (gl_MBSTATE_T_BROKEN): Invoke it. Replace mbstate_t when it says "no".
8580         * doc/posix-functions/mbrtowc.texi: Document the Solaris 8 bug.
8581         Reported by Gary V. Vaughan <gary@gnu.org>.
8582
8583 2009-02-25  Bruno Haible  <bruno@clisp.org>
8584
8585         Work around broken INT8_MAX, UINT8_MAX etc. values on HP-UX 11.23.
8586         * m4/stdint.m4 (gl_STDINT_H): Also check whether the expansions of
8587         INT8_MAX, UINT8_MAX etc. contain casts to elementary types.
8588         * doc/posix-headers/stdint.texi: Mention the HP-UX bug.
8589         Reported by Gary V. Vaughan <gary@gnu.org>.
8590
8591 2009-02-25  Eric Blake  <ebb9@byu.net>
8592
8593         tests: skip fseek/ftell tests if ungetc is broken
8594         * m4/ungetc.m4: New file.
8595         * modules/fseek-tests: Split test, so ungetc dependency is
8596         separate from rest of test.
8597         * modules/fseeko-tests: Likewise.
8598         * modules/ftell-tests: Likewise.
8599         * modules/ftello-tests: Likewise.
8600         * tests/test-fseek.c (main): Isolate ungetc dependency.
8601         * tests/test-fseeko.c (main): Likewise.
8602         * tests/test-ftell.c (main): Likewise.
8603         * tests/test-ftello.c (main): Likewise.
8604         * tests/test-fseek2.sh: New file.
8605         * tests/test-fseeko2.sh: Likewise.
8606         * tests/test-ftell2.sh: Likewise.
8607         * tests/test-ftello2.sh: Likewise.
8608
8609 2009-02-25  OndÅ™ej Vašík  <ovasik@redhat.com>
8610
8611         test-getaddrinfo: fix usage of skip return code 77
8612         * tests/test-gettaddrinfo.c: Return skip code 77 only
8613         for first occurance of skip (4x77 is not 77)
8614
8615 2009-02-25  Gary V. Vaughan  <gary@gnu.org>
8616
8617         strtod: avoid C99 decl-after-statement
8618         * m4/strtod.m4 (gl_FUNC_STRTOD): Rearrange declaration.
8619
8620 2009-02-24  Eric Blake  <ebb9@byu.net>
8621
8622         strtod: detect HP-UX 11.31 bug
8623         * m4/strtod.m4 (gl_FUNC_STRTOD): Detect errno handling bug.
8624         Reported by Gary V. Vaughan.
8625
8626 2009-02-23  Bruno Haible  <bruno@clisp.org>
8627
8628         Fix invalid read past end of memory block.
8629         * lib/vasnprintf.c (DCHAR_SET): Define.
8630         (local_wcslen): Define only when needed.
8631         (local_strnlen, local_wcsnlen): New functions.
8632         (VASNPRINTF) [!USE_SNPRINTF && HAVE_WCHAR_T]: Implement the %s and %ls
8633         directives that involve a conversion ourselves.
8634         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF): Also check for strnlen,
8635         wcsnlen, mbrtowc, wcrtomb.
8636         * tests/test-vasnprintf-posix.c (test_function): Add tests for %.*s.
8637         * tests/test-vasprintf-posix.c (test_function): Likewise.
8638         * tests/test-snprintf-posix.h (test_function): Likewise.
8639         * tests/test-sprintf-posix.h (test_function): Likewise.
8640         Reported by Ben Pfaff <blp@cs.stanford.edu>.
8641
8642 2009-02-22  Bruno Haible  <bruno@clisp.org>
8643
8644         Implement new clarified decomposition of Hangul syllables.
8645         * lib/uninorm/decomposition.c (uc_decomposition): For Hangul syllables
8646         of type LTV, return only a pairwise decomposition.
8647         * lib/uninorm/canonical-decomposition.c (uc_canonical_decomposition):
8648         Likewise.
8649         * tests/uninorm/test-decomposition.c (main): Updated expected result.
8650         * tests/uninorm/test-canonical-decomposition.c (main): Likewise.
8651         * tests/uninorm/test-compat-decomposition.c (main): Likewise.
8652
8653 2009-02-22  Bruno Haible  <bruno@clisp.org>
8654
8655         * lib/uninorm/u-normalize-internal.h (FUNC): At the end, handle
8656         zero-length results and shrink excess allocated memory.
8657         * tests/uninorm/test-u8-nfc.c (test_u8_nfc): Check empty string result.
8658         * tests/uninorm/test-u8-nfd.c (test_u8_nfd): Likewise.
8659         * tests/uninorm/test-u8-nfkc.c (test_u8_nfkc): Likewise.
8660         * tests/uninorm/test-u8-nfkd.c (test_u8_nfkd): Likewise.
8661         * tests/uninorm/test-u16-nfc.c (test_u16_nfc): Likewise.
8662         * tests/uninorm/test-u16-nfd.c (test_u16_nfd): Likewise.
8663         * tests/uninorm/test-u16-nfkc.c (test_u16_nfkc): Likewise.
8664         * tests/uninorm/test-u16-nfkd.c (test_u16_nfkd): Likewise.
8665         * tests/uninorm/test-u32-nfc.c (test_u32_nfc): Likewise.
8666         * tests/uninorm/test-u32-nfd.c (test_u32_nfd): Likewise.
8667         * tests/uninorm/test-u32-nfkc.c (test_u32_nfkc): Likewise.
8668         * tests/uninorm/test-u32-nfkd.c (test_u32_nfkd): Likewise.
8669
8670 2009-02-21  Bruno Haible  <bruno@clisp.org>
8671
8672         * doc/gnulib.texi: Include safe-alloc.texi earlier.
8673         * doc/safe-alloc.texi: Terminate sentences with a period. Use two
8674         spaces after a period. Put a space between a macro name and its
8675         argument list. Trivial rewordings.
8676         * lib/safe-alloc.c: Include safe-alloc.h right after config.h.
8677         * tests/test-safe-alloc.c: Likewise. Include stdlib.h.
8678         (main): Return 0 explicitly.
8679
8680 2009-02-21  Bruno Haible  <bruno@clisp.org>
8681
8682         Tests for module 'uninorm/filter'.
8683         * tests/uninorm/test-uninorm-filter-nfc.c: New file.
8684         * modules/uninorm/filter-tests: New file.
8685
8686         New module 'uninorm/filter'.
8687         * lib/uninorm.h (uninorm_filter_create, uninorm_filter_write,
8688         uninorm_filter_flush, uninorm_filter_free): New declarations.
8689         * lib/uninorm/uninorm-filter.c: New file.
8690         * modules/uninorm/filter: New file.
8691
8692 2009-02-21  Bruno Haible  <bruno@clisp.org>
8693
8694         Tests for module 'uninorm/nfkc'.
8695         * tests/uninorm/test-nfkc.c: New file.
8696         * tests/uninorm/test-u8-nfkc.c: New file.
8697         * tests/uninorm/test-u16-nfkc.c: New file.
8698         * tests/uninorm/test-u32-nfkc.c: New file.
8699         * tests/uninorm/test-u32-nfkc-big.sh: New file.
8700         * tests/uninorm/test-u32-nfkc-big.c: New file.
8701         * modules/uninorm/nfkc-tests: New file.
8702
8703         New module 'uninorm/nfkc'.
8704         * lib/uninorm/nfkc.c: New file.
8705         * modules/uninorm/nfkc: New file.
8706
8707         Tests for module 'uninorm/nfkd'.
8708         * tests/uninorm/test-nfkd.c: New file.
8709         * tests/uninorm/test-u8-nfkd.c: New file.
8710         * tests/uninorm/test-u16-nfkd.c: New file.
8711         * tests/uninorm/test-u32-nfkd.c: New file.
8712         * tests/uninorm/test-u32-nfkd-big.sh: New file.
8713         * tests/uninorm/test-u32-nfkd-big.c: New file.
8714         * modules/uninorm/nfkd-tests: New file.
8715
8716         New module 'uninorm/nfkd'.
8717         * lib/uninorm/nfkd.c: New file.
8718         * modules/uninorm/nfkd: New file.
8719
8720         Tests for module 'uninorm/nfc'.
8721         * tests/uninorm/test-nfc.c: New file.
8722         * tests/uninorm/test-u8-nfc.c: New file.
8723         * tests/uninorm/test-u16-nfc.c: New file.
8724         * tests/uninorm/test-u32-nfc.c: New file.
8725         * tests/uninorm/test-u32-nfc-big.sh: New file.
8726         * tests/uninorm/test-u32-nfc-big.c: New file.
8727         * modules/uninorm/nfc-tests: New file.
8728
8729         New module 'uninorm/nfc'.
8730         * lib/uninorm/nfc.c: New file.
8731         * modules/uninorm/nfc: New file.
8732
8733         Tests for module 'uninorm/nfd'.
8734         * tests/uninorm/test-nfd.c: New file.
8735         * tests/uninorm/test-u8-nfd.c: New file.
8736         * tests/uninorm/test-u16-nfd.c: New file.
8737         * tests/uninorm/test-u32-nfd.c: New file.
8738         * tests/uninorm/test-u32-nfd-big.sh: New file.
8739         * tests/uninorm/test-u32-nfd-big.c: New file.
8740         * tests/uninorm/test-u32-normalize-big.h: New file.
8741         * tests/uninorm/test-u32-normalize-big.c: New file.
8742         * tests/uninorm/NormalizationTest.txt: New file, created from
8743         Unicode 5.1.0 NormalizationTest.txt.
8744         * modules/uninorm/nfd-tests: New file.
8745
8746         New module 'uninorm/nfd'.
8747         * lib/uninorm/nfd.c: New file.
8748         * modules/uninorm/nfd: New file.
8749
8750         New module 'uninorm/u32-normalize'.
8751         * lib/uninorm/u32-normalize.c: New file.
8752         * modules/uninorm/u32-normalize: New file.
8753
8754         New module 'uninorm/u16-normalize'.
8755         * lib/uninorm/u16-normalize.c: New file.
8756         * modules/uninorm/u16-normalize: New file.
8757
8758         New module 'uninorm/u8-normalize'.
8759         * lib/uninorm/u8-normalize.c: New file.
8760         * lib/uninorm/normalize-internal.h: New file.
8761         * lib/uninorm/u-normalize-internal.h: New file.
8762         * modules/uninorm/u8-normalize: New file.
8763
8764         New module 'uninorm/decompose-internal'.
8765         * lib/uninorm/decompose-internal.c: New file.
8766         * modules/uninorm/decompose-internal: New file.
8767
8768         Tests for module 'uninorm/composition'.
8769         * tests/uninorm/test-composition.c: New file.
8770         * modules/uninorm/composition-tests: New file.
8771
8772         New module 'uninorm/composition'.
8773         * lib/uninorm/composition.c: New file.
8774         * lib/uninorm/composition-table.gperf: New file, generated by
8775         gen-uni-tables.
8776         * modules/uninorm/composition: New file.
8777
8778         Tests for module 'uninorm/compat-decomposition'.
8779         * tests/uninorm/test-compat-decomposition.c: New file.
8780         * modules/uninorm/compat-decomposition-tests: New file.
8781
8782         New module 'uninorm/compat-decomposition'.
8783         * lib/uninorm/decompose-internal.h: New file.
8784         * lib/uninorm/compat-decomposition.c: New file.
8785         * modules/uninorm/compat-decomposition: New file.
8786
8787         Tests for module 'uninorm/canonical-decomposition'.
8788         * tests/uninorm/test-canonical-decomposition.c: New file.
8789         * modules/uninorm/canonical-decomposition-tests: New file.
8790
8791         New module 'uninorm/canonical-decomposition'.
8792         * lib/uninorm/canonical-decomposition.c: New file.
8793         * modules/uninorm/canonical-decomposition: New file.
8794
8795         Tests for module 'uninorm/decomposition'.
8796         * tests/uninorm/test-decomposition.c: New file.
8797         * modules/uninorm/decomposition-tests: New file.
8798
8799         New module 'uninorm/decomposition'.
8800         * lib/uninorm/decomposition.c: New file.
8801         * modules/uninorm/decomposition: New file.
8802
8803         New module 'uninorm/decomposition-table'.
8804         * lib/uninorm/decomposition-table.h: New file.
8805         * lib/uninorm/decomposition-table.c: New file.
8806         * lib/uninorm/decomposition-table1.h: New file, generated by
8807         gen-uni-tables.
8808         * lib/uninorm/decomposition-table2.h: New file, generated by
8809         gen-uni-tables.
8810         * modules/uninorm/decomposition-table: New file.
8811
8812         * lib/gen-uni-tables.c (MAX_DECOMP_LENGTH): New macro.
8813         (UC_DECOMP_*): New enumeration items.
8814         (get_decomposition): New function.
8815         (struct decomp_table): New type.
8816         (output_decomposition, output_decomposition_tables): New functions.
8817         (unicode_composition_exclusions): New variable.
8818         (fill_composition_exclusions, debug_output_composition_tables): New
8819         functions.
8820         (main): Accept one more argument. Invoke fill_composition_exclusions.
8821         Output decomposition and composition tables.
8822
8823         New module 'uninorm/base'.
8824         * lib/uninorm.h: New file.
8825         * lib/unictype.h: Update comment.
8826         * modules/uninorm/base: New file.
8827
8828 2009-02-21  David Lutterkort  <lutter@redhat.com>
8829
8830         Tests for module 'safe-alloc'.
8831         * tests/test-safe-alloc.c: New file.
8832         * modules/safe-alloc-tests: New file.
8833
8834         New module 'safe-alloc'.
8835         * lib/safe-alloc.h: New file.
8836         * lib/safe-alloc.c: New file.
8837         * m4/safe-alloc.m4: New file.
8838         * modules/safe-alloc: New file.
8839         * doc/safe-alloc.texi: New file.
8840         * doc/gnulib.texi: Include it.
8841         * MODULES.html.sh (Memory management functions <stdlib.h>): Add
8842         safe-alloc.
8843
8844 2009-02-18  Bruno Haible  <bruno@clisp.org>
8845
8846         Fix link error on non-glibc systems.
8847         * modules/uniwbrk/ulc-wordbreaks-tests (test_ulc_wordbreaks_LDADD): New
8848         variable.
8849         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
8850
8851 2009-02-18  Jim Meyering  <meyering@redhat.com>
8852
8853         fts: avoid used-uninitialized error due to recent change
8854         * lib/fts.c (fts_read): Guard uses of the new member,
8855         parent->fts_n_dirs_remaining, since it's not relevant for
8856         the parent of a directory specified on the command-line.
8857
8858 2009-02-17  James Youngman  <jay@gnu.org>
8859             Bruno Haible  <bruno@clisp.org>
8860
8861         * m4/include_next.m4: Reformulate comment.
8862
8863 2009-02-16  Jim Meyering  <meyering@redhat.com>
8864
8865         fts: add #if guards so that the fts_lgpl module still builds
8866         * lib/fts.c: Guard just-added hash-table-using parts with
8867         #if GNULIB_FTS, so as not to break builds of the fts_lgpl module.
8868         Reported by Simon Josefsson.
8869
8870 2009-02-15  Bruno Haible  <bruno@clisp.org>
8871
8872         * modules/array-mergesort-tests: New file.
8873         * tests/test-array-mergesort.c: New file.
8874
8875         New module 'array-mergesort'.
8876         * modules/array-mergesort: New file.
8877         * lib/array-mergesort.h: New file.
8878
8879 2009-02-15  Bruno Haible  <bruno@clisp.org>
8880
8881         Fix 2009-02-07 commit.
8882         * lib/gen-uni-tables.c (output_predicate, output_category,
8883         output_combclass, output_bidi_category, output_decimal_digit,
8884         output_digit, output_numeric, output_mirror, output_scripts,
8885         output_ident_category, output_simple_mapping): Fix format directives.
8886         (output_lbp, output_wbp): Don't convert -1 to a size_t implicitly.
8887
8888 2009-02-15  Albert Chin-A-Young  <china@thewrittenword.com>
8889
8890         * m4/include_next.m4: Update comment about IBM C 9.0/10.1 bug, now that
8891         fixes are available from IBM.
8892
8893 2009-02-13  Jim Meyering  <meyering@redhat.com>
8894
8895         fts: arrange not to stat non-directories in more cases
8896         This makes GNU find (when it doesn't need to stat each file)
8897         *much* more efficient at traversing reiserfs file systems.
8898         * lib/fts_.h (struct ftsent) [fts_n_dirs_remaining]: New member.
8899         (struct FTS) [fts_leaf_optimization_works_ht]: Add member.
8900         * lib/fts.c (fts_close): Free ->fts_leaf_optimization_works_ht.
8901         (S_MAGIC_REISERFS, S_MAGIC_PROC): Define.
8902         (leaf_optimization_applies): New function.
8903         (LCO_hash, LCO_compare): New helper functions.
8904         (link_count_optimize_ok): New function.
8905         (fts_stat): Initialize new member (if dir).
8906         (fts_read): Decrement parent's fts_n_dirs_remaining count if
8907         we've just stat'ed a directory.  Skip the stat call when possible.
8908         ---
8909         Note this AFS-related exchange:
8910         http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=143111
8911         and note find's pioctl call in find/fstype.c.
8912         But that is necessary only if you want to enable the
8913         optimization for AFS, and for now, I don't.
8914
8915         fts: move a function definition "up" (no semantic change)
8916         * lib/fts.c (dirent_inode_sort_may_be_useful): Move definition
8917         "up" to precede upcoming use of a related function.
8918
8919 2009-02-11  Jim Meyering  <meyering@redhat.com>
8920
8921         fts: correct internal computation of nlinks (optimization-related)
8922         * lib/fts.c (fts_build): ISSET(FTS_NOSTAT) has no bearing on
8923         whether the current entry is a directory, so don't test it.
8924
8925 2009-02-10  Bruno Haible  <bruno@clisp.org>
8926
8927         Tests for module 'uniwbrk/ulc-wordbreaks'.
8928         * modules/uniwbrk/ulc-wordbreaks-tests: New file.
8929         * tests/uniwbrk/test-ulc-wordbreaks.sh: New file.
8930         * tests/uniwbrk/test-ulc-wordbreaks.c: New file.
8931
8932         Tests for module 'uniwbrk/u32-wordbreaks'.
8933         * modules/uniwbrk/u32-wordbreaks-tests: New file.
8934         * tests/uniwbrk/test-u32-wordbreaks.c: New file.
8935
8936         Tests for module 'uniwbrk/u16-wordbreaks'.
8937         * modules/uniwbrk/u16-wordbreaks-tests: New file.
8938         * tests/uniwbrk/test-u16-wordbreaks.c: New file.
8939
8940         Tests for module 'uniwbrk/u8-wordbreaks'.
8941         * modules/uniwbrk/u8-wordbreaks-tests: New file.
8942         * tests/uniwbrk/test-u8-wordbreaks.c: New file.
8943
8944 2009-02-10  Bruno Haible  <bruno@clisp.org>
8945
8946         * modules/uniwbrk/u8-wordbreaks (Depends-on): Add uniwbrk/wordbreak
8947         property.
8948         * modules/uniwbrk/u16-wordbreaks (Depends-on): Likewise.
8949         * modules/uniwbrk/u32-wordbreaks (Depends-on): Likewise.
8950         * modules/uniwbrk/ulc-wordbreaks (Depends-on): Add localcharset.
8951
8952 2009-02-10  Simon Josefsson  <simon@josefsson.org>
8953
8954         * m4/sockets.m4: Call AC_C_INLINE since sockets.h now can use
8955         inline keywords.  Reported by Bruno Haible <bruno@clisp.org>.
8956
8957 2009-02-10  Bruno Haible  <bruno@clisp.org>
8958
8959         * lib/unilbrk/lbrktables.h: Renamed from lib/unilbrk/tables.h.
8960         * lib/unilbrk/lbrktables.c: Renamed from lib/unilbrk/tables.c.
8961         * modules/unilbrk/tables (Files, Makefile.am, Include): Update.
8962         * lib/unilbrk/u8-possible-linebreaks.c: Update.
8963         * lib/unilbrk/u16-possible-linebreaks.c: Likewise.
8964         * lib/unilbrk/u32-possible-linebreaks.c: Likewise.
8965
8966 2009-02-09  Simon Josefsson  <simon@josefsson.org>
8967
8968         * lib/sockets.h (gl_fd_to_handle): New function.
8969
8970         * tests/test-sockets.c: Call gl_fd_to_handle.
8971
8972 2009-02-09  Bruno Haible  <bruno@clisp.org>
8973
8974         * doc/havelib.texi: Document the conventions on bi-arch systems.
8975
8976 2009-02-08  Bruno Haible  <bruno@clisp.org>
8977
8978         Document the AC_LIB_LINKFLAGS macro.
8979         * doc/havelib.texi: New file, mostly written on 2005-05-24.
8980         * doc/gnulib.texi: Include it.
8981
8982 2009-02-08  Bruno Haible  <bruno@clisp.org>
8983
8984         Fix wrong order of sections, compared to TOC.
8985         * doc/gnulib.texi: Include relocatable-maint.texi after the
8986         "Regular expressions" node, not before.
8987
8988 2009-02-08  Bruno Haible  <bruno@clisp.org>
8989
8990         Tests for module 'unicase/totitle'.
8991         * modules/unicase/totitle-tests: New file.
8992
8993         Tests for module 'unicase/tolower'.
8994         * modules/unicase/tolower-tests: New file.
8995
8996         Tests for module 'unicase/toupper'.
8997         * modules/unicase/toupper-tests: New file.
8998         * tests/unicase/test-mapping-part1.h: New file.
8999         * tests/unicase/test-mapping-part2.h: New file.
9000
9001         New module 'unicase/totitle'.
9002         * modules/unicase/totitle: New file.
9003         * lib/unicase/totitle.c: New file.
9004
9005         New module 'unicase/tolower'.
9006         * modules/unicase/tolower: New file.
9007         * lib/unicase/tolower.c: New file.
9008
9009         New module 'unicase/toupper'.
9010         * modules/unicase/toupper: New file.
9011         * lib/unicase/toupper.c: New file.
9012         * lib/unicase/simple-mapping.h: New file.
9013
9014         * lib/gen-uni-tables.c (output_simple_mapping_test): New function.
9015         (mapping_table): New structure.
9016         (output_simple_mapping): New function.
9017         (main): Invoke output_simple_mapping_test and output_simple_mapping.
9018         * modules/gen-uni-tables (Description): Update.
9019         * lib/unicase/toupper.h: New file, automatically generated by
9020         gen-uni-tables.
9021         * lib/unicase/tolower.h: New file, automatically generated by
9022         gen-uni-tables.
9023         * lib/unicase/totitle.h: New file, automatically generated by
9024         gen-uni-tables.
9025         * tests/unicase/test-uc_toupper.c: New file, automatically generated by
9026         gen-uni-tables.
9027         * tests/unicase/test-uc_tolower.c: New file, automatically generated by
9028         gen-uni-tables.
9029         * tests/unicase/test-uc_totitle.c: New file, automatically generated by
9030         gen-uni-tables.
9031
9032         New module 'unicase/base'.
9033         * modules/unicase/base: New file.
9034         * lib/unicase.h: New file.
9035
9036 2009-02-08  Bruno Haible  <bruno@clisp.org>
9037
9038         New module 'uniwbrk/ulc-wordbreaks'.
9039         * modules/uniwbrk/ulc-wordbreaks: New file.
9040         * lib/uniwbrk/ulc-wordbreaks.c: New file.
9041
9042         New module 'uniwbrk/u32-wordbreaks'.
9043         * modules/uniwbrk/u32-wordbreaks: New file.
9044         * lib/uniwbrk/u32-wordbreaks.c: New file.
9045
9046         New module 'uniwbrk/u16-wordbreaks'.
9047         * modules/uniwbrk/u16-wordbreaks: New file.
9048         * lib/uniwbrk/u16-wordbreaks.c: New file.
9049
9050         New module 'uniwbrk/u8-wordbreaks'.
9051         * modules/uniwbrk/u8-wordbreaks: New file.
9052         * lib/uniwbrk/u8-wordbreaks.c: New file.
9053         * lib/uniwbrk/u-wordbreaks.h: New file.
9054
9055         New module 'uniwbrk/table'.
9056         * modules/uniwbrk/table: New file.
9057         * lib/uniwbrk/wbrktable.h: New file.
9058         * lib/uniwbrk/wbrktable.c: New file.
9059
9060         New module 'uniwbrk/wordbreak-property'.
9061         * modules/uniwbrk/wordbreak-property: New file.
9062         * lib/uniwbrk/wordbreak-property.c: New file.
9063
9064         * lib/gen-uni-tables.c (WBP_*): New enum items.
9065         (get_wbp, debug_output_wbp, debug_output_wbrk_tables): New functions.
9066         (unicode_org_wbp): New variable.
9067         (fill_org_wbp, debug_output_org_wbp, debug_output_org_wbrk_tables):
9068         New functions.
9069         (wbp_table): New structure.
9070         (output_wbp, output_wbrk_tables): New functions.
9071         (main): Accept additional argument. Invoke fill_org_wbp,
9072         debug_output_wbrk_tables, debug_output_org_wbrk_tables,
9073         output_wbrk_tables.
9074         * modules/gen-uni-tables (Description): Update.
9075         * lib/uniwbrk/wbrkprop.h: New file, automatically generated by
9076         gen-uni-tables.
9077
9078         New module 'uniwbrk/base'.
9079         * modules/uniwbrk/base: New file.
9080         * lib/uniwbrk.h: New file.
9081
9082 2009-02-08  Bruno Haible  <bruno@clisp.org>
9083
9084         Update to Unicode 5.1.0.
9085         * lib/gen-uni-tables.c (is_property_alphabetic): Include
9086         U+2185..U+2188.
9087         (is_property_default_ignorable_code_point): Don't include characters
9088         of category Cc or Cs and not-a-characters.
9089         (get_lbp): Assume REVISION_22. Special handling of U+0609, U+060A,
9090         U+0D79, U+109E, U+109F, U+A60C.
9091         * lib/unictype/bidi_of.h: Regenerated.
9092         * lib/unictype/blocks.h: Regenerated.
9093         * lib/unictype/categ_C.h: Regenerated.
9094         * lib/unictype/categ_Cf.h: Regenerated.
9095         * lib/unictype/categ_Cn.h: Regenerated.
9096         * lib/unictype/categ_L.h: Regenerated.
9097         * lib/unictype/categ_Ll.h: Regenerated.
9098         * lib/unictype/categ_Lm.h: Regenerated.
9099         * lib/unictype/categ_Lo.h: Regenerated.
9100         * lib/unictype/categ_Lu.h: Regenerated.
9101         * lib/unictype/categ_M.h: Regenerated.
9102         * lib/unictype/categ_Mc.h: Regenerated.
9103         * lib/unictype/categ_Me.h: Regenerated.
9104         * lib/unictype/categ_Mn.h: Regenerated.
9105         * lib/unictype/categ_N.h: Regenerated.
9106         * lib/unictype/categ_Nd.h: Regenerated.
9107         * lib/unictype/categ_Nl.h: Regenerated.
9108         * lib/unictype/categ_No.h: Regenerated.
9109         * lib/unictype/categ_P.h: Regenerated.
9110         * lib/unictype/categ_Pd.h: Regenerated.
9111         * lib/unictype/categ_Pe.h: Regenerated.
9112         * lib/unictype/categ_Pf.h: Regenerated.
9113         * lib/unictype/categ_Pi.h: Regenerated.
9114         * lib/unictype/categ_Po.h: Regenerated.
9115         * lib/unictype/categ_Ps.h: Regenerated.
9116         * lib/unictype/categ_S.h: Regenerated.
9117         * lib/unictype/categ_Sk.h: Regenerated.
9118         * lib/unictype/categ_Sm.h: Regenerated.
9119         * lib/unictype/categ_So.h: Regenerated.
9120         * lib/unictype/categ_of.h: Regenerated.
9121         * lib/unictype/combining.h: Regenerated.
9122         * lib/unictype/ctype_alnum.h: Regenerated.
9123         * lib/unictype/ctype_alpha.h: Regenerated.
9124         * lib/unictype/ctype_graph.h: Regenerated.
9125         * lib/unictype/ctype_lower.h: Regenerated.
9126         * lib/unictype/ctype_print.h: Regenerated.
9127         * lib/unictype/ctype_punct.h: Regenerated.
9128         * lib/unictype/ctype_upper.h: Regenerated.
9129         * lib/unictype/decdigit.h: Regenerated.
9130         * lib/unictype/digit.h: Regenerated.
9131         * lib/unictype/mirror.h: Regenerated.
9132         * lib/unictype/numeric.h: Regenerated.
9133         * lib/unictype/pr_alphabetic.h: Regenerated.
9134         * lib/unictype/pr_bidi_arabic_digit.h: Regenerated.
9135         * lib/unictype/pr_bidi_arabic_right_to_left.h: Regenerated.
9136         * lib/unictype/pr_bidi_boundary_neutral.h: Regenerated.
9137         * lib/unictype/pr_bidi_eur_num_terminator.h: Regenerated.
9138         * lib/unictype/pr_bidi_left_to_right.h: Regenerated.
9139         * lib/unictype/pr_bidi_non_spacing_mark.h: Regenerated.
9140         * lib/unictype/pr_bidi_other_neutral.h: Regenerated.
9141         * lib/unictype/pr_combining.h: Regenerated.
9142         * lib/unictype/pr_dash.h: Regenerated.
9143         * lib/unictype/pr_decimal_digit.h: Regenerated.
9144         * lib/unictype/pr_default_ignorable_code_point.h: Regenerated.
9145         * lib/unictype/pr_deprecated.h: Regenerated.
9146         * lib/unictype/pr_diacritic.h: Regenerated.
9147         * lib/unictype/pr_extender.h: Regenerated.
9148         * lib/unictype/pr_format_control.h: Regenerated.
9149         * lib/unictype/pr_grapheme_base.h: Regenerated.
9150         * lib/unictype/pr_grapheme_extend.h: Regenerated.
9151         * lib/unictype/pr_grapheme_link.h: Regenerated.
9152         * lib/unictype/pr_id_continue.h: Regenerated.
9153         * lib/unictype/pr_id_start.h: Regenerated.
9154         * lib/unictype/pr_ideographic.h: Regenerated.
9155         * lib/unictype/pr_ignorable_control.h: Regenerated.
9156         * lib/unictype/pr_lowercase.h: Regenerated.
9157         * lib/unictype/pr_math.h: Regenerated.
9158         * lib/unictype/pr_numeric.h: Regenerated.
9159         * lib/unictype/pr_other_alphabetic.h: Regenerated.
9160         * lib/unictype/pr_other_default_ignorable_code_point.h: Regenerated.
9161         * lib/unictype/pr_other_grapheme_extend.h: Regenerated.
9162         * lib/unictype/pr_other_id_continue.h: Regenerated.
9163         * lib/unictype/pr_other_lowercase.h: Regenerated.
9164         * lib/unictype/pr_other_math.h: Regenerated.
9165         * lib/unictype/pr_punctuation.h: Regenerated.
9166         * lib/unictype/pr_sentence_terminal.h: Regenerated.
9167         * lib/unictype/pr_soft_dotted.h: Regenerated.
9168         * lib/unictype/pr_terminal_punctuation.h: Regenerated.
9169         * lib/unictype/pr_unassigned_code_value.h: Regenerated.
9170         * lib/unictype/pr_unified_ideograph.h: Regenerated.
9171         * lib/unictype/pr_uppercase.h: Regenerated.
9172         * lib/unictype/pr_xid_continue.h: Regenerated.
9173         * lib/unictype/pr_xid_start.h: Regenerated.
9174         * lib/unictype/pr_zero_width.h: Regenerated.
9175         * lib/unictype/scripts.h: Regenerated.
9176         * lib/unictype/scripts_byname.gperf: Regenerated.
9177         * lib/unictype/sy_java_ident.h: Regenerated.
9178         * lib/unilbrk/lbrkprop1.h: Regenerated.
9179         * lib/unilbrk/lbrkprop2.h: Regenerated.
9180         * tests/unictype/test-categ_C.c: Regenerated.
9181         * tests/unictype/test-categ_Cf.c: Regenerated.
9182         * tests/unictype/test-categ_Cn.c: Regenerated.
9183         * tests/unictype/test-categ_L.c: Regenerated.
9184         * tests/unictype/test-categ_Ll.c: Regenerated.
9185         * tests/unictype/test-categ_Lm.c: Regenerated.
9186         * tests/unictype/test-categ_Lo.c: Regenerated.
9187         * tests/unictype/test-categ_Lu.c: Regenerated.
9188         * tests/unictype/test-categ_M.c: Regenerated.
9189         * tests/unictype/test-categ_Mc.c: Regenerated.
9190         * tests/unictype/test-categ_Me.c: Regenerated.
9191         * tests/unictype/test-categ_Mn.c: Regenerated.
9192         * tests/unictype/test-categ_N.c: Regenerated.
9193         * tests/unictype/test-categ_Nd.c: Regenerated.
9194         * tests/unictype/test-categ_Nl.c: Regenerated.
9195         * tests/unictype/test-categ_No.c: Regenerated.
9196         * tests/unictype/test-categ_P.c: Regenerated.
9197         * tests/unictype/test-categ_Pd.c: Regenerated.
9198         * tests/unictype/test-categ_Pe.c: Regenerated.
9199         * tests/unictype/test-categ_Pf.c: Regenerated.
9200         * tests/unictype/test-categ_Pi.c: Regenerated.
9201         * tests/unictype/test-categ_Po.c: Regenerated.
9202         * tests/unictype/test-categ_Ps.c: Regenerated.
9203         * tests/unictype/test-categ_S.c: Regenerated.
9204         * tests/unictype/test-categ_Sk.c: Regenerated.
9205         * tests/unictype/test-categ_Sm.c: Regenerated.
9206         * tests/unictype/test-categ_So.c: Regenerated.
9207         * tests/unictype/test-ctype_alnum.c: Regenerated.
9208         * tests/unictype/test-ctype_alpha.c: Regenerated.
9209         * tests/unictype/test-ctype_graph.c: Regenerated.
9210         * tests/unictype/test-ctype_lower.c: Regenerated.
9211         * tests/unictype/test-ctype_print.c: Regenerated.
9212         * tests/unictype/test-ctype_punct.c: Regenerated.
9213         * tests/unictype/test-ctype_upper.c: Regenerated.
9214         * tests/unictype/test-decdigit.h: Regenerated.
9215         * tests/unictype/test-digit.h: Regenerated.
9216         * tests/unictype/test-numeric.h: Regenerated.
9217         * tests/unictype/test-pr_alphabetic.c: Regenerated.
9218         * tests/unictype/test-pr_bidi_arabic_digit.c: Regenerated.
9219         * tests/unictype/test-pr_bidi_arabic_right_to_left.c: Regenerated.
9220         * tests/unictype/test-pr_bidi_boundary_neutral.c: Regenerated.
9221         * tests/unictype/test-pr_bidi_eur_num_terminator.c: Regenerated.
9222         * tests/unictype/test-pr_bidi_left_to_right.c: Regenerated.
9223         * tests/unictype/test-pr_bidi_non_spacing_mark.c: Regenerated.
9224         * tests/unictype/test-pr_bidi_other_neutral.c: Regenerated.
9225         * tests/unictype/test-pr_combining.c: Regenerated.
9226         * tests/unictype/test-pr_dash.c: Regenerated.
9227         * tests/unictype/test-pr_decimal_digit.c: Regenerated.
9228         * tests/unictype/test-pr_default_ignorable_code_point.c: Regenerated.
9229         * tests/unictype/test-pr_deprecated.c: Regenerated.
9230         * tests/unictype/test-pr_diacritic.c: Regenerated.
9231         * tests/unictype/test-pr_extender.c: Regenerated.
9232         * tests/unictype/test-pr_format_control.c: Regenerated.
9233         * tests/unictype/test-pr_grapheme_base.c: Regenerated.
9234         * tests/unictype/test-pr_grapheme_extend.c: Regenerated.
9235         * tests/unictype/test-pr_grapheme_link.c: Regenerated.
9236         * tests/unictype/test-pr_id_continue.c: Regenerated.
9237         * tests/unictype/test-pr_id_start.c: Regenerated.
9238         * tests/unictype/test-pr_ideographic.c: Regenerated.
9239         * tests/unictype/test-pr_ignorable_control.c: Regenerated.
9240         * tests/unictype/test-pr_lowercase.c: Regenerated.
9241         * tests/unictype/test-pr_math.c: Regenerated.
9242         * tests/unictype/test-pr_numeric.c: Regenerated.
9243         * tests/unictype/test-pr_other_alphabetic.c: Regenerated.
9244         * tests/unictype/test-pr_other_default_ignorable_code_point.c:
9245         Regenerated.
9246         * tests/unictype/test-pr_other_grapheme_extend.c: Regenerated.
9247         * tests/unictype/test-pr_other_id_continue.c: Regenerated.
9248         * tests/unictype/test-pr_other_lowercase.c: Regenerated.
9249         * tests/unictype/test-pr_other_math.c: Regenerated.
9250         * tests/unictype/test-pr_punctuation.c: Regenerated.
9251         * tests/unictype/test-pr_sentence_terminal.c: Regenerated.
9252         * tests/unictype/test-pr_soft_dotted.c: Regenerated.
9253         * tests/unictype/test-pr_terminal_punctuation.c: Regenerated.
9254         * tests/unictype/test-pr_unassigned_code_value.c: Regenerated.
9255         * tests/unictype/test-pr_unified_ideograph.c: Regenerated.
9256         * tests/unictype/test-pr_uppercase.c: Regenerated.
9257         * tests/unictype/test-pr_xid_continue.c: Regenerated.
9258         * tests/unictype/test-pr_xid_start.c: Regenerated.
9259         * tests/unictype/test-pr_zero_width.c: Regenerated.
9260
9261         Update to Unicode 5.1.0.
9262         * lib/uniwidth/width.c (nonspacing_table_data): Add U+0487,
9263         U+0616..U+061A, U+0A51, U+0A75, U+0B44, U+0B62..U+0B63, U+0C62..U+0C63,
9264         U+0D44, U+0D62..U+0D63, U+1033..U+1035, U+103A, U+103D..U+103E,
9265         U+105E..U+1060, U+1071..U+1074, U+1082, U+1085..U+1086, U+108D,
9266         U+1B80..U+1B81, U+1BA2..U+1BA5, U+1BA8..U+1BA9, U+1C2C..U+1C33,
9267         U+1C36..U+1C37, U+1DCB..U+1DE6, U+2064, U+20F0, U+2DE0..U+2DFF,
9268         U+A66F..U+A672, U+A67C..U+A67D, U+A8C4, U+A926..U+A92D, U+A947..U+A951,
9269         U+AA29..U+AA2E, U+AA31..U+AA32, U+AA35..U+AA36, U+AA43, U+AA4C,
9270         U+FE24..U+FE26, U+101FD. Remove U+1929..U+192B.
9271         (nonspacing_table_ind): Update.
9272         * tests/uniwidth/test-uc_width2.sh: Update expected result.
9273
9274         Update to Unicode 5.1.0.
9275         * lib/uniname/gen-uninames.lisp (main): Add the range 0x1Fxxx to the
9276         code transform.
9277         * lib/uniname/uniname.c (unicode_character_name,
9278         unicode_name_character): Add the range 0x1Fxxx to the code transform.
9279         * lib/uniname/uninames.h: Regenerated.
9280         * tests/uniname/UnicodeDataNames.txt: Update to Unicode 5.1.0.
9281
9282 2009-02-07  Bruno Haible  <bruno@clisp.org>
9283
9284         Merge gen-ctype and gen-lbrk into a single program.
9285         * lib/gen-uni-tables.c: New file, incorporating
9286         lib/unictype/gen-ctype.c and lib/unilbrk/gen-lbrk.c.
9287         Add directory prefixes to the names of the generated files.
9288         * lib/unictype/gen-ctype.c: Remove file.
9289         * lib/unilbrk/gen-lbrk.c: Remove file.
9290         * modules/gen-uni-tables: New file.
9291         * modules/unictype/gen-ctype: Remove file.
9292         * modules/unilbrk/gen-lbrk: Remove file.
9293
9294 2009-02-07  Bruno Haible  <bruno@clisp.org>
9295
9296         * lib/unistr.h (u8_strcoll, u16_strcoll, u32_strcoll): New declations.
9297
9298         New module 'unistr/u32-strcoll'.
9299         * modules/unistr/u32-strcoll: New file.
9300         * lib/unistr/u32-strcoll.c: New file.
9301
9302         New module 'unistr/u16-strcoll'.
9303         * modules/unistr/u16-strcoll: New file.
9304         * lib/unistr/u16-strcoll.c: New file.
9305
9306         New module 'unistr/u8-strcoll'.
9307         * modules/unistr/u8-strcoll: New file.
9308         * lib/unistr/u8-strcoll.c: New file.
9309         * lib/unistr/u-strcoll.h: New file.
9310
9311 2009-02-07  Bruno Haible  <bruno@clisp.org>
9312
9313         * test-mbrtowc4.sh (LOCALE_ZH_CN): Fix default value.
9314         * test-mbsnrtowcs4.sh (LOCALE_ZH_CN): Likewise.
9315         * test-mbsrtowcs4.sh (LOCALE_ZH_CN): Likewise.
9316         * test-wcrtomb.sh (LOCALE_ZH_CN): Likewise.
9317         * test-wcsnrtombs4.sh (LOCALE_ZH_CN): Likewise.
9318         * test-wcsrtombs4.sh (LOCALE_ZH_CN): Likewise.
9319
9320 2009-02-07  Bruno Haible  <bruno@clisp.org>
9321
9322         Make 64-bit clean.
9323         * lib/unictype/gen-ctype.c (output_predicate, output_category,
9324         output_combclass, output_bidi_category, output_decimal_digit,
9325         output_digit, output_numeric, output_mirror, output_scripts,
9326         output_ident_category): Use proper width specifier in format strings.
9327
9328 2009-02-07  Bruno Haible  <bruno@clisp.org>
9329
9330         * doc/posix-functions/dirfd.texi: Clarify situation on mingw. Document
9331         failure behaviour.
9332
9333 2009-02-07  Jim Meyering  <meyering@redhat.com>
9334
9335         regex: avoid compilation failure with upcoming gcc-4.4
9336         * lib/regex_internal.h: Revert e48d8b47fb3eee81d341b71c3e006efe9e3433a7
9337         [workaround for PGC prior to 6.1-2].  Otherwise, we'd get this:
9338         "... error: integer overflow in preprocessor expression".
9339
9340 2009-02-05  Ben Pfaff  <blp@gnu.org>
9341
9342         Fix link errors on Windows when close module is used.
9343         * modules/close: Add $(LIB_CLOSE) to Link section.
9344         * m4/close.m4 (gl_REPLACE_CLOSE): Substitute -lws2_32 into
9345         $(LIB_CLOSE) on Windows.
9346
9347 2009-02-05  Jim Meyering  <meyering@redhat.com>
9348
9349         still avoid unused-parameter warnings, but do it cleanly
9350         * lib/fsusage.c (UNUSED_PARAM): Remove definition.
9351         (get_fs_usage): Cast to void instead.
9352         * lib/mountlist.c (UNUSED_PARAM): Remove definition.
9353         (dev_from_mount_options, read_file_system_list): Cast to void.
9354         Prompted by Bruno Haible.
9355
9356 2009-02-04  Jim Meyering  <meyering@redhat.com>
9357
9358         fsusage.c: correct copyright year
9359         * lib/fsusage.c: Reflect year in which the change is pushed into
9360
9361         avoid misc. warnings
9362         * lib/fsusage.c (UNUSED_PARAM): Define.
9363         (get_fs_usage): Mark parameter "disk" as unused.
9364         * lib/getugroups.c (getgrent): Use "void" in prototype.
9365         * lib/mountlist.c: Mark unused parameters.
9366         (read_file_system_list): Declare a local with "const".
9367         * lib/nanosleep.c (getnow): Declare static.
9368         * lib/strftime.c: Include strftime.h, for declaration of nstrftime.
9369
9370         dirfd: set errno upon failure
9371         * lib/dirfd.c: Include <errno.h>.
9372         Set errno to ENOTSUP when returning -1.
9373         * modules/dirfd (Depends-on): Add errno.
9374         Suggested by John Kodis <kodis@comcast.net>.
9375
9376 2009-02-01  Bruno Haible  <bruno@clisp.org>
9377
9378         Don't assume sizeof (long) >= sizeof (void *).
9379         * lib/memcmp.c: Include stdint.h.
9380         (memcmp_bytes): Change argument types to op_t. Change type of srcp1,
9381         srcp2 to 'const byte *'.
9382         (memcmp_common_alignment, memcmp_not_common_alignment): Change argument
9383         types to uintptr_t.
9384         (rpl_memcmp): Change type of srcp1, srcp2 to 'uintptr_t'.
9385         * modules/memcmp (Depends-on): Add stdint.
9386         Reported by Ozkan Sezer <sezeroz@gmail.com>.
9387
9388 2009-01-30  Eric Blake  <ebb9@byu.net>
9389
9390         fix more require-before-expand issues
9391         * m4/pmccabe2html.m4 (gl_PMCCABE2HTML): Require, rather than
9392         expand, AC_PROG_AWK.
9393         * m4/gnulib-common.m4 (AC_PROG_MKDIR_P): Use AC_DEFUN_ONCE.
9394
9395 2009-01-28  Eric Blake  <ebb9@byu.net>
9396
9397         version-etc: use consistent URL formatting
9398         * lib/version-etc.c (emit_bug_reporting_address, version_etc_va):
9399         Improve formatting.  Use fputs for string without %.
9400
9401 2009-01-28  Jim Meyering  <meyering@redhat.com>
9402
9403         00gnulib.m4: add m4 quotes in shell comment to avoid autoconf warning
9404         * m4/00gnulib.m4 (AC_DEFUN_ONCE): Add quotes to avoid an
9405         "underquoted definition of NAME" from autoconf-2.59.
9406
9407 2009-01-28  Bruno Haible  <bruno@clisp.org>
9408
9409         * doc/gnulib.texi: Add "Obsolete modules" to index.
9410
9411 2009-01-28  Jim Meyering  <meyering@redhat.com>
9412
9413         useless-if-before-free: recognize more variants
9414         * build-aux/useless-if-before-free: Also recognize e.g.,
9415         if (NULL != p) free (p);
9416
9417 2009-01-27  Mark McLoughlin  <markmc@redhat.com>
9418
9419         test-getaddrinfo: skip (don't fail) this test when there's no network
9420         * tests/test-getaddrinfo.c: Skip test upon failure with EAI_AGAIN,
9421         on the presumption that it means you lack network access.
9422
9423 2009-01-26  Jim Meyering  <meyering@redhat.com>
9424
9425         fflush: avoid warnings on modern systems
9426         * lib/fflush.c (rpl_fflush): Move declarations of locals,
9427         pos and result, into scopes where they're used.
9428
9429 2009-01-26  Eric Blake  <ebb9@byu.net>
9430
9431         Silence warning reintroduced by recent extensions patch.
9432         * m4/extensions.m4 (AC_USE_SYSTEM_EXTENSIONS)
9433         (gl_USE_SYSTEM_EXTENSIONS): Use AC_DEFUN_ONCE to silence newer
9434         autoconf.
9435
9436         Backport improved autoconf semantics of AC_DEFUN_ONCE.
9437         * m4/00gnulib.m4: New file.
9438         * gnulib-tool (func_get_filelist): Always use it.
9439         * m4/gnulib-common.m4 (gl_COMMON): Force the file to be used.
9440         Reported by Bruno Haible, with suggestions from Paolo Bonzini.
9441
9442 2009-01-25  Bruno Haible  <bruno@clisp.org>
9443
9444         Make test-quotearg work on MacOS X and AIX.
9445         * tests/test-quotearg.sh: New file.
9446         * tests/locale/fr/LC_MESSAGES/test-quotearg.po: New file.
9447         * tests/locale/fr/LC_MESSAGES/test-quotearg.mo: New file.
9448         * tests/test-quotearg.c: Include <locale.h> and gettext.h. Don't
9449         include <libintl.h>.
9450         (fake_locale): Remove variable.
9451         (gettext, dgettext, dcgettext): Remove functions.
9452         (main): Instead of setting a fake locale, set a real locale. Call
9453         textdomain and bindtextdomain.
9454         * modules/quotearg-tests (Files): Add the new files.
9455         (Depends-on): Add gettext, setenv, unsetenv.
9456         (configure.ac): Invoke gt_LOCALE_FR and gt_LOCALE_FR_UTF8.
9457         (Makefile.am): Add test-quotearg.sh to TESTS, remove test-quotearg.
9458         Augment TESTS_ENVIRONMENT.
9459
9460 2009-01-25  Bruno Haible  <bruno@clisp.org>
9461
9462         * m4/locale-fr.m4 (gt_LOCALE_FR): Remove special code that hid the
9463         fr_FR.ISO8859-1 locale on MacOS X.
9464         * m4/locale-ja.m4 (gt_LOCALE_JA): Remove special code that hid the
9465         ja_JP.eucJP locale on MacOS X.
9466         * m4/locale-zh.m4 (gt_LOCALE_ZH_CN): Remove special code that hid the
9467         zh_CN.GB18030 locale on MacOS X.
9468
9469 2009-01-25  Bruno Haible  <bruno@clisp.org>
9470
9471         Avoid link errors on MacOS X 10.3.
9472         * lib/mbsrtowcs-state.c (_gl_mbsrtowcs_state): Add initializer.
9473         * lib/wcsrtombs-state.c (_gl_wcsrtombs_state): Likewise.
9474
9475 2009-01-25  Bruno Haible  <bruno@clisp.org>
9476
9477         * lib/pipe.c: On Unix, assume HAVE_POSIX_SPAWN and use posix_spawnp.
9478         * m4/pipe.m4 (gl_PIPE): Remove tests for vfork() based code.
9479         * modules/pipe (Files): Remove m4/posix_spawn.m4.
9480         (Depends-on): Add spawn, posix_spawnp, posix_spawn_file_actions_init,
9481         posix_spawn_file_actions_addclose, posix_spawn_file_actions_adddup2,
9482         posix_spawn_file_actions_addopen, posix_spawn_file_actions_destroy,
9483         posix_spawnattr_init, posix_spawnattr_setsigmask,
9484         posix_spawnattr_setflags, posix_spawnattr_destroy.
9485
9486         * lib/execute.c: On Unix, assume HAVE_POSIX_SPAWN and use posix_spawnp.
9487         * m4/execute.m4 (gl_EXECUTE): Remove tests for vfork() based code.
9488         * modules/execute (Files): Remove m4/posix_spawn.m4.
9489         (Depends-on): Add spawn, posix_spawnp, posix_spawn_file_actions_init,
9490         posix_spawn_file_actions_addopen, posix_spawn_file_actions_destroy,
9491         posix_spawnattr_init, posix_spawnattr_setsigmask,
9492         posix_spawnattr_setflags, posix_spawnattr_destroy.
9493
9494 2009-01-25  Bruno Haible  <bruno@clisp.org>
9495
9496         * lib/glthread/threadlib.c: Include <stdlib.h>.
9497
9498 2009-01-25  Bruno Haible  <bruno@clisp.org>
9499
9500         * lib/glthread/threadlib.c (dummy): New declaration.
9501
9502 2009-01-25  Bruno Haible  <bruno@clisp.org>
9503
9504         * lib/mbrtowc.c (mbrtowc): Distinguish invalid and incomplete
9505         multibyte characters also for the GB18030 encoding. Don't crash when
9506         the encoding is unknown and nstate = 0. Needed on OSF/1 5.1.
9507
9508 2009-01-25  Bruno Haible  <bruno@clisp.org>
9509
9510         Avoid redefining 'struct random_data' on OSF/1 5.1.
9511         * lib/stdlib.in.h: Include <random.h> if it exists.
9512         * m4/stdlib_h.m4 (gl_STDLIB_H): Test whether <random.h> exists. Set
9513         HAVE_RANDOM_H. Include <random.h> when testing whether
9514         'struct random_data' exists.
9515         * modules/stdlib (Makefile.am): Substitute HAVE_RANDOM_H.
9516
9517 2009-01-25  Bruno Haible  <bruno@clisp.org>
9518
9519         Don't install charset.alias on MacOS X >= 10.3.
9520         * lib/localcharset.c (DARWIN7): New macro.
9521         (get_charset_aliases): Hardcode the result for Darwin7.
9522         * modules/localcharset (install-exec-local): Don't install
9523         charset.alias on MacOS X >= 10.3, if the file does not yet exist.
9524
9525 2009-01-25  Bruno Haible  <bruno@clisp.org>
9526
9527         Don't install charset.alias on mingw and Cygwin.
9528         * modules/localcharset (install-exec-local): Don't install
9529         charset.alias on mingw and Cygwin, if the file does not yet exist.
9530         The result for these platforms is hardcoded in localcharset.c.
9531
9532 2009-01-25  Bruno Haible  <bruno@clisp.org>
9533
9534         Make it possible again to use AC_GNU_SOURCE together with gnulib.
9535         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Require AC_GNU_SOURCE
9536         before requiring AC_USE_SYSTEM_EXTENSIONS.
9537
9538 2009-01-25  Jim Meyering  <meyering@redhat.com>
9539
9540         c-strtod: avoid warnings
9541         * lib/c-strtod.c (C_STRTOD): Cast nptr to (char *) to avoid
9542         "assignment discards qualifiers from pointer target type" warnings.
9543
9544 2009-01-24  Bruno Haible  <bruno@clisp.org>
9545
9546         Add support for non-UTF-8 locales on MacOS X.
9547         * lib/config.charset: Add CP1131, ARMSCII-8, PT154 to the list of
9548         canonical encodings. For Darwin 7 and newer, don't map traditional
9549         encodings to UTF-8.
9550         Reported by Vincent Lefevre <vincent@vinc17.org>
9551         at <http://savannah.gnu.org/bugs/?25235>.
9552
9553 2009-01-24  Bruno Haible  <bruno@clisp.org>
9554
9555         * doc/gnulib.texi (Obsolete modules): New section.
9556         Reported by Mike Frysinger <vapier@gentoo.org>.
9557
9558 2009-01-24  Bruno Haible  <bruno@clisp.org>
9559
9560         * doc/Makefile (%.pdf): Clarify where to find texmf.cnf.
9561         (%.dvi): New rule.
9562
9563 2009-01-24  Bruno Haible  <bruno@clisp.org>
9564
9565         * lib/c-strtod.h (c_strtod, c_strtold): Adjust specification.
9566         Reported by Eric Blake.
9567
9568 2009-01-24  Bruno Haible  <bruno@clisp.org>
9569
9570         * lib/c-stack.c (segv_handler): If !HAVE_XSI_STACK_OVERFLOW_HEURISTIC,
9571         set signo = 0 also if info->si_code <= 0. Needed on HP-UX 11.11.
9572         Reported by Gary V. Vaughan <gary@gnu.org>.
9573
9574 2009-01-24  Bruno Haible  <bruno@clisp.org>
9575
9576         * lib/c-strtod.h (c_strtod, c_strtold): Add specification.
9577
9578 2009-01-23  Bruno Haible  <bruno@clisp.org>
9579
9580         Make c-strtod, c-strtold usable in libraries.
9581         * lib/c-strtod.c: Include string.h instead of xalloc.h.
9582         (C_STRTOD): Call strdup instead of xstrdup.
9583         * modules/c-strtod (Depends-on): Add strdup-posix, remove xalloc.
9584         * modules/c-strtold (Depends-on): Likewise.
9585         * doc/c-strtod.texi: Remove the sentence mentioning xalloc_die.
9586         * NEWS: Mention the change.
9587         Reported by Michael Gold <mgold@ncf.ca>.
9588
9589 2009-01-23  Jim Meyering  <meyering@redhat.com>
9590
9591         c-strtod: when ENDPTR is non-NULL, set *ENDPTR in new failure path
9592         * lib/c-strtod.c (C_STRTOD) [LC_ALL_MASKC]: Ensure that when
9593         ENDPTR is non-NULL, *ENDPTR is set to NPTR upon failure.
9594
9595 2009-01-23  Simon Josefsson  <simon@josefsson.org>
9596
9597         * lib/version-etc.c: Add emit_bug_reporting_address, inspired by
9598         GNU CoreUtils.
9599         * lib/version-etc.h: Add prototype for emit_bug_reporting_address.
9600         * modules/version-etc (Description): Update.
9601
9602 2009-01-22  Bruno Haible  <bruno@clisp.org>
9603
9604         Cache the C locale object.
9605         * lib/c-strtod.c (c_locale_cache): New variable.
9606         (c_locale): New function.
9607         (C_STRTOD): Use it, and don't call freelocale.
9608         * m4/c-strtod.m4 (gl_C_STRTOD, gl_C_STRTOLD): Require AC_C_INLINE.
9609         Suggested by Paolo Bonzini.
9610
9611 2009-01-21  Bruno Haible  <bruno@clisp.org>
9612
9613         * lib/getloadavg.c (getloadavg): Check c_strtod result against error
9614         conditions other than overflow.
9615
9616 2009-01-21  Bruno Haible  <bruno@clisp.org>
9617
9618         * lib/c-strtod.c: Include errno.h.
9619         (C_STRTOD): Check against NULL return from newlocale. Preserve errno
9620         value from STRTOD_L and STRTOD.
9621
9622 2009-01-21  Bruno Haible  <bruno@clisp.org>
9623         and Jim Meyering  <meyering@redhat.com>
9624
9625         nanosleep: skip configure test (fail it) for apple universal builds
9626         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Require gl_MULTIARCH. In Apple
9627         universal builds, assume that nanosleep does not work.
9628         * modules/nanosleep (Depends-on): Add multiarch.
9629
9630         mktime: skip configure test (fail it) for apple universal builds
9631         * m4/mktime.m4 (AC_FUNC_MKTIME): Require gl_MULTIARCH. In Apple
9632         universal builds, assume that mktime does not work.
9633         * modules/mktime (Depends-on): Add multiarch.
9634
9635 2009-01-21  Eric Blake  <ebb9@byu.net>
9636
9637         multiarch: avoid expand-before-require warning
9638         * modules/multiarch (configure.ac): Require, rather than expand,
9639         gl_MULTIARCH.
9640         * m4/multiarch.m4 (gl_MULTIARCH_BODY): Merge...
9641         (gl_MULTIARCH): ...into this macro, and use AC_DEFUN_ONCE to
9642         enforce that all clients require it.  Partial reversion of
9643         2008-12-29 patch.
9644
9645         error: avoid expand-before-require warning
9646         * modules/errno (configure.ac): Require, rather than expand,
9647         gl_HEADER_ERRNO_H.
9648         * m4/errno_h.m4 (gl_HEADER_ERRNO_H_BODY): Merge...
9649         (gl_HEADER_ERRNO_H): ...into this macro, and use AC_DEFUN_ONCE to
9650         enforce that all clients require it.
9651
9652         gnulib-tool: avoid warnings from using obsolete AC_GNU_SOURCE
9653         * gnulib-tool (func_dest_tmpfilename, func_create_testdir): Using
9654         obsolete AC_GNU_SOURCE causes out-of-order expansion; avoid it,
9655         and rely solely on gl_USE_SYSTEM_EXTENSIONS.
9656
9657 2009-01-21  Paolo Bonzini  <bonzini@gnu.org>
9658
9659         Revert:
9660         2009-01-20  Paolo Bonzini  <bonzini@gnu.org>
9661
9662         regex: do not depend on obsolete modules.
9663         * modules/regex: Remove memcmp and memmove.
9664
9665 2009-01-20  Bruno Haible  <bruno@clisp.org>
9666
9667         Make the 'link' module link on Windows NT 4.
9668         * lib/link.c (_WIN32_WINNT): Don't define.
9669         (CreateHardLinkFuncType): New type.
9670         (CreateHardLinkFunc, initialized): New variables.
9671         (initialize): New function.
9672         (link): Invoke CreateHardLink indirectly through the function pointer.
9673
9674 2009-01-20  Bruno Haible  <bruno@clisp.org>
9675
9676         Fix compilation failure on mingw.
9677         * tests/test-link.c (main): Don't assume that EOPNOTSUPP exists.
9678
9679 2009-01-20  Michael Gold  <mgold@ncf.ca>  (tiny change)
9680
9681         * doc/c-strtod.texi: Mention a couple of restrictions.
9682
9683 2009-01-20  Jim Meyering  <meyering@redhat.com>
9684
9685         gettimeofday: move more declarations out of functions
9686         * lib/gettimeofday.c: Move extern declarations of tzset and
9687         gmtime out of containing functions.  Prompted by Bruno Haible.
9688
9689 2009-01-20  Paolo Bonzini  <bonzini@gnu.org>
9690
9691         regex: do not depend on obsolete modules.
9692         * modules/regex: Remove memcmp and memmove.
9693
9694 2009-01-19  Bruno Haible  <bruno@clisp.org>
9695
9696         Don't use AC_REQUIRE([AC_C_BIGENDIAN]).
9697         * modules/uniconv/u16-conv-from-enc (configure.ac): Require
9698         gl_BIGENDIAN, not AC_C_BIGENDIAN.
9699         * modules/uniconv/u16-conv-to-enc (configure.ac): Likewise.
9700         * modules/uniconv/u16-strconv-to-enc (configure.ac): Likewise.
9701
9702 2009-01-19  Bruno Haible  <bruno@clisp.org>
9703
9704         * tests/test-link.c: Include <errno.h>.
9705         (main): Exit with code 77 when a hard link cannot be created due to
9706         the file system.
9707         * tests/test-link.sh: Skip test when a hard link cannot be created due
9708         to the file system.
9709         Suggested by Eric Blake.
9710
9711 2009-01-19  Martin Lambers  <marlam@marlam.de>
9712
9713         * modules/link-tests: New file.
9714         * tests/test-link.sh: New file.
9715         * tests/test-link.c: New file.
9716
9717 2009-01-19  Eric Blake  <ebb9@byu.net>
9718
9719         doc: mention another function added in cygwin 1.7.0
9720         * doc/glibc-functions/glob_pattern_p.texi (glob_pattern_p):
9721         Another new function in cygwin 1.7.
9722
9723 2009-01-19  Bruno Haible  <bruno@clisp.org>
9724
9725         Don't use AC_REQUIRE([AC_C_BIGENDIAN]).
9726         * m4/gnulib-common.m4 (gl_BIGENDIAN): New macro.
9727         * m4/exponentl.m4 (gl_LONG_DOUBLE_EXPONENT_LOCATION): Require
9728         gl_BIGENDIAN, not AC_C_BIGENDIAN.
9729         * m4/isfinite.m4 (gl_ISFINITEL_WORKS): Likewise.
9730         * m4/isinf.m4 (gl_ISINFL_WORKS): Likewise.
9731         * m4/isnanl.m4 (gl_FUNC_ISNANL_WORKS): Likewise.
9732         * m4/md4.m4 (gl_MD4): Likewise.
9733         * m4/md5.m4 (gl_MD5): Likewise.
9734         * m4/printf.m4 (gl_PRINTF_INFINITE_LONG_DOUBLE): Likewise.
9735         * m4/sha1.m4 (gl_SHA1): Likewise.
9736         * m4/sha256.m4 (gl_SHA256): Likewise.
9737         * m4/sha512.m4 (gl_SHA512): Likewise.
9738
9739 2009-01-19  Bruno Haible  <bruno@clisp.org>
9740
9741         * modules/uniname/uniname-tests (Depends-on): Add progname.
9742         * tests/uniname/test-uninames.c: Include progname.h.
9743         (main): Call set_program_name.
9744
9745         * modules/unistdio/u8-vsprintf-tests (Depends-on): Add progname.
9746         * tests/unistdio/test-u8-vsprintf1.c: Include progname.h.
9747         (main): Call set_program_name.
9748
9749         * modules/unistdio/u8-vsnprintf-tests (Depends-on): Add progname.
9750         * tests/unistdio/test-u8-vsnprintf1.c: Include progname.h.
9751         (main): Call set_program_name.
9752
9753         * modules/unistdio/u16-vsprintf-tests (Depends-on): Add progname.
9754         * tests/unistdio/test-u16-vsprintf1.c: Include progname.h.
9755         (main): Call set_program_name.
9756
9757         * modules/unistdio/u16-vsnprintf-tests (Depends-on): Add progname.
9758         * tests/unistdio/test-u16-vsnprintf1.c: Include progname.h.
9759         (main): Call set_program_name.
9760
9761         * modules/unistdio/u32-vsprintf-tests (Depends-on): Add progname.
9762         * tests/unistdio/test-u32-vsprintf1.c: Include progname.h.
9763         (main): Call set_program_name.
9764
9765         * modules/unistdio/u32-vsnprintf-tests (Depends-on): Add progname.
9766         * tests/unistdio/test-u32-vsnprintf1.c: Include progname.h.
9767         (main): Call set_program_name.
9768
9769         * modules/unistdio/ulc-vsprintf-tests (Depends-on): Add progname.
9770         * tests/unistdio/test-ulc-vsprintf1.c: Include progname.h.
9771         (main): Call set_program_name.
9772
9773         * modules/unistdio/ulc-vsnprintf-tests (Depends-on): Add progname.
9774         * tests/unistdio/test-ulc-vsnprintf1.c: Include progname.h.
9775         (main): Call set_program_name.
9776
9777 2009-01-19  Eric Blake  <ebb9@byu.net>
9778
9779         test-unistd: test previous patch
9780         * tests/test-unistd.c: Test *_FILENO macros.
9781
9782         unistd: guarantee STDIN_FILENO here, for OS/2 EMX
9783         * lib/unistd.in.h (STDIN_FILENO, STDOUT_FILENO, STDERR_FILENO):
9784         Guarantee a definition.
9785         * doc/posix-headers/unistd.texi (unistd.h): Document the bug.
9786         * modules/unistd-safer (Depends-on): Add dependency on unistd.
9787         * lib/c-stack.c (STDERR_FILENO): Rely on <unistd.h>.
9788         * lib/dup-safer.c (STDERR_FILENO): Likewise.
9789         * lib/execute.c (STDIN_FILENO, STDOUT_FILENO, STDERR_FILENO):
9790         Likewise.
9791         * lib/fd-safer.c (STDIN_FILENO, STDERR_FILENO): Likewise.
9792         * lib/fopen-safer.c (STDERR_FILENO): Likewise.
9793         * lib/pipe.c (STDIN_FILENO, STDOUT_FILENO, STDERR_FILENO):
9794         Likewise.
9795         * lib/tmpfile-safer.c (STDERR_FILENO): Likewise.
9796         * tests/test-posix_spawn1.c (STDIN_FILENO, STDOUT_FILENO)
9797         (STDERR_FILENO): Likewise.
9798         * tests/test-posix_spawn2.c (STDIN_FILENO, STDOUT_FILENO)
9799         (STDERR_FILENO): Likewise.
9800         * tests/test-posix_spawn3.c (STDIN_FILENO, STDOUT_FILENO)
9801         (STDERR_FILENO): Likewise.
9802         Reported by Elbert Pol.
9803
9804 2009-01-19  Eric Blake  <ebb9@byu.net>
9805
9806         doc: mention more functions added in cygwin 1.7.0
9807         * doc/posix-functions/abort.texi (abort): Update wording related
9808         to cygwin.
9809         * doc/posix-functions/daylight.texi (daylight): Likewise.
9810         * doc/posix-functions/optarg.texi (optarg): Likewise.
9811         * doc/posix-functions/optarg.texi (opterr): Likewise.
9812         * doc/posix-functions/optarg.texi (optind): Likewise.
9813         * doc/posix-functions/optarg.texi (optopt): Likewise.
9814         * doc/posix-functions/wprintf.texi (wprintf): Cygwin wprintf never
9815         worked in 1.5.x, and was withdrawn in 1.7.
9816         * doc/posix-functions/vwprintf.texi (vwprintf): Likewise.
9817         * doc/posix-functions/fprintf.texi (fprintf): Tighten mention of
9818         cygwin versions.
9819         * doc/posix-functions/perror.texi (perror): Likewise.
9820         * doc/posix-functions/printf.texi (printf): Likewise.
9821         * doc/posix-functions/snprintf.texi (snprintf): Likewise.
9822         * doc/posix-functions/sprintf.texi (sprintf): Likewise.
9823         * doc/posix-functions/vfprintf.texi (vfprintf): Likewise.
9824         * doc/posix-functions/vprintf.texi (vprintf): Likewise.
9825         * doc/posix-functions/vsnprintf.texi (vsnprintf): Likewise.
9826         * doc/posix-functions/vsprintf.texi (vsprintf): Likewise.
9827         * doc/glibc-functions/obstack_printf.texi (obstack_printf):
9828         Likewise.
9829         * doc/glibc-functions/obstack_vprintf.texi (obstack_vprintf):
9830         Likewise.
9831         * doc/glibc-functions/cfmakeraw.texi (cfmakeraw): Cygwin 1.7 adds
9832         this function.
9833         * doc/glibc-functions/in6addr_any.texi (in6addr_any): Likewise.
9834         * doc/glibc-functions/in6addr_loopback.texi (in6addr_loopback):
9835         Likewise.
9836         * doc/glibc-functions/updwtmpx.texi (updwtmpx): Likewise.
9837         * doc/posix-functions/_Exit_C99.texi (_Exit): Likewise.
9838         * doc/posix-functions/confstr.texi (confstr): Likewise.
9839         * doc/posix-functions/dprintf.texi (dprintf): Likewise.
9840         * doc/posix-functions/fgetwc.texi (fgetwc): Likewise.
9841         * doc/posix-functions/fgetws.texi (fgetws): Likewise.
9842         * doc/posix-functions/fputwc.texi (fputwc): Likewise.
9843         * doc/posix-functions/fputws.texi (fputws): Likewise.
9844         * doc/posix-functions/fwide.texi (fwide): Likewise.
9845         * doc/posix-functions/getwc.texi (getwc): Likewise.
9846         * doc/posix-functions/getwchar.texi (getwchar): Likewise.
9847         * doc/posix-functions/putwc.texi (putwc): Likewise.
9848         * doc/posix-functions/putwchar.texi (putwchar): Likewise.
9849         * doc/posix-functions/sigignore.texi (sigignore): Likewise.
9850         * doc/posix-functions/ungetwc.texi (ungetwc): Likewise.
9851         * doc/posix-functions/vdprintf.texi (vdprintf): Likewise.
9852         * doc/posix-functions/wcpcpy.texi (wcpcpy): Likewise.
9853         * doc/posix-functions/wcpncpy.texi (wcpncpy): Likewise.
9854         * doc/posix-functions/wcstol.texi (wcstol): Likewise.
9855         * doc/posix-functions/wcstoll.texi (wcstoll): Likewise.
9856         * doc/posix-functions/wcstoul.texi (wcstoul): Likewise.
9857         * doc/posix-functions/wcstoull.texi (wcstoull): Likewise.
9858         * doc/posix-functions/wcsxfrm.texi (wcsxfrm): Likewise.
9859
9860 2009-01-19  Daniel P. Berrange  <berrange@redhat.com>
9861
9862         ioctl: avoid warning: no previous prototype for 'rpl_ioctl'
9863         * lib/ioctl.c: Include <sys/ioctl.h>.
9864
9865 2009-01-19  Simon Josefsson  <simon@josefsson.org>
9866
9867         * modules/getdate-tests (Depends-on): Add progname.
9868         * tests/test-getdate.c: Use progname module, to avoid link errors
9869         on non-glibc systems.
9870
9871 2009-01-18  Simon Josefsson  <simon@josefsson.org>
9872
9873         * modules/filenamecat-tests (Depends-on): Add progname.
9874         * modules/fstrcmp-tests (Depends-on): Likewise.
9875
9876         * tests/test-filenamecat.c: Use progname module, to avoid link
9877         errors on non-glibc systems.
9878         * tests/test-fstrcmp.c: Likewise.
9879
9880 2009-01-19  Daniel P. Berrange  <berrange@redhat.com>
9881
9882         gettimeofday: avoid warning: nested extern declaration of 'localtime'
9883         * lib/gettimeofday.c: Move extern declaration out of function.
9884
9885 2009-01-18  Bruno Haible  <bruno@clisp.org>
9886
9887         * m4/strftime.m4 (gl_FUNC_STRFTIME): Don't test for mblen and mbrlen.
9888         * lib/strftime.c (HAVE_MBLEN, HAVE_MBRLEN): Remove macros.
9889         (MULTIBYTE_IS_FORMAT_SAFE): Define to 1 on all platforms except OSF/1.
9890
9891 2009-01-18  Bruno Haible  <bruno@clisp.org>
9892
9893         * lib/strftime.c (MEMPCPY): Remove unused macro.
9894         * m4/strftime.m4 (gl_FUNC_STRFTIME): Don't test for mempcpy.
9895
9896 2009-01-18  Martin Lambers  <marlam@marlam.de>
9897
9898         New module 'link'.
9899         * lib/unistd.in.h (link): New declaration.
9900         * lib/link.c: New file.
9901         * m4/link.m4: New file.
9902         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_LINK,
9903         HAVE_LINK.
9904         * modules/unistd (Makefile.am): Substitute GNULIB_LINK, HAVE_LINK.
9905         * modules/link: New file.
9906         * doc/posix-functions/link.texi: Mention the new module.
9907
9908 2009-01-18  Bruno Haible  <bruno@clisp.org>
9909
9910         * tests/test-avltree_list.c (main): Call set_program_name.
9911         * tests/test-avltree_oset.c (main): Likewise.
9912         * tests/test-obstack-printf.c: Include progname.h.
9913         (main): Call set_program_name.
9914         * tests/test-quotearg.c: Include progname.h.
9915         (main): Call set_program_name.
9916         * tests/test-xmemdup0.c: Include progname.h.
9917         (main): Call set_program_name.
9918
9919 2009-01-18  Bruno Haible  <bruno@clisp.org>
9920
9921         New module 'alphasort'.
9922         * lib/dirent.in.h (alphasort): New declaration.
9923         * lib/alphasort.c: New file, from glibc with modifications.
9924         * m4/alphasort.m4: New file.
9925         * modules/alphasort: New file.
9926         * m4/dirent_h.m4 (gl_DIRENT_H_DEFAULTS): Initialize GNULIB_ALPHASORT,
9927         HAVE_ALPHASORT.
9928         * modules/dirent (Makefile.am): Substitute GNULIB_ALPHASORT,
9929         HAVE_ALPHASORT.
9930         * doc/posix-functions/alphasort.texi: Mention the new module and the
9931         portability problems.
9932
9933 2009-01-18  Bruno Haible  <bruno@clisp.org>
9934
9935         New module 'scandir'.
9936         * lib/dirent.in.h (scandir): New declaration.
9937         * lib/scandir.c: New file, from glibc with modifications.
9938         * m4/scandir.m4: New file.
9939         * modules/scandir: New file.
9940         * m4/dirent_h.m4 (gl_DIRENT_H_DEFAULTS): Initialize GNULIB_SCANDIR,
9941         HAVE_SCANDIR.
9942         * modules/dirent (Makefile.am): Substitute GNULIB_SCANDIR,
9943         HAVE_SCANDIR.
9944         * doc/posix-functions/scandir.texi: Mention the new module and the
9945         portability problems.
9946
9947 2009-01-17  Bruno Haible  <bruno@clisp.org>
9948
9949         * gnulib-tool (func_remove_prefix): Escape all dots in the prefix.
9950         Update documentation.
9951         (func_remove_suffix): Escape all dots in the suffix. Update
9952         documentation.
9953         (func_filter_filelist): Update documentation.
9954         Reported by Ralf Wildenhues.
9955
9956 2009-01-17  Bruno Haible  <bruno@clisp.org>
9957
9958         * modules/dprintf-posix-tests: New file.
9959         * tests/test-dprintf-posix.sh: New file.
9960         * tests/test-dprintf-posix.c: New file.
9961
9962         New modules 'dprintf', 'dprintf-posix'.
9963         * lib/stdio.in.h (dprintf): New declaration.
9964         * lib/dprintf.c: New file.
9965         * m4/dprintf.m4: New file.
9966         * m4/dprintf-posix.m4: New file.
9967         * modules/dprintf: New file.
9968         * modules/dprintf-posix: New file.
9969         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Initialize GNULIB_DPRINTF,
9970         HAVE_DPRINTF, REPLACE_DPRINTF.
9971         * modules/stdio (Makefile.am): Substitute also GNULIB_DPRINTF,
9972         HAVE_DPRINTF, REPLACE_DPRINTF.
9973         * doc/posix-functions/dprintf.texi: Mention the new modules.
9974
9975 2009-01-17  Bruno Haible  <bruno@clisp.org>
9976
9977         * modules/vdprintf-posix-tests: New file.
9978         * tests/test-vdprintf-posix.sh: New file.
9979         * tests/test-vdprintf-posix.c: New file.
9980
9981         New modules 'vdprintf', 'vdprintf-posix'.
9982         * lib/stdio.in.h (vdprintf): New declaration.
9983         * lib/vdprintf.c: New file.
9984         * m4/vdprintf.m4: New file.
9985         * m4/vdprintf-posix.m4: New file.
9986         * modules/vdprintf: New file.
9987         * modules/vdprintf-posix: New file.
9988         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Initialize GNULIB_VDPRINTF,
9989         HAVE_VDPRINTF, REPLACE_VDPRINTF.
9990         * modules/stdio (Makefile.am): Substitute also GNULIB_VDPRINTF,
9991         HAVE_VDPRINTF, REPLACE_VDPRINTF.
9992         * doc/posix-functions/vdprintf.texi: Mention the new modules.
9993
9994 2009-01-17  Bruno Haible  <bruno@clisp.org>
9995
9996         Fix replacement of fopen on mingw.
9997         * m4/fopen.m4 (gl_FUNC_FOPEN): Define FOPEN_TRAILING_SLASH_BUG also on
9998         mingw.
9999
10000 2009-01-17  Bruno Haible  <bruno@clisp.org>
10001
10002         Fix compilation error on HP-UX 11.00, present since 2008-09-24.
10003         * lib/fopen.c: Include <sys/types.h> and <sys/types.h>.
10004
10005 2009-01-17  Bruno Haible  <bruno@clisp.org>
10006
10007         Avoid test-fflush2.sh failure on mingw.
10008         * tests/test-fflush2.c: Include binary-io.h.
10009         (main): Put standard input into binary mode.
10010         * modules/fflush-tests (Depends-on): Add binary-io.
10011
10012 2009-01-17  Bruno Haible  <bruno@clisp.org>
10013
10014         * lib/wchar.in.h: In another particular situation, include only the
10015         system's <wchar.h> file.
10016         (_GL_ALREADY_INCLUDING_WCHAR_H): New macro.
10017         Reported by Albert Chin-A-Young <china@thewrittenword.com>
10018         and Thomas Guyot-Sionnest <dermoth@aei.ca>.
10019
10020 2009-01-17  Bruno Haible  <bruno@clisp.org>
10021
10022         Support for stripping executables in --enable-relocatable.
10023         * build-aux/install-reloc: Expect one more argument, or an environment
10024         variable RELOC_STRIP_PROG. If set, strip the destination program and
10025         its wrapper.
10026         * m4/relocatable.m4 (gl_RELOCATABLE_BODY): In INSTALL_PROGRAM_ENV, set
10027         RELOC_STRIP_PROG.
10028         * doc/relocatable-maint.texi (Supporting Relocation): Mention the need
10029         to set RELOCATABLE_STRIP.
10030         * NEWS: Mention the new Makefile requirement.
10031
10032 2009-01-17  Bruno Haible  <bruno@clisp.org>
10033
10034         * build-aux/install-reloc: Remove debugging information left over by
10035         C compiler on MacOS X.
10036
10037 2009-01-17  Bruno Haible  <bruno@clisp.org>
10038
10039         Update use of _NSGetExecutablePath after API change in MacOS X 10.4.
10040         * lib/progreloc.c (find_executable): Fix type of pointer passed to
10041         _NSGetExecutablePath.
10042
10043 2009-01-16  Jim Meyering  <meyering@redhat.com>
10044
10045         strerror: avoid warnings about discarding "const"
10046         * lib/strerror.c (rpl_strerror): Instead of returning a const
10047         string from each and every "case", use a variable, and add a single
10048         cast after the switch.
10049
10050 2009-01-16  Albert Chin-A-Young <china@thewrittenword.com>
10051
10052         * lib/arpa_inet.in.h: Add extern "C" block for C++.
10053
10054 2009-01-16  Bruno Haible  <bruno@clisp.org>
10055
10056         * m4/printf.m4 (gl_SNPRINTF_SIZE1, gl_VSNPRINTF_ZEROSIZE_C99): Use an
10057         array initializer syntax that also works in C++ mode.
10058         Reported by Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
10059
10060 2009-01-16  Jim Meyering  <meyering@redhat.com>
10061
10062         poll: suppress a warning
10063         * lib/poll.c: Use #pragma GCC diagnostic ignored "-Wtype-limits"
10064         to ignore "...unsigned expression < 0 is always false" warnings.
10065
10066 2009-01-16  Daniel P. Berrange  <berrange@redhat.com>
10067
10068         poll: remove declarations of unused variables
10069         * lib/poll.c (poll) [WIN32_NATIVE]: Remove declarations of unused
10070         sockbuf and optlen.
10071
10072 2009-01-15  Bruno Haible  <bruno@clisp.org>
10073
10074         Make fflush-after-ungetc POSIX compliant on BSD systems.
10075         * lib/fflush.c (clear_ungetc_buffer_preserving_position): New function.
10076         (clear_ungetc_buffer): Implement also for other systems.
10077         (rpl_fflush): On glibc systems, invoke
10078         clear_ungetc_buffer_preserving_position. Otherwise, invoke
10079         clear_ungetc_buffer after fetching the stream's position, not before.
10080
10081 2009-01-15  Bruno Haible  <bruno@clisp.org>
10082
10083         Make fflush-after-ungetc POSIX compliant on glibc systems.
10084         * m4/fflush.m4 (gl_FUNC_FFLUSH): Test also the behaviour of fflush
10085         after ungetc.
10086         * lib/fflush.c (clear_ungetc_buffer): Implement for glibc systems.
10087         (rpl_fflush): On glibc systems, simply call the system's fflush
10088         function after clearing the ungetc buffer.
10089         * lib/fseeko.c (rpl_fseeko): Don't try to lseek past the end of file.
10090         Instead, lseek only to the end of file, then use the system's fseeko
10091         for the rest. On glibc systems, reset the EOF indicator bit.
10092
10093 2009-01-15  Jim Meyering  <meyering@redhat.com>
10094
10095         openmp.m4: revert quote-adding change, for portability to older autoconf
10096         * m4/openmp.m4: Remove the quotes added on 2009-01-14.
10097         This reverts part of 42d1eda5dcce2d68deab7a642e7f29bcd7144a0d.
10098         Simon Josefsson noticed the problem when using autoconf-2.61.
10099
10100 2009-01-15  Bruno Haible  <bruno@clisp.org>
10101
10102         * tests/test-fflush2.sh: Invoke test-fflush2 twice.
10103         * tests/test-fflush2.c (ASSERT): Always fail.
10104         (main): Add two tests for fflush() after ungetc(), taking into account
10105         the Austin Group's clarification.
10106         Suggested by Eric Blake.
10107
10108 2009-01-15  Albert Chin-A-Young  <china@thewrittenword.com>
10109
10110         mktime.m4: remove K&R-style function prototypes
10111         * m4/mktime.m4 (AC_FUNC_MKTIME): Remove K&R-style function prototypes
10112         for the Sun C++ compiler.
10113
10114 2009-01-14  Bruno Haible  <bruno@clisp.org>
10115
10116         * lib/stdint.in.h (_GL_JUST_INCLUDE_SYSTEM_WCHAR_H): New macro, defined
10117         while including <wchar.h>.
10118         * lib/wchar.in.h: In two particular situations on HP-UX, include only
10119         the system's <wchar.h> file.
10120         Reported by Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
10121
10122 2009-01-14  Bruno Haible  <bruno@clisp.org>
10123
10124         * m4/csharp.m4: Don't mention gettext on the serial number line.
10125         * m4/csharpexec.m4: Likewise.
10126         * m4/eaccess.m4: Likewise.
10127         * m4/javaexec.m4: Likewise.
10128         * m4/sig_atomic_t.m4: Likewise.
10129         * m4/tmpdir.m4: Likewise.
10130         * m4/intldir.m4: Bump gettext version.
10131         * m4/lib-ld.m4: Likewise.
10132
10133 2009-01-14  Bruno Haible  <bruno@clisp.org>
10134
10135         * lib/progname.c (set_program_name): Add more comments.
10136         Reported by Sergey Poznyakoff <gray@gnu.org.ua>.
10137
10138 2009-01-14  Simon Josefsson  <simon@josefsson.org>
10139
10140         * lib/sys_stat.in.h: Include sys/types.h for nlink_t on systems
10141         were sys/stat.h does not define it.
10142
10143 2009-01-14  Jim Meyering  <meyering@redhat.com>
10144
10145         many *.m4 files: improve m4 quoting
10146         99% of this change was performed by running the following commands:
10147         git ls-files | grep '\.m4$' | xargs perl -pi \
10148           -e 's/(AC_\w+\()([^[()]+?)([,)])/$1\[$2]$3/g;' \
10149           -e 's/(AC_\w+\((?:\[[^,]+?\], ){1})([^,[()]+?)([,)])/$1\[$2]$3/g;' \
10150           -e 's/(AC_\w+\((?:\[[^,]+?\], ){2})([^,[()]+?)([,)])/$1\[$2]$3/g;' \
10151           -e 's/(AC_\w+\((?:\[[^,]+?\], ){3})([^,[()]+?)([,)])/$1\[$2]$3/g'
10152         perl -pi -e 's/\[\.\.\.\]/.../' m4/onceonly.m4
10153         The remainder were to add Copyright dates, increment serial numbers,
10154         undo some changes in comments, exclude m4/intl.m4, and add quotes
10155         around the "1" in ",1" where the unusual spacing prohibited the
10156         above regexps from doing the job.  For more details, see
10157         <http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/16175>.
10158         * m4/acl.m4: Modified.
10159         * m4/afs.m4: Likewise.
10160         * m4/alloca.m4: Likewise.
10161         * m4/argp.m4: Likewise.
10162         * m4/argz.m4: Likewise.
10163         * m4/atexit.m4: Likewise.
10164         * m4/bison-i18n.m4: Likewise.
10165         * m4/bison.m4: Likewise.
10166         * m4/byteswap.m4: Likewise.
10167         * m4/c-stack.m4: Likewise.
10168         * m4/c-strtod.m4: Likewise.
10169         * m4/calloc.m4: Likewise.
10170         * m4/canonicalize-lgpl.m4: Likewise.
10171         * m4/chown.m4: Likewise.
10172         * m4/clock_time.m4: Likewise.
10173         * m4/codeset.m4: Likewise.
10174         * m4/copy-file.m4: Likewise.
10175         * m4/csharp.m4: Likewise.
10176         * m4/csharpcomp.m4: Likewise.
10177         * m4/csharpexec.m4: Likewise.
10178         * m4/d-ino.m4: Likewise.
10179         * m4/d-type.m4: Likewise.
10180         * m4/dirfd.m4: Likewise.
10181         * m4/double-slash-root.m4: Likewise.
10182         * m4/eaccess.m4: Likewise.
10183         * m4/eealloc.m4: Likewise.
10184         * m4/environ.m4: Likewise.
10185         * m4/errno_h.m4: Likewise.
10186         * m4/euidaccess.m4: Likewise.
10187         * m4/execute.m4: Likewise.
10188         * m4/fatal-signal.m4: Likewise.
10189         * m4/fchdir.m4: Likewise.
10190         * m4/fcntl_h.m4: Likewise.
10191         * m4/fileblocks.m4: Likewise.
10192         * m4/filenamecat.m4: Likewise.
10193         * m4/findprog.m4: Likewise.
10194         * m4/flexmember.m4: Likewise.
10195         * m4/fnmatch.m4: Likewise.
10196         * m4/fopen.m4: Likewise.
10197         * m4/fpending.m4: Likewise.
10198         * m4/fprintf-posix.m4: Likewise.
10199         * m4/free.m4: Likewise.
10200         * m4/frexp.m4: Likewise.
10201         * m4/frexpl.m4: Likewise.
10202         * m4/fsusage.m4: Likewise.
10203         * m4/ftruncate.m4: Likewise.
10204         * m4/gc-camellia.m4: Likewise.
10205         * m4/gc-random.m4: Likewise.
10206         * m4/gc.m4: Likewise.
10207         * m4/getaddrinfo.m4: Likewise.
10208         * m4/getcwd-abort-bug.m4: Likewise.
10209         * m4/getcwd-path-max.m4: Likewise.
10210         * m4/getdate.m4: Likewise.
10211         * m4/getdomainname.m4: Likewise.
10212         * m4/getgroups.m4: Likewise.
10213         * m4/gethostname.m4: Likewise.
10214         * m4/gethrxtime.m4: Likewise.
10215         * m4/getline.m4: Likewise.
10216         * m4/getloadavg.m4: Likewise.
10217         * m4/getndelim2.m4: Likewise.
10218         * m4/getpass.m4: Likewise.
10219         * m4/gettext.m4: Likewise.
10220         * m4/gettime.m4: Likewise.
10221         * m4/gettimeofday.m4: Likewise.
10222         * m4/gnulib-common.m4: Likewise.
10223         * m4/group-member.m4: Likewise.
10224         * m4/host-os.m4: Likewise.
10225         * m4/iconv.m4: Likewise.
10226         * m4/iconv_open.m4: Likewise.
10227         * m4/inet_ntop.m4: Likewise.
10228         * m4/inet_pton.m4: Likewise.
10229         * m4/inline.m4: Likewise.
10230         * m4/intldir.m4: Likewise.
10231         * m4/intlmacosx.m4: Likewise.
10232         * m4/intmax.m4: Likewise.
10233         * m4/intmax_t.m4: Likewise.
10234         * m4/inttypes.m4: Likewise.
10235         * m4/inttypes_h.m4: Likewise.
10236         * m4/inttypes-pri.m4: Likewise.
10237         * m4/isapipe.m4: Likewise.
10238         * m4/isnand.m4: Likewise.
10239         * m4/isnanf.m4: Likewise.
10240         * m4/isnanl.m4: Likewise.
10241         * m4/javacomp.m4: Likewise.
10242         * m4/javaexec.m4: Likewise.
10243         * m4/jm-winsz1.m4: Likewise.
10244         * m4/jm-winsz2.m4: Likewise.
10245         * m4/lchown.m4: Likewise.
10246         * m4/lcmessage.m4: Likewise.
10247         * m4/ldexpl.m4: Likewise.
10248         * m4/lib-ld.m4: Likewise.
10249         * m4/lib-link.m4: Likewise.
10250         * m4/libsigsegv.m4: Likewise.
10251         * m4/link-follow.m4: Likewise.
10252         * m4/localcharset.m4: Likewise.
10253         * m4/locale-fr.m4: Likewise.
10254         * m4/locale-ja.m4: Likewise.
10255         * m4/locale-tr.m4: Likewise.
10256         * m4/locale-zh.m4: Likewise.
10257         * m4/lock.m4: Likewise.
10258         * m4/longlong.m4: Likewise.
10259         * m4/ls-mntd-fs.m4: Likewise.
10260         * m4/lstat.m4: Likewise.
10261         * m4/malloc.m4: Likewise.
10262         * m4/mathl.m4: Likewise.
10263         * m4/mbrtowc.m4: Likewise.
10264         * m4/mbstate_t.m4: Likewise.
10265         * m4/mbswidth.m4: Likewise.
10266         * m4/memchr.m4: Likewise.
10267         * m4/memcmp.m4: Likewise.
10268         * m4/memcpy.m4: Likewise.
10269         * m4/memmem.m4: Likewise.
10270         * m4/memmove.m4: Likewise.
10271         * m4/mempcpy.m4: Likewise.
10272         * m4/memrchr.m4: Likewise.
10273         * m4/memset.m4: Likewise.
10274         * m4/minmax.m4: Likewise.
10275         * m4/mkdir-slash.m4: Likewise.
10276         * m4/mkdtemp.m4: Likewise.
10277         * m4/mktime.m4: Likewise.
10278         * m4/mmap-anon.m4: Likewise.
10279         * m4/mountlist.m4: Likewise.
10280         * m4/nanosleep.m4: Likewise.
10281         * m4/nls.m4: Likewise.
10282         * m4/nocrash.m4: Likewise.
10283         * m4/open.m4: Likewise.
10284         * m4/openat.m4: Likewise.
10285         * m4/openmp.m4: Likewise.
10286         * m4/pathmax.m4: Likewise.
10287         * m4/perl.m4: Likewise.
10288         * m4/physmem.m4: Likewise.
10289         * m4/pipe.m4: Likewise.
10290         * m4/po.m4: Likewise.
10291         * m4/poll.m4: Likewise.
10292         * m4/posixtm.m4: Likewise.
10293         * m4/posixver.m4: Likewise.
10294         * m4/printf-frexp.m4: Likewise.
10295         * m4/printf-frexpl.m4: Likewise.
10296         * m4/printf-posix.m4: Likewise.
10297         * m4/printf-posix-rpl.m4: Likewise.
10298         * m4/printf.m4: Likewise.
10299         * m4/progtest.m4: Likewise.
10300         * m4/putenv.m4: Likewise.
10301         * m4/readline.m4: Likewise.
10302         * m4/readlink.m4: Likewise.
10303         * m4/readutmp.m4: Likewise.
10304         * m4/realloc.m4: Likewise.
10305         * m4/regex.m4: Likewise.
10306         * m4/relocatable.m4: Likewise.
10307         * m4/relocatable-lib.m4: Likewise.
10308         * m4/rename-dest-slash.m4: Likewise.
10309         * m4/rename.m4: Likewise.
10310         * m4/rmdir-errno.m4: Likewise.
10311         * m4/rmdir.m4: Likewise.
10312         * m4/roundf.m4: Likewise.
10313         * m4/roundl.m4: Likewise.
10314         * m4/rpmatch.m4: Likewise.
10315         * m4/save-cwd.m4: Likewise.
10316         * m4/selinux-selinux-h.m4: Likewise.
10317         * m4/setenv.m4: Likewise.
10318         * m4/settime.m4: Likewise.
10319         * m4/sig2str.m4: Likewise.
10320         * m4/sig_atomic_t.m4: Likewise.
10321         * m4/signalblocking.m4: Likewise.
10322         * m4/signbit.m4: Likewise.
10323         * m4/sigpipe.m4: Likewise.
10324         * m4/sockets.m4: Likewise.
10325         * m4/sockpfaf.m4: Likewise.
10326         * m4/st_dm_mode.m4: Likewise.
10327         * m4/stat-time.m4: Likewise.
10328         * m4/stdbool.m4: Likewise.
10329         * m4/stdint.m4: Likewise.
10330         * m4/stdint_h.m4: Likewise.
10331         * m4/stpcpy.m4: Likewise.
10332         * m4/stpncpy.m4: Likewise.
10333         * m4/strcase.m4: Likewise.
10334         * m4/strchrnul.m4: Likewise.
10335         * m4/strcspn.m4: Likewise.
10336         * m4/strdup.m4: Likewise.
10337         * m4/strftime.m4: Likewise.
10338         * m4/strndup.m4: Likewise.
10339         * m4/strnlen.m4: Likewise.
10340         * m4/strpbrk.m4: Likewise.
10341         * m4/strptime.m4: Likewise.
10342         * m4/strsep.m4: Likewise.
10343         * m4/strtod.m4: Likewise.
10344         * m4/strtoimax.m4: Likewise.
10345         * m4/strtok_r.m4: Likewise.
10346         * m4/strtol.m4: Likewise.
10347         * m4/strtoll.m4: Likewise.
10348         * m4/strtoul.m4: Likewise.
10349         * m4/strtoull.m4: Likewise.
10350         * m4/strtoumax.m4: Likewise.
10351         * m4/strverscmp.m4: Likewise.
10352         * m4/threadlib.m4: Likewise.
10353         * m4/timegm.m4: Likewise.
10354         * m4/tm_gmtoff.m4: Likewise.
10355         * m4/tmpdir.m4: Likewise.
10356         * m4/tmpfile.m4: Likewise.
10357         * m4/tzset.m4: Likewise.
10358         * m4/uintmax_t.m4: Likewise.
10359         * m4/unlinkdir.m4: Likewise.
10360         * m4/unlocked-io.m4: Likewise.
10361         * m4/uptime.m4: Likewise.
10362         * m4/userspec.m4: Likewise.
10363         * m4/utimbuf.m4: Likewise.
10364         * m4/utime.m4: Likewise.
10365         * m4/utimes-null.m4: Likewise.
10366         * m4/utimes.m4: Likewise.
10367         * m4/vararrays.m4: Likewise.
10368         * m4/vasnprintf.m4: Likewise.
10369         * m4/vfprintf-posix.m4: Likewise.
10370         * m4/vprintf-posix.m4: Likewise.
10371         * m4/wait-process.m4: Likewise.
10372         * m4/wchar_t.m4: Likewise.
10373         * m4/wint_t.m4: Likewise.
10374         * m4/write-any-file.m4: Likewise.
10375         * m4/yield.m4: Likewise.
10376
10377 2009-01-13  Bruno Haible  <bruno@clisp.org>
10378
10379         Avoid test-copy-file.sh failures when ACL support insufficient.
10380         * modules/copy-file-tests (Makefile.am): Pass USE_ACL in
10381         TESTS_ENVIRONMENT.
10382         * tests/test-copy-file.sh: Skip the ACL comparisons if USE_ACL is 0.
10383         Reported by Jim Meyering.
10384
10385 2009-01-13  Bruno Haible  <bruno@clisp.org>
10386
10387         * modules/unistdio/u-printf-args (Files): Add m4/stdint_h.m4 and
10388         m4/inttypes_h.m4, needed by m4/intmax_t.m4.
10389         * modules/unistdio/u8-printf-parse (Files): Likewise.
10390         * modules/unistdio/u32-printf-parse (Files): Likewise.
10391         * modules/unistdio/ulc-printf-parse (Files): Likewise.
10392
10393 2009-01-13  Simon Josefsson  <simon@josefsson.org>
10394
10395         * modules/unistdio/u16-printf-parse (Files): Add m4/stdint_h.m4
10396         and m4/inttypes_h.m4 too.
10397
10398 2009-01-12  Eric Blake  <ebb9@byu.net>
10399
10400         tests: IRIX 6.2 cc can't compile -0.0 into .data
10401         * tests/test-ceill.c (minus_zero): Compute -0.0L at runtime,
10402         rather than at compile-time.
10403         * tests/test-floorl.c (minus_zero): Likewise.
10404         * tests/test-frexpl.c (minus_zero): Likewise.
10405         * tests/test-isnan.c (minus_zerol): Likewise.
10406         * tests/test-isnanl.h (minus_zero): Likewise.
10407         * tests/test-ldexpl.c (minus_zero): Likewise.
10408         * tests/test-roundl.c (minus_zero): Likewise.
10409         * tests/test-signbit.c (minus_zerol): Likewise.
10410         * tests/test-snprintf-posix.h (minus_zerol): Likewise.
10411         * tests/test-sprintf-posix.h (minus_zerol): Likewise.
10412         * tests/test-truncl.c (minus_zero): Likewise.
10413         * tests/test-vasnprintf-posix.c (minus_zerol): Likewise.
10414         * tests/test-vasprintf-posix.c (minus_zerol): Likewise.
10415         Reported by Tom G. Christensen and Nelson H. F. Beebe.
10416
10417 2009-01-09  Paolo Bonzini  <bonzini@gnu.org>
10418
10419         regex: fix glibc bug 9697
10420         * lib/regcomp.c (re_compile_fastmap_iter): Rewrite COMPLEX_BRACKET
10421         handling.
10422
10423 2009-01-09  Paolo Bonzini  <bonzini@gnu.org>
10424
10425         regex: fix glibc bug 697
10426         * lib/regexec.c (prune_impossible_nodes): Handle sifted_states[0]
10427         being NULL also if there are no backreferences.
10428
10429 2009-01-09  Paolo Bonzini  <bonzini@gnu.org>
10430
10431         regex: merge glibc changes
10432         * lib/regcomp.c (re_compile_fastmap_iter): Use __mbrtowc.
10433         * lib/regex_internal.c (build_wcs_buffer, build_wcs_upper_buffer,
10434         re_string_skip_chars, re_string_reconstruct): Likewise.
10435         * lib/regex_internal.h [!_LIBC] (__mbrtowc): New #define.
10436
10437 2009-01-07  Jim Meyering  <meyering@redhat.com>
10438
10439         poll: filter through cppi
10440         * lib/poll.c: Indent cpp directives to reflect nesting.
10441
10442 2009-01-07  Daniel P. Berrange  <berrange@redhat.com>
10443
10444         poll: don't return uninitialized
10445         * lib/poll.c (poll) [WIN32_NATIVE]: Initialize "rc".
10446
10447 2009-01-06  Jeremy Olexa <darkside@gentoo.org>  (tiny change)
10448
10449         avoid compile failure on AIX 6.1
10450         * lib/getloadavg.c [HAVE_LIBPERFSTAT]: Include <sys/protosw.h>.
10451         Details in http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/15465
10452
10453 2009-01-04  Jim Meyering  <meyering@redhat.com>
10454
10455         remove duplicate inclusion of <stdio.h>
10456         * tests/test-fprintf-posix.c: Likewise.
10457         * tests/test-printf-posix.c: Likewise.
10458         * tests/test-snprintf-posix.c: Likewise.
10459         * tests/test-sprintf-posix.c: Likewise.
10460         * tests/test-vasprintf-posix.c: Likewise.
10461         * tests/test-vfprintf-posix.c: Likewise.
10462         * tests/test-vprintf-posix.c: Likewise.
10463         * tests/test-vsnprintf-posix.c: Likewise.
10464         * tests/test-vsprintf-posix.c: Likewise.
10465
10466 2009-01-03  Jim Meyering  <meyering@redhat.com>
10467
10468         gnulib-tool: fix sed-based filtering
10469         * gnulib-tool (func_filter_filelist): Remove extra backslash
10470         in sed_fff_filter definition.
10471
10472 2009-01-02  Jim Meyering  <meyering@redhat.com>
10473
10474         strftime: avoid compilation failure on Solaris 2.6
10475         * modules/strftime (Depends-on): Add mbrlen and mbsinit.
10476         * lib/strftime.c [DO_MULTIBYTE]: Include <wchar.h> unconditionally.
10477         Don't #define mbrlen or mbsinit, since now they're guaranteed to
10478         be available.  Reported by Tom G. Christensen.  Details in
10479         <http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/16180>.
10480
10481 2009-01-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
10482             Bruno Haible  <bruno@clisp.org>
10483
10484         Speed up gnulib-tool by doing more string processing through shell
10485         built-ins.
10486         * gnulib-tool (fast_func_append): New variable.
10487         (func_remove_prefix, func_remove_suffix): New functions.
10488         (fast_func_remove_prefix, fast_func_remove_suffix): New variables.
10489         (func_filter_filelist): New function.
10490         (func_get_dependencies): Use func_remove_suffix instead of sed.
10491         (func_get_automake_snippet): Use func_filter_filelist instead of a
10492         subshell and sed invocation.
10493
10494 2009-01-01  Bruno Haible  <bruno@clisp.org>
10495
10496         Fix a security bug.
10497         * gnulib-tool (func_import, import, update): Don't allow the characters
10498         '"', '$', '`', '\' in macro arguments that become part of commands that
10499         are evaluated.
10500
10501 2009-01-01  Bruno Haible  <bruno@clisp.org>
10502
10503         * gnulib-tool (func_reset_sigpipe): Add more comments.
10504
10505 2009-01-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
10506
10507         * gnulib-tool (func_modules_add_dummy, func_emit_lib_Makefile_am,
10508         func_emit_tests_Makefile_am, func_import): Abort loops early if we
10509         already know the answer.
10510
10511 2009-01-01  Jim Meyering  <meyering@redhat.com>
10512
10513         * lib/version-etc.c (version_etc_va): Update copyright year.
10514
10515 2008-12-30  Bruno Haible  <bruno@clisp.org>
10516
10517         * m4/lib-prefix.m4 (AC_LIB_LINKFLAGS_BODY): Don't overwrite
10518         LIB${NAME}_PREFIX when considering the dependencies of lib${name}.
10519         Reported by Charles Wilson <cygwin@cwilson.fastmail.fm>.
10520
10521 2008-12-29  Eric Blake  <ebb9@byu.net>
10522
10523         multiarch: avoid autoconf AC_REQUIRE bug
10524         * m4/multiarch.m4 (gl_MULTIARCH): Split body...
10525         (gl_MULTIARCH_BODY): ...into new macro, to work around bug in Autoconf
10526         2.63 and older.
10527         Reported by Bruno Haible, and analyzed in
10528         http://lists.gnu.org/archive/html/bug-autoconf/2008-12/msg00039.html
10529
10530 2008-12-29  Bruno Haible  <bruno@clisp.org>
10531
10532         * gnulib-tool (func_import): When generating sed-ignore-removed, handle
10533         files in subdirectories correctly.
10534         Reported by Ralf Wildenhues.
10535
10536 2008-12-29  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
10537
10538         * gnulib-tool (func_update_ignorelist): Use 'join - FILE'
10539         rather than 'join FILE -', for Solaris join.
10540
10541 2008-12-29  Bruno Haible  <bruno@clisp.org>
10542
10543         * m4/codeset.m4 (AM_LANGINFO_CODESET): More systematic m4 argument
10544         quoting.
10545         * m4/gettext.m4 (AM_GNU_GETTEXT): Likewise.
10546         * m4/glibc2.m4 (gt_GLIBC2): Likewise.
10547         * m4/glibc21.m4 (gl_GLIBC21): Likewise.
10548         * m4/iconv.m4 (AM_ICONV_LINK, AM_ICONV): Likewise.
10549         * m4/intdiv0.m4 (gt_INTDIV0): Likewise.
10550         * m4/intlmacosx.m4 (gt_INTL_MACOSX): Likewise.
10551         * m4/intmax.m4 (gt_TYPE_INTMAX_T): Likewise.
10552         * m4/inttypes-pri.m4 (gt_INTTYPES_PRI): Likewise.
10553         * m4/inttypes_h.m4 (gl_AC_HEADER_INTTYPES_H): Likewise.
10554         * m4/lcmessage.m4 (gt_LC_MESSAGES): Likewise.
10555         * m4/nls.m4 (AM_NLS): Likewise.
10556         * m4/po.m4 (AM_PO_SUBDIRS): Likewise.
10557         * m4/printf-posix.m4 (gt_PRINTF_POSIX): Likewise.
10558         * m4/progtest.m4 (AM_PATH_PROG_WITH_TEST): Likewise.
10559         * m4/size_max.m4 (gl_SIZE_MAX): Likewise.
10560         * m4/stdint_h.m4 (gl_AC_HEADER_STDINT_H): Likewise.
10561         * m4/threadlib.m4 (gl_THREADLIB_BODY): Likewise.
10562         * m4/uintmax_t.m4 (gl_AC_TYPE_UINTMAX_T): Likewise.
10563         * m4/visibility.m4 (gl_VISIBILITY): Likewise.
10564         * m4/wchar_t.m4 (gt_TYPE_WCHAR_T): Likewise.
10565         * m4/wint_t.m4 (gt_TYPE_WINT_T): Likewise.
10566         * m4/xsize.m4 (gl_XSIZE): Likewise.
10567         Suggested by Jim Meyering.
10568
10569 2008-11-17  Bruce Korb  <bkorb@gnu.org>
10570
10571         * lib/parse-duration.h: non-iso form accepts years, months weeks, too
10572         * lib/parse-duration.c: use a switch instead of cascading if's.
10573
10574 2008-12-29  Eric Blake  <ebb9@byu.net>
10575
10576         wchar.h: supply WEOF on Irix 5.3
10577         * lib/wchar.in.h (wint_t): Also supply WEOF.
10578         * lib/wctype.in.h (wint_t): Likewise.
10579         * doc/posix-headers/wchar.texi (wchar.h): Document the bug.
10580         * doc/posix-headers/wctype.texi (wctype.h): Likewise.
10581         Reported by Tom G. Christensen.
10582
10583 2008-12-26  Bruno Haible  <bruno@clisp.org>
10584
10585         * m4/multiarch.m4 (gl_MULTIARCH): Recognize also the architecture names
10586         i486, i586, i686.
10587
10588 2008-12-26  Bruno Haible  <bruno@clisp.org>
10589
10590         * lib/stdlib.in.h (struct random_data): Fix indentation of comments.
10591
10592 2008-12-26  Bruno Haible  <bruno@clisp.org>
10593
10594         * lib/stdint.in.h: Move the include of <wchar.h> down until after all
10595         the types are defined. Also conditionalize it on __STDC_LIMIT_MACROS,
10596         not __STDC_CONSTANT_MACROS.
10597         Reported by Nelson H. F. Beebe <beebe@math.utah.edu> via Eric Blake.
10598
10599 2008-12-25  Bruno Haible  <bruno@clisp.org>
10600
10601         Add support for universal builds to vasnprintf.
10602         * m4/printf.m4 (gl_PRINTF_ENOMEM): Require gl_MULTIARCH. In Apple
10603         universal builds, guess no.
10604         * modules/vasnprintf-posix (Depends-on): Add multiarch.
10605         * modules/vasprintf-posix (Depends-on): Likewise.
10606         * modules/fprintf-posix (Depends-on): Likewise.
10607         * modules/vfprintf-posix (Depends-on): Likewise.
10608         * modules/snprintf-posix (Depends-on): Likewise.
10609         * modules/vsnprintf-posix (Depends-on): Likewise.
10610         * modules/sprintf-posix (Depends-on): Likewise.
10611         * modules/vsprintf-posix (Depends-on): Likewise.
10612         * modules/unistdio/u8-vasnprintf (Depends-on): Likewise.
10613         * modules/unistdio/u8-u8-vasnprintf (Depends-on): Likewise.
10614         * modules/unistdio/u16-vasnprintf (Depends-on): Likewise.
10615         * modules/unistdio/u16-u16-vasnprintf (Depends-on): Likewise.
10616         * modules/unistdio/u32-vasnprintf (Depends-on): Likewise.
10617         * modules/unistdio/u32-u32-vasnprintf (Depends-on): Likewise.
10618         * modules/unistdio/ulc-vasnprintf (Depends-on): Likewise.
10619
10620         Add support for universal builds to <inttypes.h>.
10621         * lib/inttypes.in.h (_PRI64_PREFIX, _PRIu64_PREFIX, _SCN64_PREFIX,
10622         _SCNu64_PREFIX): In Apple
10623         universal builds, define directly, using _LP64.
10624         * m4/inttypes.m4 (gl_INTTYPES_H): In Apple universal builds, set
10625         INT64_MAX_EQ_LONG_MAX and UINT64_MAX_EQ_ULONG_MAX to -1.
10626         * modules/inttypes (Depends-on): Add multiarch.
10627         (Makefile.am): Substitute APPLE_UNIVERSAL_BUILD.
10628
10629         Add support for universal builds to <stdint.h>.
10630         * lib/stdint.in.h (PDFDIFF_MIN, PTRDIFF_MAX, SIZE_MAX): In Apple
10631         universal builds, define directly, using _LP64.
10632         * m4/stdint.m4 (gl_STDINT_TYPE_PROPERTIES): Require gl_MULTIARCH. In
10633         Apple universal builds, don't test for the size and suffix of ptrdiff_t
10634         and size_t.
10635         * modules/stdint (Depends-on): Add multiarch.
10636         (Makefile.am): Substitute APPLE_UNIVERSAL_BUILD.
10637
10638         New module 'multiarch'.
10639         * modules/multiarch: New file.
10640         * m4/multiarch.m4: New file.
10641
10642 2008-12-25  Bruno Haible  <bruno@clisp.org>
10643
10644         * gnulib-tool (func_create_testdir): Avoid failure of mv command.
10645
10646 2008-12-25  Bruno Haible  <bruno@clisp.org>
10647
10648         * modules/btowc (License): Relicense under LGPLv2+.
10649         * modules/mbsinit (License): Likewise.
10650         * modules/mbrtowc (License): Likewise.
10651         * modules/wcrtomb (License): Likewise.
10652         * modules/streq (License): Likewise.
10653         Reported by David Lutterkort <lutter@redhat.com>.
10654
10655 2008-12-23  Bruno Haible  <bruno@clisp.org>
10656
10657         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Fix conditional and comment.
10658
10659 2008-12-23  Bruno Haible  <bruno@clisp.org>
10660
10661         Module getaddrinfo requires linking with $(GETADDRINFO_LIB).
10662         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Put link options into
10663         GETADDRINFO_LIB, not in LIBS.
10664         * modules/getaddrinfo (Link): Set to $(GETADDRINFO_LIB).
10665         * modules/canon-host (Link): Likewise.
10666         * NEWS: Mention the change.
10667         * modules/getaddrinfo-tests (test_getaddrinfo_LDADD): Add the
10668         GETADDRINFO_LIB.
10669
10670 2008-12-22  Bruno Haible  <bruno@clisp.org>
10671
10672         * doc/posix-functions/iswalnum_l.texi: Mention limitation of wchar_t.
10673         * doc/posix-functions/iswalpha_l.texi: Likewise.
10674         * doc/posix-functions/iswblank_l.texi: Likewise.
10675         * doc/posix-functions/iswcntrl_l.texi: Likewise.
10676         * doc/posix-functions/iswctype_l.texi: Likewise.
10677         * doc/posix-functions/iswdigit_l.texi: Likewise.
10678         * doc/posix-functions/iswgraph_l.texi: Likewise.
10679         * doc/posix-functions/iswlower_l.texi: Likewise.
10680         * doc/posix-functions/iswprint_l.texi: Likewise.
10681         * doc/posix-functions/iswpunct_l.texi: Likewise.
10682         * doc/posix-functions/iswspace_l.texi: Likewise.
10683         * doc/posix-functions/iswupper_l.texi: Likewise.
10684         * doc/posix-functions/iswxdigit_l.texi: Likewise.
10685         * doc/posix-functions/mbsnrtowcs.texi: Likewise.
10686         * doc/posix-functions/open_wmemstream.texi: Likewise.
10687         * doc/posix-functions/swscanf.texi: Likewise.
10688         * doc/posix-functions/towctrans_l.texi: Likewise.
10689         * doc/posix-functions/towlower.texi: Likewise.
10690         * doc/posix-functions/towlower_l.texi: Likewise.
10691         * doc/posix-functions/towupper.texi: Likewise.
10692         * doc/posix-functions/towupper_l.texi: Likewise.
10693         * doc/posix-functions/vfwprintf.texi: Likewise.
10694         * doc/posix-functions/vfwscanf.texi: Likewise.
10695         * doc/posix-functions/vswscanf.texi: Likewise.
10696         * doc/posix-functions/vwprintf.texi: Likewise.
10697         * doc/posix-functions/vwscanf.texi: Likewise.
10698         * doc/posix-functions/wcpcpy.texi: Likewise.
10699         * doc/posix-functions/wcpncpy.texi: Likewise.
10700         * doc/posix-functions/wcscasecmp.texi: Likewise.
10701         * doc/posix-functions/wcscasecmp_l.texi: Likewise.
10702         * doc/posix-functions/wcscoll_l.texi: Likewise.
10703         * doc/posix-functions/wcsdup.texi: Likewise.
10704         * doc/posix-functions/wcsncasecmp.texi: Likewise.
10705         * doc/posix-functions/wcsncasecmp_l.texi: Likewise.
10706         * doc/posix-functions/wcsnlen.texi: Likewise.
10707         * doc/posix-functions/wcsnrtombs.texi: Likewise.
10708         * doc/posix-functions/wcsxfrm_l.texi: Likewise.
10709         * doc/posix-functions/wctrans_l.texi: Likewise.
10710         * doc/posix-functions/wctype_l.texi: Likewise.
10711         * doc/glibc-functions/fgetwc_unlocked.texi: Likewise.
10712         * doc/glibc-functions/fgetws_unlocked.texi: Likewise.
10713         * doc/glibc-functions/fputwc_unlocked.texi: Likewise.
10714         * doc/glibc-functions/fputws_unlocked.texi: Likewise.
10715         * doc/glibc-functions/getwc_unlocked.texi: Likewise.
10716         * doc/glibc-functions/getwchar_unlocked.texi: Likewise.
10717         * doc/glibc-functions/putwc_unlocked.texi: Likewise.
10718         * doc/glibc-functions/putwchar_unlocked.texi: Likewise.
10719         * doc/glibc-functions/wcschrnul.texi: Likewise.
10720         * doc/glibc-functions/wcsftime_l.texi: Likewise.
10721         * doc/glibc-functions/wcstod_l.texi: Likewise.
10722         * doc/glibc-functions/wcstof_l.texi: Likewise.
10723         * doc/glibc-functions/wcstol_l.texi: Likewise.
10724         * doc/glibc-functions/wcstold_l.texi: Likewise.
10725         * doc/glibc-functions/wcstoll_l.texi: Likewise.
10726         * doc/glibc-functions/wcstoq.texi: Likewise.
10727         * doc/glibc-functions/wcstoul_l.texi: Likewise.
10728         * doc/glibc-functions/wcstoull_l.texi: Likewise.
10729         * doc/glibc-functions/wcstouq.texi: Likewise.
10730         * doc/glibc-functions/wmempcpy.texi: Likewise.
10731
10732 2008-12-22  Ingo Weinhold  <ingo_weinhold@gmx.de>  (tiny change)
10733             Eric Blake  <ebb9@byu.net>
10734             Paolo Bonzini  <bonzini@gnu.org>
10735             Bruno Haible  <bruno@clisp.org>
10736
10737         Make c-stack work on Haiku.
10738         * lib/c-stack.c (SA_ONSTACK): Define fallback.
10739         (c_stack_action): Use SA_ONSTACK flag.
10740
10741 2008-12-22  Bruno Haible  <bruno@clisp.org>
10742
10743         * m4/locale-fr.m4 (gt_LOCALE_FR_UTF8): Treat Haiku like BeOS.
10744
10745 2008-12-22  Bruno Haible  <bruno@clisp.org>
10746
10747         Work around mbrlen() bugs on AIX, HP-UX, OSF/1, Solaris.
10748         * m4/mbrlen.m4 (gl_FUNC_MBRLEN): Set REPLACE_MBRLEN if mbrtowc is
10749         being overridden.
10750         (gl_MBRLEN_INCOMPLETE_STATE, gl_MBRLEN_RETVAL, gl_MBRLEN_NUL_RETVAL):
10751         New macros.
10752         * lib/wchar.in.h (mbrlen): Override if REPLACE_MBRLEN is set.
10753         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize REPLACE_MBRLEN.
10754         * modules/wchar (Makefile.am): Substitute REPLACE_MBRLEN.
10755         * doc/posix-functions/mbrlen.texi: Mention the various platform bugs.
10756
10757 2008-12-22  Bruno Haible  <bruno@clisp.org>
10758
10759         * m4/mbrtowc.m4 (gl_MBRTOWC_INCOMPLETE_STATE): Remove unused variable
10760         from test code.
10761
10762 2008-12-22  Eric Blake  <ebb9@byu.net>
10763
10764         Avoid gcc warnings on cygwin.
10765         * lib/regex_internal.c (re_string_reconstruct) [!RE_ENABLE_I18N]:
10766         Avoid unused variable.
10767         * lib/regexec.c (check_arrival_add_next_nodes) [!RE_ENABLE_I18N]:
10768         Likewise.
10769
10770 2008-12-22  Bruno Haible  <bruno@clisp.org>
10771
10772         Remove HAVE_MBRTOWC conditionals.
10773         * lib/mbscasecmp.c: Include mbuiter.h unconditionally.
10774         (mbscasecmp): Assume mbrtowc function.
10775         * lib/mbscasestr.c: Include mbuiter.h unconditionally.
10776         (knuth_morris_pratt_multibyte, mbscasestr): Assume mbrtowc function.
10777         * lib/mbschr.c: Include mbuiter.h unconditionally.
10778         (mbschr): Assume mbrtowc function.
10779         * lib/mbscspn.c: Include mbuiter.h unconditionally.
10780         (mbscspn): Assume mbrtowc function.
10781         * lib/mbslen.c: Include mbuiter.h unconditionally.
10782         (mbslen): Assume mbrtowc function.
10783         * lib/mbsncasecmp.c: Include mbuiter.h unconditionally.
10784         (mbsncasecmp): Assume mbrtowc function.
10785         * lib/mbsnlen.c: Include mbiter.h unconditionally.
10786         (mbsnlen): Assume mbrtowc function.
10787         * lib/mbspbrk.c: Include mbuiter.h unconditionally.
10788         (mbspbrk): Assume mbrtowc function.
10789         * lib/mbspcasecmp.c: Include mbuiter.h unconditionally.
10790         (mbspcasecmp): Assume mbrtowc function.
10791         * lib/mbsrchr.c: Include mbuiter.h unconditionally.
10792         (mbsrchr): Assume mbrtowc function.
10793         * lib/mbssep.c: Include mbuiter.h unconditionally.
10794         (mbssep): Assume mbrtowc function.
10795         * lib/mbsspn.c: Include mbuiter.h unconditionally.
10796         (mbsspn): Assume mbrtowc function.
10797         * lib/mbsstr.c: Include mbuiter.h unconditionally.
10798         (knuth_morris_pratt_multibyte, mbsstr): Assume mbrtowc function.
10799         * lib/mbstok_r.c: Include mbuiter.h unconditionally.
10800         (mbstok_r): Assume mbrtowc function.
10801         * lib/propername.c: Include mbuiter.h unconditionally.
10802         (mbsstr_trimmed_wordbounded): Assume mbrtowc function.
10803         * lib/trim.c: Include mbchar.h, mbiter.h uncondtionally.
10804         (trim2): Assume mbrtowc function.
10805         * lib/mbswidth.c (mbsinit): Remove fallback definition.
10806         (mbsnwidth): Assume mbrtowc function.
10807         * modules/mbswidth (Depends-on): Add mbrtowc, mbsinit.
10808         * lib/quotearg.c (MB_CUR_MAX, mbstate_t, mbrtowc, iswprint): Remove
10809         fallback definitions.
10810         * modules/quotearg (Depends-on): Add mbrtowc, mbsinit.
10811
10812 2008-12-22  Bruno Haible  <bruno@clisp.org>
10813
10814         * doc/posix-functions/mbtowc.texi: Mention a glibc bug.
10815
10816 2008-12-22  Paolo Bonzini  <bonzini@gnu.org>
10817
10818         * modules/regex: Request emulations for the mb*/wc* functions we need.
10819         * m4/regex.m4: Don't look for those functions here.
10820         * lib/regex_internal.h: Do not check HAVE_WCRTOMB and HAVE_MBRTOWC.
10821
10822 2008-12-22  Bruno Haible  <bruno@clisp.org>
10823
10824         * modules/fnmatch (Depends-on): Remove duplicated dependency.
10825
10826 2008-12-21  Bruno Haible  <bruno@clisp.org>
10827
10828         Make mbiter.h, mbuiter.h, mbfile.h usable unconditionally.
10829         * modules/mbiter (Depends-on): Add mbrtowc, mbsinit.
10830         (Include): Remove conditionalization.
10831         * modules/mbuiter (Depends-on): Add mbrtowc, mbsinit.
10832         (Include): Remove conditionalization.
10833         * modules/mbfile (Depends-on): Add mbrtowc, mbsinit.
10834         (Include): Remove conditionalization.
10835         * m4/mbiter.m4 (gl_MBITER): Deprecate the use of AC_FUNC_MBRTOWC.
10836         * m4/mbfile.m4 (gl_MBFILE): Likewise.
10837         * NEWS: Mention the change.
10838         Reported by Alan Hourihane <alanh@fairlite.co.uk>
10839         via Sergey Poznyakoff <gray@gnu.org.ua>.
10840
10841 2008-12-21  Bruno Haible  <bruno@clisp.org>
10842
10843         * MODULES.html.sh (Extended multibyte and wide character utilities
10844         <wchar.h>): Add btowc, wctob, mbsinit, mbrlen, mbrtowc, mbsrtowcs,
10845         wcrtomb, wcsrtombs.
10846         (Support for systems lacking POSIX:2008): Add accept, bind, close,
10847         connect, fclose, getpeername, getsockname, getsockopt, hostent, listen,
10848         mbsnrtowcs, posix_spawn*, recv, recvfrom, sched, select, send, sendto,
10849         setsockopt, shutdown, socket, spawn, sys_wait, wcsnrtombs, write.
10850
10851 2008-12-21  Bruno Haible  <bruno@clisp.org>
10852
10853         * MODULES.html.sh: Change section titles to refer to POSIX:2008.
10854
10855 2008-12-21  Bruno Haible  <bruno@clisp.org>
10856
10857         * modules/wcsnrtombs-tests: New file.
10858         * tests/test-wcsnrtombs1.sh: New file.
10859         * tests/test-wcsnrtombs2.sh: New file.
10860         * tests/test-wcsnrtombs3.sh: New file.
10861         * tests/test-wcsnrtombs4.sh: New file.
10862         * tests/test-wcsnrtombs.c: New file.
10863
10864         New module 'wcsnrtombs'.
10865         * lib/wchar.in.h (wcsnrtombs): New declaration.
10866         * lib/wcsnrtombs.c: New file.
10867         * lib/wcsrtombs-state.c: New file.
10868         * lib/wcsrtombs.c: Refer to _gl_wcsrtombs_state.
10869         (internal_state): Remove variable.
10870         * m4/wcsnrtombs.m4: New file.
10871         * m4/wcsrtombs.m4 (gl_FUNC_WCSRTOMBS): Add wcsrtombs-state.c to the
10872         compilation units.
10873         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_WCSNRTOMBS,
10874         HAVE_WCSNRTOMBS.
10875         * modules/wchar (Makefile.am): Substitute GNULIB_WCSNRTOMBS,
10876         HAVE_WCSNRTOMBS.
10877         * modules/wcsnrtombs: New file.
10878         * modules/wcsrtombs (Files): Add lib/wcsrtombs-state.c.
10879         * doc/posix-functions/wcsnrtombs.texi: Mention the new module.
10880
10881 2008-12-21  Bruno Haible  <bruno@clisp.org>
10882
10883         * modules/wcsrtombs-tests: New file.
10884         * tests/test-wcsrtombs1.sh: New file.
10885         * tests/test-wcsrtombs2.sh: New file.
10886         * tests/test-wcsrtombs3.sh: New file.
10887         * tests/test-wcsrtombs4.sh: New file.
10888         * tests/test-wcsrtombs.c: New file.
10889
10890         New module 'wcsrtombs'.
10891         * lib/wchar.in.h (wcsrtombs): New declaration.
10892         * lib/wcsrtombs.c: New file.
10893         * m4/wcsrtombs.m4: New file.
10894         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_WCSRTOMBS,
10895         HAVE_WCSRTOMBS, REPLACE_WCSRTOMBS.
10896         * modules/wchar (Makefile.am): Substitute GNULIB_WCSRTOMBS,
10897         HAVE_WCSRTOMBS, REPLACE_WCSRTOMBS.
10898         * modules/wcsrtombs: New file.
10899         * doc/posix-functions/wcsrtombs.texi: Mention the new module and the
10900         bugs.
10901
10902 2008-12-21  Bruno Haible  <bruno@clisp.org>
10903
10904         Work around a wcrtomb() bug on Solaris 10 and OSF/1 5.1.
10905         * lib/wchar.in.h (wcrtomb): Override if REPLACE_WCRTOMB is set.
10906         * m4/wcrtomb.m4 (gl_FUNC_WCRTOMB): Test the return value of wcrtomb
10907         with NULL destination argument in various locales. Set REPLACE_WCRTOMB
10908         if not correct.
10909         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize REPLACE_WCRTOMB.
10910         * modules/wchar (Makefile.am): Substitute REPLACE_WCRTOMB.
10911         * modules/wcrtomb (Files): Add m4/locale-fr.m4, m4/locale-ja.m4,
10912         m4/locale-zh.m4, m4/codeset.m4.
10913         * doc/posix-functions/wcrtomb.texi: Document the bug.
10914
10915 2008-12-21  Bruno Haible  <bruno@clisp.org>
10916
10917         Work around a btowc() bug on IRIX 6.5.
10918         * lib/wchar.in.h (btowc): Override if REPLACE_BTOWC is set.
10919         * m4/btowc.m4 (gl_FUNC_BTOWC): Test whether btowc(EOF) is correct. Set
10920         REPLACE_WTOBC if not.
10921         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize REPLACE_BTOWC.
10922         * modules/wchar (Makefile.am): Substitute REPLACE_BTOWC.
10923         * doc/posix-functions/btowc.texi: Mention the IRIX bug.
10924
10925 2008-12-21  Bruno Haible  <bruno@clisp.org>
10926
10927         * modules/wcrtomb-tests: New file.
10928         * tests/test-wcrtomb.sh: New file.
10929         * tests/test-wcrtomb.c: New file.
10930
10931         New module 'wcrtomb'.
10932         * lib/wchar.in.h (wcrtomb): New declaration.
10933         * lib/wcrtomb.c: New file.
10934         * m4/wcrtomb.m4: New file.
10935         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_WCRTOMB,
10936         HAVE_WCRTOMB.
10937         * modules/wchar (Makefile.am): Substitute GNULIB_WCRTOMB,
10938         HAVE_WCRTOMB.
10939         * modules/wcrtomb: New file.
10940         * doc/posix-functions/wcrtomb.texi: Mention the new module.
10941
10942 2008-12-21  Bruno Haible  <bruno@clisp.org>
10943
10944         * modules/mbrtowc (Files): Add m4/codeset.m4, needed by m4/locale-fr.m4.
10945         * modules/mbsrtowcs (Files): Likewise.
10946         * modules/wctob (Files): Likewise.
10947         * modules/c-strcase-tests (Files): Likewise.
10948         * modules/unistdio/u8-vasnprintf-tests (Files): Likewise.
10949         * modules/unistdio/u16-vasnprintf-tests (Files): Likewise.
10950         * modules/unistdio/u32-vasnprintf-tests (Files): Likewise.
10951         * modules/unistdio/ulc-vasnprintf-tests (Files): Likewise.
10952         * modules/vasnprintf-posix-tests (Files): Likewise.
10953
10954 2008-12-21  William Pursell  <bill.pursell@gmail.com>
10955
10956         gitlog-to-changelog: pass all command-line arguments to git-log
10957         * build-aux/gitlog-to-changelog: When producing a ChangeLog,
10958         it is sometimes convenient to filter the commits in various ways.
10959         gitlog-to-changelog only allows --since to specify a start date,
10960         but git-log itself supports many other filtering mechanisms.
10961         At the moment, I want to filter by branch name.  Rather than
10962         adding a --branch option to gitlog-to-changelog, it seems more
10963         flexible to simply pass all options directly to git-log and let
10964         git do the work.  Notice that this effectively makes --since a
10965         redundant option for gitlog-to-changelog, but removing it would
10966         require current usage to change since calls would then require
10967         an additional '--'.
10968
10969 2008-12-21  Bruno Haible  <bruno@clisp.org>
10970
10971         * modules/mbsnrtowcs-tests: New file.
10972         * tests/test-mbsnrtowcs1.sh: New file.
10973         * tests/test-mbsnrtowcs2.sh: New file.
10974         * tests/test-mbsnrtowcs3.sh: New file.
10975         * tests/test-mbsnrtowcs4.sh: New file.
10976         * tests/test-mbsnrtowcs.c: New file.
10977
10978         New module 'mbsnrtowcs'.
10979         * lib/wchar.in.h (mbsnrtowcs): New declaration.
10980         * lib/mbsnrtowcs.c: New file.
10981         * lib/mbsrtowcs-state.c: New file.
10982         * lib/mbsrtowcs.c: Refer to _gl_mbsrtowcs_state.
10983         (internal_state): Remove variable.
10984         * m4/mbsnrtowcs.m4: New file.
10985         * m4/mbsrtowcs.m4 (gl_FUNC_MBSRTOWCS): Add mbsrtowcs-state.c to the
10986         compilation units.
10987         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_MBSNRTOWCS,
10988         HAVE_MBSNRTOWCS, REPLACE_MBSNRTOWCS.
10989         * modules/wchar (Makefile.am): Substitute GNULIB_MBSNRTOWCS,
10990         HAVE_MBSNRTOWCS, REPLACE_MBSNRTOWCS.
10991         * modules/mbsnrtowcs: New file.
10992         * modules/mbsrtowcs (Files): Add lib/mbsrtowcs-state.c.
10993         * doc/posix-functions/mbsnrtowcs.texi: Mention the new module and a
10994         portability problem.
10995
10996 2008-12-21  Bruno Haible  <bruno@clisp.org>
10997
10998         Work around mbsrtowcs bug.
10999         * m4/mbsrtowcs.m4 (gl_MBSRTOWCS_WORKS): New macro.
11000         (gl_FUNC_MBSRTOWCS): Invoke it.
11001         * modules/mbsrtowcs (Files): Add m4/locale-fr.m4, m4/locale-ja.m4,
11002         m4/locale-zh.m4.
11003         * doc/posix-functions/mbsrtowcs.texi: Document the bug.
11004
11005 2008-12-21  Bruno Haible  <bruno@clisp.org>
11006
11007         * tests/test-mbsrtowcs.c (main): Execute the loop also for unlimited=1.
11008
11009 2008-12-21  Bruno Haible  <bruno@clisp.org>
11010
11011         Update doc for AIX.
11012         * doc/pastposix-functions/wcswcs.texi: Mention that AIX has only a
11013         16-bit wchar_t type.
11014         * doc/posix-functions/btowc.texi: Likewise.
11015         * doc/posix-functions/fgetwc.texi: Likewise.
11016         * doc/posix-functions/fgetws.texi: Likewise.
11017         * doc/posix-functions/fputwc.texi: Likewise.
11018         * doc/posix-functions/fputws.texi: Likewise.
11019         * doc/posix-functions/fwide.texi: Likewise.
11020         * doc/posix-functions/fwprintf.texi: Likewise.
11021         * doc/posix-functions/fwscanf.texi: Likewise.
11022         * doc/posix-functions/getwchar.texi: Likewise.
11023         * doc/posix-functions/getwc.texi: Likewise.
11024         * doc/posix-functions/iswalnum.texi: Likewise.
11025         * doc/posix-functions/iswalpha.texi: Likewise.
11026         * doc/posix-functions/iswblank.texi: Likewise.
11027         * doc/posix-functions/iswcntrl.texi: Likewise.
11028         * doc/posix-functions/iswctype.texi: Likewise.
11029         * doc/posix-functions/iswdigit.texi: Likewise.
11030         * doc/posix-functions/iswgraph.texi: Likewise.
11031         * doc/posix-functions/iswlower.texi: Likewise.
11032         * doc/posix-functions/iswprint.texi: Likewise.
11033         * doc/posix-functions/iswpunct.texi: Likewise.
11034         * doc/posix-functions/iswspace.texi: Likewise.
11035         * doc/posix-functions/iswupper.texi: Likewise.
11036         * doc/posix-functions/iswxdigit.texi: Likewise.
11037         * doc/posix-functions/mbrtowc.texi: Likewise.
11038         * doc/posix-functions/mbsrtowcs.texi: Likewise.
11039         * doc/posix-functions/mbstowcs.texi: Likewise.
11040         * doc/posix-functions/mbtowc.texi: Likewise.
11041         * doc/posix-functions/putwchar.texi: Likewise.
11042         * doc/posix-functions/putwc.texi: Likewise.
11043         * doc/posix-functions/swprintf.texi: Likewise.
11044         * doc/posix-functions/tolower.texi: Likewise.
11045         * doc/posix-functions/toupper.texi: Likewise.
11046         * doc/posix-functions/towctrans.texi: Likewise.
11047         * doc/posix-functions/ungetwc.texi: Likewise.
11048         * doc/posix-functions/vswprintf.texi: Likewise.
11049         * doc/posix-functions/wcrtomb.texi: Likewise.
11050         * doc/posix-functions/wcscat.texi: Likewise.
11051         * doc/posix-functions/wcschr.texi: Likewise.
11052         * doc/posix-functions/wcscmp.texi: Likewise.
11053         * doc/posix-functions/wcscoll.texi: Likewise.
11054         * doc/posix-functions/wcscpy.texi: Likewise.
11055         * doc/posix-functions/wcscspn.texi: Likewise.
11056         * doc/posix-functions/wcsftime.texi: Likewise.
11057         * doc/posix-functions/wcslen.texi: Likewise.
11058         * doc/posix-functions/wcsncat.texi: Likewise.
11059         * doc/posix-functions/wcsncmp.texi: Likewise.
11060         * doc/posix-functions/wcsncpy.texi: Likewise.
11061         * doc/posix-functions/wcspbrk.texi: Likewise.
11062         * doc/posix-functions/wcsrchr.texi: Likewise.
11063         * doc/posix-functions/wcsrtombs.texi: Likewise.
11064         * doc/posix-functions/wcsspn.texi: Likewise.
11065         * doc/posix-functions/wcsstr.texi: Likewise.
11066         * doc/posix-functions/wcstod.texi: Likewise.
11067         * doc/posix-functions/wcstof.texi: Likewise.
11068         * doc/posix-functions/wcstoimax.texi: Likewise.
11069         * doc/posix-functions/wcstok.texi: Likewise.
11070         * doc/posix-functions/wcstold.texi: Likewise.
11071         * doc/posix-functions/wcstoll.texi: Likewise.
11072         * doc/posix-functions/wcstol.texi: Likewise.
11073         * doc/posix-functions/wcstombs.texi: Likewise.
11074         * doc/posix-functions/wcstoull.texi: Likewise.
11075         * doc/posix-functions/wcstoul.texi: Likewise.
11076         * doc/posix-functions/wcstoumax.texi: Likewise.
11077         * doc/posix-functions/wcswidth.texi: Likewise.
11078         * doc/posix-functions/wcsxfrm.texi: Likewise.
11079         * doc/posix-functions/wctob.texi: Likewise.
11080         * doc/posix-functions/wctomb.texi: Likewise.
11081         * doc/posix-functions/wctrans.texi: Likewise.
11082         * doc/posix-functions/wctype.texi: Likewise.
11083         * doc/posix-functions/wcwidth.texi: Likewise.
11084         * doc/posix-functions/wmemchr.texi: Likewise.
11085         * doc/posix-functions/wmemcmp.texi: Likewise.
11086         * doc/posix-functions/wmemcpy.texi: Likewise.
11087         * doc/posix-functions/wmemmove.texi: Likewise.
11088         * doc/posix-functions/wmemset.texi: Likewise.
11089         * doc/posix-functions/wprintf.texi: Likewise.
11090         * doc/posix-functions/wscanf.texi: Likewise.
11091
11092 2008-12-21  Bruno Haible  <bruno@clisp.org>
11093
11094         Update doc for HP-UX 11.11.
11095         * doc/posix-functions/btowc.texi: Clarify that the function is missing
11096         in HP-UX version 11.00, not in all versions of HP-UX 11.
11097         * doc/posix-functions/fwide.texi: Likewise.
11098         * doc/posix-functions/fwprintf.texi: Likewise.
11099         * doc/posix-functions/fwscanf.texi: Likewise.
11100         * doc/posix-functions/inet_ntop.texi: Likewise.
11101         * doc/posix-functions/inet_pton.texi: Likewise.
11102         * doc/posix-functions/mbrlen.texi: Likewise.
11103         * doc/posix-functions/mbrtowc.texi: Likewise.
11104         * doc/posix-functions/mbsinit.texi: Likewise.
11105         * doc/posix-functions/mbsrtowcs.texi: Likewise.
11106         * doc/posix-functions/swprintf.texi: Likewise.
11107         * doc/posix-functions/swscanf.texi: Likewise.
11108         * doc/posix-functions/towctrans.texi: Likewise.
11109         * doc/posix-functions/vfwprintf.texi: Likewise.
11110         * doc/posix-functions/vswprintf.texi: Likewise.
11111         * doc/posix-functions/vwprintf.texi: Likewise.
11112         * doc/posix-functions/wcrtomb.texi: Likewise.
11113         * doc/posix-functions/wcsrtombs.texi: Likewise.
11114         * doc/posix-functions/wcsstr.texi: Likewise.
11115         * doc/posix-functions/wctob.texi: Likewise.
11116         * doc/posix-functions/wctrans.texi: Likewise.
11117         * doc/posix-functions/wmemchr.texi: Likewise.
11118         * doc/posix-functions/wmemcmp.texi: Likewise.
11119         * doc/posix-functions/wmemcpy.texi: Likewise.
11120         * doc/posix-functions/wmemmove.texi: Likewise.
11121         * doc/posix-functions/wmemset.texi: Likewise.
11122         * doc/posix-functions/wprintf.texi: Likewise.
11123         * doc/posix-functions/wscanf.texi: Likewise.
11124
11125 2008-12-21  Bruno Haible  <bruno@clisp.org>
11126
11127         Work around a portability problem.
11128         * tests/test-mbsrtowcs.c (main): Use a temporary conversion state.
11129         * doc/posix-functions/mbsrtowcs.texi: Document the portability problem.
11130
11131 2008-12-20  Bruno Haible  <bruno@clisp.org>
11132
11133         * lib/wchar.in.h (mbsrtowcs): Redefine if REPLACE_MBSRTOWCS is set.
11134         * m4/mbsrtowcs.m4 (gl_FUNC_MBSRTOWCS): Invoke gl_MBSTATE_T_BROKEN. Set
11135         REPLACE_MBSRTOWCS if mbsrtowcs needs to be overridden.
11136         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize REPLACE_MBSRTOWCS.
11137         * modules/wchar (Makefile.am): Substitute REPLACE_MBSRTOWCS.
11138
11139         Work around mbrtowc bugs on AIX, HP-UX, OSF/1, Solaris.
11140         * lib/wchar.in.h (mbstate_t): Redefine also if REPLACE_MBSTATE_T is
11141         set.
11142         (GNULIB_defined_mbstate_t): New macro.
11143         (mbsinit): Redefine if REPLACE_MBSINIT is set.
11144         (mbrtowc): Redefine if REPLACE_MBRTOWC is set.
11145         * lib/mbrtowc.c (rpl_mbrtowc): Add an alternative implementation that
11146         reuses the system's mbrtowc function but works around the bugs.
11147         * m4/mbrtowc.m4 (gl_MBSTATE_T_BROKEN, gl_MBRTOWC_INCOMPLETE_STATE,
11148         gl_MBRTOWC_NULL_ARG, gl_MBRTOWC_RETVAL, gl_MBRTOWC_NUL_RETVAL): New
11149         macros.
11150         (gl_FUNC_MBRTOWC): Invoke them. Set REPLACE_MBRTOWC if mbrtowc needs to
11151         be overridden. Optionally define MBRTOWC_NULL_ARG_BUG,
11152         MBRTOWC_RETVAL_BUG, MBRTOWC_NUL_RETVAL_BUG.
11153         * m4/mbsinit.m4 (gl_FUNC_MBSINIT): Invoke gl_MBSTATE_T_BROKEN. Set
11154         REPLACE_MBSINIT if mbsinit needs to be overridden.
11155         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize REPLACE_MBSTATE_T,
11156         REPLACE_MBSINIT, REPLACE_MBRTOWC.
11157         * modules/wchar (Makefile.am): Substitute REPLACE_MBSTATE_T,
11158         REPLACE_MBSINIT, REPLACE_MBRTOWC.
11159         * modules/mbrtowc (Files): Add m4/locale-fr.m4, m4/locale-ja.m4,
11160         m4/locale-zh.m4.
11161         (Depends): Add mbsinit.
11162         * modules/mbsinit (Depends): Add mbrtowc.
11163         * doc/posix-functions/mbrtowc.texi: Mention the various bugs.
11164
11165 2008-12-20  Bruno Haible  <bruno@clisp.org>
11166
11167         * tests/test-mbrtowc.c (main): Change sample string in EUC-JP encoding
11168         so that there are no conversion errors on AIX.
11169         * tests/test-mbsrtowcs.c (main): LIkewise.
11170
11171 2008-12-20  Bruno Haible  <bruno@clisp.org>
11172
11173         Work around wctob bug on Solaris <= 9.
11174         * lib/wchar.in.h (wctob): Redefine if REPLACE_WCTOB is set.
11175         * m4/wctob.m4 (gl_FUNC_WCTOB): Test whether wctob works.
11176         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize REPLACE_WCTOB.
11177         * modules/wchar (Makefile.am): Substitute REPLACE_WCTOB.
11178         * modules/wctob (Files): Add m4/locale-fr.m4.
11179         * doc/posix-functions/wctob.texi: Mention the Solaris bug.
11180
11181 2008-12-20  Bruno Haible  <bruno@clisp.org>
11182
11183         * doc/posix-functions/select.texi: Mention Solaris 2.6 bug with
11184         /dev/null.
11185         * tests/test-select-in.sh: Likewise.
11186         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
11187
11188 2008-12-20  Bruno Haible  <bruno@clisp.org>
11189
11190         Don't pretend that Cygwin has a ja_JP.EUC-JP locale.
11191         * m4/locale-ja.m4 (gt_LOCALE_JA): Add test for MB_CUR_MAX. Needed on
11192         Cygwin 1.5.x.
11193
11194 2008-12-20  Bruno Haible  <bruno@clisp.org>
11195
11196         Ensure mbstate_t is defined on HP-UX 11.11.
11197         * m4/extensions.m4 (AC_USE_SYSTEM_EXTENSIONS): Require
11198         AC_CANONICAL_HOST. On HP-UX, define _XOPEN_SOURCE to 500.
11199         * m4/mbstate_t.m4 (AC_TYPE_MBSTATE_T): Require
11200         AC_USE_SYSTEM_EXTENSIONS.
11201         * modules/fnmatch (Depends-on): Add extensions.
11202         * modules/mbrlen (Depends-on): Likewise.
11203         * modules/mbrtowc (Depends-on): Likewise.
11204         * modules/mbsinit (Depends-on): Likewise.
11205         * modules/mbsrtowcs (Depends-on): Likewise.
11206         * modules/mbswidth (Depends-on): Likewise.
11207         * modules/quotearg (Depends-on): Likewise.
11208         * modules/strftime (Depends-on): Likewise.
11209
11210 2008-12-20  Bruno Haible  <bruno@clisp.org>
11211
11212         Ensure wctob is declared on IRIX 6.5.
11213         * lib/wchar.in.h (wctob): Declare also when HAVE_DECL_WCTOB is 0.
11214         * m4/wctob.m4 (gl_FUNC_WCTOB): Set HAVE_DECL_WCTOB instead of
11215         HAVE_WCTOB. Also test whether <wchar.h> declares wctob.
11216         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize HAVE_DECL_WCTOB instead
11217         of HAVE_WCTOB.
11218         * modules/wchar (Makefile.am): Substitute HAVE_DECL_WCTOB instead of
11219         HAVE_WCTOB.
11220         * doc/posix-functions/wctob.texi: Mention missing declaration on IRIX.
11221
11222 2008-12-19  Bruno Haible  <bruno@clisp.org>
11223
11224         * modules/mbsrtowcs-tests: New file.
11225         * tests/test-mbsrtowcs1.sh: New file.
11226         * tests/test-mbsrtowcs2.sh: New file.
11227         * tests/test-mbsrtowcs3.sh: New file.
11228         * tests/test-mbsrtowcs4.sh: New file.
11229         * tests/test-mbsrtowcs.c: New file.
11230
11231         New module 'mbsrtowcs'.
11232         * lib/wchar.in.h (mbsrtowcs): New declaration.
11233         * lib/mbsrtowcs.c: New file.
11234         * m4/mbsrtowcs.m4: New file.
11235         * modules/mbsrtowcs: New file.
11236         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_MBSRTOWCS and
11237         HAVE_MBSRTOWCS.
11238         * modules/wchar (Makefile.am): Substitute GNULIB_MBSRTOWCS and
11239         HAVE_MBSRTOWCS.
11240         * doc/posix-functions/mbsrtowcs.texi: Document the new module.
11241
11242 2008-12-19  Bruno Haible  <bruno@clisp.org>
11243
11244         New module 'mbrlen'.
11245         * lib/wchar.in.h (mbrlen): New declaration.
11246         * lib/mbrlen.c: New file.
11247         * m4/mbrlen.m4: New file.
11248         * modules/mbrlen: New file.
11249         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_MBRLEN and
11250         HAVE_MBRLEN.
11251         * modules/wchar (Makefile.am): Substitute GNULIB_MBRLEN and
11252         HAVE_MBRLEN.
11253         * doc/posix-functions/mbrlen.texi: Document the new module.
11254
11255 2008-12-19  Bruno Haible  <bruno@clisp.org>
11256
11257         * lib/mbrtowc.c: Include verify.h. Verify an assumption.
11258         * modules/mbrtowc (Depends-on): Add verify.
11259         Suggested by Paul Eggert.
11260
11261 2008-12-18  Bruno Haible  <bruno@clisp.org>
11262
11263         * modules/mbsinit-tests: New file.
11264         * tests/test-mbsinit.sh: New file.
11265         * tests/test-mbsinit.c: New file.
11266
11267 2008-12-18  Bruno Haible  <bruno@clisp.org>
11268
11269         * modules/mbrtowc-tests: New file.
11270         * tests/test-mbrtowc1.sh: New file.
11271         * tests/test-mbrtowc2.sh: New file.
11272         * tests/test-mbrtowc3.sh: New file.
11273         * tests/test-mbrtowc4.sh: New file.
11274         * tests/test-mbrtowc.c: New file.
11275
11276         New module 'mbrtowc'.
11277         * lib/wchar.in.h (mbstate_t): Override when the system does not have
11278         mbsinit and mbrtowc.
11279         (mbrtowc): New declaration.
11280         * lib/mbrtowc.c: New file.
11281         * m4/mbrtowc.m4 (gl_FUNC_MBRTOWC, gl_PREREQ_MBRTOWC): New macros.
11282         * modules/mbrtowc: New file.
11283         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_MBRTOWC and
11284         HAVE_MBRTOWC.
11285         * modules/wchar (Makefile.am): Substitute GNULIB_MBRTOWC and
11286         HAVE_MBRTOWC.
11287         * doc/posix-functions/mbrtowc.texi: Document the new module.
11288
11289 2008-12-18  Bruno Haible  <bruno@clisp.org>
11290
11291         New module 'wctob'.
11292         * lib/wchar.in.h (wctob): New declaration.
11293         * lib/wctob.c: New file.
11294         * m4/wctob.m4: New file.
11295         * modules/wctob: New file.
11296         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_WCTOB and
11297         HAVE_WCTOB.
11298         * modules/wchar (Makefile.am): Substitute GNULIB_WCTOB and HAVE_WCTOB.
11299         * doc/posix-functions/wctob.texi: Document the new module.
11300
11301 2008-12-18  Bruno Haible  <bruno@clisp.org>
11302
11303         * m4/mbsinit.m4 (gl_FUNC_MBSINIT): Invoke gl_REPLACE_WCHAR_H.
11304         * m4/btowc.m4 (gl_FUNC_BTOWC): Likewise.
11305
11306 2008-12-18  Simon Josefsson  <simon@josefsson.org>
11307
11308         * lib/flock.c: Use proper #if symbol in check.  Reported by "Tom
11309         G. Christensen" <tgc@jupiterrise.com>.
11310
11311         * lib/flock.c: Need to include errno.h.  Reported by "Tom
11312         G. Christensen" <tgc@jupiterrise.com>.
11313
11314         * lib/flock.c: Need to include string.h.  Reported by "Tom
11315         G. Christensen" <tgc@jupiterrise.com> and Eric Blake
11316         <ebb9@byu.net>.
11317
11318 2008-12-18  Bruno Haible  <bruno@clisp.org>
11319
11320         * m4/locale-ja.m4: New file, from GNU gettext.
11321
11322 2008-12-17  Bruno Haible  <bruno@clisp.org>
11323
11324         * m4/mbrtowc.m4 (AC_FUNC_MBRTOWC): Don't override in autoconf >= 2.60.
11325         Suggested by Eric Blake.
11326
11327 2008-12-17  Bruno Haible  <bruno@clisp.org>
11328
11329         * m4/errno_h.m4 (AC_COMPUTE_INT): Provide fallback definition.
11330
11331 2008-12-17  Bruno Haible  <bruno@clisp.org>
11332
11333         * lib/mbsinit.c: Include verify.h. Verify an assumption.
11334         * modules/mbsinit (Depends-on): Add verify.
11335         Suggested by Paul Eggert.
11336
11337 2008-12-17  Bruno Haible  <bruno@clisp.org>
11338
11339         * m4/mbrtowc.m4 (AC_FUNC_MBRTOWC): Renamed from gl_FUNC_MBRTOWC.
11340         * m4/mbfile.m4 (gl_MBFILE): Use AC_FUNC_MBRTOWC instead of
11341         gl_FUNC_MBRTOWC.
11342         * m4/mbiter.m4 (gl_MBITER): LIkewise.
11343         * m4/mbscasecmp.m4 (gl_PREREQ_MBSCASECMP): Likewise.
11344         * m4/mbscasestr.m4 (gl_PREREQ_MBSCASESTR): Likewise.
11345         * m4/mbschr.m4 (gl_PREREQ_MBSCHR): Likewise.
11346         * m4/mbscspn.m4 (gl_PREREQ_MBSCSPN): Likewise.
11347         * m4/mbslen.m4 (gl_PREREQ_MBSLEN): Likewise.
11348         * m4/mbsncasecmp.m4 (gl_PREREQ_MBSNCASECMP): Likewise.
11349         * m4/mbsnlen.m4 (gl_PREREQ_MBSNLEN): Likewise.
11350         * m4/mbspbrk.m4 (gl_PREREQ_MBSPBRK): Likewise.
11351         * m4/mbspcasecmp.m4 (gl_PREREQ_MBSPCASECMP): Likewise.
11352         * m4/mbsrchr.m4 (gl_PREREQ_MBSRCHR): Likewise.
11353         * m4/mbssep.m4 (gl_PREREQ_MBSSEP): Likewise.
11354         * m4/mbsspn.m4 (gl_PREREQ_MBSSPN): Likewise.
11355         * m4/mbsstr.m4 (gl_PREREQ_MBSSTR): Likewise.
11356         * m4/mbstok_r.m4 (gl_PREREQ_MBSTOK_R): Likewise.
11357         * m4/mbswidth.m4 (gl_MBSWIDTH): Likewise.
11358         * m4/quotearg.m4 (gl_QUOTEARG): Likewise.
11359         * modules/trim (configure.ac): Likewise.
11360
11361 2008-12-17  Bruno Haible  <bruno@clisp.org>
11362
11363         * modules/btowc-tests: New file.
11364         * tests/test-btowc1.sh: New file.
11365         * tests/test-btowc2.sh: New file.
11366         * tests/test-btowc.c: New file.
11367
11368         New module 'btowc'.
11369         * lib/wchar.in.h (btowc): New declaration.
11370         * lib/btowc.c: New file.
11371         * m4/btowc.m4: New file.
11372         * modules/btowc: New file.
11373         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_BTOWC and
11374         HAVE_BTOWC.
11375         * modules/wchar (Makefile.am): Substitute GNULIB_BTOWC and HAVE_BTOWC.
11376         * doc/posix-functions/btowc.texi: Document the new module.
11377
11378 2008-12-17  Bruno Haible  <bruno@clisp.org>
11379
11380         New module 'mbsinit'.
11381         * lib/wchar.in.h (mbsinit): New declaration.
11382         * lib/mbsinit.c: New file.
11383         * m4/mbsinit.m4: New file.
11384         * modules/mbsinit: New file.
11385         * m4/wchar.m4 (gl_WCHAR_H_DEFAULTS): Initialize GNULIB_MBSINIT and
11386         HAVE_MBSINIT.
11387         * modules/wchar (Makefile.am): Substitute GNULIB_MBSINIT and
11388         HAVE_MBSINIT.
11389         * doc/posix-functions/mbsinit.texi: Document the new module.
11390
11391 2008-12-16  Bruno Haible  <bruno@clisp.org>
11392
11393         * lib/unistd.in.h: Add comment.
11394         * tests/test-environ.c: Don't include <stdlib.h>.
11395
11396 2008-12-16  Bruno Haible  <bruno@clisp.org>
11397
11398         * lib/parse-duration.h (parse_duration): Document return value
11399         convention.
11400         * lib/parse-duration.c: Include specification header first. Add
11401         comments.
11402         (_): Remove macro.
11403         (parse_year_month_day, parse_hour_minute_second): Move side effects
11404         outside of strchr call.
11405         (parse_non_iso8601): Move side effects outside of isspace call.
11406         (parse_duration): Don't test errno is res != BAD_TIME. Remove fprintf
11407         call.
11408
11409 2008-12-16  Bruno Haible  <bruno@clisp.org>
11410
11411         * tests/test-parse-duration.sh: Produce no output when the test
11412         succeeds.
11413
11414 2008-12-16  Bruno Haible  <bruno@clisp.org>
11415
11416         * tests/test-parse-duration.sh: Fix quoting of $tmp and $tmpf
11417         expressions.
11418
11419 2008-12-15  Bruno Haible  <bruno@clisp.org>
11420
11421         * doc/glibc-functions/fgetxattr.texi: Tweak wording.
11422         * doc/glibc-functions/flistxattr.texi: Likewise.
11423         * doc/glibc-functions/fopencookie.texi: Likewise.
11424         * doc/glibc-functions/fremovexattr.texi: Likewise.
11425         * doc/glibc-functions/fsetxattr.texi: Likewise.
11426         * doc/glibc-functions/getxattr.texi: Likewise.
11427         * doc/glibc-functions/lgetxattr.texi: Likewise.
11428         * doc/glibc-functions/listxattr.texi: Likewise.
11429         * doc/glibc-functions/llistxattr.texi: Likewise.
11430         * doc/glibc-functions/lremovexattr.texi: Likewise.
11431         * doc/glibc-functions/lsetxattr.texi: Likewise.
11432         * doc/glibc-functions/removexattr.texi: Likewise.
11433         * doc/glibc-functions/setxattr.texi: Likewise.
11434         * doc/posix-functions/open_memstream.texi: Likewise.
11435
11436 2008-12-15  Eric Blake  <ebb9@byu.net>
11437
11438         Update doc for cygwin 1.7.
11439         * doc/posix-functions/faccessat.texi: Cygwin 1.7 added several new
11440         functions.
11441         * doc/posix-functions/fchmodat.texi: Likewise.
11442         * doc/posix-functions/fchownat.texi: Likewise.
11443         * doc/posix-functions/fdopendir.texi: Likewise.
11444         * doc/posix-functions/fmemopen.texi: Likewise.
11445         * doc/posix-functions/freeaddrinfo.texi: Likewise.
11446         * doc/posix-functions/fstatat.texi: Likewise.
11447         * doc/posix-functions/futimens.texi: Likewise.
11448         * doc/posix-functions/gai_strerror.texi: Likewise.
11449         * doc/posix-functions/getaddrinfo.texi: Likewise.
11450         * doc/posix-functions/getnameinfo.texi: Likewise.
11451         * doc/posix-functions/if_freenameindex.texi: Likewise.
11452         * doc/posix-functions/if_indextoname.texi: Likewise.
11453         * doc/posix-functions/if_nameindex.texi: Likewise.
11454         * doc/posix-functions/if_nametoindex.texi: Likewise.
11455         * doc/posix-functions/insque.texi: Likewise.
11456         * doc/posix-functions/linkat.texi: Likewise.
11457         * doc/posix-functions/llrint.texi: Likewise.
11458         * doc/posix-functions/llrintf.texi: Likewise.
11459         * doc/posix-functions/llrintl.texi: Likewise.
11460         * doc/posix-functions/lockf.texi: Likewise.
11461         * doc/posix-functions/lrintl.texi: Likewise.
11462         * doc/posix-functions/mkdirat.texi: Likewise.
11463         * doc/posix-functions/mkfifoat.texi: Likewise.
11464         * doc/posix-functions/mknodat.texi: Likewise.
11465         * doc/posix-functions/mq_close.texi: Likewise.
11466         * doc/posix-functions/mq_getattr.texi: Likewise.
11467         * doc/posix-functions/mq_notify.texi: Likewise.
11468         * doc/posix-functions/mq_open.texi: Likewise.
11469         * doc/posix-functions/mq_receive.texi: Likewise.
11470         * doc/posix-functions/mq_send.texi: Likewise.
11471         * doc/posix-functions/mq_setattr.texi: Likewise.
11472         * doc/posix-functions/mq_timedreceive.texi: Likewise.
11473         * doc/posix-functions/mq_timedsend.texi: Likewise.
11474         * doc/posix-functions/mq_unlink.texi: Likewise.
11475         * doc/posix-functions/open_memstream.texi: Likewise.
11476         * doc/posix-functions/openat.texi: Likewise.
11477         * doc/posix-functions/posix_fadvise.texi: Likewise.
11478         * doc/posix-functions/posix_fallocate.texi: Likewise.
11479         * doc/posix-functions/posix_madvise.texi: Likewise.
11480         * doc/posix-functions/posix_memalign.texi: Likewise.
11481         * doc/posix-functions/posix_openpt.texi: Likewise.
11482         * doc/posix-functions/readlinkat.texi: Likewise.
11483         * doc/posix-functions/remque.texi: Likewise.
11484         * doc/posix-functions/renameat.texi: Likewise.
11485         * doc/posix-functions/rintl.texi: Likewise.
11486         * doc/posix-functions/sem_unlink.texi: Likewise.
11487         * doc/posix-functions/shm_open.texi: Likewise.
11488         * doc/posix-functions/shm_unlink.texi: Likewise.
11489         * doc/posix-functions/signgam.texi: Likewise.
11490         * doc/posix-functions/sigset.texi: Likewise.
11491         * doc/posix-functions/stpcpy.texi: Likewise.
11492         * doc/posix-functions/stpncpy.texi: Likewise.
11493         * doc/posix-functions/strerror.texi: Likewise.
11494         * doc/posix-functions/strtod.texi: Likewise.
11495         * doc/posix-functions/symlinkat.texi: Likewise.
11496         * doc/posix-functions/unlinkat.texi: Likewise.
11497         * doc/posix-functions/utimensat.texi: Likewise.
11498         * doc/glibc-functions/bindresvport.texi: Likewise.
11499         * doc/glibc-functions/dn_expand.texi: Likewise.
11500         * doc/glibc-functions/exp10.texi: Likewise.
11501         * doc/glibc-functions/exp10f.texi: Likewise.
11502         * doc/glibc-functions/fgetxattr.texi: Likewise.
11503         * doc/glibc-functions/flistxattr.texi: Likewise.
11504         * doc/glibc-functions/fopencookie.texi: Likewise.
11505         * doc/glibc-functions/freeifaddrs.texi: Likewise.
11506         * doc/glibc-functions/fremovexattr.texi: Likewise.
11507         * doc/glibc-functions/fsetxattr.texi: Likewise.
11508         * doc/glibc-functions/getifaddrs.texi: Likewise.
11509         * doc/glibc-functions/getxattr.texi: Likewise.
11510         * doc/glibc-functions/lgetxattr.texi: Likewise.
11511         * doc/glibc-functions/listxattr.texi: Likewise.
11512         * doc/glibc-functions/llistxattr.texi: Likewise.
11513         * doc/glibc-functions/lremovexattr.texi: Likewise.
11514         * doc/glibc-functions/lsetxattr.texi: Likewise.
11515         * doc/glibc-functions/pow10.texi: Likewise.
11516         * doc/glibc-functions/pow10f.texi: Likewise.
11517         * doc/glibc-functions/rcmd_af.texi: Likewise.
11518         * doc/glibc-functions/removexattr.texi: Likewise.
11519         * doc/glibc-functions/res_init.texi: Likewise.
11520         * doc/glibc-functions/res_mkquery.texi: Likewise.
11521         * doc/glibc-functions/res_query.texi: Likewise.
11522         * doc/glibc-functions/res_querydomain.texi: Likewise.
11523         * doc/glibc-functions/res_send.texi: Likewise.
11524         * doc/glibc-functions/rresvport_af.texi: Likewise.
11525         * doc/glibc-functions/setxattr.texi: Likewise.
11526         * doc/glibc-functions/strcasestr.texi: Likewise.
11527
11528 2008-12-15  Bruno Haible  <bruno@clisp.org>
11529
11530         Fix compilation error on OSF/1 4.0.
11531         * lib/sys_select.in.h: When invoked from OSF/1 <sys/types.h> or
11532         <sys/time.h>, simply delegate to the system header.
11533         Reported by Daniel Richard G. <oss@teragram.com>.
11534
11535 2008-12-15  Bruno Haible  <bruno@clisp.org>
11536
11537         * doc/posix-functions/openat.texi: Mention the 'openat' module.
11538         * doc/posix-functions/fchmodat.texi: Likewise.
11539         * doc/posix-functions/fchownat.texi: Likewise.
11540         * doc/posix-functions/fdopendir.texi: Likewise.
11541         * doc/posix-functions/fstatat.texi: Likewise.
11542         * doc/posix-functions/mkdirat.texi: Likewise.
11543         * doc/posix-functions/unlinkat.texi: Likewise.
11544
11545 2008-12-14  Bruno Haible  <bruno@clisp.org>
11546
11547         Update doc for POSIX:2008.
11548         * doc/posix-functions/faccessat.texi: New file.
11549         * doc/posix-functions/fchmodat.texi: New file.
11550         * doc/posix-functions/fchownat.texi: New file.
11551         * doc/posix-functions/fdopendir.texi: New file.
11552         * doc/posix-functions/fstatat.texi: New file.
11553         * doc/posix-functions/futimens.texi: New file.
11554         * doc/posix-functions/linkat.texi: New file.
11555         * doc/posix-functions/mkdirat.texi: New file.
11556         * doc/posix-functions/mkfifoat.texi: New file.
11557         * doc/posix-functions/mknodat.texi: New file.
11558         * doc/posix-functions/open_wmemstream.texi: New file.
11559         * doc/posix-functions/openat.texi: New file.
11560         * doc/posix-functions/psiginfo.texi: New file.
11561         * doc/posix-functions/pthread_mutex_consistent.texi: New file.
11562         * doc/posix-functions/pthread_mutexattr_getrobust.texi: New file.
11563         * doc/posix-functions/pthread_mutexattr_setrobust.texi: New file.
11564         * doc/posix-functions/readlinkat.texi: New file.
11565         * doc/posix-functions/renameat.texi: New file.
11566         * doc/posix-functions/strerror_l.texi: New file.
11567         * doc/posix-functions/symlinkat.texi: New file.
11568         * doc/posix-functions/unlinkat.texi: New file.
11569         * doc/posix-functions/utimensat.texi: New file.
11570         * doc/gnulib.texi (Function Substitutes): Add these subsections.
11571
11572 2008-12-14  Bruno Haible  <bruno@clisp.org>
11573
11574         Update doc for POSIX:2008.
11575         * doc/posix-functions/alphasort.texi: Renamed from
11576         doc/glibc-functions/alphasort.texi.
11577         * doc/posix-functions/dirfd.texi: Renamed from
11578         doc/glibc-functions/dirfd.texi.
11579         * doc/posix-functions/dprintf.texi: Renamed from
11580         doc/glibc-functions/dprintf.texi.
11581         * doc/posix-functions/duplocale.texi: Renamed from
11582         doc/glibc-functions/duplocale.texi.
11583         * doc/posix-functions/fexecve.texi: Renamed from
11584         doc/glibc-functions/fexecve.texi.
11585         * doc/posix-functions/fmemopen.texi: Renamed from
11586         doc/glibc-functions/fmemopen.texi.
11587         * doc/posix-functions/freelocale.texi: Renamed from
11588         doc/glibc-functions/freelocale.texi.
11589         * doc/posix-functions/getdate_err.texi: Renamed from
11590         doc/glibc-functions/getdate_err.texi.
11591         * doc/posix-functions/isalnum_l.texi: Renamed from
11592         doc/glibc-functions/isalnum_l.texi.
11593         * doc/posix-functions/isalpha_l.texi: Renamed from
11594         doc/glibc-functions/isalpha_l.texi.
11595         * doc/posix-functions/isblank_l.texi: Renamed from
11596         doc/glibc-functions/isblank_l.texi.
11597         * doc/posix-functions/iscntrl_l.texi: Renamed from
11598         doc/glibc-functions/iscntrl_l.texi.
11599         * doc/posix-functions/isdigit_l.texi: Renamed from
11600         doc/glibc-functions/isdigit_l.texi.
11601         * doc/posix-functions/isgraph_l.texi: Renamed from
11602         doc/glibc-functions/isgraph_l.texi.
11603         * doc/posix-functions/islower_l.texi: Renamed from
11604         doc/glibc-functions/islower_l.texi.
11605         * doc/posix-functions/isprint_l.texi: Renamed from
11606         doc/glibc-functions/isprint_l.texi.
11607         * doc/posix-functions/ispunct_l.texi: Renamed from
11608         doc/glibc-functions/ispunct_l.texi.
11609         * doc/posix-functions/isspace_l.texi: Renamed from
11610         doc/glibc-functions/isspace_l.texi.
11611         * doc/posix-functions/isupper_l.texi: Renamed from
11612         doc/glibc-functions/isupper_l.texi.
11613         * doc/posix-functions/iswalnum_l.texi: Renamed from
11614         doc/glibc-functions/iswalnum_l.texi.
11615         * doc/posix-functions/iswalpha_l.texi: Renamed from
11616         doc/glibc-functions/iswalpha_l.texi.
11617         * doc/posix-functions/iswblank_l.texi: Renamed from
11618         doc/glibc-functions/iswblank_l.texi.
11619         * doc/posix-functions/iswcntrl_l.texi: Renamed from
11620         doc/glibc-functions/iswcntrl_l.texi.
11621         * doc/posix-functions/iswctype_l.texi: Renamed from
11622         doc/glibc-functions/iswctype_l.texi.
11623         * doc/posix-functions/iswdigit_l.texi: Renamed from
11624         doc/glibc-functions/iswdigit_l.texi.
11625         * doc/posix-functions/iswgraph_l.texi: Renamed from
11626         doc/glibc-functions/iswgraph_l.texi.
11627         * doc/posix-functions/iswlower_l.texi: Renamed from
11628         doc/glibc-functions/iswlower_l.texi.
11629         * doc/posix-functions/iswprint_l.texi: Renamed from
11630         doc/glibc-functions/iswprint_l.texi.
11631         * doc/posix-functions/iswpunct_l.texi: Renamed from
11632         doc/glibc-functions/iswpunct_l.texi.
11633         * doc/posix-functions/iswspace_l.texi: Renamed from
11634         doc/glibc-functions/iswspace_l.texi.
11635         * doc/posix-functions/iswupper_l.texi: Renamed from
11636         doc/glibc-functions/iswupper_l.texi.
11637         * doc/posix-functions/iswxdigit_l.texi: Renamed from
11638         doc/glibc-functions/iswxdigit_l.texi.
11639         * doc/posix-functions/isxdigit_l.texi: Renamed from
11640         doc/glibc-functions/isxdigit_l.texi.
11641         * doc/posix-functions/mbsnrtowcs.texi: Renamed from
11642         doc/glibc-functions/mbsnrtowcs.texi.
11643         * doc/posix-functions/mkdtemp.texi: Renamed from
11644         doc/glibc-functions/mkdtemp.texi.
11645         * doc/posix-functions/newlocale.texi: Renamed from
11646         doc/glibc-functions/newlocale.texi.
11647         * doc/posix-functions/nl_langinfo_l.texi: Renamed from
11648         doc/glibc-functions/nl_langinfo_l.texi.
11649         * doc/posix-functions/open_memstream.texi: Renamed from
11650         doc/glibc-functions/open_memstream.texi.
11651         * doc/posix-functions/opterr.texi: Renamed from
11652         doc/glibc-functions/opterr.texi.
11653         * doc/posix-functions/optind.texi: Renamed from
11654         doc/glibc-functions/optind.texi.
11655         * doc/posix-functions/optopt.texi: Renamed from
11656         doc/glibc-functions/optopt.texi.
11657         * doc/posix-functions/psignal.texi: Renamed from
11658         doc/glibc-functions/psignal.texi.
11659         * doc/posix-functions/scandir.texi: Renamed from
11660         doc/glibc-functions/scandir.texi.
11661         * doc/posix-functions/sched_get_priority_min.texi: Renamed from
11662         doc/glibc-functions/sched_get_priority_min.texi.
11663         * doc/posix-functions/signgam.texi: Renamed from
11664         doc/glibc-functions/signgam.texi.
11665         * doc/posix-functions/stpcpy.texi: Renamed from
11666         doc/glibc-functions/stpcpy.texi.
11667         * doc/posix-functions/stpncpy.texi: Renamed from
11668         doc/glibc-functions/stpncpy.texi.
11669         * doc/posix-functions/strcasecmp_l.texi: Renamed from
11670         doc/glibc-functions/strcasecmp_l.texi.
11671         * doc/posix-functions/strcoll_l.texi: Renamed from
11672         doc/glibc-functions/strcoll_l.texi.
11673         * doc/posix-functions/strfmon_l.texi: Renamed from
11674         doc/glibc-functions/strfmon_l.texi.
11675         * doc/posix-functions/strftime_l.texi: Renamed from
11676         doc/glibc-functions/strftime_l.texi.
11677         * doc/posix-functions/strncasecmp_l.texi: Renamed from
11678         doc/glibc-functions/strncasecmp_l.texi.
11679         * doc/posix-functions/strndup.texi: Renamed from
11680         doc/glibc-functions/strndup.texi.
11681         * doc/posix-functions/strnlen.texi: Renamed from
11682         doc/glibc-functions/strnlen.texi.
11683         * doc/posix-functions/strsignal.texi: Renamed from
11684         doc/glibc-functions/strsignal.texi.
11685         * doc/posix-functions/strxfrm_l.texi: Renamed from
11686         doc/glibc-functions/strxfrm_l.texi.
11687         * doc/posix-functions/timer_gettime.texi: Renamed from
11688         doc/glibc-functions/timer_gettime.texi.
11689         * doc/posix-functions/tolower_l.texi: Renamed from
11690         doc/glibc-functions/tolower_l.texi.
11691         * doc/posix-functions/toupper_l.texi: Renamed from
11692         doc/glibc-functions/toupper_l.texi.
11693         * doc/posix-functions/towctrans_l.texi: Renamed from
11694         doc/glibc-functions/towctrans_l.texi.
11695         * doc/posix-functions/towlower_l.texi: Renamed from
11696         doc/glibc-functions/towlower_l.texi.
11697         * doc/posix-functions/towupper_l.texi: Renamed from
11698         doc/glibc-functions/towupper_l.texi.
11699         * doc/posix-functions/uselocale.texi: Renamed from
11700         doc/glibc-functions/uselocale.texi.
11701         * doc/posix-functions/vdprintf.texi: Renamed from
11702         doc/glibc-functions/vdprintf.texi.
11703         * doc/posix-functions/wcpcpy.texi:
11704         Renamed from doc/glibc-functions/wcpcpy.texi.
11705         * doc/posix-functions/wcpncpy.texi: Renamed from
11706         doc/glibc-functions/wcpncpy.texi.
11707         * doc/posix-functions/wcscasecmp.texi: Renamed from
11708         doc/glibc-functions/wcscasecmp.texi.
11709         * doc/posix-functions/wcscasecmp_l.texi: Renamed from
11710         doc/glibc-functions/wcscasecmp_l.texi.
11711         * doc/posix-functions/wcscoll_l.texi: Renamed from
11712         doc/glibc-functions/wcscoll_l.texi.
11713         * doc/posix-functions/wcsdup.texi: Renamed from
11714         doc/glibc-functions/wcsdup.texi.
11715         * doc/posix-functions/wcsncasecmp.texi: Renamed from
11716         doc/glibc-functions/wcsncasecmp.texi.
11717         * doc/posix-functions/wcsncasecmp_l.texi: Renamed from
11718         doc/glibc-functions/wcsncasecmp_l.texi.
11719         * doc/posix-functions/wcsnlen.texi: Renamed from
11720         doc/glibc-functions/wcsnlen.texi.
11721         * doc/posix-functions/wcsnrtombs.texi: Renamed from
11722         doc/glibc-functions/wcsnrtombs.texi.
11723         * doc/posix-functions/wcsxfrm_l.texi: Renamed from
11724         doc/glibc-functions/wcsxfrm_l.texi.
11725         * doc/posix-functions/wctrans_l.texi: Renamed from
11726         doc/glibc-functions/wctrans_l.texi.
11727         * doc/posix-functions/wctype_l.texi: Renamed from
11728         doc/glibc-functions/wctype_l.texi.
11729         * doc/gnulib.texi (Function Substitutes): Add these subsections.
11730         (Glibc ctype.h, Glibc dirent.h, Glibc getopt.h, Glibc math.h,
11731         Glibc sched.h, Glibc signal.h, Glibc stdio.h, Glibc stdlib.h,
11732         Glibc string.h, Glibc time.h, Glibc unistd.h, Glibc wchar.h): Remove
11733         these subsections.
11734         (Glibc langinfo.h, Glibc locale.h, Glibc monetary.h, Glibc wctype.h):
11735         Remove sections.
11736
11737 2008-12-14  Bruno Haible  <bruno@clisp.org>
11738
11739         Update doc for POSIX:2008.
11740         * doc/posix-functions/*.texi: Update URL of POSIX specification.
11741
11742 2008-12-14  Bruno Haible  <bruno@clisp.org>
11743
11744         Update doc for POSIX:2008.
11745         * doc/pastposix-functions/bcmp.texi: Renamed from
11746         doc/posix-functions/bcmp.texi.
11747         * doc/pastposix-functions/bcopy.texi: Renamed from
11748         doc/posix-functions/bcopy.texi.
11749         * doc/pastposix-functions/bsd_signal.texi: Renamed from
11750         doc/posix-functions/bsd_signal.texi.
11751         * doc/pastposix-functions/bzero.texi: Renamed from
11752         doc/posix-functions/bzero.texi.
11753         * doc/pastposix-functions/ecvt.texi: Renamed from
11754         doc/posix-functions/ecvt.texi.
11755         * doc/pastposix-functions/fcvt.texi: Renamed from
11756         doc/posix-functions/fcvt.texi.
11757         * doc/pastposix-functions/ftime.texi: Renamed from
11758         doc/posix-functions/ftime.texi.
11759         * doc/pastposix-functions/gcvt.texi: Renamed from
11760         doc/posix-functions/gcvt.texi.
11761         * doc/pastposix-functions/getcontext.texi: Renamed from
11762         doc/posix-functions/getcontext.texi.
11763         * doc/pastposix-functions/gethostbyaddr.texi: Renamed from
11764         doc/posix-functions/gethostbyaddr.texi.
11765         * doc/pastposix-functions/gethostbyname.texi: Renamed from
11766         doc/posix-functions/gethostbyname.texi.
11767         * doc/pastposix-functions/getwd.texi: Renamed from
11768         doc/posix-functions/getwd.texi.
11769         * doc/pastposix-functions/h_errno.texi: Renamed from
11770         doc/posix-functions/h_errno.texi.
11771         * doc/pastposix-functions/index.texi: Renamed from
11772         doc/posix-functions/index.texi.
11773         * doc/pastposix-functions/makecontext.texi: Renamed from
11774         doc/posix-functions/makecontext.texi.
11775         * doc/pastposix-functions/mktemp.texi: Renamed from
11776         doc/posix-functions/mktemp.texi.
11777         * doc/pastposix-functions/pthread_attr_getstackaddr.texi: Renamed from
11778         doc/posix-functions/pthread_attr_getstackaddr.texi.
11779         * doc/pastposix-functions/pthread_attr_setstackaddr.texi: Renamed from
11780         doc/posix-functions/pthread_attr_setstackaddr.texi.
11781         * doc/pastposix-functions/rindex.texi: Renamed from
11782         doc/posix-functions/rindex.texi.
11783         * doc/pastposix-functions/scalb.texi: Renamed from
11784         doc/posix-functions/scalb.texi.
11785         * doc/pastposix-functions/setcontext.texi: Renamed from
11786         doc/posix-functions/setcontext.texi.
11787         * doc/pastposix-functions/swapcontext.texi: Renamed from
11788         doc/posix-functions/swapcontext.texi.
11789         * doc/pastposix-functions/ualarm.texi: Renamed from
11790         doc/posix-functions/ualarm.texi.
11791         * doc/pastposix-functions/usleep.texi: Renamed from
11792         doc/posix-functions/usleep.texi.
11793         * doc/pastposix-functions/vfork.texi: Renamed from
11794         doc/posix-functions/vfork.texi.
11795         * doc/pastposix-functions/wcswcs.texi: Renamed from
11796         doc/posix-functions/wcswcs.texi.
11797         * doc/gnulib.texi (Legacy Function Substitutes): New chapter.
11798         (Function Substitutes): Update.
11799
11800 2008-12-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
11801
11802         * modules/relocatable-prog-wrapper (Depends-on): Add errno, needed by
11803         m4/strerror.m4.
11804
11805 2008-12-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
11806             Bruno Haible  <bruno@clisp.org>
11807
11808         * modules/unilbrk/tables (Depends-on): Add unilbrk/base.
11809
11810 2008-12-13  Bruno Haible  <bruno@clisp.org>
11811
11812         * modules/strtoull (Depends-on): Remove unistd.
11813
11814 2008-12-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
11815
11816         * modules/strtoull (Depends-on): Add stdlib.
11817
11818 2008-12-11  Simon Josefsson  <simon@josefsson.org>
11819
11820         * m4/manywarnings.m4 (gl_MANYWARN_ALL_GCC): Add more warnings.
11821
11822 2008-12-10  Jim Meyering  <meyering@redhat.com>
11823
11824         gl_ASSERT: don't say assertions are disabled when they're not
11825         * m4/assert.m4 (gl_ASSERT): Do not make configure report
11826         "checking whether to enable assertions... no", when they are in
11827         fact enabled.  This is solely a bug in the output of configure.
11828         In spite of saying "no", NDEBUG was not defined in that case.
11829         Also, as noted by Eric Blake, leave assertions enabled upon
11830         --enable-assert=INVALID.
11831
11832 2008-12-10  Bruno Haible  <bruno@clisp.org>
11833
11834         Change MODULES.html to refer to POSIX:2008 where possible.
11835         * MODULES.html.sh (POSIX2008_URL): New variable.
11836         (posix_headers): Remove sys/timeb, ucontext.
11837         (posix2001_headers): New variable.
11838         (posix_functions): Remove bcmp, bcopy, bsd_signal, bzero, ecvt, fcvt,
11839         ftime, gcvt, getcontext, gethostbyaddr, gethostbyname, getwd, h_errno,
11840         index, makecontext, mktemp, pthread_attr_getstackaddr,
11841         pthread_attr_setstackaddr, rindex, scalb, setcontext, swapcontext,
11842         ualarm, usleep, vfork, wcswcs. Add the new POSIX:2008 functions.
11843         (posix2001_functions): New variable.
11844         (func_module): Use URLs to POSIX:2008 where possible and to POSIX:2001
11845         otherwise.
11846
11847 2008-12-09  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
11848
11849         add missing include to parse-duration.c
11850         * lib/parse-duration.c: #include "xalloc.h", for xstrdup.
11851         * modules/parse-duration (Depends-on): Add xalloc.
11852
11853         fix sed script reading maint.mk
11854         * top/maint.mk (MYSELF): New macro, define as $(srcdir)/$(ME).
11855         (syntax-check-rules): Use it.
11856
11857 2008-12-09  Bruno Haible  <bruno@clisp.org>
11858
11859         * m4/ldexpl.m4 (gl_FUNC_LDEXPL_WORKS): Add another check, that fails on
11860         MacOS X 10.4/PowerPC.
11861         Reported by Simon Josefsson.
11862
11863 2008-12-08  Jim Meyering  <meyering@redhat.com>
11864
11865         work around mingw's lack of some S_IF definitions
11866         * lib/fts.c (S_IFLNK, S_IFSOCK): Define if not already defined.
11867         Reported by Simon Josefsson.
11868
11869 2008-12-08  Bruno Haible  <bruno@clisp.org>
11870
11871         * m4/signbitl.m4 (gl_SIGNBIT_TEST_PROGRAM): Add a link check of signbit
11872         applied to variables. Needed on MacOS X 10.4/PowerPC.
11873         Reported by Simon Josefsson.
11874
11875 2008-12-08  William Pursell  <bill.pursell@gmail.com>  (tiny change)
11876         and Eric Blake  <ebb9@byu.net>
11877
11878         assert: honor --enable-assert
11879         * m4/assert.m4 (gl_ASSERT): Synchronize with autoconf 2.64, in
11880         order to honor --enable-assert, rather than treating it as a
11881         synonym for --disable-assert.
11882
11883 2008-12-08  Jim Meyering  <meyering@redhat.com>
11884
11885         * lib/posixtm.c: Remove now-useless declaration of mktime.
11886
11887         * build-aux/announce-gen (get_tool_versions): Accept .xz tarballs.
11888
11889 2008-12-07  Bruno Haible  <bruno@clisp.org>
11890
11891         * tests/test-lock.c (test_lock, test_rwlock, test_recursive_lock,
11892         test_once): Mark functions as static.
11893         * tests/test-tls.c (test_tls): Likewise.
11894
11895 2008-12-07  Bruno Haible  <bruno@clisp.org>
11896
11897         * lib/striconveha.h (uniconv_register_autodetect): Renamed from
11898         iconv_register_autodetect.
11899
11900 2008-12-07  Jim Meyering  <meyering@redhat.com>
11901
11902         posixtm.c: avoid a warning
11903         * lib/posixtm.c (posixtime): Don't initialize tm0.
11904         It's no longer needed to placate gcc4's -Wuninitialized,
11905         and the attempt to placate would elicit a new warning.
11906
11907         unicodeio.c: mark unused parameters
11908         * lib/unicodeio.c (exit_failure_callback): Mark unused parameter.
11909         (fallback_failure_callback): Likewise.
11910
11911 2008-12-07  Bruno Haible  <bruno@clisp.org>
11912
11913         * gnulib-tool (func_create_testdir): When building the tests
11914         subdirectory, ignore the modules gnumakefile and maintainer-makefile.
11915         Reported by Simon Josefsson.
11916
11917 2008-12-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
11918
11919         * doc/manywarnings.texi, doc/gnulib-intro.texi: Fix typos.
11920
11921 2008-12-06  Bruno Haible  <bruno@clisp.org>
11922
11923         * lib/c-stack.h (c_stack_action): Clarify possible side effects.
11924         Suggested by Eric Blake.
11925
11926 2008-12-06  Bruno Haible  <bruno@clisp.org>
11927
11928         Fix a c-stack test failure on MacOS X.
11929         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Require
11930         AC_CANONICAL_HOST. Define FAULT_YIELDS_SIGBUS. If set, install a signal
11931         handler for SIGBUS as well.
11932         * lib/c-stack.c (c_stack_action): If FAULT_YIELDS_SIGBUS is set,
11933         install a signal handler for SIGBUS as well.
11934         Reported by Bruce Dugan <bld0401@gmail.com> via Eric Blake.
11935
11936 2008-12-06  Bruno Haible  <bruno@clisp.org>
11937
11938         Advocacy documentation.
11939         * doc/gnulib-intro.texi (Benefits): New section.
11940         * doc/gnulib.texi: Update.
11941
11942 2008-12-06  Bruno Haible  <bruno@clisp.org>
11943
11944         Document the 'manywarnings' module.
11945         * doc/manywarnings.texi: New file.
11946         * doc/gnulib.texi: Include it.
11947
11948 2008-12-05  Eric Blake  <ebb9@byu.net>
11949
11950         tests: silence some gcc warnings
11951         * tests/test-getdate.c (LOG) [!DEBUG]: Mark no-op void.
11952         * tests/uniwidth/test-uc_width2.c (finish_interval): Avoid printf
11953         type mismatches.
11954
11955 2008-12-03  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
11956             Bruno Haible  <bruno@clisp.org>
11957
11958         * m4/openmp.m4 (AC_OPENMP): Do not define with Autoconf 2.62 or newer.
11959
11960 2008-11-29  Jim Meyering  <meyering@redhat.com>
11961
11962         unicodeio.c: mark unused parameters
11963         * lib/unicodeio.c (exit_failure_callback): Mark unused parameter.
11964         (fallback_failure_callback): Likewise.
11965
11966         fts: fix a thinko
11967         * lib/fts.c (s_ifmt_shift_bits): Remove function.  Not needed after all.
11968         (set_stat_type): Return S_IF*-valued "type" directly.
11969         Prompted by James Youngman's spotting a related bug.
11970         Confirmed by further testing through find.
11971
11972         fts: provide dirent.d_type via FTSENT.fts_statp, when possible
11973         * lib/fts.c (D_TYPE): Define.
11974         (DT_UNKNOWN, DT_BLK, DT_CHR) [HAVE_STRUCT_DIRENT_D_TYPE]: Define.
11975         (DT_DIR, DT_FIFO, DT_LNK, DT_REG, DT_SOCK): Likewise.
11976         (s_ifmt_shift_bits): New function.
11977         (set_stat_type): New function.
11978         (fts_build): When not calling fts_stat, call set_stat_type
11979         to propagate dirent.d_type info to fts_read caller.
11980         * lib/fts_.h (FTSENT) [FTS_DEFER_STAT]: Mention that
11981         fts_statp->st_mode type information may be valid.
11982
11983 2008-11-28  Simon Josefsson  <simon@josefsson.org>
11984
11985         * lib/sys_time.in.h: Add extern "C" block for C++.  Suggested by
11986         Brian Dessent <brian@dessent.net>.  Reported by Sam Steingold
11987         <sds@gnu.org>.
11988
11989 2008-11-20  Bruno Haible  <bruno@clisp.org>
11990
11991         Attempt to work around an AIX 5.3, 6.1 compiler bug with include_next.
11992         * lib/math.in.h: Use INCLUDE_NEXT_AS_FIRST_DIRECTIVE instead of
11993         INCLUDE_NEXT.
11994         * m4/include_next.m4 (gl_INCLUDE_NEXT): Set also
11995         INCLUDE_NEXT_AS_FIRST_DIRECTIVE.
11996         * modules/math (Makefile.am): Substitute
11997         INCLUDE_NEXT_AS_FIRST_DIRECTIVE instead of INCLUDE_NEXT.
11998         Reported by Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
11999
12000 2008-11-18  Alexandre Duret-Lutz  <adl@lrde.epita.fr>
12001             Bruno Haible  <bruno@clisp.org>
12002
12003         * lib/stdint.in.h: Define all type macros so that their expansion is
12004         a single typedef'ed token. Fixes a compilation failure in Boost which
12005         does "using ::int8_t;".
12006
12007 2008-11-18  Simon Josefsson  <simon@josefsson.org>
12008
12009         * m4/manywarnings.m4: New file with gl_MANYWARN_COMPLEMENT and
12010         gl_MANYWARN_ALL_GCC.
12011         * m4/warnings.m4: Removed gl_WARN_SUPPORTED and
12012         gl_WARN_COMPLEMENT.  Suggested by Bruno Haible <bruno@clisp.org>.
12013         * modules/manywarnings: New file.
12014         * MODULES.html.sh: Mention manywarnings module.
12015
12016 2008-11-18  Bruno Haible  <bruno@clisp.org>
12017
12018         * doc/gnulib-tool.texi (Unit tests): New section.
12019
12020 2008-11-18  Simon Josefsson  <simon@josefsson.org>
12021
12022         * top/maint.mk (refresh-po): Fix sed regexp to avoid problems with
12023         paths like 'lib/po/foo.po'.
12024
12025 2008-11-17  Simon Josefsson  <simon@josefsson.org>
12026
12027         * m4/warnings.m4: Improve code.  Reported by Ralf Wildenhues
12028         <Ralf.Wildenhues@gmx.de> and Paolo Bonzini <bonzini@gnu.org>.
12029
12030 2008-11-17  Simon Josefsson  <simon@josefsson.org>
12031
12032         * m4/warnings.m4: Use CPPFLAGS to really check whether the
12033         parameter works.
12034
12035 2008-11-17  Simon Josefsson  <simon@josefsson.org>
12036
12037         * m4/warnings.m4: Add gl_WARN_COMPLEMENT and gl_WARN_SUPPORTED.
12038
12039 2008-11-17  Bruce Korb  <bkorb@gnu.org>
12040
12041         * modules/parse-duration-tests: New file.
12042         * tests/test-parse-duration.sh: New file.
12043         * tests/test-parse-duration.c: New file.
12044
12045         New module 'parse-duration'.
12046         * lib/parse-duration.h: New file.
12047         * lib/parse-duration.c: New file.
12048         * modules/parse-duration: New file.
12049
12050 2008-11-17  Bruno Haible  <bruno@clisp.org>
12051
12052         * tests/test-select-out.sh: Comment out the first pipe test.
12053         Reported by Simon Josefsson.
12054
12055 2008-11-17  Bruno Haible  <bruno@clisp.org>
12056
12057         * modules/getaddrinfo (Depends-on): Add servent, hostent.
12058         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Use gl_SERVENT and
12059         gl_HOSTENT.
12060
12061 2008-11-17  Bruno Haible  <bruno@clisp.org>
12062
12063         * m4/sockets.m4 (gl_SOCKETS): After trying -lsocket, try also
12064         -lnetwork and -lnet. Needed for Haiku and BeOS.
12065
12066 2008-11-16  Bruno Haible  <bruno@clisp.org>
12067
12068         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Fix indentation.
12069
12070 2008-11-16  Bruno Haible  <bruno@clisp.org>
12071
12072         Avoid test failure on Haiku.
12073         * tests/test-fsync.c: Include <errno.h>.
12074         (main): Don't require that fsync (0) fails.
12075
12076 2008-11-15  Bruno Haible  <bruno@clisp.org>
12077
12078         New module 'hostent'.
12079         * modules/hostent: New file.
12080         * m4/hostent.m4: New file, based on code in m4/getaddrinfo.m4.
12081
12082 2008-11-15  Bruno Haible  <bruno@clisp.org>
12083
12084         New module 'servent'.
12085         * modules/servent: New file.
12086         * m4/servent.m4: New file, based on code in m4/getaddrinfo.m4.
12087
12088 2008-11-15  Bruno Haible  <bruno@clisp.org>
12089
12090         Avoid generating same test program with two different rules.
12091         * modules/frexp-nolibm-tests (Makefile.am): Rename test program from
12092         test-frexp to test-frexp-nolibm.
12093         * modules/frexpl-nolibm-tests (Makefile.am): Rename test program from
12094         test-frexpl to test-frexpl-nolibm.
12095
12096 2008-11-15  Bruno Haible  <bruno@clisp.org>
12097
12098         * modules/frexpl-tests (Makefile.am): Link test-frexpl with
12099         $(FREXPL_LIBM).
12100
12101 2008-11-15  Bruno Haible  <bruno@clisp.org>
12102
12103         * lib/netdb.in.h: Activate the definitions also when the system's
12104         <netdb.h> has 'struct addrinfo'.
12105         * m4/netdb_h.m4 (gl_HEADER_NETDB): Replace netdb.h also when it lacks
12106         EAI_OVERFLOW or AI_NUMERICSERV.
12107         * doc/posix-headers/netdb.texi: Document the problem.
12108
12109 2008-11-15  Bruno Haible  <bruno@clisp.org>
12110
12111         * tests/test-sched.c: Test also the existence of the SCHED_* macros.
12112
12113         Make the 'sched' module work on platforms where <sched.h> exists but
12114         is incomplete (such as Haiku).
12115         * lib/sched.in.h; Include the system's <sched.h> if it exists.
12116         (SCHED_FIFO, SCHED_RR, SCHED_OTHER): New macros.
12117         * m4/sched_h.m4 (gl_SCHED_H): Test whether <sched.h> exists and also
12118         defines SCHED_FIFO, SCHED_RR, SCHED_OTHER. Set HAVE_SCHED_H,
12119         HAVE_STRUCT_SCHED_PARAM.
12120         * modules/sched (Depends-on): Add include_next.
12121         (Makefile.am): Substitute HAVE_SCHED_H, INCLUDE_NEXT,
12122         PRAGMA_SYSTEM_HEADER, NEXT_SCHED_H, HAVE_STRUCT_SCHED_PARAM.
12123         * doc/posix-headers/sched.texi: Document the issue.
12124
12125 2008-11-13  Jim Meyering  <meyering@redhat.com>
12126
12127         test-argp-2: avoid test failure when PACKAGE_BUGREPORT is defined
12128         * tests/test-argp-2.sh: When PACKAGE_BUGREPORT was defined, this
12129         test would fail due to the difference in the Report bugs to ...
12130         line.  The expected address is empty, "<>", while the actual
12131         would contain e.g., "<bug-tar@gnu.org>".  Filter out any address.
12132
12133 2008-11-12  Bruno Haible  <bruno@clisp.org>
12134
12135         lstat: don't compile lstat.c on systems lacking lstat
12136         * m4/lstat.m4 (gl_FUNC_LSTAT): Don't compile lstat.c on systems
12137         which don't have lstat; this is handled by lib/sys_stat.in.h already.
12138         Reported by Daniel P. Berrange via Jim Meyering.
12139
12140 2008-11-12  Jim Meyering  <meyering@redhat.com>
12141
12142         * lib/unicodeio.c (unicode_to_mb): Correct spelling of u8_uctomb.
12143
12144 2008-11-12  Simon Josefsson  <simon@josefsson.org>
12145
12146         * modules/warnings (configure.ac): Do AC_SUBST([WARN_CFLAGS]) here
12147         instead.
12148
12149 2008-11-12  Bruno Haible  <bruno@clisp.org>
12150
12151         * lib/unicodeio.c: Include unistr.h.
12152         (utf8_wctomb): Remove function.
12153         (unicode_to_mb): Use utf8_uctomb instead of utf8_wctomb.
12154
12155 2008-11-12  Simon Josefsson  <simon@josefsson.org>
12156
12157         * m4/warnings.m4 (gl_WARN_INIT): Remove, suggested by Ralf
12158         Wildenhues <Ralf.Wildenhues@gmx.de> and Bruno Haible
12159         <bruno@clisp.org>.
12160         * modules/warnings (configure.ac): Don't call gl_WARN_INIT.
12161
12162 2008-11-12  Simon Josefsson  <simon@josefsson.org>
12163
12164         * doc/warnings.texi: New file, from Bruno Haible <bruno@clisp.org>.
12165         * doc/gnulib.texi: Add section for warnings.
12166
12167 2008-11-11  Bruno Haible  <bruno@clisp.org>
12168
12169         * lib/sockets.h: Add a comment.
12170
12171 2008-11-11  Karl Berry  <karl@gnu.org>
12172
12173         * config/srclist.txt (fdl.texi): add, syncing from gnustandards.
12174
12175 2008-11-11  Eric Blake  <ebb9@byu.net>
12176
12177         fdl.texi: avoid git symlinks
12178         * doc/fdl.texi: Copy, rather than link, fdl-1.3.texi.
12179
12180 2008-11-11  Paolo Bonzini  <bonzini@gnu.org>
12181
12182         * m4/warnings.m4 (gl_WARN_ADD): Don't AC_SUBST the empty string.
12183
12184 2008-11-11  Paolo Bonzini  <bonzini@gnu.org>
12185
12186         * m4/warnings.m4 (gl_WARN_INIT): Substitute WARN_CFLAGS.
12187         (gl_WARN_ADD): Substitute $2 if literal.
12188
12189 2008-11-11  Paolo Bonzini  <bonzini@gnu.org>
12190
12191         * m4/warning.m4: Remove.
12192
12193 2008-11-11  Paolo Bonzini  <bonzini@gnu.org>
12194
12195         * m4/warnings.m4: Almost complete rewrite. :-)
12196
12197 2008-11-10  Simon Josefsson  <simon@josefsson.org>
12198
12199         * modules/warnings: New module.
12200         * m4/warnings.m4: New file.
12201         * MODULES.html.sh: Mention warnings module.
12202         With review improvements from Paolo Bonzini <bonzini@gnu.org> and
12203         Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
12204
12205 2008-11-10  Eric Blake  <ebb9@byu.net>
12206
12207         fdl.texi: make a symlink to the latest version
12208         * doc/standards.texi: Revert today's earlier change.
12209         * doc/fdl-1.2.texi: Rename from old fdl.texi...
12210         * doc/fdl.texi: ...and replace this with a symlink to the newer
12211         fdl-1.3.texi.
12212
12213 2008-11-10  Bruno Haible  <bruno@clisp.org>
12214
12215         * tests/test-select-fd.c (main): Accept the result file name as fourth
12216         argument.
12217         * tests/test-select-in.sh: Pass t-select-in.tmp as fourth argument.
12218         * tests/test-select-out.sh: Pass t-select-out.tmp as fourth argument.
12219
12220 2008-11-10  Bruno Haible  <bruno@clisp.org>
12221
12222         * lib/netdb.in.h: Use HAVE_STRUCT_ADDRINFO, HAVE_DECL_GETADDRINFO,
12223         HAVE_DECL_FREEADDRINFO, HAVE_DECL_GAI_STRERROR, HAVE_DECL_GETNAMEINFO
12224         as autoconf-substituted macros.
12225         * m4/netdb_h.m4 (gl_NETDB_H_DEFAULTS): Initialize these variables to 1.
12226         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Require
12227         gl_NETDB_H_DEFAULTS. Set these variables.
12228         * modules/netdb (Makefile.am): Substitute these variables.
12229
12230 2008-11-10  Eric Blake  <ebb9@byu.net>
12231
12232         standards.texi: include correct file for FDL 1.3
12233         * doc/standards.texi (GNU Free Documentation License): Change
12234         include file to pull in FDL 1.3, not 1.2.
12235
12236         fdl.texi: revert accidental change to license
12237         * doc/fdl.texi: This is FDL 1.2, not 1.3.
12238
12239 2008-11-10  Bruno Haible  <bruno@clisp.org>
12240
12241         * m4/printf.m4 (gl_PRINTF_ENOMEM): Guess yes on Haiku. Use the
12242         cross-compiling guesses also when the native compile gives no result.
12243
12244 2008-11-10  Bruno Haible  <bruno@clisp.org>
12245
12246         * lib/spawni.c (__spawni): Force variable into the stack.
12247
12248 2008-11-10  Bruno Haible  <bruno@clisp.org>
12249
12250         Add support for Haiku.
12251         * lib/fbufmode.c (fbufmode): Test a symbol that is not only defined on
12252         glibc and BeOS, but also on Haiku.
12253         * lib/fpurge.c (fpurge): Likewise.
12254         * lib/freadable.c (freadable): Likewise.
12255         * lib/freadahead.c (freadahead): Likewise.
12256         * lib/freading.c (freading): Likewise.
12257         * lib/freadptr.c (freadptr): Likewise.
12258         * lib/freadseek.c (freadptrinc): Likewise.
12259         * lib/fseeko.c (rpl_fseeko): Likewise.
12260         * lib/fseterr.c (fseterr): Likewise.
12261         * lib/fwritable.c (fwritable): Likewise.
12262         * lib/fwriting.c (fwriting): Likewise.
12263         Reported by Ingo Weinhold <ingo_weinhold@gmx.de>.
12264
12265 2008-11-10  Ingo Weinhold  <ingo_weinhold@gmx.de>
12266
12267         * lib/config.charset: Treat Haiku like BeOS.
12268
12269 2008-11-10  Ingo Weinhold  <ingo_weinhold@gmx.de>
12270
12271         * lib/binary-io.h (O_BINARY, O_TEXT): Treat Haiku like BeOS.
12272         * lib/fcntl.in.h (O_BINARY, O_TEXT): Likewise.
12273
12274 2008-11-08  Bruno Haible  <bruno@clisp.org>
12275
12276         * m4/sys_ioctl_h.m4 (gl_SYS_IOCTL_H): Avoid using AC_CHECK_DECL inside
12277         AC_CACHE_CHECK.
12278
12279 2008-11-08  Bruno Haible  <bruno@clisp.org>
12280
12281         * modules/select-tests (configure.ac): Check for unistd.h, sys/wait.h.
12282
12283 2008-11-08  Bruno Haible  <bruno@clisp.org>
12284
12285         * tests/test-select-fd.c: New file.
12286         * tests/test-select-in.sh: New file.
12287         * tests/test-select-out.sh: New file.
12288         * tests/test-select-stdin.c: New file.
12289         * modules/select-tests (Files): Add the new files.
12290         (Depends-on): Add gettimeofday.
12291         (Makefile.am): Add test-select-in.sh, test-select-out.sh to TESTS.
12292         Set TESTS_ENVIRONMENT. Add test-select-fd, test-select-stdin to
12293         check_PROGRAMS. Define test_select_fd_LDADD, test_select_stdin_LDADD.
12294
12295 2008-11-06  Alexander V. Lukyanov  <lav@netis.ru>
12296             Bruno Haible  <bruno@clisp.org>
12297
12298         * lib/sys_stat.in.h: Enclose function definitions in extern "C".
12299
12300 2008-10-12  Giuseppe Scrivano  <gscrivano@gnu.org>
12301
12302         * build-aux/pmccabe2html: Added support for C++ source files.
12303
12304 2008-11-05  Ben Pfaff  <blp@gnu.org>
12305
12306         Fix lib/close.c build on Windows.
12307         * modules/close (Files): Add lib/w32sock.h.
12308
12309 2008-11-05  Joel E. Denny  <jdenny@ces.clemson.edu>
12310
12311         Accept Bison's NEWS format.
12312         * build-aux/announce-gen (print_news_deltas): Tweak
12313         $re_prefix.
12314
12315 2008-11-04  Bruno Haible  <bruno@clisp.org>
12316
12317         * modules/random_r (Maintainer): Add glibc.
12318
12319 2008-11-04  Simon Josefsson  <simon@josefsson.org>
12320
12321         * doc/alloca-opt.texi: Change license to GFDLv1.3+, as suggested
12322         by karl@freefriends.org (Karl Berry).
12323         * doc/alloca.texi: Likewise.
12324         * doc/c-ctype.texi: Likewise.
12325         * doc/c-strcase.texi: Likewise.
12326         * doc/c-strcaseeq.texi: Likewise.
12327         * doc/c-strcasestr.texi: Likewise.
12328         * doc/c-strstr.texi: Likewise.
12329         * doc/c-strtod.texi: Likewise.
12330         * doc/c-strtold.texi: Likewise.
12331         * doc/ctime.texi: Likewise.
12332         * doc/error.texi: Likewise.
12333         * doc/fdl.texi: Likewise.
12334         * doc/gcd.texi: Likewise.
12335         * doc/getdate.texi: Likewise.
12336         * doc/gnulib-intro.texi: Likewise.
12337         * doc/gnulib-tool.texi: Likewise.
12338         * doc/gnulib.texi: Likewise.
12339         * doc/inet_ntoa.texi: Likewise.
12340         * doc/maintain.texi: Likewise.
12341         * doc/make-stds.texi: Likewise.
12342         * doc/quote.texi: Likewise.
12343         * doc/regexprops-generic.texi: Likewise.
12344         * doc/standards.texi: Likewise.
12345         * doc/verify.texi: Likewise.
12346         * doc/visibility.texi: Likewise.
12347         * doc/gnulib.texi (GNU Free Documentation License): Include
12348         fdl-1.3.texi instead of fdl.texi.
12349
12350 2008-11-04  Simon Josefsson  <simon@josefsson.org>
12351
12352         * doc/fdl-1.3.texi: New file, from
12353         <http://www.gnu.org/licenses/fdl-1.3.texi>.
12354         * modules/fdl-1.3: Add.
12355         * MODULES.html.sh: Add fdl-1.3.
12356
12357 2008-11-03  Bruno Haible  <bruno@clisp.org>
12358
12359         Make determination of absolute name of header file work with AIX xlc.
12360         * m4/include_next.m4 (gl_CHECK_NEXT_HEADERS): Require
12361         AC_CANONICAL_HOST. On AIX, use "$CPP -C" rather than "$CPP" for
12362         preprocessing.
12363         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Likewise.
12364         Reported by Gary V. Vaughan <gary@thewrittenword.com>.
12365
12366 2008-11-03  Simon Josefsson  <simon@josefsson.org>
12367
12368         * top/maint.mk (COVERAGE_CCOPTS): Use --coverage instead of
12369         -fprofile-arcs -ftest-coverage.  Suggested by Ludovic Courtès
12370         <ludo@gnu.org>.
12371
12372 2008-11-02  Bruno Haible  <bruno@clisp.org>
12373
12374         Mark 'strpbrk' obsolete.
12375         * modules/strpbrk (Status, Notice): New sections.
12376         * modules/strtok_r (Depends-on): Add strpbrk.
12377
12378 2008-11-02  Bruno Haible  <bruno@clisp.org>
12379
12380         Mark 'strdup' obsolete.
12381         * modules/strdup (Status, Notice): New sections.
12382         * modules/findprog (Depends-on): Add strdup.
12383         * modules/getaddrinfo (Depends-on): Likewise.
12384         * modules/localename (Depends-on): Likewise.
12385         * modules/relocatable-lib (Depends-on): Likewise.
12386         * modules/relocatable-lib-lgpl (Depends-on): Likewise.
12387         * modules/relocatable-prog (Depends-on): Likewise.
12388         * modules/trim (Depends-on): Likewise.
12389         * modules/unictype/gen-ctype (Depends-on): Likewise.
12390         * modules/unilbrk/gen-lbrk (Depends-on): Likewise.
12391
12392 2008-11-02  Bruno Haible  <bruno@clisp.org>
12393
12394         Mark 'strcspn' obsolete.
12395         * modules/strcspn (Status, Notice): New sections.
12396
12397 2008-11-02  Bruno Haible  <bruno@clisp.org>
12398
12399         Mark 'rmdir' obsolete.
12400         * modules/rmdir (Status, Notice): New sections.
12401         * modules/clean-temp (Depends-on): Add rmdir.
12402         * modules/openat (Depends-on): Likewise.
12403
12404 2008-11-02  Bruno Haible  <bruno@clisp.org>
12405
12406         Mark 'raise' obsolete.
12407         * modules/raise (Status, Notice): New sections.
12408         (Include): Specify <signal.h>.
12409         * modules/stdio (Depends-on): Add raise.
12410         * modules/write (Depends-on): Likewise.
12411
12412 2008-11-02  Bruno Haible  <bruno@clisp.org>
12413
12414         Mark 'memset' obsolete.
12415         * modules/memset (Status, Notice): New sections.
12416
12417 2008-11-02  Bruno Haible  <bruno@clisp.org>
12418
12419         Mark 'memmove' obsolete.
12420         * modules/memmove (Status, Notice): New sections.
12421         * modules/argp (Depends-on): Add memmove.
12422         * modules/argz (Depends-on): Likewise.
12423         * modules/canonicalize (Depends-on): Likewise.
12424         * modules/canonicalize-lgpl (Depends-on): Likewise.
12425         * modules/fts (Depends-on): Likewise.
12426         * modules/getcwd (Depends-on): Likewise.
12427         * modules/human (Depends-on): Likewise.
12428         * modules/regex (Depends-on): Likewise.
12429         * modules/striconveh (Depends-on): Likewise.
12430         * modules/trim (Depends-on): Likewise.
12431         * modules/unistr/u8-move (Depends-on): Likewise.
12432         * modules/unistr/u16-move (Depends-on): Likewise.
12433         * modules/unistr/u32-move (Depends-on): Likewise.
12434
12435 2008-11-02  Bruno Haible  <bruno@clisp.org>
12436
12437         Mark 'memcpy' obsolete.
12438         * modules/memcpy (Status, Notice): New sections.
12439
12440 2008-11-02  Bruno Haible  <bruno@clisp.org>
12441
12442         Mark 'memcmp' obsolete.
12443         * modules/memcmp (Status, Notice): New sections.
12444         * modules/argmatch (Depends-on): Add memchr.
12445         * modules/backupfile (Depends-on): Likewise.
12446         * modules/c-strcasestr (Depends-on): Likewise.
12447         * modules/crypto/des (Depends-on): Likewise.
12448         * modules/csharpcomp (Depends-on): Likewise.
12449         * modules/fnmatch (Depends-on): Likewise.
12450         * modules/git-merge-changelog (Depends-on): Likewise.
12451         * modules/isnand (Depends-on): Likewise.
12452         * modules/isnand-nolibm (Depends-on): Likewise.
12453         * modules/isnanf (Depends-on): Likewise.
12454         * modules/isnanf-nolibm (Depends-on): Likewise.
12455         * modules/isnanl (Depends-on): Likewise.
12456         * modules/isnanl-nolibm (Depends-on): Likewise.
12457         * modules/mbchar (Depends-on): Likewise.
12458         * modules/memcoll (Depends-on): Likewise.
12459         * modules/quotearg (Depends-on): Likewise.
12460         * modules/regex (Depends-on): Likewise.
12461         * modules/relocatable-prog (Depends-on): Likewise.
12462         * modules/same (Depends-on): Likewise.
12463         * modules/signbit (Depends-on): Likewise.
12464         * modules/strcasestr-simple (Depends-on): Likewise.
12465         * modules/unictype/gen-ctype (Depends-on): Likewise.
12466         * modules/unilbrk/gen-lbrk (Depends-on): Likewise.
12467         * modules/uniname/uniname (Depends-on): Likewise.
12468         * modules/unistr/u8-cmp (Depends-on): Likewise.
12469
12470 2008-11-02  Bruno Haible  <bruno@clisp.org>
12471
12472         Mark 'memchr' obsolete.
12473         * modules/memchr (Status, Notice): New sections.
12474         * modules/argp (Depends-on): Add memchr.
12475         * modules/base64 (Depends-on): Likewise.
12476         * modules/c-strcasestr (Depends-on): Likewise.
12477         * modules/chdir-long (Depends-on): Likewise.
12478         * modules/fnmatch (Depends-on): Likewise.
12479         * modules/getsubopt (Depends-on): Likewise.
12480         * modules/git-merge-changelog (Depends-on): Likewise.
12481         * modules/glob (Depends-on): Likewise.
12482         * modules/strcasestr-simple (Depends-on): Likewise.
12483         * modules/strnlen (Depends-on): Likewise.
12484
12485 2008-11-02  Bruno Haible  <bruno@clisp.org>
12486
12487         Mark 'atexit' obsolete.
12488         * modules/atexit (Status, Notice): New sections.
12489         * modules/chdir-long (Depends-on): Add atexit.
12490         * modules/wait-process (Depends-on): Likewise.
12491
12492 2008-11-02  Bruno Haible  <bruno@clisp.org>
12493
12494         * gnulib-tool: New option --with-obsolete.
12495         (func_usage): Document it.
12496         (func_modules_transitive_closure): Drop obsolete dependencies if
12497         incobsolete is not true.
12498         (func_import): Read and save the incobsolete variable to the cache.
12499
12500 2008-11-02  Bruno Haible  <bruno@clisp.org>
12501
12502         * modules/TEMPLATE-EXTENDED: New field 'Status'.
12503         * gnulib-tool: New option --extract-status.
12504         (func_usage): Document it.
12505         (sed_extract_prog): Recognize it.
12506         (func_get_status): New function.
12507
12508 2008-10-30  Simon Josefsson  <simon@josefsson.org>
12509
12510         * modules/sockets (License): Change from LGPL to LGPLv2+.
12511
12512 2008-10-28  Simon Josefsson  <simon@josefsson.org>
12513
12514         * top/maint.mk: Add coverage rules, inspired by scripts in gnupdf.
12515
12516 2008-10-28  Simon Josefsson  <simon@josefsson.org>
12517
12518         * MODULES.html.sh (Support for systems lacking POSIX:2001):
12519         Mention times and sys_times.
12520         * modules/sys_times, modules/sys_times-tests: New modules.
12521         * modules/times, modules/times-tests: Likewise
12522         * m4/sys_times_h.m4: New file.
12523         * lib/sys_times.in.h: Likewise
12524         * lib/times.c: Likewise.
12525         * tests/test-sys_times.c: Likewise.
12526         * tests/test-times.c: Likewise.
12527         * doc/posix-headers/sys_times.texi: Update.
12528         * doc/posix-functions/times.texi: Update.
12529
12530 2008-10-28  Jim Meyering  <meyering@redhat.com>
12531
12532         * modules/tempname (Depends-on): Add lstat.
12533
12534         * modules/lstat (License): Relicense: LGPL -> LGPLv2+.
12535
12536 2008-10-28  Simon Josefsson  <simon@josefsson.org>
12537
12538         * gnulib-tool (func_emit_tests_Makefile_am): Revert last commit.
12539         * modules/argp-tests (test_argp_LDADD): Set EXEEXT here instead,
12540         using idiom used elsewhere in gnulib.
12541
12542 2008-10-27  Jim Meyering  <meyering@redhat.com>
12543
12544         * modules/gethostname (License): Relicense: LGPL -> LGPLv2+.
12545
12546 2008-10-27  Simon Josefsson  <simon@josefsson.org>
12547
12548         * gnulib-tool (func_emit_tests_Makefile_am): Set EXEEXT in
12549         TESTS_ENVIRONMENT, for shell scripts that needs to call built
12550         programs.
12551         * tests/test-argp-2.sh: Use $EXEEXT when needed.
12552
12553 2008-10-27  Simon Josefsson  <simon@josefsson.org>
12554
12555         * lib/sys_stat.in.h (lstat): Fix declaration for mingw.
12556
12557 2008-10-27  Bruno Haible  <bruno@clisp.org>
12558
12559         * tests/test-lstat.c: Include <stdio.h>.
12560
12561 2008-10-27  Simon Josefsson  <simon@josefsson.org>
12562
12563         * modules/lstat-tests: New module.
12564         * tests/test-lstat.c: New file.
12565
12566 2008-10-26  Jim Meyering  <meyering@redhat.com>
12567
12568         * lib/mkdir.c (rpl_mkdir) [_WIN32...]: Mark mode as an unused parameter.
12569
12570 2008-10-26  Simon Josefsson  <simon@josefsson.org>
12571             Bruno Haible  <bruno@clisp.org>
12572
12573         Fix a clash between the type DATADIR on Windows and the macro DATADIR.
12574         * modules/configmake (Include): Add a note that the include must come
12575         after all system headers.
12576         * lib/javaversion.c: Include configmake.h after all other includes.
12577
12578 2008-10-26  Bruno Haible  <bruno@clisp.org>
12579
12580         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Set default of
12581         HAVE_STRUCT_RANDOM_DATA to 1.
12582         (gl_STDLIB_H): Simplify.
12583
12584 2008-10-26  Simon Josefsson  <simon@josefsson.org>
12585
12586         * m4/stdlib_h.m4: Check for struct random_data.  Initialize and
12587         substitute HAVE_STRUCT_RANDOM_DATA.
12588         * lib/stdlib.in.h [!HAVE_STRUCT_RANDOM_DATA]: Provide struct
12589         random_data.
12590         * modules/stdlib (Makefile.am): Substitute
12591         HAVE_STRUCT_RANDOM_DATA.
12592
12593 2008-10-26  Simon Josefsson  <simon@josefsson.org>
12594
12595         * doc/gnulib.texi (@copying): Use GFDLv1.2+.
12596         * doc/gnulib-intro.texi (Copyright): Likewise.
12597
12598 2008-10-26  Simon Josefsson  <simon@josefsson.org>
12599
12600         * doc/gnulib.texi (Header files): C++ fixes, based on Bruno's
12601         findings.
12602
12603 2008-10-25  Ben Pfaff  <blp@cs.stanford.edu>
12604             Bruno Haible  <bruno@clisp.org>
12605
12606         * lib/unistd.in.h: Include <winsock2.h>.
12607         (socket, connect,accept, bind, getpeername, getsockname, getsockopt,
12608         listen, recv, send, recvfrom, sendto, setsockopt, shutdown, select):
12609         Provide dummy declarations.
12610         (gethostname): Override.
12611         * lib/sys_socket.in.h (gethostname): Provide dummy declaration.
12612         * m4/gethostname.m4 (gl_FUNC_GETHOSTNAME): Invoke
12613         gl_PREREQ_SYS_H_WINSOCK2.
12614         * modules/gethostname (Files): Add m4/sys_socket_h.m4.
12615         * doc/posix-functions/gethostname.texi: More details.
12616
12617 2008-10-25  Bruno Haible  <bruno@clisp.org>
12618
12619         * m4/sys_socket_h.m4 (gl_PREREQ_SYS_H_WINSOCK2): Require
12620         gl_UNISTD_H_DEFAULTS, gl_SYS_IOCTL_H_DEFAULTS only if they exist.
12621         * modules/sys_socket (Files): Remove m4/unistd_h.m4, m4/sys_ioctl_h.m4.
12622
12623         * lib/sys_socket.in.h (HAVE__GL_CLOSE_FD_MAYBE_SOCKET); Move macro from
12624         here ...
12625         * lib/unistd.in.h (HAVE__GL_CLOSE_FD_MAYBE_SOCKET); ... to here.
12626         * m4/sys_socket_h.m4 (gl_SYS_SOCKET_H_DEFAULTS): Remove invocation of
12627         gl_UNISTD_H_DEFAULTS.
12628
12629 2008-10-25  Eric Blake  <ebb9@byu.net>
12630
12631         signbit: avoid spurious compiler failure
12632         * m4/signbit.m4 (gl_SIGNBIT_TEST_PROGRAM): Move non-constant
12633         declarations inside function.
12634
12635 2008-10-24  Simon Josefsson  <simon@josefsson.org>
12636             Bruno Haible  <bruno@clisp.org>
12637
12638         * lib/stdlib.in.h (@GNULIB_RANDOM_R@): Include stdint.h.
12639         * modules/random_r (Depends-on): Add stdint.
12640
12641 2008-10-24  Bruno Haible  <bruno@clisp.org>
12642
12643         * modules/intprops (License): Change to LGPLv2+, with approval by Paul
12644         Eggert.
12645         * modules/strerror (License): Likewise.
12646
12647 2008-10-24  Jim Meyering  <meyering@redhat.com>
12648
12649         sys_socket: fix typo that inhibited expansion of @GNULIB_SEND@
12650         * modules/sys_socket (Depends-on) [Depends-on]: Fix typo.
12651
12652 2008-10-24  Eric Blake  <ebb9@byu.net>
12653
12654         getgroups: fix compilation when getgroups is available
12655         * lib/getgroups.c (includes): Include <unistd.h> for getgroups,
12656         but with <config.h> override of getgroups disabled.
12657
12658 2008-10-24  Simon Josefsson  <simon@josefsson.org>
12659
12660         * doc/gnulib.texi (Header files): Add note about C++ problems.
12661         Explained by Bruno Haible <bruno@clisp.org>.
12662
12663 2008-10-23  Bruno Haible  <bruno@clisp.org>
12664
12665         Define a dummy SA_NODEFER macro on Interix.
12666         * lib/signal.in.h (SA_NODEFER): Define fallback.
12667         Reported by Aleksey Cheusov <cheusov@tut.by> via
12668         Thomas Klausner <wiz@netbsd.org> and Eric Blake.
12669
12670 2008-10-23  Bruno Haible  <bruno@clisp.org>
12671
12672         * modules/freadahead (License): Change to LGPLv2+.
12673         Suggested by Simon Josefsson.
12674
12675 2008-10-23  Jim Meyering  <meyering@redhat.com>
12676
12677         random_r: new module
12678         * modules/random_r: New file.
12679         * m4/random_r.m4: New file.
12680         * lib/random_r.c: New file, from glibc.
12681         * modules/random_r-tests: New file.
12682         * tests/test-random_r.c: New file.
12683         * lib/stdlib.in.h (srandom_r, initstate_r, setstate_r, random_r):
12684          Declare.
12685         (RAND_MAX): Define.
12686         * m4/stdlib_h.m4: Define and AC_SUBST GNULIB_RANDOM_R and HAVE_RANDOM_R.
12687         * modules/stdlib: Substitute them, too.
12688         * MODULES.html.sh (Extra functions based on POSIX:2001) [Misc]: Add it.
12689         * doc/glibc-functions/initstate_r.texi: Mention the new module.
12690         * doc/glibc-functions/random_r.texi: Likewise.
12691         * doc/glibc-functions/setstate_r.texi: Likewise.
12692         * doc/glibc-functions/srandom_r.texi: Likewise.
12693         * config/srclist.txt: Mention it.
12694
12695 2008-10-23  David Lutterkort  <lutter@redhat.com>
12696
12697         * modules/selinux-h: Search for LIB_SELINUX and mark it as a
12698         link requirement
12699
12700 2008-10-23  Jim Meyering  <meyering@redhat.com>
12701
12702         selinux-h: mark parameters of stub functions as intentionally unused
12703         * lib/se-selinux.in.h: Mark parameters as _UNUSED_PARAMETER_.
12704         * lib/se-context.in.h: Likewise.
12705
12706 2008-10-22  Simon Josefsson  <simon@josefsson.org>
12707
12708         * lib/sys_socket.in.h (FD_ISSET): Fix warnings under mingw.
12709
12710 2008-10-22  Simon Josefsson  <simon@josefsson.org>
12711
12712         * m4/getgroups.m4: Avoid invoking test with wrong parameters.
12713
12714 2008-10-22  Eric Blake  <ebb9@byu.net>
12715
12716         glthread/thread: avoid compiler warning
12717         * lib/glthread/thread.c (gl_thread_exit_func) [USE_WIN32_THREADS]:
12718         Add unreachable abort to silence compiler.
12719
12720 2008-10-22  Eric Blake  <ebb9@byu.net>
12721
12722         netdb: also supply struct addrinfo for cygwin 1.5.x
12723         * m4/netdb_h.m4 (gl_HEADER_NETDB): Check for incomplete header on
12724         older cygwin.
12725         * lib/netdb.in.h [!HAVE_STRUCT_ADDRINFO]: Also supply contents for
12726         cygwin.
12727         * doc/posix-headers/netdb.texi (netdb.h): Document this.
12728
12729 2008-10-22  Bruno Haible  <bruno@clisp.org>
12730
12731         * users.txt: Update entry about pspp.
12732
12733 2008-10-21  Bruno Haible  <bruno@clisp.org>
12734
12735         Simplification.
12736         * lib/sys_socket.in.h (_gl_close_fd_maybe_socket): Remove declaration.
12737         * lib/close.c (_gl_close_fd_maybe_socket): Make static.
12738
12739         Simplification.
12740         * lib/ioctl.c (ioctl): Don't undefine.
12741         * lib/socket.c (socket): Don't undefine.
12742
12743         Remove unused module indicator macros.
12744         * m4/sys_socket_h.m4 (gl_SYS_SOCKET_MODULE_INDICATOR): Don't define
12745         GNULIB_$1 as a C macro.
12746
12747         * doc/posix-functions/close.texi: Undo last change.
12748         * doc/posix-functions/ioctl.texi: Merge the two paragraphs about
12749         Windows platforms.
12750
12751 2008-10-21  Bruno Haible  <bruno@clisp.org>
12752
12753         Add gethostname() declaration to <unistd.h>.
12754         * lib/unistd.in.h (gethostname): New declaration.
12755         * lib/gethostname.c: Include <unistd.h>.
12756         * m4/gethostname.m4 (gl_FUNC_GETHOSTNAME): Require
12757         gl_UNISTD_H_DEFAULTS. Set HAVE_GETHOSTNAME.
12758         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_GETHOSTNAME
12759         and HAVE_GETHOSTNAME.
12760         * modules/gethostname (Depends-on): Add unistd.
12761         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
12762         (Include): Specify <unistd.h>.
12763         * modules/unistd (Makefile.am): Substitute GNULIB_GETHOSTNAME and
12764         HAVE_GETHOSTNAME.
12765         * tests/test-gethostname.c: Include <unistd.h> first.
12766
12767 2008-10-21  Bruno Haible  <bruno@clisp.org>
12768
12769         * modules/poll-tests (Depends-on): Add sys_ioctl, ioctl.
12770         * modules/select-tests (Depends-on): Likewise.
12771         Reported by Simon Josefsson.
12772
12773 2008-10-21  Simon Josefsson  <simon@josefsson.org>
12774
12775         * lib/close.c: Add _gl_close_fd_maybe_socket from winsock.c.
12776         * lib/accept.c: New file, based on winsock.c.
12777         * lib/bind.c: New file, based on winsock.c.
12778         * lib/connect.c: New file, based on winsock.c.
12779         * lib/getpeername.c: New file, based on winsock.c.
12780         * lib/getsockname.c: New file, based on winsock.c.
12781         * lib/getsockopt.c: New file, based on winsock.c.
12782         * lib/ioctl.c: New file, based on winsock.c.
12783         * lib/listen.c: New file, based on winsock.c.
12784         * lib/recv.c: New file, based on winsock.c.
12785         * lib/recvfrom.c: New file, based on winsock.c.
12786         * lib/send.c: New file, based on winsock.c.
12787         * lib/sendto.c: New file, based on winsock.c.
12788         * lib/setsockopt.c: New file, based on winsock.c.
12789         * lib/shutdown.c: New file, based on winsock.c.
12790         * lib/socket.c: New file, based on winsock.c.
12791         * lib/w32sock.h: New file, based on winsock.c.
12792         * lib/winsock.c: Remove file.
12793         * modules/accept: Likewise.
12794         * modules/bind: Likewise.
12795         * modules/connect: Likewise.
12796         * modules/getpeername: Likewise.
12797         * modules/getsockname: Likewise.
12798         * modules/getsockopt: Likewise.
12799         * modules/ioctl: Likewise.
12800         * modules/listen: Likewise.
12801         * modules/recv: Likewise.
12802         * modules/recvfrom: Likewise.
12803         * modules/send: Likewise.
12804         * modules/sendto: Likewise.
12805         * modules/setsockopt: Likewise.
12806         * modules/shutdown: Likewise.
12807         * modules/socket: Use socket.c instead of winsock.c.
12808         * modules/sys_socket: Remove (unneeded?) dependency on winsock.c.
12809         * doc/posix-functions/accept.texi: Doc fix.
12810         * doc/posix-functions/bind.texi: Doc fix.
12811         * doc/posix-functions/close.texi: Doc fix.
12812         * doc/posix-functions/connect.texi: Doc fix.
12813         * doc/posix-functions/getpeername.texi: Doc fix.
12814         * doc/posix-functions/getsockname.texi: Doc fix.
12815         * doc/posix-functions/getsockopt.texi: Doc fix.
12816         * doc/posix-functions/ioctl.texi: Doc fix.
12817         * doc/posix-functions/listen.texi: Doc fix.
12818         * doc/posix-functions/recv.texi: Doc fix.
12819         * doc/posix-functions/recvfrom.texi: Doc fix.
12820         * doc/posix-functions/send.texi: Doc fix.
12821         * doc/posix-functions/sendto.texi: Doc fix.
12822         * doc/posix-functions/setsockopt.texi: Doc fix.
12823         * doc/posix-functions/shutdown.texi: Doc fix.
12824         * doc/posix-functions/socket.texi: Doc fix.
12825
12826 2008-10-20  Bruno Haible  <bruno@clisp.org>
12827
12828         Take into account the role of SIGABRT_COMPAT on Windows 2008.
12829         * lib/sigprocmask.c (SIGABRT_COMPAT, SIGABRT_COMPAT_MASK): New macros.
12830         (sigismember, sigaddset, sigdelset, sigfillset, rpl_signal): Handle it
12831         as an alias for SIGABRT.
12832         * lib/sigaction.c (SIGABRT_COMPAT): New macro.
12833         (sigaction): Map it to SIGABRT.
12834         Reported by Ramiro Polla <ramiro.polla@gmail.com> via Eric Blake.
12835
12836 2008-10-20  Bruno Haible  <bruno@clisp.org>
12837
12838         * lib/fts.c: Don't include lstat.h.
12839         * lib/openat.c: Include <sys/stat.h> instead of lstat.h.
12840
12841         Move the lstat() declaration to <sys/stat.h>.
12842         * lib/lstat.h: Remove file.
12843         * lib/sys_stat.in.h: Add special invocation convention.
12844         (lstat): New declaration.
12845         * lib/lstat.c (orig_lstat): New function.
12846         (rpl_lstat): Use orig_lstat instead of lstat.
12847         * m4/lstat.m4 (gl_FUNC_LSTAT): Require gl_SYS_STAT_H_DEFAULTS and
12848         AC_C_INLINE. Set REPLACE_LSTAT.
12849         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Initialize GNULIB_LSTAT
12850         and REPLACE_LSTAT.
12851         * modules/lstat (Files): Remove lib/lstat.h.
12852         (configure.ac): Invoke gl_SYS_STAT_MODULE_INDICATOR.
12853         (Include): Specify <sys/stat.h> instead of lstat.h.
12854         * modules/sys_stat (Makefile.am): Substitute GNULIB_LSTAT and
12855         REPLACE_LSTAT.
12856         * NEWS: Mention the change.
12857
12858 2008-10-20  Bruno Haible  <bruno@clisp.org>
12859
12860         * modules/posix_spawn-tests: New file.
12861         * tests/test-posix_spawn3.c: New file.
12862
12863 2008-10-20  Bruno Haible  <bruno@clisp.org>
12864
12865         * modules/posix_spawnp-tests (Depends-on): Add sys_wait.
12866         * tests/test-posix_spawn1.c (WTERMSIG, WCOREDUMP, WEXITSTATUS,
12867         WIFSIGNALED, WIFEXITED, WIFSTOPPED): Remove fallback definitions.
12868         * tests/test-posix_spawn2.c (WTERMSIG, WCOREDUMP, WEXITSTATUS,
12869         WIFSIGNALED, WIFEXITED, WIFSTOPPED): Likewise.
12870
12871 2008-10-20  Bruno Haible  <bruno@clisp.org>
12872
12873         * m4/posix_spawn.m4 (gl_POSIX_SPAWN_WORKS): Test against another bug
12874         of posix_spawn on AIX 5.3.
12875
12876 2008-10-20  Bruno Haible  <bruno@clisp.org>
12877
12878         * m4/posix_spawn.m4 (gl_POSIX_SPAWN_WORKS): Make the check on MacOS X.
12879
12880 2008-10-20  Bruno Haible  <bruno@clisp.org>
12881
12882         * m4/posix_spawn.m4 (gl_POSIX_SPAWN_WORKS): Use AC_LANG_SOURCE instead
12883         of AC_LANG_PROGRAM.
12884
12885 2008-10-20  Simon Josefsson  <simon@josefsson.org>
12886
12887         * lib/netdb.in.h: Don't define GNU specific constants until they
12888         are supported or needed.  Reported by Bruno Haible
12889         <bruno@clisp.org>.
12890
12891 2008-10-20  Simon Josefsson  <simon@josefsson.org>
12892
12893         * lib/canon-host.c: Include netdb.h instead of getaddrinfo.h.
12894
12895 2008-10-20  Simon Josefsson  <simon@josefsson.org>
12896
12897         * lib/getaddrinfo.h: Remove file.
12898         * modules/getaddrinfo: Reflect move from getaddrinfo.h to netdb.h.
12899         * m4/getaddrinfo.m4: Call gl_HEADER_NETDB.  Don't check for netdb.h.
12900         * lib/netdb.in.h: Add declarations from getaddrinfo.h.
12901         * m4/netdb_h.m4: Initialize GNULIB_GETADDRINFO to 0.
12902         * modules/netdb: Substitute GNULIB_GETADDRINFO.
12903         * lib/getaddrinfo.c: Include netdb.h instead of getaddrinfo.h.
12904         * tests/test-getaddrinfo.c: Likewise.
12905         * lib/gai_strerror.c: Likewise.  Also drop HAVE_NETDB_H check.
12906         * NEWS: Mention change.
12907
12908 2008-10-19  Bruno Haible  <bruno@clisp.org>
12909
12910         * m4/posix_spawn.m4 (gl_POSIX_SPAWN_WORKS): Remove unneeded code.
12911
12912 2008-10-19  Bruno Haible  <bruno@clisp.org>
12913
12914         * lib/wait-process.c: Include simply <sys/wait.h>.
12915         (waitpid, WTERMSIG, WCOREDUMP, WEXITSTATUS, WIFSIGNALED, WIFEXITED,
12916         WIFSTOPPED): Remove fallback definitions.
12917         * modules/wait-process (Depends-on): Add sys_wait.
12918
12919         New module 'sys_wait'.
12920         * modules/sys_wait: New file.
12921         * lib/sys_wait.in.h: New file, partially copied from
12922         lib/wait-process.c.
12923         * m4/sys_wait_h.m4: New file.
12924         * doc/posix-headers/sys_wait.texi: Mention the new module.
12925
12926 2008-10-19  Bruno Haible  <bruno@clisp.org>
12927
12928         * m4/wait-process.m4 (gl_WAIT_PROCESS): Remove test for unistd.h.
12929
12930 2008-10-19  Bruno Haible  <bruno@clisp.org>
12931
12932         Assume that waitpid() fills an 'int' status, not a 'union wait'.
12933         * lib/wait-process.c (WAIT_T): Remove type.
12934         (WTERMSIG, WCOREDUMP, WEXITSTATUS): Define fallbacks using bit masks.
12935         (wait_subprocess): Update.
12936
12937 2008-10-19  Bruno Haible  <bruno@clisp.org>
12938
12939         New module 'atoll'.
12940         * modules/atoll: New file.
12941         * lib/stdlib.in.h (atoll): New declaration.
12942         * lib/atoll.c: New file, from glibc with modifications.
12943         * m4/atoll.m4: New file.
12944         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_ATOLL,
12945         HAVE_ATOLL.
12946         * modules/stdlib (Makefile.am): Substitute GNULIB_ATOLL, HAVE_ATOLL.
12947         * doc/posix-functions/atoll.texi: Mention the new module.
12948
12949 2008-10-19  Bruno Haible  <bruno@clisp.org>
12950
12951         Add strtoull() declaration to <stdlib.h>.
12952         * lib/stdlib.in.h (strtoull): New declaration.
12953         * m4/strtoull.m4 (gl_FUNC_STRTOLL): Require gl_STDLIB_H_DEFAULTS.
12954         Set HAVE_STRTOULL.
12955         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_STRTOULL,
12956         HAVE_STRTOULL.
12957         * modules/strtoull (Depends-on): Add stdlib.
12958         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
12959         * modules/stdlib (Makefile.am): Substitute GNULIB_STRTOULL,
12960         HAVE_STRTOULL.
12961
12962 2008-10-19  Bruno Haible  <bruno@clisp.org>
12963
12964         Add strtoll() declaration to <stdlib.h>.
12965         * lib/stdlib.in.h (strtoll): New declaration.
12966         * m4/strtoll.m4 (gl_FUNC_STRTOLL): Require gl_STDLIB_H_DEFAULTS.
12967         Set HAVE_STRTOLL.
12968         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_STRTOLL,
12969         HAVE_STRTOLL.
12970         * modules/strtoll (Depends-on): Add stdlib.
12971         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
12972         * modules/stdlib (Makefile.am): Substitute GNULIB_STRTOLL, HAVE_STRTOLL.
12973
12974 2008-10-19  Bruno Haible  <bruno@clisp.org>
12975
12976         * modules/bcopy (Depends-on): Add strings.
12977         (Include): Specify <strings.h>.
12978
12979 2008-10-19  Bruno Haible  <bruno@clisp.org>
12980
12981         * doc/posix-functions/atexit.texi: Update doc regarding mingw.
12982
12983 2008-10-19  Bruno Haible  <bruno@clisp.org>
12984
12985         * lib/openat-die.c (openat_save_fail, openat_restore_fail): Rename
12986         the parameter from 'errno' to 'errnum'. Fixes a compilation error on
12987         mingw.
12988
12989 2008-10-19  Bruno Haible  <bruno@clisp.org>
12990
12991         * lib/atanl.c: Don't include isnanl.h.
12992         * lib/cosl.c: Likewise.
12993         * lib/ldexpl.c: Likewise.
12994         * lib/logl.c: Likewise.
12995         * lib/sinl.c: Likewise.
12996         * lib/sqrtl.c: Likewise.
12997         * lib/tanl.c: Likewise.
12998
12999         Move the isnanf(), isnand(), isnanl() declarations to <math.h>.
13000         * lib/isnanf.h: Remove file.
13001         * lib/isnand.h: Remove file.
13002         * lib/isnanl.h: Remove file.
13003         * lib/math.in.h: Include the contents of lib/isnanf.h, lib/isnand.h,
13004         lib/isnanl.h. Use HAVE_ISNANF, HAVE_ISNAND, HAVE_ISNANL as substituted
13005         macros.
13006         * m4/isnanf.m4 (gl_FUNC_ISNANF): Require gl_MATH_H_DEFAULTS. Set
13007         HAVE_ISNANF, don't define it as a C macro.
13008         * m4/isnand.m4 (gl_FUNC_ISNAND): Require gl_MATH_H_DEFAULTS. Set
13009         HAVE_ISNAND, don't define it as a C macro.
13010         * m4/isnanl.m4 (gl_FUNC_ISNANL): Require gl_MATH_H_DEFAULTS. Set
13011         HAVE_ISNANL, don't define it as a C macro.
13012         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_ISNAN[FDL] and
13013         HAVE_ISNAN[FDL].
13014         * modules/isnanf (Files): Remove lib/isnanf.h.
13015         (Depends-on): Add math.
13016         (configure.ac): Invoke gl_MATH_MODULE_INDICATOR.
13017         (Include): Specify <math.h> instead of isnanf.h.
13018         * modules/isnand (Files): Remove lib/isnand.h.
13019         (Depends-on): Add math.
13020         (configure.ac): Invoke gl_MATH_MODULE_INDICATOR.
13021         (Include): Specify <math.h> instead of isnand.h.
13022         * modules/isnanl (Files): Remove lib/isnanl.h.
13023         (Depends-on): Add math.
13024         (configure.ac): Invoke gl_MATH_MODULE_INDICATOR.
13025         (Include): Specify <math.h> instead of isnanl.h.
13026         * modules/math (Makefile.am): Substitute GNULIB_ISNAN[FDL] and
13027         HAVE_ISNAN[FDL].
13028         * tests/test-isnanf.c: Include <math.h> instead of isnanf.h.
13029         * tests/test-isnand.c: Include <math.h> instead of isnand.h.
13030         * tests/test-isnanl.c: Include <math.h> instead of isnanl.h.
13031         * NEWS: Mention the change.
13032
13033 2008-10-18  Bruno Haible  <bruno@clisp.org>
13034
13035         Add getusershell(), setusershell(), endusershell() declarations to
13036         <unistd.h>.
13037         * lib/unistd.in.h (getusershell, setusershell, endusershell): New
13038         declarations.
13039         * lib/getusershell.c: Include unistd.h.
13040         * m4/getusershell.m4 (gl_FUNC_GETUSERSHELL): Require
13041         gl_UNISTD_H_DEFAULTS and AC_USE_SYSTEM_EXTENSIONS. Set
13042         HAVE_GETUSERSHELL.
13043         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_GETUSERSHELL
13044         and HAVE_GETUSERSHELL.
13045         * modules/getusershell (Depends-on): Add unistd, extensions.
13046         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
13047         (Include): Specify <unistd.h>.
13048         * modules/unistd (Makefile.am): Substitute GNULIB_GETUSERSHELL and
13049         HAVE_GETUSERSHELL.
13050
13051 2008-10-18  Bruno Haible  <bruno@clisp.org>
13052
13053         Add a getloadavg() declaration to <stdlib.h>.
13054         * lib/stdlib.in.h; Include <sys/loadavg.h> when needed for the
13055         getloadavg declaration.
13056         (getloadavg): New declaration.
13057         * lib/getloadavg.c: Include <stdlib.h> first.
13058         * m4/getloadavg.m4 (gl_GETLOADAVG): Require gl_STDLIB_H_DEFAULTS and
13059         AC_USE_SYSTEM_EXTENSIONS. Test whether sys/loadavg.h exists. Set
13060         HAVE_SYS_LOADAVG_H and HAVE_DECL_GETLOADAVG.
13061         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_GETLOADAVG,
13062         HAVE_SYS_LOADAVG_H, HAVE_DECL_GETLOADAVG.
13063         * modules/getloadavg (Depends-on): Add stdlib, extensions.
13064         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
13065         (Include): Specify <stdlib.h>.
13066         * modules/stdlib (Makefile.am): Substitute GNULIB_GETLOADAVG,
13067         HAVE_SYS_LOADAVG_H, HAVE_DECL_GETLOADAVG.
13068
13069 2008-10-18  Bruno Haible  <bruno@clisp.org>
13070
13071         * lib/dirchownmod.c: Don't include lchmod.h.
13072
13073         Move the lchmod() declaration to <sys/stat.h>.
13074         * lib/lchmod.h: Remove file.
13075         * lib/sys_stat.in.h: Add placeholder for GL_LINK_WARNING.
13076         (lchmod): New declaration, moved here from lib/lchown.h.
13077         * m4/lchmod.m4 (gl_FUNC_LCHMOD): Require gl_SYS_STAT_H_DEFAULTS and
13078         AC_USE_SYSTEM_EXTENSIONS. Set HAVE_LCHMOD.
13079         * m4/sys_stat_h.m4 (gl_SYS_STAT_H_DEFAULTS): Initialize GNULIB_LCHMOD
13080         and HAVE_LCHMOD.
13081         * modules/lchmod (Files): Remove lib/lchmod.h.
13082         (Depends-on): Add sys_stat, extensions.
13083         (configure.ac): Invoke gl_SYS_STAT_MODULE_INDICATOR.
13084         (Include): Specify <sys/stat.h> instead of lchmod.h.
13085         * modules/sys_stat (Depends-on): Add link-warning.
13086         (Makefile.am): Substitute GNULIB_LCHMOD, HAVE_LCHMOD, and the
13087         definition of GL_LINK_WARNING.
13088         * NEWS: Mention the change.
13089
13090 2008-10-18  Bruno Haible  <bruno@clisp.org>
13091
13092         * lib/fchdir.c: Don't include dirfd.h.
13093         * lib/fts.c: Likewise.
13094         * lib/getcwd.c: Likewise.
13095         * lib/glob.c: Likewise.
13096
13097         Move the dirfd() declaration to <dirent.h>.
13098         * lib/dirfd.h: Remove file.
13099         * lib/dirent.in.h: Add placeholder for GL_LINK_WARNING.
13100         (dirfd): New declaration.
13101         * lib/dirfd.c: Include <dirent.h> instead of dirfd.h.
13102         * m4/dirfd.m4 (gl_FUNC_DIRFD): Require gl_DIRENT_H_DEFAULTS and
13103         AC_USE_SYSTEM_EXTENSIONS. Invoke gl_REPLACE_DIRENT_H. Set
13104         HAVE_DECL_DIRFD.
13105         * m4/dirent_h.m4 (gl_DIRENT_H_DEFAULTS): Initialize GNULIB_DIRFD and
13106         HAVE_DECL_DIRFD.
13107         * modules/dirfd (Files): Remove lib/dirfd.h.
13108         (Depends-on): Add dirent, extensions.
13109         (configure.ac): Invoke gl_DIRENT_MODULE_INDICATOR.
13110         (Include): Specify <dirent.h> instead of dirfd.h.
13111         * modules/dirent (Depends-on): Add link-warning.
13112         (Makefile.am): Substitute GNULIB_DIRFD, HAVE_DECL_DIRFD, and
13113         definition of GL_LINK_WARNING.
13114         * NEWS: Mention the change.
13115
13116 2008-10-18  Bruno Haible  <bruno@clisp.org>
13117
13118         Move the euidaccess() declaration to <unistd.h>.
13119         * lib/euidaccess.h: Remove file.
13120         * lib/unistd.in.h (euidaccess): New declaration.
13121         * lib/euidaccess.c: Don't include euidaccess.h.
13122         * m4/euidaccess.m4 (gl_FUNC_EUIDACCESS): Require gl_UNISTD_H_DEFAULTS.
13123         Don't check whether euidaccess is declared. Set HAVE_EUIDACCESS.
13124         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_EUIDACCESS
13125         and HAVE_EUIDACCESS.
13126         * modules/euidaccess (Files): Remove lib/euidaccess.h.
13127         (Depends-on): Add unistd.
13128         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
13129         (Include): Specify <unistd.h> instead of euidaccess.h.
13130         * modules/unistd (Makefile.am): Substitute GNULIB_EUIDACCESS and
13131         HAVE_EUIDACCESS.
13132         * NEWS: Mention the change.
13133
13134 2008-10-18  Bruno Haible  <bruno@clisp.org>
13135
13136         * lib/xgetdomainname.c: Include <unistd.h> instead of getdomainname.h.
13137
13138         Move the getdomainname() declaration to <unistd.h>.
13139         * lib/getdomainname.h: Remove file.
13140         * lib/unistd.in.h (getdomainname): New declaration.
13141         * lib/getdomainname.c: Include <unistd.h> instead of getdomainname.h.
13142         * m4/getdomainname.m4 (gl_FUNC_GETDOMAINNAME): Require
13143         gl_UNISTD_H_DEFAULTS and AC_USE_SYSTEM_EXTENSIONS. Set
13144         HAVE_GETDOMAINNAME.
13145         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
13146         GNULIB_GETDOMAINNAME and HAVE_GETDOMAINNAME.
13147         * modules/getdomainname (Files): Remove lib/getdomainname.h.
13148         (Depends-on): Add unistd, extensions.
13149         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
13150         (Includes): Specify <unistd.h> instead of getdomainname.h.
13151         * modules/unistd (Makefile.am): Substitute GNULIB_GETDOMAINNAME and
13152         HAVE_GETDOMAINNAME.
13153         * NEWS: Mention the change.
13154
13155 2008-10-18  Bruno Haible  <bruno@clisp.org>
13156
13157         * modules/dirent: New file.
13158         * m4/dirent_h.m4: New file.
13159         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Require gl_DIRENT_H_DEFAULTS.
13160         Invoke gl_REPLACE_DIRENT_H. Don't assign DIRENT_H directly.
13161         * modules/fchdir (Files): Remove lib/dirent.in.h.
13162         (Depends-on): Add dirent.
13163         (Makefile.am): Move rules to modules/dirent.
13164         * doc/posix-headers/dirent.texi: Mention the new module.
13165
13166 2008-10-18  Bruno Haible  <bruno@clisp.org>
13167
13168         Avoid -Wunused-parameter warnings in public gnulib header files.
13169         * m4/gnulib-common.m4 (gl_COMMON_BODY): Define _UNUSED_PARAMETER_ as a
13170         macro.
13171         * lib/unistr.h (u32_mbtouc_unsafe, u32_mbtouc): Use it.
13172
13173 2008-10-18  Bruno Haible  <bruno@clisp.org>
13174
13175         * doc/glibc-functions/dirfd.texi: Mention the module 'dirfd'.
13176         * doc/glibc-functions/error.texi: Mention the module 'error'.
13177         * doc/glibc-functions/euidaccess.texi: Mention the module 'euidaccess'.
13178         * doc/glibc-functions/getdomainname.texi: Mention the module
13179         'getdomainname'.
13180         * doc/glibc-functions/getloadavg.texi: Mention the module 'getloadavg'.
13181         * doc/glibc-functions/getpagesize.texi: Mention the module
13182         'getpagesize'.
13183         * doc/glibc-functions/getusershell.texi: Mention the module
13184         'getusershell'.
13185         * doc/glibc-functions/isnanl.texi: Mention the module 'isnanl'.
13186         * doc/glibc-functions/lchmod.texi: Mention the module 'lchmod'.
13187         * doc/glibc-functions/mempcpy.texi: Mention the module 'mempcpy'.
13188         * doc/glibc-functions/memrchr.texi: Mention the module 'memrchr'.
13189         * doc/glibc-functions/mkdtemp.texi: Mention the module 'mkdtemp'.
13190         * doc/glibc-functions/rpmatch.texi: Mention the module 'rpmatch'.
13191         * doc/glibc-functions/stpcpy.texi: Mention the module 'stpcpy'.
13192         * doc/glibc-functions/stpncpy.texi: Mention the module 'stpncpy'.
13193         * doc/glibc-functions/strchrnul.texi: Mention the module 'strchrnul'.
13194         * doc/glibc-functions/strndup.texi: Mention the module 'strndup'.
13195         * doc/glibc-functions/strnlen.texi: Mention the module 'strnlen'.
13196         * doc/glibc-functions/strsep.texi: Mention the module 'strsep'.
13197         * doc/glibc-functions/timegm.texi: Mention the module 'timegm'.
13198         * doc/glibc-functions/vasprintf.texi: Mention the module 'vasprintf'.
13199
13200 2008-10-17  Bruno Haible  <bruno@clisp.org>
13201
13202         * m4/signbit.m4 (gl_SIGNBIT_TEST_PROGRAM): On platforms other than
13203         HP-UX and IRIX, use -0.0L.
13204         * tests/test-ceill.c (minus_zero): Likewise.
13205         * tests/test-floorl.c (minus_zero): Likewise.
13206         * tests/test-frexpl.c (minus_zero): Likewise.
13207         * tests/test-isnan.c (minus_zerol): Likewise.
13208         * tests/test-isnanl.h (minus_zero): Likewise.
13209         * tests/test-ldexpl.c (minus_zero): Likewise.
13210         * tests/test-roundl.c (minus_zero): Likewise.
13211         * tests/test-signbit.c (minus_zerol): Likewise.
13212         * tests/test-snprintf-posix.h (minus_zerol): Likewise.
13213         * tests/test-sprintf-posix.h (minus_zerol): Likewise.
13214         * tests/test-truncl.c (minus_zero): Likewise.
13215         * tests/test-vasnprintf-posix.c (minus_zerol): Likewise.
13216         * tests/test-vasprintf-posix.c (minus_zerol): Likewise.
13217         Reported by Markus Armbruster <armbru@redhat.com> via Jim Meyering
13218         and by Nelson H. F. Beebe <beebe@math.utah.edu> via Eric Blake.
13219
13220 2008-10-17  Bruno Haible  <bruno@clisp.org>
13221
13222         Avoid gcc warnings because of #pragma GCC system_header on older gcc.
13223         * lib/arpa_inet.in.h: Encloses reference to PRAGMA_SYSTEM_HEADER so
13224         that it gets activated only for gcc >= 3.0.
13225         * lib/dirent.in.h: Likewise.
13226         * lib/errno.in.h: Likewise.
13227         * lib/fcntl.in.h: Likewise.
13228         * lib/float.in.h: Likewise.
13229         * lib/iconv.in.h: Likewise.
13230         * lib/inttypes.in.h: Likewise.
13231         * lib/locale.in.h: Likewise.
13232         * lib/math.in.h: Likewise.
13233         * lib/netdb.in.h: Likewise.
13234         * lib/netinet_in.in.h: Likewise.
13235         * lib/search.in.h: Likewise.
13236         * lib/signal.in.h: Likewise.
13237         * lib/spawn.in.h: Likewise.
13238         * lib/stdarg.in.h: Likewise.
13239         * lib/stdint.in.h: Likewise.
13240         * lib/stdio.in.h: Likewise.
13241         * lib/stdlib.in.h: Likewise.
13242         * lib/string.in.h: Likewise.
13243         * lib/strings.in.h: Likewise.
13244         * lib/sys_file.in.h: Likewise.
13245         * lib/sys_ioctl.in.h: Likewise.
13246         * lib/sys_select.in.h: Likewise.
13247         * lib/sys_socket.in.h: Likewise.
13248         * lib/sys_stat.in.h: Likewise.
13249         * lib/sys_time.in.h: Likewise.
13250         * lib/sysexits.in.h: Likewise.
13251         * lib/time.in.h: Likewise.
13252         * lib/unistd.in.h: Likewise.
13253         * lib/wchar.in.h: Likewise.
13254         * lib/wctype.in.h: Likewise.
13255         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
13256
13257 2008-10-17  Jim Meyering  <meyering@redhat.com>
13258
13259         ignore-value: don't depend on inline module
13260         * modules/ignore-value (Depends-on): Remove 'inline'.
13261         (configure.ac): Instead, add AC_REQUIRE([AC_C_INLINE]) here.
13262         Suggestion from Bruno Haible.
13263
13264 2008-10-17  Bruno Haible  <bruno@clisp.org>
13265
13266         New implementation of condition variables for Win32.
13267         * lib/glthread/cond.h (struct gl_waitqueue_link): New type.
13268         (gl_linked_waitqueue_t): New type.
13269         (gl_cond_t): Use it.
13270         * lib/glthread/cond.c (struct gl_waitqueue_element): New type.
13271         (gl_waitqueue_init, gl_waitqueue_add, gl_waitqueue_remove,
13272         gl_waitqueue_notify_first, gl_waitqueue_notify_all): New functions.
13273         (glthread_cond_init_func, glthread_cond_wait_func,
13274         glthread_cond_timedwait_func, glthread_cond_signal_func,
13275         glthread_cond_broadcast_func, glthread_cond_destroy_func):
13276         Reimplemented on the basis of gl_linked_waitqueue_t.
13277         * lib/glthread/lock.h (gl_carray_waitqueue_t): Renamed from
13278         gl_waitqueue_t.
13279         (gl_rwlock_t): Update.
13280         * lib/glthread/lock.c (gl_waitqueue_t): Alias to gl_carray_waitqueue_t.
13281
13282 2008-10-17  Simon Josefsson  <simon@josefsson.org>
13283
13284         * modules/recvfrom (Depends-on): Add dependency on getpeername.
13285         Reported by Yoann Vandoorselaere <yoann@prelude-ids.org>.
13286
13287 2008-10-17  Jim Meyering  <meyering@redhat.com>
13288
13289         ignore-value: new module
13290         * modules/ignore-value: New file.
13291         * lib/ignore-value.h: New file.
13292         * MODULES.html.sh (Compiler warning management): New section,
13293         just for this module.  More to come.
13294
13295 2008-10-16  Paul Eggert  <eggert@cs.ucla.edu>
13296
13297         open-safer.c: avoid 'signed and unsigned in conditional...' warning
13298         * lib/open-safer.c (open_safer): Use an "if/else" statement in place
13299         of the ternary operator.  Reported by Reuben Thomas <rrt@sc3d.org>.
13300
13301 2008-10-16  Jim Meyering  <meyering@redhat.com>
13302
13303         openat-die.c: avoid 'no previous prototype' warning
13304         * lib/openat-die.c: Include "openat.h".
13305         Reported by Reuben Thomas <rrt@sc3d.org>.
13306
13307 2008-10-16  Simon Josefsson  <simon@josefsson.org>
13308
13309         * m4/netdb_h.m4: Assume that if netdb.h exists, it works.
13310         * lib/netdb.in.h: Fix typo.
13311         Reported by Bruno Haible  <bruno@clisp.org>
13312
13313         * lib/netdb.in.h: Include sys/socket.h for platforms without
13314         netdb.h, to get structures like hostent on MinGW.
13315         * modules/netdb (Depends-on): Add sys_socket.
13316
13317 2008-10-15  Simon Josefsson  <simon@josefsson.org>
13318
13319         * modules/netdb, modules/netdb-tests: New file.
13320         * m4/netdb_h.m4: New file.
13321         * lib/netdb.in.h: Add, currently just an empty file pending
13322         definitions.
13323         * tests/test-netdb.c: New file.
13324         * doc/posix-headers/netdb.texi: Mention that we replace it if
13325         needed.
13326         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
13327         netdb.
13328
13329 2008-10-15  Simon Josefsson  <simon@josefsson.org>
13330
13331         * doc/gnulib.texi (Getaddrinfo and WINVER): Sync documentation
13332         with code.
13333
13334 2008-10-13  Bruno Haible  <bruno@clisp.org>
13335
13336         * lib/glthread/cond.c (glthread_cond_wait_func,
13337         glthread_cond_timedwait_func): Add a comment.
13338
13339 2008-10-13  Yoann Vandoorselaere  <yoann@prelude-ids.org>
13340
13341         * tests/test-poll.c: Include <sys/ioctl.h>, for ioctl().
13342         * tests/test-select.c: Likewise,
13343
13344 2008-10-13  Bruno Haible  <bruno@clisp.org>
13345
13346         * lib/glthread/cond.c (glthread_cond_wait_func,
13347         glthread_cond_timedwait_func): Fix variable name.
13348         Reported by Yoann Vandoorselaere <yoann@prelude-ids.org>.
13349
13350 2008-10-13  Paolo Bonzini  <bonzini@gnu.org>
13351
13352         fix getaddrinfo emulation for systems with struct sockaddr.sa_len
13353         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Detect
13354         struct sockaddr.sa_len.
13355         * lib/getaddrinfo.c (getaddrinfo): Set it if appropriate.
13356
13357 2008-10-13  Simon Josefsson  <simon@josefsson.org>
13358
13359         * build-aux/pmccabe2html: Add css and css_url parameters.
13360
13361 2008-10-12  Bruno Haible  <bruno@clisp.org>
13362
13363         * tests/test-sameacls.c (main) [AIX]: Clear type argument before
13364         calling aclx_get.
13365         Reported by Rainer Tammer <tammer@tammer.net>.
13366
13367 2008-10-12  Bruno Haible  <bruno@clisp.org>
13368
13369         Use msvcrt aware primitives for creation/termination of Win32 threads.
13370         * lib/glthread/thread.c: Include <process.h>.
13371         (glthread_create_func): Use _beginthreadex instead of CreateThread.
13372         (wrapper_func): Update signature.
13373         (gl_thread_exit_func): Use _endthreadex instead of EndThread.
13374
13375 2008-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
13376             Bruno Haible  <bruno@clisp.org>
13377
13378         Provide a Win32 implementation of the 'cond' module.
13379         * lib/glthread/cond.h [USE_WIN32]: New implementation.
13380         * lib/glthread/cond.c (glthread_cond_init_func,
13381         glthread_cond_wait_func, glthread_cond_timedwait_func,
13382         glthread_cond_signal_func, glthread_cond_broadcast_func,
13383         glthread_cond_destroy_func) [USE_WIN32]: New functions.
13384         * modules/cond (Dependencies): Add gettimeofday.
13385
13386 2008-10-11  Bruno Haible  <bruno@clisp.org>
13387
13388         Make sleep work on older versions of mingw.
13389         * m4/sleep.m4 (gl_FUNC_SLEEP): Test whether 'sleep' is declared, not
13390         only whether it exists.
13391         * doc/posix-functions/sleep.texi: Mention the problem with older
13392         versions of mingw.
13393
13394 2008-10-11  Bruno Haible  <bruno@clisp.org>
13395
13396         New module 'shutdown'.
13397         * modules/shutdown: New file.
13398         * lib/sys_socket.in.h (shutdown): New declaration.
13399         * lib/winsock.c (shutdown): New function.
13400         * m4/sys_socket_h.m4 (gl_SYS_SOCKET_H_DEFAULTS): Initialize
13401         GNULIB_SHUTDOWN.
13402         * modules/sys_socket (Makefile.am): Substitute GNULIB_SHUTDOWN.
13403         * doc/posix-functions/shutdown.texi: Document the new module.
13404
13405 2008-10-11  Jim Meyering  <meyering@redhat.com>
13406
13407         * lib/fclose.c: Fix typo in comment: s/close/fclose/.
13408
13409 2008-10-11  Bruno Haible  <bruno@clisp.org>
13410
13411         New module 'fclose'.
13412         * modules/fclose: New file.
13413         * lib/stdio.in.h (fclose): New declaration.
13414         * lib/fclose.c: New file.
13415         * m4/fclose.m4: New file.
13416         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Initialize GNULIB_FCLOSE,
13417         REPLACE_FCLOSE.
13418         * m4/close.m4 (gl_REPLACE_CLOSE): Invoke gl_REPLACE_FCLOSE.
13419         * modules/stdio (Makefile.am): Substitute GNULIB_FCLOSE,
13420         REPLACE_FCLOSE.
13421         * modules/close (Depends-on): fclose.
13422         * doc/posix-functions/fclose.texi: Mention the problem on Windows.
13423
13424 2008-10-11  Bruno Haible  <bruno@clisp.org>
13425
13426         * lib/winsock.c (_gl_close_fd_maybe_socket): If closesocket fails,
13427         set errno and don't call _close.
13428
13429 2008-10-10  Bruno Haible  <bruno@clisp.org>
13430
13431         * lib/copy-acl.c (qcopy_acl) [CYGWIN]: Call chmod before setting the
13432         ACL, not afterwards. Fixes test failure on Cygwin.
13433
13434 2008-10-09  Ben Pfaff  <blp@gnu.org>
13435
13436         * build-aux/announce-gen: Fix gnulib version related part of usage
13437         message.  Die with a useful error message if no tarballs are
13438         found.
13439
13440 2008-10-10  Jim Meyering  <meyering@redhat.com>
13441
13442         bootstrap: use git's --depth=N option only if it's supported
13443         * build-aux/bootstrap: Work with git-1.4.4.4, which does not
13444         recognize the --depth option.  Reported by Pádraig Brady.
13445
13446 2008-10-09  Bruno Haible  <bruno@clisp.org>
13447
13448         New module 'ioctl'.
13449         * modules/ioctl: New file.
13450         * lib/sys_socket.in.h (ioctl): Remove declaration.
13451         * lib/winsock.c: Include <sys/ioctl.h>.
13452         (rpl_ioctl): Define only of the gnulib module 'ioctl' is present.
13453         * m4/sys_socket_h.m4 (gl_PREREQ_SYS_H_WINSOCK2): Require
13454         gl_SYS_IOCTL_H_DEFAULTS. Set also SYS_IOCTL_H_HAVE_WINSOCK2_H.
13455         * modules/sys_socket (Files): Add m4/sys_ioctl_h.m4.
13456         * doc/posix-functions/ioctl.texi: Mention the new module.
13457
13458 2008-10-09  Bruno Haible  <bruno@clisp.org>
13459
13460         New module 'sys_ioctl'.
13461         * lib/sys_ioctl.in.h: New file.
13462         * m4/sys_ioctl_h.m4: New file.
13463         * modules/sys_ioctl: New file.
13464         * doc/glibc-headers/sys_ioctl.texi: Mention the new module.
13465
13466 2008-10-09  Bruno Haible  <bruno@clisp.org>
13467
13468         * lib/sys_socket.in.h (ioctl): Make signature POSIX compliant.
13469         * lib/winsock.c: Include <stdarg.h>.
13470         (rpl_ioctl): Change to second argument 'int' and then varargs.
13471
13472 2008-10-09  Bruno Haible  <bruno@clisp.org>
13473
13474         * m4/close.m4 (gl_FUNC_CLOSE): Arrange to replace the close() function
13475         when the sys_socket module is present and the system has <winsock2.h>.
13476
13477 2008-10-09  Bruno Haible  <bruno@clisp.org>
13478
13479         * doc/posix-functions/close.texi: Mention module 'close' instead of
13480         module 'sys_socket'.
13481
13482 2008-10-09  Bruno Haible  <bruno@clisp.org>
13483
13484         * doc/glibc-headers/sys_ioctl.texi: New file.
13485         * doc/gnulib.texi: Include it.
13486
13487 2008-10-09  Paolo Bonzini  <bonzini@gnu.org>
13488             Bruno Haible  <bruno@clisp.org>
13489
13490         Combine the two replacements of 'close'.
13491         * lib/sys_socket.in.h (close): Define to a reminder to include
13492         <unistd.h>.
13493         (_gl_close_fd_maybe_socket): New declaration.
13494         (HAVE__GL_CLOSE_FD_MAYBE_SOCKET): New macro.
13495         * lib/winsock.c (close): Remove undefinition.
13496         (_gl_close_fd_maybe_socket): Renamed from rpl_close. Define only when
13497         needed for the gnulib module 'close'.
13498         * lib/unistd.in.h (close): If the gnulib module 'close' is not used,
13499         define to an error symbol or to a warning, if suitable.
13500         * lib/close.c: Include <sys/socket.h>.
13501         (rpl_close): Invoke _gl_close_fd_maybe_socket when gnulib defines it.
13502         * m4/sys_socket_h.m4 (gl_PREREQ_SYS_H_WINSOCK2): Set also
13503         UNISTD_H_HAVE_WINSOCK2_H.
13504         (gl_SYS_SOCKET_H_DEFAULTS): Require gl_UNISTD_H_DEFAULTS.
13505         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
13506         UNISTD_H_HAVE_WINSOCK2_H.
13507         * modules/sys_socket (Files): Add m4/unistd_h.m4.
13508         (configure.ac): Set a module indicator.
13509         (Makefile.am): Substitute GNULIB_CLOSE.
13510         * modules/unistd (Makefile.am): Substitute UNISTD_H_HAVE_WINSOCK2_H.
13511         * modules/poll-tests (Depends-on): Add close.
13512         * modules/select-tests (Depends-on): Likewise.
13513
13514 2008-10-09  Paolo Bonzini  <bonzini@gnu.org>
13515             Bruno Haible  <bruno@clisp.org>
13516
13517         New module 'close'.
13518         * modules/close: New file.
13519         * lib/unistd.in.h (close): Move declaration out of the
13520         FCHDIR_REPLACEMENT scope.
13521         (_gl_unregister_fd): New declaration.
13522         * lib/close.c: New file.
13523         * lib/fchdir.c (rpl_close): Remove function.
13524         * m4/close.m4: New file.
13525         * m4/fchdir.m4 (gl_FUNC_FCHDIR): When replacing fchdir, also replace
13526         close.
13527         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_CLOSE and
13528         REPLACE_CLOSE.
13529         * modules/unistd (Makefile.am): Substitute GNULIB_CLOSE and
13530         REPLACE_CLOSE.
13531         * modules/fchdir (Depends-on): Add close.
13532
13533 2008-10-09  Paolo Bonzini  <bonzini@gnu.org>
13534             Bruno Haible  <bruno@clisp.org>
13535
13536         * lib/fcntl.in.h (open): Simplify conditionals.
13537         (_gl_register_fd): New declaration.
13538         * lib/fchdir.c (rpl_open): Remove function.
13539         * lib/open.c: When FCHDIR_REPLACEMENT is defined, compile the file
13540         also.
13541         (open): When FCHDIR_REPLACEMENT is defined, invoke _gl_register_fd.
13542         * m4/fchdir.m4 (gl_FUNC_FCHDIR): When replacing fchdir, also replace
13543         open.
13544
13545 2008-10-09  Jim Meyering  <meyering@redhat.com>
13546
13547         GNUmakefile: use the more name-space-friendly "_version"
13548         * top/GNUmakefile (_dummy): Update.
13549         (_version): Rename from "version".
13550
13551 2008-10-09  Paolo Bonzini  <bonzini@gnu.org>
13552             Bruno Haible  <bruno@clisp.org>
13553
13554         * lib/fchdir.c (_gl_unregister_fd): New functions, extracted from
13555         rpl_close.
13556         (_gl_register_fd): New function, extracted from rpl_open.
13557         (rpl_close, rpl_closedir): Use _gl_unregister_fd.
13558         (rpl_open, rpl_opendir): Use _gl_register_fd.
13559
13560 2008-10-09  Paolo Bonzini  <bonzini@gnu.org>
13561
13562         Fix organization of 'open' replacement.
13563         * m4/open.m4 (gl_REPLACE_OPEN): New macro.
13564         (gl_FUNC_OPEN): Use it.
13565         (gl_PREREQ_OPEN): Add a : to make the body non-empty.
13566
13567 2008-10-08  Bruno Haible  <bruno@clisp.org>
13568
13569         * modules/getdate-tests (test_getdata_LDADD): Add LIBINTL.
13570
13571 2008-10-08  Simon Josefsson  <simon@josefsson.org>
13572
13573         * m4/sys_socket_h.m4: Don't AC_LIBOBJ(winsock).  The file is
13574         AC_LIBOBJ'ed by each gnulib module that needs it (e.g., socket,
13575         listen).
13576
13577 2008-10-08  Eric Blake  <ebb9@byu.net>
13578
13579         GNUmakefile: add 'make version' target
13580         * top/GNUmakefile (_curr-ver): Split version update rules...
13581         (version): ...into a target.
13582
13583 2008-10-07  Bruno Haible  <bruno@clisp.org>
13584
13585         Use a more portable replacement expression for -0.0L.
13586         * m4/signbit.m4 (gl_SIGNBIT_TEST_PROGRAM): Use -LDBL_MIN * LDBL_MIN
13587         instead of -0.0L. Fix m4 quotation.
13588
13589         * tests/test-signbit.c: Include <float.h>.
13590         (minus_zero): New variable.
13591         (test_signbitl): Use minus_zero instead of -zero.
13592         * modules/signbit-tests (Depends-on): Add float.
13593
13594         * tests/test-ceill.c: Include <float.h>.
13595         (zero): Remove variable.
13596         (minus_zero): New variable.
13597         (main): Use minus_zero instead of -zero.
13598         * modules/ceill-tests (Depends-on): Add float.
13599
13600         * tests/test-floorl.c: Include <float.h>.
13601         (zero): Remove variable.
13602         (minus_zero): New variable.
13603         (main): Use minus_zero instead of -zero.
13604         * modules/floorl-tests (Depends-on): Add float.
13605
13606         * tests/test-roundl.c: Include <float.h>.
13607         (zero): Remove variable.
13608         (minus_zero): New variable.
13609         (main): Use minus_zero instead of -zero.
13610         * modules/roundl-tests (Depends-on): Add float.
13611
13612         * tests/test-truncl.c: Include <float.h>.
13613         (zero): Remove variable.
13614         (minus_zero): New variable.
13615         (main): Use minus_zero instead of -zero.
13616         * modules/truncl-tests (Depends-on): Add float.
13617
13618         * tests/test-frexpl.c (zero): Remove variable.
13619         (minus_zero): New variable.
13620         (main): Use minus_zero instead of -zero.
13621         * modules/frexpl-tests (Depends-on): Add float.
13622
13623         * tests/test-isnan.c (zerol): Remove variable.
13624         (minus_zerol): New variable.
13625         (test_long_double): Use minus_zerol instead of -zerol.
13626         * modules/isnan-tests (Depends-on): Add float.
13627
13628         * tests/test-isnanl.h (zero): Remove variable.
13629         (minus_zero): New variable.
13630         (main): Use minus_zero instead of -zero.
13631         * modules/isnanl-nolibm-tests (Depends-on): Add float.
13632         * modules/isnanl-tests (Depends-on): Add float.
13633
13634         * tests/test-ldexpl.c (zero): Remove variable.
13635         (minus_zero): New variable.
13636         (main): Use minus_zero instead of -zero.
13637         * modules/ldexpl-tests (Depends-on): Add float.
13638
13639         * tests/test-snprintf-posix.h (zerol): Remove variable.
13640         (minus_zerol): New variable.
13641         (test_function): Use minus_zerol instead of -zerol.
13642         * modules/snprintf-posix-tests (Depends-on): Add float.
13643         * modules/vsnprintf-posix-tests (Depends-on): Add float.
13644
13645         * tests/test-sprintf-posix.h (zerol): Remove variable.
13646         (minus_zerol): New variable.
13647         (test_function): Use minus_zerol instead of -zerol.
13648         * modules/sprintf-posix-tests (Depends-on): Add float.
13649         * modules/vsprintf-posix-tests (Depends-on): Add float.
13650
13651         * tests/test-vasnprintf-posix.c (zerol): Remove variable.
13652         (minus_zerol): New variable.
13653         (test_function): Use minus_zerol instead of -zerol.
13654         * modules/vasnprintf-posix-tests (Depends-on): Add float.
13655
13656         * tests/test-vasprintf-posix.c (zerol): Remove variable.
13657         (minus_zerol): New variable.
13658         (test_function): Use minus_zerol instead of -zerol.
13659         * modules/vasprintf-posix-tests (Depends-on): Add float.
13660
13661 2008-10-07  Simon Josefsson  <simon@josefsson.org>
13662
13663         * MODULES.html.sh (Support for building documentation): Mention
13664         pmccabe2html.  Sort entries.
13665
13666         Add pmccabe2html module, from gnupdf.
13667         * build-aux/pmccabe.css: New file.
13668         * build-aux/pmccabe2html: New file.
13669         * m4/pmccabe2html.m4: New file.
13670         * modules/pmccabe2html: New file.
13671
13672 2008-10-07  Richard W.M. Jones <rjones@redhat.com>
13673
13674         flock: new module
13675         * MODULES.html.sh: Add to list of modules.
13676         * lib/flock.c: flock implementation for Windows and Unix systems
13677         which have fcntl.
13678         * doc/glibc-functions/flock.texi: Update documentation.
13679         * lib/sys_file.in.h: <sys/file.h> header file.
13680         * m4/flock.m4: M4 macros.
13681         * m4/sys_file_h.m4: M4 macros for replacement sys/file.h.
13682         * modules/flock: flock module.
13683         * modules/flock-tests: flock tests module.
13684         * modules/sys_file: sys/file.h module.
13685         * tests/test-flock.c: test suite for flock.
13686
13687 2008-10-06  Jim Meyering  <meyering@redhat.com>
13688
13689         bootstrap: check for LT_INIT more portably still ;-)
13690         * build-aux/bootstrap: Don't rely on \>, since it's not portable.
13691         Spotted by Bruno Haible.
13692
13693 2008-10-06  Eric Blake  <ebb9@byu.net>
13694
13695         test-signbit: avoid tripping Irix cc bug on -0.0L
13696         * tests/test-signbit.c (minus_zerol): Delete, and replace with
13697         '-zerol'.  This may break on HP-UX/hppa, but at least makes the
13698         entire testsuite consistent and avoids an Irix 6.2 bug.
13699
13700 2008-10-05  Bruno Haible  <bruno@clisp.org>
13701             Jim Meyering  <jim@meyering.net>
13702
13703         Add an option for ignoring EPIPE during close_stdout.
13704         * lib/closeout.h: Include <stdbool.h>.
13705         (close_stdout_set_ignore_EPIPE): New declaration.
13706         * lib/closeout.c: Include <stdbool.h>.
13707         (ignore_EPIPE): New variable.
13708         (close_stdout_set_ignore_EPIPE): New function.
13709         (close_stdout): Ignore EPIPE error if ignore_EPIPE is set.
13710         * lib/close-stream.c (close_stream): Mention the possible EPIPE
13711         failure.
13712         * modules/closeout (Depends-on): Add stdbool.
13713
13714 2008-10-05  Bruno Haible  <bruno@clisp.org>
13715
13716         * modules/accept: New file.
13717         * modules/bind: New file.
13718         * modules/connect: New file.
13719         * modules/getpeername: New file.
13720         * modules/getsockname: New file.
13721         * modules/getsockopt: New file.
13722         * modules/listen: New file.
13723         * modules/recv: New file.
13724         * modules/recvfrom: New file.
13725         * modules/send: New file.
13726         * modules/sendto: New file.
13727         * modules/setsockopt: New file.
13728         * modules/socket: New file.
13729         * lib/sys_socket.in.h: Include the GL_LINK_WARNING definition.
13730         (socket, connect, accept, bind, getpeername, getsockname, getsockopt,
13731         listen, recv, send, recvfrom, sendto, setsockopt): Declare only when
13732         the particular module is requested. Add a link warning when the
13733         particular module is not requested.
13734         * lib/winsock.c (rpl_socket, rpl_connect, rpl_accept, rpl_bind,
13735         rpl_getpeername, rpl_getsockname, rpl_getsockopt, rpl_listen, rpl_recv,
13736         rpl_send, rpl_recvfrom, rpl_sendto, rpl_setsockopt): Define only when
13737         the particular module is requested.
13738         * m4/sys_socket_h.m4 (gl_SYS_SOCKET_MODULE_INDICATOR,
13739         gl_SYS_SOCKET_H_DEFAULTS): New macros.
13740         (gl_HEADER_SYS_SOCKET): Require gl_SYS_SOCKET_H_DEFAULTS.
13741         * modules/sys_socket (Depends-on): Add link-warning.
13742         (Makeifle.am): Substitute GNULIB_SOCKET, GNULIB_CONNECT, GNULIB_ACCEPT,
13743         GNULIB_BIND, GNULIB_GETPEERNAME, GNULIB_GETSOCKNAME, GNULIB_GETSOCKOPT,
13744         GNULIB_LISTEN, GNULIB_RECV, GNULIB_SEND, GNULIB_RECVFROM,
13745         GNULIB_SENDTO, GNULIB_SETSOCKOPT, and the definition of
13746         GL_LINK_WARNING.
13747         * doc/posix-functions/accept.texi: Mention the new module 'accept'.
13748         * doc/posix-functions/bind.texi: Mention the new module 'bind'.
13749         * doc/posix-functions/connect.texi: Mention the new module 'connect'.
13750         * doc/posix-functions/getpeername.texi: Mention the new module
13751         'getpeername'.
13752         * doc/posix-functions/getsockname.texi: Mention the new module
13753         'getsockname'.
13754         * doc/posix-functions/getsockopt.texi: Mention the new module
13755         'getsockopt'.
13756         * doc/posix-functions/listen.texi: Mention the new module 'listen'.
13757         * doc/posix-functions/recv.texi: Mention the new module 'recv'.
13758         * doc/posix-functions/recvfrom.texi: Mention the new module 'recvfrom'.
13759         * doc/posix-functions/send.texi: Mention the new module 'send'.
13760         * doc/posix-functions/sendto.texi: Mention the new module 'sendto'.
13761         * doc/posix-functions/setsockopt.texi: Mention the new module
13762         'setsockopt'.
13763         * doc/posix-functions/socket.texi: Mention the new module 'socket'.
13764         * modules/poll-tests (Depends-on): Add socket, bind, getsockopt,
13765         listen, connect, accept.
13766         * modules/select-tests (Depends-on): Likewise.
13767
13768 2008-10-05  Bruno Haible  <bruno@clisp.org>
13769
13770         * lib/winsock.c (strerror): Remove unused #undef.
13771         (rpl_close): Remove unused local variable.
13772
13773         * modules/sys_socket (Depends-on); Add errno.
13774
13775 2008-10-05  Bruno Haible  <bruno@clisp.org>
13776
13777         * lib/sys_select.in.h: Include the GL_LINK_WARNING definition.
13778         (select): Add a link warning when the 'select' module is not used.
13779         * modules/sys_select (Depends-on): Add link-warning.
13780         (Makefile.am): Substitute the definition of GL_LINK_WARNING.
13781         Suggested by Paolo Bonzini.
13782
13783 2008-10-05  Jim Meyering  <meyering@redhat.com>
13784
13785         bootstrap: check for LT_INIT more portably
13786         * build-aux/bootstrap: Avoid using grep -E, since it's not
13787         portable enough.  Suggestion from Bruno Haible.
13788
13789 2008-10-05  Bruno Haible  <bruno@clisp.org>
13790
13791         * doc/posix-headers/sys_select.texi: Mention 'struct timeval' problem
13792         as being fixed by gnulib.
13793
13794 2008-10-05  Bruno Haible  <bruno@clisp.org>
13795
13796         * modules/select-tests: New file, mostly copied from
13797         modules/sys_select-tests.
13798         * tests/test-select.c: New file, mostly copied from
13799         tests/test-sys_select.c.
13800         * tests/test-sys_select.c: Move most of the code to tests/test-select.c.
13801         * modules/sys_select-tests (Depends-on): Remove all dependencies.
13802         (Makefile.am): Remove test_sys_select_LDADD.
13803
13804         * lib/sys_select.in.h (select): If GNULIB_SELECT is not set, define it
13805         to an undefined symbol, for an error message.
13806         * m4/sys_select_h.m4 (gl_SYS_SELECT_MODULE_INDICATOR): New macro.
13807         (gl_SYS_SELECT_H_DEFAULTS): New macro.
13808         (gl_HEADER_SYS_SELECT): Require it. Don't require compilation of
13809         winsock-select.c here.
13810         * modules/sys_select (Files): Remove lib/winsock-select.c.
13811         (Depends-on): Remove alloca.
13812         (Makefile.am): Substitute GNULIB_SELECT.
13813         * modules/select: New file.
13814         * doc/posix-functions/select.texi: Update.
13815
13816 2008-10-05  Bruno Haible  <bruno@clisp.org>
13817
13818         * lib/spawn_faction_addclose.c (__sysconf): Use getdtablesize always.
13819         * lib/spawn_faction_adddup2.c (__sysconf): Likewise.
13820         * lib/spawn_faction_addopen.c (__sysconf): Likewise.
13821         * modules/posix_spawn_file_actions_addclose (Depends-on): Add
13822         getdtablesize.
13823         * modules/posix_spawn_file_actions_adddup2 (Depends-on): Likewise.
13824         * modules/posix_spawn_file_actions_addopen (Depends-on): Likewise.
13825
13826 2008-10-05  Bruno Haible  <bruno@clisp.org>
13827
13828         * modules/getdtablesize-tests: New file.
13829         * tests/test-getdtablesize.c: New file.
13830
13831         New module 'getdtablesize'.
13832         * lib/unistd.in.h (getdtablesize): New declaration.
13833         * lib/getdtablesize.c: New file.
13834         * m4/getdtablesize.m4: New file.
13835         * modules/getdtablesize: New file.
13836         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
13837         GNULIB_GETDTABLESIZE, HAVE_GETDTABLESIZE.
13838         * modules/unistd (Makefile.am): Substitute GNULIB_GETDTABLESIZE,
13839         HAVE_GETDTABLESIZE.
13840         * doc/glibc-functions/getdtablesize.texi: Mention the new module.
13841
13842 2008-10-05  Bruno Haible  <bruno@clisp.org>
13843
13844         * modules/sched (Makefile.am): Fix typo.
13845         Reported by Simon Josefsson.
13846
13847 2008-10-05  Jim Meyering  <meyering@redhat.com>
13848
13849         bootstrap: check for LT_INIT, too
13850         * build-aux/bootstrap: Both AC_PROG_LIBTOOL and AM_PROG_LIBTOOL
13851         are deprecated.  Suggestion from Ralf Wildenhues.
13852
13853 2008-10-05  Bruno Haible  <bruno@clisp.org>
13854
13855         * lib/spawn.in.h (POSIX_SPAWN_*): Use the system's values, rather than
13856         overriding them by ours.
13857         (POSIX_SPAWN_USEVFORK): Use the next free bit position.
13858
13859 2008-10-05  Jim Meyering  <meyering@redhat.com>
13860
13861         bootstrap: check for AC_PROG_LIBTOOL as well as AM_PROG_LIBTOOL
13862         * build-aux/bootstrap: Check for AC_PROG_LIBTOOL, as well as the
13863         obsolete AM_PROG_LIBTOOL.  Spotted by Debarshi Ray <rishi@gnu.org>.
13864
13865 2008-10-04  Bruno Haible  <bruno@clisp.org>
13866
13867         * modules/dup2 (License): Change to LGPLv2+.
13868         * modules/sleep (License): Likewise.
13869         * modules/perror (License): Likewise.
13870         * modules/fopen (License): Change to LGPLv2+, with approval by Eric
13871         Blake.
13872         * modules/signal (License): Likewise.
13873         * modules/sigprocmask (License): Likewise.
13874         * modules/raise (License): Change to LGPLv2+, with approval by Jim
13875         Meyering.
13876
13877 2008-10-04  Bruno Haible  <bruno@clisp.org>
13878
13879         * lib/spawn.in.h (POSIX_SPAWN_*): Undefine before redefining.
13880         Reported by Rainer Tammer <tammer@tammer.net>.
13881
13882 2008-10-03  Paolo Bonzini  <bonzini@gnu.org>
13883             Bruno Haible  <bruno@clisp.org>
13884
13885         * lib/errno.in.h (EWOULDBLOCK) [win32]: Define to EAGAIN.
13886         * lib/winsock.c (set_winsock_errno): Map WSAEWOULDBLOCK to EWOULDBLOCK.
13887         * lib/strerror.c (rpl_strerror): Remove error string for EWOULDBLOCK.
13888
13889 2008-10-03  Kamil Dudka  <kdudka@redhat.com>
13890
13891         filevercmp: new module
13892         * lib/filevercmp.h: New function filevercmp comparing version strings.
13893         * lib/filevercmp.c: Implementation of filevercmp function.
13894         * modules/filevercmp: Module metadata.
13895         * tests/test-filevercmp.c: Unit test for new module.
13896         * modules/filevercmp-tests: Unit test metadata.
13897         * MODULES.html.sh: Add filevercmp module.
13898
13899 2008-10-03  Bruno Haible  <bruno@clisp.org>
13900
13901         * lib/c-ctype.h: Add comment.
13902         Reported by Jim Meyering.
13903
13904 2008-10-02  Bruno Haible  <bruno@clisp.org>
13905
13906         * modules/posix_spawn-internal (Depends-on): Add 'open'.
13907
13908 2008-10-02  Paolo Bonzini  <bonzini@gnu.org>
13909
13910         * build-aux/bootstrap: Allow renaming bootstrap, and change the
13911         name of bootstrap.conf accordingly.
13912
13913 2008-10-02  Paolo Bonzini  <bonzini@gnu.org>
13914
13915         * build-aux/bootstrap: Install git-merge-changelog configuration
13916         items into .gitconfig if needed.
13917
13918 2008-10-02  Paolo Bonzini  <bonzini@gnu.org>
13919
13920         * build-aux/bootstrap: Recognize `gnulib' being a submodule in a
13921         git repository, and initialize/update it accordingly.
13922
13923 2008-10-02  Richard W.M. Jones  <rjones@redhat.com>
13924
13925         * modules/fsync-tests: New file.
13926         * tests/test-fsync.c: New file.
13927
13928         New module 'fsync'.
13929         * lib/fsync.c: New file.
13930         * m4/fsync.m4: New file.
13931         * modules/fsync: New file.
13932         * lib/unistd.in.h (fsync): New declaration.
13933         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Define and AC_SUBST both
13934         GNULIB_FSYNC and HAVE_FSYNC.
13935         * modules/unistd: Substitute GNULIB_FSYNC and HAVE_FSYNC.
13936         * MODULES.html.sh (posix_functions): Add fsync.
13937         * doc/posix-functions/fsync.texi: Mention the new module.
13938
13939 2008-10-02  Jim Meyering  <meyering@redhat.com>
13940
13941         fts.c: sync with similar code from coreutils' remove.c
13942         * lib/fts.c (dirent_inode_sort_may_be_useful): Merge from coreutils.
13943         Guard also with "#if defined __linux__", since for now at least,
13944         this code is Linux-kernel-specific.
13945
13946 2008-10-02  Jim Meyering  <meyering@redhat.com>
13947
13948         fts: bug fixes
13949         * lib/fts.c: Remove unnecessary "defined" in cpp directive.
13950         Include <sys/vfs.h>, not <sys/statfs.h>.
13951
13952         * m4/fts.m4 (gl_FUNC_FTS_CORE): Fix typo s/vfs/vfs.h/.
13953         Include <sys/vfs.h>, not <sys/statfs.h>.
13954
13955 2008-10-01  Bruno Haible  <bruno@clisp.org>
13956
13957         Avoid the broken posix_spawn function on AIX 5.3 and 6.1.
13958         * m4/posix_spawn.m4 (gl_POSIX_SPAWN_WORKS): New macro.
13959         (gl_POSIX_SPAWN_BODY): Invoke it. Set REPLACE_POSIX_SPAWN if needed.
13960         * doc/posix-functions/posix_spawn.texi: Mention the AIX bugs.
13961         * doc/posix-functions/posix_spawnp.texi: Likewise.
13962         * m4/execute.m4 (gl_EXECUTE): Invoke gl_POSIX_SPAWN_WORKS, to check
13963         whether posix_spawn actually works.
13964         * m4/pipe.m4 (gl_PIPE): Likewise.
13965         * modules/execute (Files): Add m4/posix_spawn.m4.
13966         * modules/pipe (Files): Add m4/posix_spawn.m4.
13967         Reported and analyzed by Rainer Tammer <tammer@tammer.net>.
13968
13969 2008-10-01  Jim Meyering  <meyering@redhat.com>
13970
13971         remove trailing spaces
13972         * NEWS: Likewise.
13973         * lib/poll.c (poll): Likewise.
13974         * lib/sys_socket.in.h (SHUT_RDWR): Likewise.
13975         * lib/winsock.c (rpl_close): Likewise.
13976         * m4/memcmp.m4 (gl_FUNC_MEMCMP): Likewise.
13977         * modules/yield: Likewise.
13978         * tests/test-poll.c (connect_to_socket, poll1): Likewise.
13979         * tests/test-sys_select.c (connect_to_socket): Likewise.
13980
13981         fts.c: adjust a new interface to be more generally useful
13982         * lib/fts.c (dirent_inode_sort_may_be_useful): Take an FD parameter.
13983         (fts_build): Adjust caller.
13984
13985 2008-09-30  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
13986
13987         * modules/cond-tests: New file.
13988         * tests/test-cond.c: New file.
13989
13990 2008-09-30  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
13991             Bruno Haible  <bruno@clisp.org>
13992
13993         * modules/cond (Dependencies): Add errno, time.
13994         * lib/glthread/cond.h: Include <time.h>.
13995         (gl_cond_define, gl_cond_define_initialized): Use the same definition
13996         across platforms.
13997
13998 2008-09-30  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
13999             Bruno Haible  <bruno@clisp.org>
14000
14001         * m4/thread.m4 (gl_THREAD): Fix detection of pthread_atfork function.
14002
14003 2008-09-30  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
14004             Bruno Haible  <bruno@clisp.org>
14005
14006         * modules/tls-tests (Depends-on): Add thread, yield.
14007         (configure.ac): Remove all checks.
14008         (test_tls_LDADD): Use YIELD_LIB instead of LIBSCHED.
14009         * tests/test-tls.c (gl_thread_t, gl_thread_join, gl_thread_yield,
14010         gl_thread_self): Remove definitions. Include glthread/thread.h and
14011         glthread/yield.h instead.
14012         (test_tls): Pass an additional NULL argument to gl_thread_join.
14013
14014 2008-09-30  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
14015             Bruno Haible  <bruno@clisp.org>
14016
14017         * modules/lock-tests (Depends-on): Add thread, yield.
14018         (configure.ac): Remove all checks.
14019         (test_lock_LDADD): Use YIELD_LIB instead of LIBSCHED.
14020         * tests/test-lock.c (gl_thread_t, gl_thread_join, gl_thread_yield,
14021         gl_thread_self): Remove definitions. Include glthread/thread.h and
14022         glthread/yield.h instead.
14023         (test_lock, test_rwlock, test_recursive_lock, test_once): Pass an
14024         additional NULL argument to gl_thread_join.
14025
14026 2008-09-30  Bruno Haible  <bruno@clisp.org>
14027
14028         Fix the Win32 implementation of the 'thread' module.
14029         * lib/glthread/thread.h [USE_WIN32_THREADS] (gl_thread_t): Change to a
14030         pointer type.
14031         (gl_thread_self): Invoke gl_thread_self_func.
14032         (gl_thread_self_func): New declaration.
14033         * lib/glthread/thread.c [USE_WIN32_THREADS] (self_key): New variable.
14034         (do_init_self_key, init_self_key): New functions.
14035         (struct gl_thread_struct): Renamed from 'struct thread_extra'.
14036         Remove some fields.
14037         (running_threads, running_lock): Remove variables.
14038         (get_current_thread_handle): New function.
14039         (gl_thread_self_func, wrapper_func, glthread_create_func,
14040         glthread_join_func, gl_thread_exit_func): Largely rewritten and
14041         simplified.
14042
14043 2008-09-30  Bruno Haible  <bruno@clisp.org>
14044
14045         * lib/winsock-select.c (win32_poll_handle): Add shortcut for regular
14046         files.
14047
14048 2008-09-30  Jim Meyering  <meyering@redhat.com>
14049
14050         fts.m4: correct the test for statfs.f_type
14051         * m4/fts.m4 (gl_FUNC_FTS_CORE): Include <sys/statfs.h>
14052         when checking for statfs.f_type.
14053
14054 2008-09-15  Simon Josefsson  <simon@josefsson.org>
14055
14056         tests: avoid some compiler warnings
14057         * tests/test-memchr.c (main): Pass NULL indirectly.
14058         * tests/test-getdate.c (main): Remove unused variable 'ret'.
14059
14060 2008-09-29  OndÅ™ej Vašík  <ovasik@redhat.com>
14061
14062         getdate.y: disallow countable dayshifts like "4 yesterday ago"
14063         * lib/getdate.y (relative_time_table) [tDAY_SHIFT]: New type for
14064         exactly specified dayshifts.
14065         (dayshift): New rule.
14066         (rel): Add dayshift.
14067         (relative_time_table) [tomorrow, yesterday, today, now]:
14068         Use tDAY_SHIFT in place of tDAY_UNIT.
14069         * tests/test-getdate.c: Add tests for now-disallowed countable
14070         dayshifts, e.g., "4 yesterday ago".
14071
14072 2008-09-29  Bruno Haible  <bruno@clisp.org>
14073
14074         * tests/test-posix_spawn1.c: Renamed from tests/test-posix_spawn.c.
14075         * tests/test-posix_spawn1.in.sh: Renamed from
14076         tests/test-posix_spawn.in.sh.
14077         * tests/test-posix_spawn2.c: New file.
14078         * tests/test-posix_spawn2.in.sh: New file.
14079         * modules/posix_spawnp-tests (Files): Update.
14080         (Makefile.am): Update. Add test-posix_spawn2 to the tests.
14081
14082 2008-09-29  Bruno Haible  <bruno@clisp.org>
14083
14084         Propagate effects of putenv/setenv/unsetenv to child processes.
14085         * lib/execute.c (execute): Use spawnvpe instead of spawnvp.
14086         * lib/pipe.c (create_pipe): Likewise.
14087
14088 2008-09-29  Bruno Haible  <bruno@clisp.org>
14089
14090         Enable use of shell scripts as executables in mingw.
14091         * lib/execute.c (execute): When spawnv fails with error ENOEXEC,
14092         run the program as a shell script.
14093         * lib/pipe.c (create_pipe): Likewise.
14094         * lib/w32spawn.h (prepare_spawn): Add a hidden element in front of the
14095         resulting array.
14096
14097 2008-09-29  Eric Blake  <ebb9@byu.net>
14098
14099         * m4/arpa_inet_h.m4 (gl_REPLACE_ARPA_INET_H): Fix typo.
14100
14101 2008-08-24  Paolo Bonzini  <bonzini@gnu.org>
14102
14103         * doc/posix-functions/accept.texi: Update mingw problems.
14104         * doc/posix-functions/bind.texi: Update mingw problems.
14105         * doc/posix-functions/close.texi: Update mingw problems.
14106         * doc/posix-functions/connect.texi: Update mingw problems.
14107         * doc/posix-functions/getpeername.texi: Update mingw problems.
14108         * doc/posix-functions/getsockname.texi: Update mingw problems.
14109         * doc/posix-functions/getsockopt.texi: Update mingw problems.
14110         * doc/posix-functions/ioctl.texi: Update mingw problems.
14111         * doc/posix-functions/listen.texi: Update mingw problems.
14112         * doc/posix-functions/recv.texi: Update mingw problems.
14113         * doc/posix-functions/recvfrom.texi: Update mingw problems.
14114         * doc/posix-functions/select.texi: Update mingw problems.
14115         * doc/posix-functions/send.texi: Update mingw problems.
14116         * doc/posix-functions/sendto.texi: Update mingw problems.
14117         * doc/posix-functions/setsockopt.texi: Update mingw problems.
14118         * doc/posix-functions/socket.texi: Update mingw problems.
14119
14120 2008-09-29  Paolo Bonzini  <bonzini@gnu.org>
14121             Bruno Haible  <bruno@clisp.org>
14122
14123         * lib/sys_select.in.h: Include sys/time.h.
14124         * m4/sys_select.h.m4: Test that struct timeval is fully defined.
14125         * modules/sys_select: Depend on sys_time.
14126         * tests/test-sys_select.c: Test that sys/select.h defines struct
14127         timeval fully.
14128
14129 2008-09-29  Bruno Haible  <bruno@clisp.org>
14130
14131         * lib/sys_socket.in.h: Wrap the definitions in 'extern "C"'.
14132         * lib/sys_select.in.h: Likewise.
14133
14134 2008-09-29  Bruno Haible  <bruno@clisp.org>
14135
14136         * lib/winsock.c (rpl_close, rpl_socket): Remove unused variables.
14137
14138 2008-09-29  Bruno Haible  <bruno@clisp.org>
14139
14140         * m4/sockets.m4 (gl_SOCKETS): Check also for the need to use -lsocket.
14141         Set LIBSOCKET instead of augmenting LIBS.
14142         * modules/sockets (Link): New section.
14143         * modules/sockets-tests (test_sockets_LDADD): New variable.
14144         * modules/sys_select-tests (test_sys_select_LDADD): New variable.
14145         * modules/poll-tests (test_poll_LDADD): New variable.
14146         * NEWS: Document the change.
14147
14148 2008-09-29  Bruno Haible  <bruno@clisp.org>
14149
14150         * m4/arpa_inet_h.m4 (gl_REPLACE_ARPA_INET_H): New macro.
14151         * m4/inet_ntop.m4 (gl_INET_NTOP): Invoke it instead of assigning
14152         ARPA_INET_H directly.
14153         * m4/inet_pton.m4 (gl_INET_PTON): Likewise.
14154
14155 2008-09-28  Bruno Haible  <bruno@clisp.org>
14156
14157         * m4/sys_socket_h.m4 (gl_PREREQ_SYS_H_WINSOCK2): New macro, extracted
14158         from gl_HEADER_SYS_SOCKET.
14159         (gl_HEADER_SYS_SOCKET): Invoke it.
14160         * m4/sys_select_h.m4 (gl_HEADER_SYS_SELECT): Likewise.
14161
14162 2008-09-28  Bruno Haible  <bruno@clisp.org>
14163
14164         * doc/posix-headers/sys_select.texi: Mention 'struct timeval' problem.
14165         * tests/test-sys_select.c: Include <sys/time.h>, for struct timeval.
14166         Needed on OSF/1 4.0.
14167
14168 2008-09-28  Bruno Haible  <bruno@clisp.org>
14169
14170         Override open more carefully.
14171         * lib/open.c (orig_open): New function.
14172         (rpl_open): Use orig_open instead of open.
14173         * lib/fcntl.in.h: Add special invocation convention.
14174         * m4/open.m4 (gl_PREREQ_OPEN): New macro.
14175         (gl_FUNC_OPEN): Invoke it.
14176
14177         Override freopen more carefully.
14178         * lib/freopen.c (orig_freopen): New function.
14179         (rpl_freopen): Use orig_freopen instead of freopen.
14180         * m4/freopen.m4 (gl_PREREQ_FREOPEN): New macro.
14181         (gl_FUNC_FREOPEN): Invoke it.
14182
14183         Override fopen more carefully.
14184         * lib/fopen.c (orig_fopen): New function.
14185         (rpl_fopen): Use orig_fopen instead of fopen.
14186         * m4/fopen.m4 (gl_PREREQ_FOPEN): New macro.
14187         (gl_FUNC_FOPEN): Invoke it.
14188         Needed on AIX. Reported by Rainer Tammer <tammer@tammer.net>.
14189
14190 2008-09-28  Bruno Haible  <bruno@clisp.org>
14191
14192         * lib/pipe.h (create_pipe_out, create_pipe_bidi): Add comment about
14193         SIGPIPE.
14194
14195 2008-09-28  Bruno Haible  <bruno@clisp.org>
14196
14197         * tests/test-sigaction.c (handler, main): Disable the check whether
14198         SA_RESETHAND has reverted the installed handler to SIG_DFL. Needed on
14199         glibc systems with LinuxThreads.
14200
14201 2008-09-28  Bruno Haible  <bruno@clisp.org>
14202
14203         * doc/posix-functions/freopen.texi: Mention the trailing slash problem.
14204
14205         * lib/stdio.in.h (fopen, freopen): Undefine before redefining. Needed
14206         with AIX xlc.
14207         * lib/fcntl.in.h (open): Likewise.
14208         Reported by Rainer Tammer <tammer@tammer.net>.
14209
14210 2008-09-28  Bruno Haible  <bruno@clisp.org>
14211
14212         * modules/posix_spawnp-tests: New file.
14213         * tests/test-posix_spawn.c: New file.
14214         * tests/test-posix_spawn.in.sh: New file.
14215
14216         New module 'posix_spawnp'.
14217         * modules/posix_spawnp: New file.
14218         * lib/spawnp.c: New file, from GNU libc with modifications.
14219         * doc/posix-functions/posix_spawnp.texi: Mention the new module.
14220
14221         New module 'posix_spawn'.
14222         * modules/posix_spawn: New file.
14223         * lib/spawn.c: New file, from GNU libc with modifications.
14224         * doc/posix-functions/posix_spawn.texi: Mention the new module.
14225
14226         New module 'posix_spawnattr_destroy'.
14227         * modules/posix_spawnattr_destroy: New file.
14228         * lib/spawnattr_destroy.c: New file, from GNU libc with modifications.
14229         * doc/posix-functions/posix_spawnattr_destroy.texi: Mention the new
14230         module.
14231
14232         New module 'posix_spawnattr_setsigmask'.
14233         * modules/posix_spawnattr_setsigmask: New file.
14234         * lib/spawnattr_setsigmask.c: New file, from GNU libc with
14235         modifications.
14236         * doc/posix-functions/posix_spawnattr_setsigmask.texi: Mention the
14237         new module.
14238
14239         New module 'posix_spawnattr_getsigmask'.
14240         * modules/posix_spawnattr_getsigmask: New file.
14241         * lib/spawnattr_getsigmask.c: New file, from GNU libc with
14242         modifications.
14243         * doc/posix-functions/posix_spawnattr_getsigmask.texi: Mention the
14244         new module.
14245
14246         New module 'posix_spawnattr_setsigdefault'.
14247         * modules/posix_spawnattr_setsigdefault: New file.
14248         * lib/spawnattr_setdefault.c: New file, from GNU libc with
14249         modifications.
14250         * doc/posix-functions/posix_spawnattr_setsigdefault.texi: Mention the
14251         new module.
14252
14253         New module 'posix_spawnattr_getsigdefault'.
14254         * modules/posix_spawnattr_getsigdefault: New file.
14255         * lib/spawnattr_getdefault.c: New file, from GNU libc with
14256         modifications.
14257         * doc/posix-functions/posix_spawnattr_getsigdefault.texi: Mention the
14258         new module.
14259
14260         New module 'posix_spawnattr_setschedpolicy'.
14261         * modules/posix_spawnattr_setschedpolicy: New file.
14262         * lib/spawnattr_setschedpolicy.c: New file, from GNU libc with
14263         modifications.
14264         * doc/posix-functions/posix_spawnattr_setschedpolicy.texi: Mention the
14265         new module.
14266
14267         New module 'posix_spawnattr_getschedpolicy'.
14268         * modules/posix_spawnattr_getschedpolicy: New file.
14269         * lib/spawnattr_getschedpolicy.c: New file, from GNU libc with
14270         modifications.
14271         * doc/posix-functions/posix_spawnattr_getschedpolicy.texi: Mention the
14272         new module.
14273
14274         New module 'posix_spawnattr_setschedparam'.
14275         * modules/posix_spawnattr_setschedparam: New file.
14276         * lib/spawnattr_setschedparam.c: New file, from GNU libc with
14277         modifications.
14278         * doc/posix-functions/posix_spawnattr_setschedparam.texi: Mention the
14279         new module.
14280
14281         New module 'posix_spawnattr_getschedparam'.
14282         * modules/posix_spawnattr_getschedparam: New file.
14283         * lib/spawnattr_getschedparam.c: New file, from GNU libc with
14284         modifications.
14285         * doc/posix-functions/posix_spawnattr_getschedparam.texi: Mention the
14286         new module.
14287
14288         New module 'posix_spawnattr_setpgroup'.
14289         * modules/posix_spawnattr_setpgroup: New file.
14290         * lib/spawnattr_setpgroup.c: New file, from GNU libc with
14291         modifications.
14292         * doc/posix-functions/posix_spawnattr_setpgroup.texi: Mention the new
14293         module.
14294
14295         New module 'posix_spawnattr_getpgroup'.
14296         * modules/posix_spawnattr_getpgroup: New file.
14297         * lib/spawnattr_getpgroup.c: New file, from GNU libc with
14298         modifications.
14299         * doc/posix-functions/posix_spawnattr_getpgroup.texi: Mention the new
14300         module.
14301
14302         New module 'posix_spawnattr_setflags'.
14303         * modules/posix_spawnattr_setflags: New file.
14304         * lib/spawnattr_setflags.c: New file, from GNU libc with modifications.
14305         * doc/posix-functions/posix_spawnattr_setflags.texi: Mention the new
14306         module.
14307
14308         New module 'posix_spawnattr_getflags'.
14309         * modules/posix_spawnattr_getflags: New file.
14310         * lib/spawnattr_getflags.c: New file, from GNU libc with modifications.
14311         * doc/posix-functions/posix_spawnattr_getflags.texi: Mention the new
14312         module.
14313
14314         New module 'posix_spawnattr_init'.
14315         * modules/posix_spawnattr_init: New file.
14316         * lib/spawnattr_init.c: New file, from GNU libc with modifications.
14317         * doc/posix-functions/posix_spawnattr_init.texi: Mention the new
14318         module.
14319
14320         New module 'posix_spawn_file_actions_destroy'.
14321         * modules/posix_spawn_file_actions_destroy: New file.
14322         * lib/spawn_faction_destroy.c: New file, from GNU libc with
14323         modifications.
14324         * doc/posix-functions/posix_spawn_file_actions_destroy.texi: Mention
14325         the new module.
14326
14327         New module 'posix_spawn_file_actions_addopen'.
14328         * modules/posix_spawn_file_actions_addopen: New file.
14329         * lib/spawn_faction_addopen.c: New file, from GNU libc with
14330         modifications.
14331         * doc/posix-functions/posix_spawn_file_actions_addopen.texi: Mention
14332         the new module.
14333
14334         New module 'posix_spawn_file_actions_adddup2'.
14335         * modules/posix_spawn_file_actions_adddup2: New file.
14336         * lib/spawn_faction_adddup2.c: New file, from GNU libc with
14337         modifications.
14338         * doc/posix-functions/posix_spawn_file_actions_adddup2.texi: Mention
14339         the new module.
14340
14341         New module 'posix_spawn_file_actions_addclose'.
14342         * modules/posix_spawn_file_actions_addclose: New file.
14343         * lib/spawn_faction_addclose.c: New file, from GNU libc with
14344         modifications.
14345         * doc/posix-functions/posix_spawn_file_actions_addclose.texi: Mention
14346         the new module.
14347
14348         New module 'posix_spawn_file_actions_init'.
14349         * modules/posix_spawn_file_actions_init: New file.
14350         * lib/spawn_faction_init.c: New file, from GNU libc with modifications.
14351         * doc/posix-functions/posix_spawn_file_actions_init.texi: Mention the
14352         new module.
14353
14354         New module 'posix_spawn-internal'.
14355         * modules/posix_spawn-internal: New file.
14356         * lib/spawn_int.h: New file, from GNU libc with modifications.
14357         * lib/spawni.c: New file, from GNU libc with modifications.
14358         * m4/posix_spawn.m4: New file.
14359
14360         New module 'spawn'.
14361         * modules/spawn: New file.
14362         * lib/spawn.in.h: New file, from GNU libc with modifications.
14363         * m4/spawn_h.m4: New file.
14364         * doc/posix-headers/spawn.texi: Mention the new module.
14365
14366 2008-09-28  Bruno Haible  <bruno@clisp.org>
14367
14368         * modules/sched-tests: New file.
14369         * tests/test-sched.c: New file.
14370
14371         New module 'sched'.
14372         * modules/sched: New file.
14373         * lib/sched.in.h: New file.
14374         * m4/sched_h.m4: New file.
14375         * doc/posix-headers/sched.texi: Mention the new module.
14376
14377 2008-09-27  Eric Blake  <ebb9@byu.net>
14378
14379         Fix previous patch, and tweak references to $0.
14380         * posix-modules: Call func_gnulib_dir before using $gnulib_dir.
14381         (func_version, func_gnulib_dir): Don't call this program
14382         gnulib-tool.
14383         (func_gnulib_dir, func_tmpdir, func_fatal_error): Avoid shell bugs
14384         with using $0 in function.
14385         * gnulib-tool (func_gnulib_dir, func_tmpdir): Likewise.
14386         (func_fatal_error): Reuse the name the user invoked us with.
14387
14388 2008-09-27  Bruno Haible  <bruno@clisp.org>
14389
14390         * m4/iconv_h.m4 (gl_REPLACE_ICONV_H): New macro.
14391         (gl_ICONV_H_DEFAULTS): Initialize ICONV_H here...
14392         (gl_ICONV_H): Not here.
14393         * m4/iconv_open.m4 (gl_REPLACE_ICONV_OPEN): Invoke gl_REPLACE_ICONV_H
14394         instead of assigning ICONV_H directly.
14395
14396         * m4/wchar.m4 (gl_REPLACE_WCHAR_H): New macro.
14397         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Invoke it instead of assigning
14398         WCHAR_H directly.
14399
14400 2008-09-27  Bruno Haible  <bruno@clisp.org>
14401
14402         * lib/arpa_inet.in.h: Include the GL_LINK_WARNING anchor.
14403         * modules/arpa_inet (Depends-on): Add link-warning.
14404         (Makefile.am): Insert the definition of GL_LINK-WARNING.
14405         * modules/unistd (Makefile.am): Likewise.
14406
14407 2008-09-26  Bruno Haible  <bruno@clisp.org>
14408
14409         * posix-modules (cvsdatestamp, last_checkin_date, version): Remove
14410         variables.
14411         (func_version): Essentially copied from gnulib-tool.
14412         (func_exit, func_gnulib_dir, func_tmpdir, func_fatal_error,
14413         func_readlink): Copied from gnulib-tool.
14414
14415 2008-09-26  Bruno Haible  <bruno@clisp.org>
14416
14417         * gnulib-tool (func_version): Change directory to $gnulib_dir before
14418         invoking git-version-gen.
14419
14420 2008-09-26  Bruno Haible  <bruno@clisp.org>
14421
14422         * posix-modules: Update to directory names changed on 2008-01-19.
14423         Remove commas in output before splitting into words. No more need to
14424         avoid 'ftruncate' since 2007-02-19.
14425
14426 2008-09-26  Bruno Haible  <bruno@clisp.org>
14427
14428         * doc/posix-headers/errno.texi: Remove mention of module 'EOVERFLOW'.
14429
14430 2008-09-26  Bruno Haible  <bruno@clisp.org>
14431
14432         * lib/fwriteerror.c (do_fwriteerror): Ignore error EPIPE.
14433         * modules/fwriteerror (Depends-on): Add errno.
14434
14435 2008-09-26  Bruno Haible  <bruno@clisp.org>
14436
14437         * tests/test-vc-list-files-git.sh: Explain reason for skipping test.
14438         * tests/test-vc-list-files-cvs.sh: Likewise.
14439
14440 2008-09-26  Bruno Haible  <bruno@clisp.org>
14441
14442         * doc/posix-headers/sys_resource.texi: Reorder items.
14443
14444 2008-09-26  Jim Meyering  <meyering@redhat.com>
14445
14446         fts: tweak inode comparison function
14447         * lib/fts.c (fts_compare_ino): Sort on increasing, not decreasing
14448         inode numbers, as documented.
14449
14450         fts: sort dirent entries on inode number before traversing
14451         This avoids a quadratic, seek-related performance penalty when
14452         operating on a directory containing many entries (measurable at 10k;
14453         3.5 hours at 2 million entries with a cold cache) on certain types
14454         of file systems, including ext3 and ext4, but not tmpfs.
14455         * lib/fts.c (DT_MUST_BE, NOT_AN_INODE_NUMBER, D_INO): Define.
14456         (FTS_INODE_SORT_DIR_ENTRIES_THRESHOLD): Define if not defined.
14457         (S_MAGIC_TMPFS, S_MAGIC_NFS): Define.
14458         (fs_handles_readdir_ordered_dirents_efficiently): New function.
14459         (dirent_inode_sort_may_be_useful, fts_compare_ino): Likewise.
14460         (fts_build): Set the stat.st_ino member from D_INO.
14461         If it is likely to be useful, sort dirent entries on inode number.
14462
14463         * m4/fts.m4 (gl_FUNC_FTS_CORE): Check for fstatfs, sys/vfs.h,
14464         and the struct statfs.f_type member.
14465         * modules/fts (Depends-on): Add d-ino.
14466
14467 2008-09-26  Bruno Haible  <bruno@clisp.org>
14468
14469         * modules/sigpipe-die (Depends-on): Add sigpipe.
14470
14471         * lib/stdio.in.h (fprintf, vfprintf, printf, vprintf, fputc, putc,
14472         putchar, fputs, puts, fwrite): Replace when REPLACE_STDIO_WRITE_FUNCS
14473         and GNULIB_STDIO_H_SIGPIPE are set.
14474         * lib/stdio-write.c: New file.
14475         * m4/stdio_h.m4 (gl_STDIO_H): Set GNULIB_FPRINTF, GNULIB_PRINTF,
14476         GNULIB_VFPRINTF, GNULIB_VPRINTF, GNULIB_FPUTC, GNULIB_PUTC,
14477         GNULIB_PUTCHAR, GNULIB_FPUTS, GNULIB_PUTS, GNULIB_FWRITE,
14478         REPLACE_STDIO_WRITE_FUNCS.
14479         (gl_STDIO_H_DEFAULTS): Initialize GNULIB_FPRINTF, GNULIB_PRINTF,
14480         GNULIB_VFPRINTF, GNULIB_VPRINTF, GNULIB_FPUTC, GNULIB_PUTC,
14481         GNULIB_PUTCHAR, GNULIB_FPUTS, GNULIB_PUTS, GNULIB_FWRITE,
14482         GNULIB_STDIO_H_SIGPIPE, REPLACE_STDIO_WRITE_FUNCS.
14483         * modules/stdio (Files): Add lib/stdio-write.c.
14484         (Makefile.am): Substitute GNULIB_FPRINTF, GNULIB_PRINTF,
14485         GNULIB_VFPRINTF, GNULIB_VPRINTF, GNULIB_FPUTC, GNULIB_PUTC,
14486         GNULIB_PUTCHAR, GNULIB_FPUTS, GNULIB_PUTS, GNULIB_FWRITE,
14487         GNULIB_STDIO_H_SIGPIPE, REPLACE_STDIO_WRITE_FUNCS.
14488         * m4/fprintf-posix.m4 (gl_REPLACE_FPRINTF): Define
14489         REPLACE_FPRINTF_POSIX.
14490         * m4/printf-posix-rpl.m4 (gl_REPLACE_PRINTF): Define
14491         REPLACE_PRINTF_POSIX.
14492         * m4/vfprintf-posix.m4 (gl_REPLACE_VFPRINTF): Define
14493         REPLACE_VFPRINTF_POSIX.
14494         * m4/vprintf-posix.m4 (gl_REPLACE_VPRINTF): Define
14495         REPLACE_VPRINTF_POSIX.
14496         * doc/posix-functions/fprintf.texi: Mention the sigpipe module and the
14497         SIGPIPE issue.
14498         * doc/posix-functions/fputc.texi: Likewise.
14499         * doc/posix-functions/fputs.texi: Likewise.
14500         * doc/posix-functions/fwrite.texi: Likewise.
14501         * doc/posix-functions/printf.texi: Likewise.
14502         * doc/posix-functions/putc.texi: Likewise.
14503         * doc/posix-functions/putchar.texi: Likewise.
14504         * doc/posix-functions/puts.texi: Likewise.
14505         * doc/posix-functions/vfprintf.texi: Likewise.
14506         * doc/posix-functions/vprintf.texi: Likewise.
14507
14508         * modules/safe-write (Depends-on): Add write.
14509
14510         * modules/sigpipe-tests: New file.
14511         * tests/test-sigpipe.c: New file.
14512         * tests/test-sigpipe.sh: New file.
14513
14514         * modules/write: New file.
14515         * lib/unistd.in.h: Include <sys/types.h>.
14516         (write): New declaration.
14517         * lib/write.c: New file.
14518         * m4/write.m4: New file.
14519         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
14520         GNULIB_UNISTD_H_SIGPIPE, GNULIB_WRITE, REPLACE_WRITE.
14521         * modules/unistd (Makefile.am): Substitute GNULIB_UNISTD_H_SIGPIPE,
14522         GNULIB_WRITE, REPLACE_WRITE.
14523         * doc/posix-functions/write.texi: Mention the write, sigpipe modules
14524         and the SIGPIPE issue.
14525
14526         * lib/signal.in.h (SIGPIPE): Define to a replacement value.
14527         (raise): New declaration.
14528         * lib/sigprocmask.c (SIGPIPE_handler): New variable.
14529         (ext_signal): New function.
14530         (rpl_raise): New function.
14531         * m4/signal_h.m4 (gl_SIGNAL_H_DEFAULTS): Initialize
14532         GNULIB_SIGNAL_H_SIGPIPE.
14533         * modules/signal (Makefile.am): Substitute GNULIB_SIGNAL_H_SIGPIPE.
14534         * doc/posix-headers/signal.texi: Mention the SIGPIPE issue.
14535
14536         * modules/sigpipe: New file.
14537         * m4/sigpipe.m4: New file.
14538
14539 2008-09-25  Derek Price  <derek@ximbiot.com>
14540             Bruno Haible  <bruno@clisp.org>
14541
14542         * gnulib-tool (func_import): Report all license incompatibilities, not
14543         just the first one.
14544
14545 2008-09-25  Bruno Haible  <bruno@clisp.org>
14546
14547         * gnulib-tool (func_import): When computing the edits, consider not
14548         only the Makefile.ams that exist but also those that will be generated.
14549
14550 2008-09-25  Simon Josefsson  <simon@josefsson.org>
14551
14552         * modules/sys_select-tests (Depends-on): Remove sys_select itself,
14553         fixes gnulib-tool --test warning about duplicate dependency.
14554
14555 2008-09-25  Bruno Haible  <bruno@clisp.org>
14556
14557         * gnulib-tool: Don't ask the user to perform edits in the generated
14558         Makefile.ams.
14559         (func_emit_lib_Makefile_am): Emit empty SUBDIRS. Execute edits that
14560         apply to the Makefile.am being generated.
14561         (func_emit_tests_Makefile_am): Execute edits that apply to the
14562         Makefile.am being generated.
14563         (func_import): Setup list of Makefile.am edits before emitting the
14564         Makefile.ams, not at the end.
14565         (func_create_testdir): Update.
14566         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
14567
14568 2008-09-25  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
14569
14570         * gnulib-tool (func_import): Store the --tests-base option in the
14571         comment in gnulib-cache.m4.
14572
14573 2008-09-24  Paolo Bonzini  <bonzini@gnu.org>
14574
14575         * NEWS: Document increased portability that sys_select now provides.
14576
14577         * lib/sys_select.in.h: Install select wrapper.
14578         * lib/sys_socket.in.h: Use more descriptive name when there is no
14579         select wrapper.
14580         * lib/winsock-select.c: New.
14581         * m4/sys_select_h.m4: Compile lib/winsock-select.c if WinSock is used.
14582         Require gl_HEADER_SYS_SOCKET.
14583         * modules/sys_select: Depend on alloca, add lib/winsock-select.c.
14584         * modules/sys_select-tests: Copy dependencies from modules/poll-tests.
14585         * tests/test-sys_select.c: Add functional tests.
14586
14587 2008-09-24  Eric Blake  <ebb9@byu.net>
14588
14589         open, fopen: close fd leak in last patch
14590         * lib/open.c (rpl_open): Close fd before returning error.
14591         * lib/fopen.c (rpl_fopen): Close fd before returning error.
14592         * doc/posix-functions/open.texi (open): Document that Irix also
14593         has the bug.
14594         * doc/posix-functions/fopen.texi (fopen): Likewise.
14595         Reported by Paolo Bonzini.
14596
14597 2008-09-24  Bruno Haible  <bruno@clisp.org>
14598
14599         Ensure that a filename ending in a slash cannot be used to access a
14600         non-directory.
14601         * lib/open.c (rpl_open): When the filename ends in a slash, use fstat()
14602         to check whether it's really a directory.
14603         * lib/fopen.c: Include fcntl.h, unistd.h.
14604         (rpl_fopen): When the filename ends in a slash, use open(), fstat(),
14605         and fdopen().
14606         * modules/fopen (Depends-on): Add unistd.
14607         * tests/test-open.c (main): Try to open "/dev/null/" as a directory.
14608         * tests/test-fopen.c (main): Likewise.
14609         * doc/posix-functions/open.texi: Mention the HP-UX, Solaris bug.
14610         * doc/posix-functions/fopen.texi: Likewise.
14611         Reported by Eric Blake.
14612
14613 2008-09-23  Eric Blake  <ebb9@byu.net>
14614
14615         c-stack: avoid compiler optimizations when provoking overflow
14616         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Make
14617         recursion harder to optimize, to ensure a stack overflow occurs.
14618         * tests/test-c-stack.c (recurse): Likewise.
14619         Borrowed from libsigsegv.
14620
14621         c-stack: work around Irix sigaltstack bug
14622         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Check
14623         whether sigaltstack uses wrong end of stack_t (copied in part from
14624         libsigsegv).
14625         * lib/c-stack.c (c_stack_action) [!HAVE_LIBSIGSEGV]: Work around
14626         Irix bug, without requiring an over-allocation.
14627         * doc/posix-functions/sigaltstack.texi (sigaltstack): Document the
14628         bug.
14629
14630         fopen: document mingw bug on directories
14631         * doc/posix-functions/fopen.texi (fopen): Mention mingw bug for
14632         not allowing a stream visiting a directory, even though reading
14633         from such a stream is not portable.
14634
14635 2008-09-23  Paolo Bonzini  <bonzini@gnu.org>
14636
14637         * lib/poll.c: Rewrite.
14638         * modules/poll: Depend on alloca.
14639
14640 2008-09-23  Paolo Bonzini  <bonzini@gnu.org>
14641
14642         * lib/sys_socket.in.h: Do not implement rpl_setsockopt here,
14643         instead define prototypes for a full set of wrappers.  Ensure
14644         that Cygwin does not use the compatibility code, which is only
14645         for MinGW.
14646         * lib/winsock.c: New.
14647         * m4/sys_socket_h.m4: Compile lib/winsock.c if WinSock is being used.
14648         * modules/sys_socket: Add lib/winsock.c.
14649
14650         * modules/poll-tests: Add errno and perror.
14651         * tests/test-poll.c: Use ioctl, not ioctlsocket.
14652
14653 2008-09-23  Paolo Bonzini  <bonzini@gnu.org>
14654
14655         * tests/test-poll.c: Downgrade minimum needed Winsock version.
14656
14657 2008-09-23  Bruno Haible  <bruno@clisp.org>
14658
14659         * doc/posix-functions/*: Add info about functions missing on IRIX 5.3.
14660         * doc/glibc-functions/*: Likewise.
14661
14662 2008-09-23  Simon Josefsson  <simon@josefsson.org>
14663
14664         * tests/test-perror.sh (tmpfiles): Cleanup temporary files on
14665         success.
14666
14667 2008-09-22  Eric Blake  <ebb9@byu.net>
14668             Bruno Haible  <bruno@clisp.org>
14669
14670         vasnprintf: fix x86/glibc regression on printf("%La", 0.0L)
14671         * lib/vasnprintf.c (VASNPRINTF): Support 0.0 on platforms that
14672         supply %A but mishandle pseudo-NaN.
14673         Reported by Simon Josefsson.
14674
14675 2008-09-21  Bruno Haible  <bruno@clisp.org>
14676
14677         * tests/test-lock.c (main): Tweak skip message.
14678         * tests/test-tls.c (main): Likewise.
14679
14680 2008-09-21  Bruno Haible  <bruno@clisp.org>
14681
14682         * m4/sigaction.m4 (gl_SIGACTION): Remove unnecessary AC_SUBST. Check
14683         whether 'struct sigaction' has sa_sigaction here...
14684         (gl_PREREQ_SIG_HANDLER_H): ... not here.
14685         (gl_PREREQ_SIGACTION): Remove unnecessary AC_SUBST.
14686
14687 2008-09-21  Bruno Haible  <bruno@clisp.org>
14688
14689         * MODULES.html.sh (Support for obsolete systems lacking ANSI C 89): New
14690         section.
14691         (Support for systems lacking ANSI C 89): Move stdlib, exit, strtol,
14692         strtoul, memchr, memcmp, memcpy, memmove, memset, strcspn, strpbrk to
14693         the new section.
14694         (Support for obsolete systems lacking POSIX:2001): New section.
14695         (String handling <string.h>): Move strdup to the new section.
14696         Suggested by Simon Josefsson and Paolo Bonzini.
14697
14698 2008-09-21  Bruno Haible  <bruno@clisp.org>
14699
14700         * tests/test-vasnprintf-posix.c (test_function): Allow 3-digit
14701         exponents in %e and %g results on 'long double'. Needed for mingw's
14702         improved *printf functions.
14703         * tests/test-vasprintf-posix.c (test_function): Likewise.
14704         * tests/test-snprintf-posix.h (test_function): Likewise.
14705         * tests/test-sprintf-posix.h (test_function): Likewise.
14706         Reported by Eric Blake.
14707
14708 2008-09-21  Bruno Haible  <bruno@clisp.org>
14709
14710         * tests/test-snprintf-posix.h (test_function): Remove useless ASSERTs.
14711         * tests/test-sprintf-posix.h (test_function): Likewise.
14712
14713 2008-09-21  Bruno Haible  <bruno@clisp.org>
14714
14715         * modules/getpass (Depends-on): Add strdup-posix.
14716
14717         New module 'strdup-posix'.
14718         * modules/strdup-posix: New file.
14719         * m4/strdup.m4 (gl_FUNC_STRDUP_POSIX): New macro.
14720         * lib/string.in.h (strdup): Replace if REPLACE_STRDUP is 1.
14721         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
14722         REPLACE_STRDUP.
14723         * modules/string (Makefile.am): Substitute REPLACE_STRDUP.
14724         * doc/posix-functions/strdup.texi: Mention module strdup-posix.
14725         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
14726         strdup-posix.
14727
14728         * modules/strdup (Depends-on): Remove malloc-posix.
14729
14730 2008-09-20  Bruno Haible  <bruno@clisp.org>
14731
14732         * lib/fstrcmp.c: Add data about branch probabilities, from Ralf
14733         Wildenhues.
14734
14735 2008-09-20  Bruno Haible  <bruno@clisp.org>
14736
14737         Ensure that wint_t gets defined on IRIX 5.3.
14738         * lib/wchar.in.h (wint_t): Define if not defined by the system.
14739         * lib/wctype.in.h (wint_t): Likewise.
14740         (__wctype_wint_t): Remove type.
14741         (isw*): Use wint_t instead of __wctype_wint_t.
14742         * m4/wchar.m4 (gl_WCHAR_H): Invoke gt_TYPE_WINT_T and set HAVE_WINT_T.
14743         * modules/wchar (Files): Add m4/wint_t.m4.
14744         (Makefile.am): Substitute HAVE_WINT_T.
14745         * tests/test-wchar.c: Check that wchar_t and wint_t are defined.
14746         * tests/test-wctype.c: Check that wint_t is defined.
14747         * doc/posix-headers/wchar.texi: Mention the IRIX 5 problem.
14748         * doc/posix-headers/wctype.texi: Likewise.
14749         Reported by Tom G. Christensen <tgc@jupiterrise.com>.
14750
14751 2008-09-18  Bruno Haible  <bruno@clisp.org>
14752
14753         * gnulib-tool (func_exit): Update comment.
14754
14755 2008-09-18  Simon Josefsson  <simon@josefsson.org>
14756
14757         * modules/getaddrinfo (Depends-on): Remove strdup, this module
14758         assumes strdup exists and does not depend on strdup to return
14759         ENOMEM on out of memory conditions.
14760
14761 2008-09-18  Bruno Haible  <bruno@clisp.org>
14762
14763         * lib/vasnprintf.c (VASNPRINTF): When printing Â±0.0L in
14764         NEED_PRINTF_INFINITE_LONG_DOUBLE case with 'e' format, always use two
14765         digits for the exponent.
14766
14767 2008-09-18  Jim Meyering  <meyering@redhat.com>
14768             Bruno Haible  <bruno@clisp.org>
14769
14770         * lib/vasnprintf.c (decimal_point_char): Define also if
14771         NEED_PRINTF_INFINITE_LONG_DOUBLE.
14772
14773 2008-09-16  Bruno Haible  <bruno@clisp.org>
14774         and Eric Blake  <ebb9@byu.net>
14775
14776         vasnprintf: support Irix 5.3
14777         * lib/vasnprintf.c (VASNPRINTF): Also handle -0.0L on platforms
14778         that mishandle long double infinity.
14779         Reported by Tom G. Christensen.
14780
14781 2008-09-16  Bruno Haible  <bruno@clisp.org>
14782
14783         * doc/glibc-functions/scandir.texi: Mention the function is missing on
14784         Solaris 9.
14785         * doc/glibc-functions/alphasort.texi: Likewise.
14786         Reported by Michael Haubenwallner <michael.haubenwallner@salomon.at>.
14787
14788 2008-09-16  Jim Meyering  <meyering@redhat.com>
14789
14790         posix-shell.m4: reject opensolaris's "sh (AT&T Research) 1993-12-28 s+"
14791         * m4/posix-shell.m4 (gl_POSIX_SHELL): Reject a shell that lets
14792         a umask modification leak out of a subshell.  Otherwise, the
14793         opensolaris /bin/sh would be accepted and thus cause unwarranted
14794         failures in the coreutils test suite.
14795
14796 2008-09-16  Paolo Bonzini  <bonzini@gnu.org>
14797
14798         * tests/test-poll.c (connect_to_socket): Allow non-blocking connect
14799         to succeed.
14800
14801 2008-09-16  Jim Meyering  <meyering@redhat.com>
14802
14803         avoid spurious test failure when library is built without ACL support
14804         * m4/acl.m4 (USE_ACL): Define as a shell variable, too, for...
14805         * modules/acl-tests (Makefile.am) [TESTS_ENVIRONMENT]: Add USE_ACL.
14806         * tests/test-file-has-acl.sh: Skip if USE_ACL == 0.
14807         * tests/test-copy-acl.sh: Likewise.
14808
14809 2008-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
14810
14811         * lib/fstrcmp.c (fstrcmp_bounded): Use a second, less quick upper bound
14812         based on character occurrence counts.
14813
14814 2008-09-15  Eric Blake  <ebb9@byu.net>
14815
14816         tests: avoid some compiler warnings
14817         * tests/test-memchr.c (main): Pass NULL indirectly.
14818         * tests/test-closein.c (main): Avoid unused variable.
14819
14820 2008-09-15  Bruno Haible  <bruno@clisp.org>
14821
14822         * m4/errno_h.m4 (gl_HEADER_ERRNO_H_BODY): Test for all the macros that
14823         are missing on OpenBSD 4.0 individually.
14824         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
14825
14826 2008-09-15  Bruno Haible  <bruno@clisp.org>
14827
14828         * doc/posix-headers/errno.texi: Mention the Cygwin problem.
14829         * doc/posix-functions/strerror.texi: Mention also Cygwin.
14830         * doc/posix-functions/perror.texi: Likewise.
14831         * m4/errno_h.m4 (gl_HEADER_ERRNO_H_BODY): Test also whether ECANCELED
14832         is missing.
14833         Reported by Eric Blake.
14834
14835         * lib/errno.in.h: Use replacement values >= 2000.
14836         Reported by Eric Blake.
14837
14838 2008-09-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
14839
14840         * lib/fstrcmp.c (EXTRA_CONTEXT_FIELDS): Add field 'edit_count_limit'.
14841         (EARLY_ABORT): Return true when the edit_count has grown too beyond the
14842         limit.
14843         (fstrcmp_bounded): Initialize the edit_count_limit. Return 0 when
14844         compareseq was aborted.
14845
14846 2008-09-14  Bruno Haible  <bruno@clisp.org>
14847
14848         * lib/fstrcmp.c (EXTRA_CONTEXT_FIELDS): Combine xvec_edit_count and
14849         yvec_edit_count.
14850         (NOTE_DELETE, NOTE_INSERT): Increment the combined edit count.
14851         (fstrcmp_bounded): Simplify result computation accordingly.
14852
14853 2008-09-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
14854
14855         * lib/fstrcmp.h (fstrcmp_bounded): New declaration.
14856         (fstrcmp): Define in terms of fstrcmp_bounded.
14857         * lib/fstrcmp.c (fstrcmp_bounded): Renamed from fstrcmp. Add
14858         lower_bound argument.
14859         Return quickly if the result is certainly < lower_bound.
14860         * tests/test-fstrcmp.c (check_fstrcmp): Test also fstrcmp_bounded.
14861
14862 2008-09-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
14863
14864         * lib/diffseq.h (EARLY_ABORT): New macro.
14865         (compareseq): Change return type to bool. Return true when EARLY_ABORT
14866         evaluates to true.
14867
14868 2008-09-14  Bruno Haible  <bruno@clisp.org>
14869
14870         * modules/perror-tests: New file.
14871         * tests/test-perror.sh: New file.
14872         * tests/test-perror.c: New file.
14873
14874         New module 'perror'.
14875         * lib/stdio.in.h (perror): New declaration.
14876         * lib/perror.c: New file.
14877         * m4/perror.m4: New file.
14878         * modules/perror: New file.
14879         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add perror.
14880         * doc/posix-functions/perror.texi: Mention the perror module.
14881         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Initialize GNULIB_PERROR,
14882         REPLACE_PERROR.
14883         * modules/stdio (Makefile.am): Substitute GNULIB_PERROR,
14884         REPLACE_PERROR.
14885
14886 2008-09-14  Bruno Haible  <bruno@clisp.org>
14887
14888         * modules/stdio (Makefile.am): Reorder to match the order in
14889         lib/stdio.in.h.
14890         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Likewise.
14891
14892 2008-09-13  Bruno Haible  <bruno@clisp.org>
14893
14894         * lib/sys_socket.in.h (EINPROGRESS, ...): Remove definitions.
14895
14896 2008-09-13  Bruno Haible  <bruno@clisp.org>
14897
14898         Extend strerror to cover the added errno values.
14899         * lib/strerror.c: Include errno.h and winsock2.h if it exists.
14900         (rpl_strerror): Provide error messages for the added errno values and
14901         for the WSA* values.
14902         * m4/strerror.m4 (gl_FUNC_STRERROR): Test REPLACE_STRERROR.
14903         (gl_FUNC_STRERROR_SEPARATE): If errno.h is replaced, always replace
14904         strerror.
14905         (gl_PREREQ_STRERROR): Test whether winsock2.h exists.
14906         * modules/strerror (Depends-on): Add errno.
14907         * doc/posix-functions/strerror.texi: Document the change.
14908         * tests/test-strerror.c (main): Check also the string for ETIMEDOUT
14909         and EOVERFLOW.
14910
14911 2008-09-13  Bruno Haible  <bruno@clisp.org>
14912
14913         * modules/EOVERFLOW: Remove file.
14914         * m4/eoverflow.m4: Remove file.
14915         * modules/EOVERFLOW-tests: Remove file.
14916         * tests/test-EOVERFLOW.c: Remove file.
14917         * modules/fprintf-posix (Depends-on): Replace EOVERFLOW with errno.
14918         * modules/ftell (Depends-on): Likewise.
14919         * modules/getdelim (Depends-on): Likewise.
14920         * modules/getugroups (Depends-on): Likewise.
14921         * modules/poll (Depends-on): Likewise.
14922         * modules/snprintf (Depends-on): Likewise.
14923         * modules/sprintf-posix (Depends-on): Likewise.
14924         * modules/vasnprintf (Depends-on): Likewise.
14925         * modules/vasprintf (Depends-on): Likewise.
14926         * modules/vfprintf-posix (Depends-on): Likewise.
14927         * modules/vsnprintf (Depends-on): Likewise.
14928         * modules/vsprintf-posix (Depends-on): Likewise.
14929         * modules/xvasprintf (Depends-on): Likewise.
14930         * modules/unistdio/u8-vasnprintf (Depends-on): Likewise.
14931         * modules/unistdio/u8-vasprintf (Depends-on): Likewise.
14932         * modules/unistdio/u8-vsnprintf (Depends-on): Likewise.
14933         * modules/unistdio/u8-vsprintf (Depends-on): Likewise.
14934         * modules/unistdio/u8-u8-vasnprintf (Depends-on): Likewise.
14935         * modules/unistdio/u8-u8-vasprintf (Depends-on): Likewise.
14936         * modules/unistdio/u8-u8-vsnprintf (Depends-on): Likewise.
14937         * modules/unistdio/u8-u8-vsprintf (Depends-on): Likewise.
14938         * modules/unistdio/u16-u16-vasnprintf (Depends-on): Likewise.
14939         * modules/unistdio/u16-u16-vasprintf (Depends-on): Likewise.
14940         * modules/unistdio/u16-u16-vsnprintf (Depends-on): Likewise.
14941         * modules/unistdio/u16-u16-vsprintf (Depends-on): Likewise.
14942         * modules/unistdio/u16-vasnprintf (Depends-on): Likewise.
14943         * modules/unistdio/u16-vasprintf (Depends-on): Likewise.
14944         * modules/unistdio/u16-vsnprintf (Depends-on): Likewise.
14945         * modules/unistdio/u16-vsprintf (Depends-on): Likewise.
14946         * modules/unistdio/u32-vasnprintf (Depends-on): Likewise.
14947         * modules/unistdio/u32-vasprintf (Depends-on): Likewise.
14948         * modules/unistdio/u32-vsnprintf (Depends-on): Likewise.
14949         * modules/unistdio/u32-vsprintf (Depends-on): Likewise.
14950         * modules/unistdio/u32-u32-vasnprintf (Depends-on): Likewise.
14951         * modules/unistdio/u32-u32-vasprintf (Depends-on): Likewise.
14952         * modules/unistdio/u32-u32-vsnprintf (Depends-on): Likewise.
14953         * modules/unistdio/u32-u32-vsprintf (Depends-on): Likewise.
14954         * modules/unistdio/ulc-fprintf (Depends-on): Likewise.
14955         * modules/unistdio/ulc-vasnprintf (Depends-on): Likewise.
14956         * modules/unistdio/ulc-vasprintf (Depends-on): Likewise.
14957         * modules/unistdio/ulc-vfprintf (Depends-on): Likewise.
14958         * modules/unistdio/ulc-vsnprintf (Depends-on): Likewise.
14959         * modules/unistdio/ulc-vsprintf (Depends-on): Likewise.
14960         * MODULES.html.sh: Remove EOVERFLOW.
14961         * NEWS: Mention the change.
14962
14963 2008-09-13  Bruno Haible  <bruno@clisp.org>
14964
14965         * modules/errno-tests: New file.
14966         * tests/test-errno.c: New file, incorporating tests/test-EOVERFLOW.c.
14967
14968         * lib/errno.in.h: New file.
14969         * m4/errno_h.m4: New file, borrowing from m4/eoverflow.m4.
14970         * modules/errno: New file.
14971         * doc/posix-headers/errno.texi: Update documentation.
14972         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add errno.
14973
14974 2008-09-13  Bruno Haible  <bruno@clisp.org>
14975
14976         * tests/test-poll.c: Use #if for native Windows, rather than testing
14977         __MSVCRT__.
14978
14979 2008-09-13  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
14980             Bruno Haible  <bruno@clisp.org>
14981
14982         * lib/glob.c: Don't include <pwd.h> on native Windows.
14983         (WINDOWS32): New macro.
14984         (glob) [WINDOW32]: Provide a reasonable replacement for getenv("HOME").
14985
14986 2008-09-13  Bruno Haible  <bruno@clisp.org>
14987
14988         * lib/glthread/cond.h [USE_SOLARIS_THREADS]
14989         (ETIMEDOUT): Remove macro.
14990         (glthread_cond_timedwait_multithreaded): New declaration.
14991         (glthread_cond_timedwait): Use it.
14992         * lib/glthread/cond.c [USE_SOLARIS_THREADS]
14993         (glthread_cond_timedwait_multithreaded): New function.
14994
14995 2008-09-12  Paolo Bonzini  <bonzini@gnu.org>
14996
14997         * modules/poll-tests: Do not check for io.h.
14998         * tests/test-poll.c: Check for __MSVCRT__ instead.
14999
15000 2008-09-12  Paolo Bonzini  <bonzini@gnu.org>
15001
15002         * lib/sys_socket.in.h (EINPROGRESS): Define for Winsock case.
15003         * modules/poll-tests: Add inet_pton, stdbool, sockets.
15004         * tests/test-poll.c: Use them.  Use _pipe on Windows.
15005
15006 2008-09-12  Paolo Bonzini  <bonzini@gnu.org>
15007
15008         * modules/poll-tests: New.
15009         * tests/test-poll.c: New.
15010
15011 2008-09-12  Eric Blake  <ebb9@byu.net>
15012
15013         frexp: test for NetBSD failure on -0.0
15014         * m4/frexp.m4 (gl_FUNC_FREXP_WORKS): Enhance test, since some, but
15015         not all, bugs from NetBSD 3.0 have been fixed.
15016         * doc/posix-functions/frexp.texi (frexp): Document bug.
15017         Reported by Thomas Klausner.
15018
15019         signbit: work around bug of HP-UX 10.20 cc with -0.0 literal
15020         * m4/signbit.m4 (gl_SIGNBIT_TEST_PROGRAM): Rewrite test to avoid
15021         literal -0.0.
15022         Reported by Jonathan C. Patschke <jp@centtech.com>.
15023
15024 2008-09-11  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
15025
15026         * lib/glthread/cond.h: Use dummy implementation also if
15027         USE_WIN32_THREADS.
15028
15029 2008-09-11  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
15030
15031         * modules/fnmatch-posix (License): Change to LGPLv2+.
15032         * modules/fnmatch-gnu (License): Likewise.
15033
15034 2008-09-11  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
15035
15036         * lib/poll.c (poll): Fix polling unconnected server sockets on WIN32.
15037
15038 2008-09-11  Jim Meyering  <meyering@redhat.com>
15039
15040         * users.txt: Add gtk-vnc.
15041
15042 2008-09-08  Simon Josefsson  <simon@josefsson.org>
15043
15044         * tests/test-bitrotate.c: Test 8/16-bit rotates with 0 and maximum
15045         rotate amounts.
15046
15047         * lib/bitrotate.h: Doc fix, mention that N can be wider than minimally
15048         required for 16-bit and 8-bit rotates.
15049         * lib/bitrotate.h (rotl64, rotr64, rotl32, rotl32, rotl16, rotr16,
15050         rotl8, rotr8): Use UINT64_MAX, UINT32_MAX, UINT16_MAX, and
15051         UINT8_MAX instead of hard-coded constants.
15052         Suggested by Paul Eggert.
15053
15054 2008-09-07  Bruno Haible  <bruno@clisp.org>
15055
15056         * tests/test-striconveh.c (main): Check behaviour when converting from
15057         UTF-7.
15058
15059         Make striconveh work better with stateful encodings.
15060         * lib/striconveh.c (iconv_carefully, iconv_carefully_1): Don't assume
15061         that iconv does not increment the inptr when returning -1/EINVAL.
15062
15063 2008-09-07  Bruno Haible  <bruno@clisp.org>
15064
15065         * build-aux/config.rpath: Update according to libtool-2.2.6.
15066         * build-aux/config.libpath: Likewise.
15067
15068 2008-09-06  Bruno Haible  <bruno@clisp.org>
15069
15070         * lib/freadahead.c (freadahead): Add conditional for SLOW_BUT_NO_HACKS.
15071         * lib/freadptr.c (freadptr): Likewise.
15072         * lib/freadseek.c (freadptrinc): Likewise.
15073         Reported by Simon Josefsson.
15074
15075 2008-09-06  Bruno Haible  <bruno@clisp.org>
15076
15077         * modules/freadptr (License): Change to LGPLv2+.
15078         * modules/freadseek (License): Likewise.
15079         Suggested by Eric Blake.
15080
15081         * modules/memchr2 (License): Change to LGPLv2+.
15082         Approved by Eric Blake.
15083
15084 2008-09-04  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
15085             Bruno Haible  <bruno@clisp.org>
15086
15087         Make gnulib-tool work with native 'sed' on AIX.
15088         * gnulib-tool (sed_noop): New variable.
15089         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am, func_import,
15090         func_add_or_update, func_create_testdir): Use it to initialize sed
15091         script variables.
15092         Reported by Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
15093
15094 2008-09-04  Albert Chin  <bug-gnulib@mlists.thewrittenword.com>
15095             Bruno Haible  <bruno@clisp.org>
15096
15097         * m4/include_next.m4 (gl_INCLUDE_NEXT): Add check whether #include_next
15098         also works after #include directives.
15099
15100 2008-09-04  OndÅ™ej Vašík  <ovasik@redhat.com>
15101
15102         getdate.y: reject an out-of-range timezone value
15103         * lib/getdate.y (time_zone_hhmm): Reject any TZ offset that is outside
15104         the range [-24...+24].  When specified with only one or two digits,
15105         * tests/test-getdate.c: Tests for the fix.
15106         * doc/getdate.texi: Document this change.
15107
15108 2008-09-03  Bruno Haible  <bruno@clisp.org>
15109
15110         * doc/glibc-functions/strverscmp.texi: Mention the strverscmp module.
15111
15112 2008-09-02  Simon Josefsson  <simon@josefsson.org>
15113
15114         * lib/bitrotate.h (rotl64, rotr64): Add.  Suggested by Bruce Korb
15115         <bruce.korb@gmail.com> with ideas from Ben Pfaff
15116         <blp@cs.stanford.edu>, Bruno Haible <bruno@clisp.org> and Eric
15117         Blake <ebb9@byu.net>.
15118
15119         * tests/test-bitrotate.c: Add more test vectors.
15120
15121 2008-09-02  Eric Blake  <ebb9@byu.net>
15122
15123         vasnprintf-posix: handle large precision via %.*d
15124         * lib/vasnprintf.c (VASNPRINTF): Don't pass precision to snprintf
15125         when handling it ourselves.
15126         * tests/test-vasnprintf-posix.c (test_function): Add test.
15127         * tests/test-snprintf-posix.h (test_function): Likewise.
15128         * tests/test-sprintf-posix.h (test_function): Likewise.
15129         * tests/test-vasprintf-posix.c (test_function): Likewise.
15130         Reported by Alain Guibert.
15131
15132 2008-09-01  Eric Blake  <ebb9@byu.net>
15133
15134         c-stack: make configure-time check more robust
15135         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Check for
15136         successful sigaction call.
15137         Reported by Tom G. Christensen.
15138
15139 2008-09-01  Bruno Haible  <bruno@clisp.org>
15140
15141         New module 'findprog-lgpl'.
15142         * modules/findprog-lgpl: New file.
15143         * lib/findprog-lgpl.c: New file.
15144         * lib/findprog.c: Compile nothing in findprog.c if findprog-lgpl.c is
15145         also compiled. Consider the possibly defined symbol IN_FINDPROG_LGPL
15146         to decide whether to use strdup or xstrdup, concatenated_filename or
15147         xconcatenated_filename.
15148
15149 2008-09-01  Bruno Haible  <bruno@clisp.org>
15150
15151         Split module 'concat-filename' into 'concat-filename' (LGPL) and
15152         'xconcat-filename' (GPL).
15153         * modules/concat-filename (Depends-on): Add malloc-posix, remove xalloc.
15154         (License): Change to LGPLv2+.
15155         * modules/xconcat-filename: New file.
15156         * lib/concat-filename.h (concatenated_filename): Change specification.
15157         (xconcatenated_filename): New declaration.
15158         * lib/concat-filename.c: Include errno.h, stdlib.h, not xalloc.h.
15159         (concatenated_filename): Use malloc instead of xalloc. Handle out-of-
15160         memory situations.
15161         * lib/xconcat-filename.c: New file.
15162         * NEWS: Mention the change.
15163         * lib/findprog.c: Include concat-filename.h, not filename.h.
15164         (find_in_path): Use xconcatenated_filename instead of
15165         concatenated_filename.
15166         * lib/javacomp.c: Include concat-filename.h, not filename.h.
15167         (is_envjavac_gcj43_usable, is_envjavac_oldgcj_14_14_usable,
15168         is_envjavac_oldgcj_14_13_usable, is_envjavac_nongcj_usable,
15169         is_gcj_present, is_gcj43_usable, is_oldgcj_14_14_usable,
15170         is_oldgcj_14_13_usable, is_javac_usable): Use xconcatenated_filename
15171         instead of concatenated_filename.
15172         * lib/javaexec.c: Include concat-filename.h, not filename.h.
15173         (execute_java_class): Use xconcatenated_filename instead of
15174         concatenated_filename.
15175         * modules/findprog (Depends-on): Add xconcat-filename, remove filename.
15176         * modules/javacomp (Depends-on): Likewise.
15177         * modules/javaexec (Depends-on): Likewise.
15178
15179 2008-09-01  Bruno Haible  <bruno@clisp.org>
15180
15181         Split module 'filename' into 'filename' and 'concat-filename'.
15182         * modules/filename: Keep only lib/filename.h.
15183         (License): Change to LGPLv2+.
15184         * modules/concat-filename: New file, extracted from modules/filename.
15185         * lib/filename.h (concatenated_filename): Remove declaration.
15186         * lib/concat-filename.h: New file, extracted from lib/filename.h.
15187         * lib/concat-filename.c: Include concat-filename.h.
15188         * NEWS: Mention the change.
15189
15190 2008-09-01  Simon Josefsson  <simon@josefsson.org>
15191
15192         * lib/bitrotate.h (rotl8, rotr8): Add.
15193
15194         * modules/bitrotate (configure.ac): Need
15195         AC_REQUIRE([AC_C_INLINE]).
15196         (Description): Mention stdint.h.  Reported by Bruno Haible
15197         <bruno@clisp.org>.
15198
15199         * lib/bitrotate.h (rotr16, rotl16): Fix mask value.  Reported by
15200         Paolo Bonzini <bonzini@gnu.org>.
15201
15202 2008-08-31  Bruno Haible  <bruno@clisp.org>
15203
15204         Assume Solaris specific bi-arch conventions on Solaris systems.
15205         * m4/lib-prefix.m4 (AC_LIB_PREPARE_MULTILIB): On Solaris in 64-bit
15206         mode, set acl_libdirstem to lib/64. Also set acl_libdirstem2.
15207         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): If acl_libdirstem does not
15208         work, try acl_libdirstem2 as fallback. Otherwise treat acl_libdirstem2
15209         like acl_libdirstem.
15210         (AC_LIB_LINKFLAGS_FROM_LIBS): Treat acl_libdirstem2 like
15211         acl_libdirstem.
15212         * NEWS: Mention the change.
15213         Reported by Ben Taylor <bentaylor.solx86@gmail.com>.
15214
15215 2008-08-31  Jim Meyering  <meyering@redhat.com>
15216
15217         * lib/strftime.h: Add comments describing the two added arguments.
15218
15219         remove duplicate #include directives
15220         * lib/chdir-long.c [TEST_CHDIR]: Remove duplicate #include <stdio.h>.
15221         * lib/putenv.c: Remove duplicate #include <stdlib.h>.
15222
15223 2008-08-31  Bruno Haible  <bruno@clisp.org>
15224
15225         New module 'sigpipe-die'.
15226         * modules/sigpipe-die: New file.
15227         * lib/sigpipe-die.h: New file.
15228         * lib/sigpipe-die.c: New file.
15229         * MODULES.html.sh (Signal handling): Add sigpipe-die.
15230
15231 2008-08-31  Bruno Haible  <bruno@clisp.org>
15232
15233         Don't override previously installed signal handlers.
15234         * lib/fatal-signal.c (saved_sigactions): New variable.
15235         (uninstall_handlers): Reset the signal to the saved handler, not
15236         to SIG_DFL (except when ignored).
15237         (install_handlers): Save the previous handlers.
15238
15239 2008-08-30  Bruno Haible  <bruno@clisp.org>
15240
15241         * gnulib-tool (func_reset_sigpipe): New function.
15242         (func_get_automake_snippet, func_modules_transitive_closure,
15243         func_import): Invoke it before a join command that reads from stdin,
15244         to avoid "echo: write error: Broken pipe" error messages on stderr.
15245         Reported by Sam Steingold <sds@gnu.org>.
15246
15247 2008-08-30  Bruno Haible  <bruno@clisp.org>
15248
15249         * m4/fopen.m4 (gl_FUNC_FOPEN): Test against bug with trailing slash.
15250         Code copied from m4/open.m4.
15251         * lib/fopen.c (rpl_fopen): Return NULL if the mode specifies write
15252         access and the filename ends in a slash. Code copied from lib/open.c.
15253         * doc/posix-functions/fopen.texi: Document bug with trailing slash.
15254         * tests/test-fopen.c (main): Check against bug with trailing slash.
15255
15256 2008-08-29  Bruno Haible  <bruno@clisp.org>
15257
15258         Avoid some "gcc -pedantic" warnings.
15259         * m4/include_next.m4 (gl_INCLUDE_NEXT): Set also PRAGMA_SYSTEM_HEADER.
15260         * lib/arpa_inet.in.h: Use PRAGMA_SYSTEM_HEADER.
15261         * lib/dirent.in.h: Likewise.
15262         * lib/fcntl.in.h: Likewise.
15263         * lib/float.in.h: Likewise.
15264         * lib/iconv.in.h: Likewise.
15265         * lib/inttypes.in.h: Likewise.
15266         * lib/locale.in.h: Likewise.
15267         * lib/math.in.h: Likewise.
15268         * lib/netinet_in.in.h: Likewise.
15269         * lib/search.in.h: Likewise.
15270         * lib/signal.in.h: Likewise.
15271         * lib/stdarg.in.h: Likewise.
15272         * lib/stdint.in.h: Likewise.
15273         * lib/stdio.in.h: Likewise.
15274         * lib/stdlib.in.h: Likewise.
15275         * lib/string.in.h: Likewise.
15276         * lib/strings.in.h: Likewise.
15277         * lib/sys_select.in.h: Likewise.
15278         * lib/sys_socket.in.h: Likewise.
15279         * lib/sys_stat.in.h: Likewise.
15280         * lib/sys_time.in.h: Likewise.
15281         * lib/sysexits.in.h: Likewise.
15282         * lib/time.in.h: Likewise.
15283         * lib/unistd.in.h: Likewise.
15284         * lib/wchar.in.h: Likewise.
15285         * lib/wctype.in.h: Likewise.
15286         * modules/arpa_inet (Makefile.am): Also substitute PRAGMA_SYSTEM_HEADER.
15287         * modules/fchdir (Makefile.am): Likewise.
15288         * modules/fcntl (Makefile.am): Likewise.
15289         * modules/float (Makefile.am): Likewise.
15290         * modules/iconv_open (Makefile.am): Likewise.
15291         * modules/inttypes (Makefile.am): Likewise.
15292         * modules/locale (Makefile.am): Likewise.
15293         * modules/math (Makefile.am): Likewise.
15294         * modules/netinet_in (Makefile.am): Likewise.
15295         * modules/search (Makefile.am): Likewise.
15296         * modules/signal (Makefile.am): Likewise.
15297         * modules/stdarg (Makefile.am): Likewise.
15298         * modules/stdint (Makefile.am): Likewise.
15299         * modules/stdio (Makefile.am): Likewise.
15300         * modules/stdlib (Makefile.am): Likewise.
15301         * modules/string (Makefile.am): Likewise.
15302         * modules/strings (Makefile.am): Likewise.
15303         * modules/sys_select (Makefile.am): Likewise.
15304         * modules/sys_socket (Makefile.am): Likewise.
15305         * modules/sys_stat (Makefile.am): Likewise.
15306         * modules/sys_time (Makefile.am): Likewise.
15307         * modules/sysexits (Makefile.am): Likewise.
15308         * modules/time (Makefile.am): Likewise.
15309         * modules/unistd (Makefile.am): Likewise.
15310         * modules/wchar (Makefile.am): Likewise.
15311         * modules/wctype (Makefile.am): Likewise.
15312         Reported by Reuben Thomas <rrt@sc3d.org>.
15313
15314 2008-08-29  Bruno Haible  <bruno@clisp.org>
15315
15316         * m4/include_next.m4 (gl_INCLUDE_NEXT): Don't define HAVE_INCLUDE_NEXT
15317         any more.
15318
15319 2008-08-29  Simon Josefsson  <simon@josefsson.org>
15320
15321         * MODULES.html.sh (Misc): Add bitrotate.
15322
15323         * modules/bitrotate: New file.
15324
15325         * lib/bitrotate.h: New file.
15326
15327         * modules/bitrotate-tests: New file.
15328
15329         * tests/test-bitrotate.c: New file.
15330
15331         * modules/crypto/gc-arctwo, modules/crypto/arctwo: Add dependency
15332         on the bitrotate module.
15333
15334         * lib/arctwo.c: Use new bitrotate module.
15335
15336 2008-08-29  Jim Meyering  <meyering@redhat.com>
15337
15338         bootstrap: merge changes from coreutils
15339         * build-aux/bootstrap (cp_mark_as_generated): Preserve perms
15340         of copied files.  Remove a kludge, now that this is fixed.
15341         * build-aux/bootstrap: Fix unportable expr usage. (by Ralf Wildenhues)
15342         * build-aux/bootstrap: Remove $bt and $bt2 also when not using gettext.
15343         * build-aux/bootstrap: Remove coreutils-specific SUBDIRS-related code.
15344
15345 2008-08-29  Bruno Haible  <bruno@clisp.org>
15346
15347         * MODULES.html.sh: Remove --cvs-urls option.
15348
15349 2008-08-28  Jose E. Marchesi  <jemarch@gnu.org>  (tiny change)
15350
15351         maint.mk: adjust to file name change
15352         * top/maint.mk: s/Makefile.cfg/cfg.mk/.
15353
15354 2008-08-28  Jim Meyering  <meyering@redhat.com>
15355
15356         * modules/getndelim2 (License): Relicense to LGPLv2+.
15357         Approved by Richard Stallman for the version of 1995, and by
15358         Paul Eggert, Bruno Haible, Eric Blake for their contributions.
15359
15360 2008-08-27  Paolo Bonzini  <bonzini@gnu.org>
15361
15362         * lib/getdelim.c (flockfile, funlockfile): Make all of them
15363         dummy if one is not available.  Do not touch them if
15364         USE_UNLOCKED_IO, instead letting unlocked-io.h do that.
15365         (getc_maybe_unlocked): New.
15366         * m4/getdelim.m4 (gl_PREREQ_GETDELIM): Check for getc_unlocked.
15367
15368 2008-08-26  Eric Blake  <ebb9@byu.net>
15369
15370         doc/INSTALL: resync from autoconf
15371         * doc/Makefile (INSTALL, INSTALL.ISO, INSTALL.UTF-8): Simplify.
15372         (INSTALL_PRELUDE): Delete; this is done more efficiently by
15373         moving...
15374         * install.texi [!autoconf]: ...here.  Resync from autoconf.
15375         * INSTALL: Regenerate.
15376         * INSTALL.ISO: New file.
15377         * INSTALL.UTF-8: Likewise.
15378
15379 2008-08-26  Jim Meyering  <meyering@redhat.com>
15380
15381         GNUmakefile: cfg.mk definitions override default autoreconf-rerun policy
15382         * top/GNUmakefile (_is-dist-target, _is-install-target): Make
15383         these definitions conditional, so that they may be overridden, too.
15384
15385 2008-08-26  Bruno Haible  <bruno@clisp.org>
15386
15387         Generate INSTALL file variants with prettier quotes.
15388         * doc/Makefile (INSTALL_PRELUDE): New macro.
15389         (INSTALL): Use it.
15390         (INSTALL.ISO, INSTALL.UTF-8): New rules.
15391
15392 2008-08-26  Bruno Haible  <bruno@clisp.org>
15393
15394         Run makeinfo in an English locale.
15395         * doc/Makefile (MAKEINFO): New variable.
15396
15397 2008-08-26  Bruno Haible  <bruno@clisp.org>
15398
15399         * doc/Makefile (INSTALL): Use --no-validate instead of --no-warn.
15400         Suggested by Eric Blake.
15401
15402 2008-08-25  Bruno Haible  <bruno@clisp.org>
15403
15404         * doc/Makefile (INSTALL): Generate with @firstparagraphindent set.
15405
15406 2008-08-25  Eric Blake  <ebb9@byu.net>
15407
15408         c-stack: test that stack overflow can be caught
15409         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Also check
15410         that platform allows handling stack overflow; at least OS/2 EMX
15411         has sigaltstack, but crashes before transferring control to
15412         handler on stack overflow.
15413         * lib/c-stack.c [HAVE_SIGALTSTACK]: Adjust conditions to also
15414         check for HAVE_STACK_OVERFLOW_HANDLING.
15415         Reported by Elbert Pol.
15416
15417 2008-08-25  Bruno Haible  <bruno@clisp.org>
15418
15419         * doc/posix-functions/strftime.texi: Fix description of strftime
15420         module.
15421
15422 2008-08-24  Bruno Haible  <bruno@clisp.org>
15423
15424         * tests/uniwidth/test-uc_width2.c: New file.
15425         * tests/uniwidth/test-uc_width2.sh: New file.
15426         * modules/uniwidth/width-tests (Files): Add the new files.
15427         (TESTS): Add uniwidth/test-uc_width2.sh.
15428         (TESTS_ENVIRONMENT): New variable.
15429         (check_PROGRAMS): Add test-uc_width2.
15430         (test_uc_width2_SOURCES): New variable.
15431
15432         Fix uc_width(0x00AB) bug, introduced on 2007-07-08.
15433         * lib/uniwidth/width.c (nonspacing_table_data): Set bit for 0x00AD,
15434         not 0x00AB.
15435         Reported by Alexander V. Lukyanov <lav@netis.ru>.
15436
15437 2008-08-22  Eric Blake  <ebb9@byu.net>
15438
15439         test-lock, test-tls: mention why a test is skipped
15440         * tests/test-lock.c (main) [!USE_*_THREADS]: Print why test is
15441         skipped.
15442         * tests/test-tls.c (main) [!USE_*_THREADS]: Likewise.
15443
15444         count-one-bits: relax license
15445         * modules/count-one-bits (License): Relicense to LGPLv2+.
15446         Suggested by Ludovic Courtès, approved by Ben Pfaff.
15447
15448 2008-08-22  Andreas Schwab  <schwab@suse.de>
15449
15450         * m4/obstack-printf-posix.m4 (gl_FUNC_OBSTACK_PRINTF_POSIX):
15451         Remove spurious space in assignment.
15452
15453 2008-08-21  Simon Josefsson  <simon@josefsson.org>
15454
15455         * m4/autobuild.m4: Use TZ=UTC0 instead of TZ=UTC.  Reported by
15456         Paul Eggert <eggert@CS.UCLA.EDU>.
15457
15458 2008-08-20  Paolo Bonzini  <bonzini@gnu.org>
15459
15460         * modules/gettext: Add m4/threadlib.m4.
15461
15462 2008-08-19  Eric Blake  <ebb9@byu.net>
15463
15464         test-c-stack: fix compilation failure on FreeBSD 5.0
15465         * tests/test-c-stack.c [HAVE_SETRLIMIT]: Include prerequisite
15466         headers before <sys/resource.h>.
15467         * doc/posix-headers/sys_resource.texi (sys/resource.h): Document
15468         the bug.
15469         Reported by Nelson H. F. Beebe.
15470
15471         strverscmp: migrate from "strverscmp.h" to <string.h>
15472         * modules/string (Makefile.am): Add new hooks.
15473         * modules/strverscmp (Files): Remove strverscmp.h.
15474         (Depends-on): Add string.
15475         (configure.ac): Add indicator.
15476         (Include): Mention new header.
15477         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Provide new
15478         defaults.
15479         * m4/strverscmp.m4 (gl_FUNC_STRVERSCMP): Inform string module of
15480         results.
15481         * lib/strverscmp.h: Delete.
15482         * lib/string.in.h (strverscmp): Provide declaration, when needed.
15483         * tests/test-strverscmp.c (includes): Adjust client.
15484         * lib/check-version.c (includes): Likewise.
15485         * NEWS: Document the change.
15486
15487         strverscmp: add unit test
15488         * modules/strverscmp-tests: New file.
15489         * tests/test-strverscmp.c: Likewise.
15490
15491 2008-08-19  Simon Josefsson  <simon@josefsson.org>
15492
15493         * lib/gc-gnulib.c: Indentation cleanup.  Add some comments
15494         regarding Windows crypto stuff, from Mono.
15495
15496 2008-08-19  Adam Strzelecki <ono@java.pl>  (tiny change)
15497
15498         * lib/gc-gnulib.c: Use CRYPT_VERIFY_CONTEXT.  Try to use Intel CSP
15499         if present, for intel RND.  Return error on failures.
15500
15501 2008-08-18  Ben Pfaff  <blp@gnu.org>
15502
15503         gitlog-to-changelog: give better diagnostic for failed pipe-open
15504         * build-aux/gitlog-to-changelog: Improve error message: suggest
15505         that the version of Git may be too old.
15506
15507 2008-08-18  Simon Josefsson  <simon@josefsson.org>
15508
15509         * m4/autobuild.m4: Use TZ=UTC to avoid time zone complexity.  Use
15510         ISO 8601 format.  Suggested by Greg Troxel <gdt@ir.bbn.com>.
15511
15512 2008-08-18  Bruno Haible  <bruno@clisp.org>
15513
15514         * lib/glthread/thread.h [USE_SOLARIS_THREADS]: Use thread_in_use(), not
15515         pthread_in_use().
15516
15517 2008-08-18  Bruno Haible  <bruno@clisp.org>
15518
15519         * lib/glthread/threadlib.c: Include <pthread.h>.
15520
15521 2008-08-18  Bruno Haible  <bruno@clisp.org>
15522
15523         * lib/glthread/lock.h [USE_SOLARIS_THREADS]: Fix
15524         glthread_recursive_lock_* macros.
15525         * lib/glthread/lock.c (glthread_recursive_lock_destroy_multithreaded):
15526         Fix syntax error.
15527
15528 2008-08-18  Bruno Haible  <bruno@clisp.org>
15529
15530         * lib/glthread/thread.c: Avoid forcing a context switch right after
15531         thread creation.
15532
15533 2008-08-17  Bruno Haible  <bruno@clisp.org>
15534
15535         * lib/glthread/thread.c: New file, based on code from tests/test-lock.c.
15536         * lib/glthread/thread.h: Provide Win32 specific implementation.
15537         * modules/thread (Files): Add lib/glthread/thread.c.
15538         (Depends-on): Add lock.
15539         (Makefile.am): Add glthread/thread.c to lib_SOURCES.
15540
15541 2008-08-17  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
15542
15543         New module 'yield'.
15544         * modules/yield: New file.
15545         * lib/glthread/yield.h: New file.
15546         * m4/yield.m4: New file.
15547         * MODULES.html.sh (Multithreading): Add yield.
15548
15549 2008-08-17  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
15550
15551         New module 'thread'.
15552         * modules/thread: New file.
15553         * lib/glthread/thread.h: New file.
15554         * m4/thread.m4: New file.
15555         * MODULES.html.sh (Multithreading): Add thread.
15556
15557 2008-08-17  Bruno Haible  <bruno@clisp.org>
15558
15559         * lib/glthread/lock.h: Include <stdlib.h> always.
15560         * lib/glthread/tls.h: Likewise.
15561         * lib/glthread/cond.h: Likewise.
15562
15563 2008-08-17  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
15564
15565         New module 'cond'.
15566         * modules/cond: New file.
15567         * lib/glthread/cond.h: New file.
15568         * lib/glthread/cond.c: New file.
15569         * m4/cond.m4: New file.
15570         * MODULES.html.sh (Multithreading): Add cond.
15571
15572 2008-08-16  Eric Blake  <ebb9@byu.net>
15573
15574         c-stack: fix regression on Irix 5.3 from 2008-06-21
15575         * m4/c-stack.m4 (gl_PREREQ_C_STACK): Move check for
15576         sa_sigaction...
15577         * m4/sigaction.m4 (gl_PREREQ_SIG_HANDLER_H): ...here.
15578         (gl_PREREQ_SIGACTION): Depend on sig-handler.h prereq's.
15579         * m4/signal_h.m4 (gl_SIGNAL_H_DEFAULTS): Set the default.
15580         * modules/signal (Makefile.am): Use the value.
15581         * lib/signal.in.h (sa_sigaction) [HAVE_SIGACTION
15582         && !HAVE_STRUCT_SIGACTION_SA_SIGACTION]: Define.
15583         * doc/posix-headers/signal.texi (signal.h): Document this
15584         portability issue.
15585         * doc/posix-functions/sigaction.texi (sigaction): Likewise.
15586         Reported by Tom G. Christensen.
15587
15588 2008-08-17  Bruno Haible  <bruno@clisp.org>
15589
15590         New module 'threadlib'.
15591         * modules/threadlib: New file.
15592         * lib/glthread/threadlib.c: New file, extracted from
15593         lib/glthread/lock.c.
15594         * lib/glthread/lock.c (dummy_thread_func, glthread_in_use): Remove
15595         functions.
15596         * m4/threadlib.m4: New file, from m4/lock.m4, renaming gl_LOCK to
15597         gl_THREADLIB and gl_LOCK_EARLY to gl_THREADLIB_EARLY.
15598         * m4/lock.m4 (gl_LOCK_EARLY, gl_LOCK_EARLY_BODY, gl_LOCK_BODY): Remove
15599         macros.
15600         (gl_LOCK): Just require gl_THREADLIB and perform checks for lock.h.
15601         (gl_DISABLE_THREADS): Remove macro.
15602         * modules/lock (Files): Remove build-aux/config.rpath.
15603         (Depends-on): Remove havelib. Add threadlib.
15604         (configure.ac-early): Remove section.
15605         * m4/tls.m4 (gl_TLS): Require gl_THREADLIB instead of gl_LOCK.
15606         * modules/tls (Depends-on): Remove lock. Add threadlib.
15607         (Link): New section, copied from threadlib.
15608         * MODULES.html.sh (Multithreading): Add threadlib.
15609
15610 2008-08-14  Bruno Haible  <bruno@clisp.org>
15611
15612         * lib/glthread/lock.h (glthread_lock_lock, glthread_lock_unlock,
15613         glthread_lock_destroy, glthread_rwlock_rdlock, glthread_rwlock_wrlock,
15614         glthread_rwlock_unlock, glthread_rwlock_destroy,
15615         glthread_recursive_lock_lock, glthread_recursive_lock_unlock,
15616         glthread_recursive_lock_destroy): Define as macros always.
15617         * lib/glthread/lock.c (glthread_lock_lock_func): Renamed from
15618         glthread_lock_lock.
15619         (glthread_lock_unlock_func): Renamed from glthread_lock_unlock.
15620         (glthread_lock_destroy_func): Renamed from glthread_lock_destroy.
15621         (glthread_rwlock_rdlock_func): Renamed from glthread_rwlock_rdlock.
15622         (glthread_rwlock_wrlock_func): Renamed from glthread_rwlock_wrlock.
15623         (glthread_rwlock_unlock_func): Renamed from glthread_rwlock_unlock.
15624         (glthread_rwlock_destroy_func): Renamed from glthread_rwlock_destroy.
15625         (glthread_recursive_lock_lock_func): Renamed from
15626         glthread_recursive_lock_lock.
15627         (glthread_recursive_lock_unlock_func): Renamed from
15628         glthread_recursive_lock_unlock.
15629         (glthread_recursive_lock_destroy_func): Renamed from
15630         glthread_recursive_lock_destroy.
15631
15632 2008-08-14  Bruno Haible  <bruno@clisp.org>
15633
15634         * lib/glthread/lock.h: Renamed from lib/lock.h.
15635         * lib/glthread/lock.c: Renamed from lib/lock.c. Update includes.
15636         * lib/glthread/tls.h: Renamed from lib/tls.h.
15637         * lib/glthread/tls.c: Renamed from lib/tls.c. Update includes.
15638         * lib/fstrcmp.c: Update includes.
15639         * lib/strsignal.c: Update includes.
15640         * modules/lock (Files, Makefile.am): Update.
15641         (Include): Change to "glthread/lock.h".
15642         * modules/tls (Files, Makefile.am): Update.
15643         (Include): Change to "glthread/tls.h".
15644         * tests/test-lock.c: Update includes.
15645         * tests/test-tls.c: Update includes.
15646         * NEWS: Mention the renamed header files.
15647
15648 2008-08-11  Jim Meyering  <meyering@redhat.com>
15649
15650         * lib/fts_.h: Fix grammar (insert a missing "is") in a comment.
15651
15652 2008-08-11  Eric Blake  <ebb9@byu.net>
15653
15654         test-c-stack: avoid C99-ism
15655         * tests/test-c-stack.c (main): Fix whitespace, move declaration
15656         before statement.
15657         Reported by Alain Guibert.
15658
15659 2008-08-10  Jim Meyering  <meyering@redhat.com>
15660
15661         ensure that return value of uinttostr et al are not ignored
15662         * lib/inttostr.h (__GNUC_PREREQ): Define.
15663         (__attribute_warn_unused_result__): Define.
15664         (offtostr, imaxtostr, umaxtostr, uinttostr): Apply the attribute.
15665
15666 2008-08-07  Paolo Bonzini  <bonzini@gnu.org>
15667
15668         * lib/lock.c (glthread_recursive_lock_init_multithreaded)
15669         [!PTHREAD_RECURSIVE_MUTEX_INITIALIZER]: Fix typo.
15670
15671 2008-08-07  Jim Meyering  <meyering@redhat.com>
15672
15673         * m4/inet_pton.m4: Fix typo in comment: s/inet_ntop/inet_pton/.
15674
15675         * modules/mkstemp (License): Relicense under LGPLv2+.
15676         * modules/tempname (License): Likewise.
15677
15678 2008-08-06  Bruno Haible  <bruno@clisp.org>
15679
15680         * lib/poll.c (poll): Further micro-optimization.
15681
15682 2008-08-06  Jim Meyering  <meyering@redhat.com>
15683
15684         inet_pton.c: use locale-independent tolower
15685         * lib/inet_pton.c: Include <c-ctype.h> rather than <ctype.h>.
15686         (inet_pton6): Use c_tolower rather than tolower.
15687         * modules/inet_pton (Depends-on): Add c-ctype.
15688
15689 2008-08-06  Paolo Bonzini  <bonzini@gnu.org>
15690
15691         * lib/poll.c (poll): Avoid division when timeout is 0, cache
15692         _SC_OPEN_MAX, avoid repeated access to errno.  Check for nfd < 0.
15693
15694 2008-08-06  Jim Meyering  <meyering@redhat.com>
15695
15696         * modules/inet_pton (License): Relicense under LGPLv2+.
15697
15698 2008-08-03  Bruno Haible  <bruno@clisp.org>
15699
15700         Additional non-aborting API for lock and tls.
15701         * lib/lock.h: Include <errno.h>.
15702         (glthread_lock_init): New macro/function.
15703         (gl_lock_init): Define as wrapper around glthread_lock_init.
15704         (glthread_lock_lock): New macro/function.
15705         (gl_lock_lock): Define as wrapper around glthread_lock_lock.
15706         (glthread_lock_unlock): New macro/function.
15707         (gl_lock_unlock): Define as wrapper around glthread_lock_unlock.
15708         (glthread_lock_destroy): New macro/function.
15709         (gl_lock_destroy): Define as wrapper around glthread_lock_destroy.
15710         (glthread_rwlock_init): New macro/function.
15711         (gl_rwlock_init): Define as wrapper around glthread_rwlock_init.
15712         (glthread_rwlock_rdlock): New macro/function.
15713         (gl_rwlock_rdlock): Define as wrapper around glthread_rwlock_rdlock.
15714         (glthread_rwlock_wrlock): New macro/function.
15715         (gl_rwlock_wrlock): Define as wrapper around glthread_rwlock_wrlock.
15716         (glthread_rwlock_unlock): New macro/function.
15717         (gl_rwlock_unlock): Define as wrapper around glthread_rwlock_unlock.
15718         (glthread_rwlock_destroy): New macro/function.
15719         (gl_rwlock_destroy): Define as wrapper around glthread_rwlock_destroy.
15720         (glthread_recursive_lock_init): New macro/function.
15721         (gl_recursive_lock_init): Define as wrapper around
15722         glthread_recursive_lock_init.
15723         (glthread_recursive_lock_lock): New macro/function.
15724         (gl_recursive_lock_lock): Define as wrapper around
15725         glthread_recursive_lock_lock.
15726         (glthread_recursive_lock_unlock): New macro/function.
15727         (gl_recursive_lock_unlock): Define as wrapper around
15728         glthread_recursive_lock_unlock.
15729         (glthread_recursive_lock_destroy): New macro/function.
15730         (gl_recursive_lock_destroy): Define as wrapper around
15731         glthread_recursive_lock_destroy.
15732         (glthread_once): New macro/function.
15733         (gl_once): Define as wrapper around glthread_once.
15734         Update function declarations.
15735         * lib/lock.c (glthread_rwlock_init_multithreaded): Renamed from
15736         glthread_rwlock_init. Return error code.
15737         (glthread_rwlock_rdlock_multithreaded): Renamed from
15738         glthread_rwlock_rdlock. Return error code.
15739         (glthread_rwlock_wrlock_multithreaded): Renamed from
15740         glthread_rwlock_wrlock. Return error code.
15741         (glthread_rwlock_unlock_multithreaded): Renamed from
15742         glthread_rwlock_unlock. Return error code.
15743         (glthread_rwlock_destroy_multithreaded): Renamed from
15744         glthread_rwlock_destroy. Return error code.
15745         (glthread_recursive_lock_init_multithreaded): Renamed from
15746         glthread_recursive_lock_init. Return error code.
15747         (glthread_recursive_lock_lock_multithreaded): Renamed from
15748         glthread_recursive_lock_lock. Return error code.
15749         (glthread_recursive_lock_unlock_multithreaded): Renamed from
15750         glthread_recursive_lock_unlock. Return error code.
15751         (glthread_recursive_lock_destroy_multithreaded): Renamed from
15752         glthread_recursive_lock_destroy. Return error code.
15753         (glthread_once_call): Make static.
15754         (glthread_once_multithreaded): Renamed from glthread_once.
15755         * lib/tls.h: Include <errno.h>.
15756         (glthread_tls_key_init): New macro/function.
15757         (gl_tls_key_init): Define as wrapper around glthread_tls_key_init.
15758         (glthread_tls_set): New macro/function.
15759         (gl_tls_set): Define as wrapper around glthread_tls_set.
15760         (glthread_tls_key_destroy): New macro/function.
15761         (gl_tls_key_destroy): Define as wrapper around glthread_tls_key_destroy.
15762         Update function declarations.
15763         * lib/tls.c (glthread_tls_get_multithreaded): Renamed from
15764         glthread_tls_get.
15765         Suggested by Yoann Vandoorselaere <yoann@prelude-ids.org>.
15766
15767 2008-08-04  Eric Blake  <ebb9@byu.net>
15768
15769         gnumakefile: use space, not TAB, outside of targets
15770         * top/GNUmakefile (_dummy): Fix whitespace error in prior edit.
15771
15772 2008-08-02  Jim Meyering  <meyering@redhat.com>
15773
15774         getdate.y: avoid locale-dependent date parsing failure
15775         In Turkish locales, getdate would fail to recognize keywords
15776         containing a lowercase "i".  The solution is not to rely on
15777         locale-sensitive case-conversion.
15778         * lib/getdate.y: Include <c-ctype.h> rather than <ctype.h>.
15779         (lookup_word): Use c_toupper in place of toupper.
15780         (yylex, get_date): Use c_ prefixed variants of isspace and isalpha, too.
15781         Reported by Vefa Bicakci <bicave@superonline.com> in
15782         <http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/14184>.
15783         * modules/getdate (Depends-on): Add c-ctype.
15784
15785 2008-08-02  Bruno Haible  <bruno@clisp.org>
15786
15787         * gnulib-tool (func_import): When updating or creating a .gitignore
15788         file, prepend each added line with a slash, and ignore leading slashes
15789         from the existing lines.
15790         Reported by Joel E. Denny <jdenny@ces.clemson.edu>.
15791
15792 2008-08-02  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
15793
15794         Portability fix for GNU make 3.79.1.
15795         * top/GNUmakefile: Avoid 'else COND', which older GNU make
15796         versions do not understand.
15797
15798 2008-08-01  Bruno Haible  <bruno@clisp.org>
15799
15800         Work around bug of HP-UX 10.20 cc with -0.0 literal.
15801         * tests/test-isnanf.h (zero): New variable.
15802         (main): Avoid literal -0.0f.
15803         * tests/test-isnand.h (zero): New variable.
15804         (main): Avoid literal -0.0.
15805         * tests/test-isnanl.h (zero): New variable.
15806         (main): Avoid literal -0.0L.
15807         * tests/test-isnan.c (zerof, zerod, zerol): New variables.
15808         (test_float, test_double, test_long_double): Avoid literals -0.0f,
15809         -0.0, -0.0L.
15810         * tests/test-signbit.c (test_signbitf): Avoid literal -0.0f.
15811         (test_signbitd): Avoid literal -0.0.
15812         (test_signbitl): Avoid literal -0.0L.
15813         * tests/test-ceilf1.c (zero): New variable.
15814         (main): Avoid literal -0.0f.
15815         * tests/test-ceill.c (zero): New variable.
15816         (main): Avoid literal -0.0L.
15817         * tests/test-floorf1.c (zero): New variable.
15818         (main): Avoid literal -0.0f.
15819         * tests/test-floorl.c (zero): New variable.
15820         (main): Avoid literal -0.0L.
15821         * tests/test-roundf1.c (zero): New variable.
15822         (main): Avoid literal -0.0f.
15823         * tests/test-round1.c (zero): New variable.
15824         (main): Avoid literal -0.0.
15825         * tests/test-roundl.c (zero): New variable.
15826         (main): Avoid literal -0.0L.
15827         * tests/test-truncf1.c (zero): New variable.
15828         (main): Avoid literal -0.0f.
15829         * tests/test-trunc1.c (zero): New variable.
15830         (main): Avoid literal -0.0.
15831         * tests/test-truncl.c (zero): New variable.
15832         (main): Avoid literal -0.0L.
15833         * tests/test-frexp.c (zero): New variable.
15834         (main): Avoid literal -0.0.
15835         * tests/test-frexpl.c (zero): New variable.
15836         (main): Avoid literal -0.0L.
15837         * tests/test-ldexpl.c (zero): New variable.
15838         (main): Avoid literal -0.0L.
15839         * tests/test-snprintf-posix.h (have_minus_zero): Avoid literal -0.0.
15840         (zerod, zerol): New variables.
15841         (test_function): Avoid literals -0.0, -0.0L.
15842         * tests/test-sprintf-posix.h (have_minus_zero): Avoid literal -0.0.
15843         (zerod, zerol): New variables.
15844         (test_function): Avoid literals -0.0, -0.0L.
15845         * tests/test-vasnprintf-posix.c (have_minus_zero): Avoid literal -0.0.
15846         (zerod, zerol): New variables.
15847         (test_function): Avoid literals -0.0, -0.0L.
15848         * tests/test-vasprintf-posix.c (have_minus_zero): Avoid literal -0.0.
15849         (zerod, zerol): New variables.
15850         (test_function): Avoid literals -0.0, -0.0L.
15851         * tests/test-strtod.c (zero): New variable.
15852         (main): Avoid literal -0.0.
15853         Reported by Jonathan C. Patschke <jp@centtech.com>.
15854
15855 2008-07-31  Jim Meyering  <meyering@redhat.com>
15856
15857         sha256.h: correct definition of SHA224_DIGEST_SIZE
15858         * lib/sha256.h (SHA224_DIGEST_SIZE): Define to 28, not 24.
15859         Reported by Paulie Pena IV <paulie4@gmail.com>.
15860         Define as 224 / 8, rather than as a literal.
15861         (SHA256_DIGEST_SIZE): Define as 256/8 rather than equivalent literal.
15862         * lib/sha512.h (SHA384_DIGEST_SIZE): Likewise, define as equiv: 384/8.
15863         (SHA512_DIGEST_SIZE): Likewise, define as equivalent quotient: 512/8.
15864
15865 2008-07-31  Bruno Haible  <bruno@clisp.org>
15866
15867         * lib/regex_internal.h (BITSET_WORD_BITS): Make first conditional work
15868         on HP-UX 10.20 with "cc -Ae". Fix second conditional.
15869         Reported by Jonathan Patschke <jp@centtech.com>.
15870
15871 2008-07-31  Bruno Haible  <bruno@clisp.org>
15872
15873         * gnulib-tool (func_import): Make change from 2008-06-23 more robust.
15874         Reported by Paolo Bonzini <bonzini@gnu.org>.
15875
15876 2008-07-30  Eric Blake  <ebb9@byu.net>
15877
15878         test-strtod: allow compilation without -lm
15879         * tests/test-strtod.c (main): Avoid link dependence on fabs.
15880         Reported by Dennis Clarke <blastwave@gmail.com>.
15881
15882 2008-07-28  Jim Meyering  <meyering@redhat.com>
15883
15884         bootstrap: work also when there are no .po files in po/
15885         * build-aux/bootstrap (update_po_files): Complete the change
15886         that I began in bc960df8c789c878f1c1c54a28a3c2648dead8d9.
15887
15888 2008-07-27  Jim Meyering  <meyering@redhat.com>
15889
15890         * users.txt: Add zile.
15891
15892 2008-07-26  Ben Pfaff  <blp@gnu.org>
15893
15894         Add missing dependencies on new m4/exponent[fdl].m4 files.
15895         * modules/isnanf-nolibm: Add m4/exponentf.m4.
15896         * modules/isnand-nolibm: Add m4/exponentd.m4.
15897         * modules/isnanl-nolibm: Add m4/exponentl.m4.
15898         * modules/signbit-tests: Use m4/exponent[fdl].m4 instead of
15899         m4/isnan[fdl].m4, because the macros actually used moved.
15900         Reported by Jim Meyering.
15901
15902 2008-07-14  Ben Pfaff  <blp@gnu.org>
15903
15904         Add isinf module.
15905         * lib/isinf.c: New file.
15906         * lib/math.in.h: Define isinf macro if we have decided to replace
15907         it.
15908         * m4/isinf.m4: New file.
15909         * m4/math_h.m4: Initialize and substitute variables for isinf
15910         module.
15911         * modules/isinf: New file.
15912         * modules/isinf-tests: New file.
15913         * modules/math: Add substitutions for new module.
15914         * tests/test-isinf.c: New file.
15915         * doc/posix-functions/isinf.texi: Mention new module.
15916         * MODULES.html.sh: Mention new module.
15917
15918 2008-07-14  Ben Pfaff  <blp@gnu.org>
15919
15920         Factor out some macros for use by additional modules.
15921         * m4/isnanf.m4 (gl_FLOAT_EXPONENT_LOCATION): Move into new file
15922         exponentf.m4.
15923         * m4/isnand.m4 (gl_DOUBLE_EXPONENT_LOCATION): Move into new file
15924         exponentd.m4.
15925         * m4/isnanl.m4 (gl_LONG_DOUBLE_EXPONENT_LOCATION): Move into new
15926         file exponentl.m4.
15927         * m4/exponentf.m4: New file.
15928         * m4/exponentd.m4: New file.
15929         * m4/exponentl.m4: New file.
15930         * modules/isnanf: Use new file m4/exponentf.m4.
15931         * modules/isnand: Use new file m4/exponentd.m4.
15932         * modules/isnanl: Use new file m4/exponentl.m4.
15933
15934 2008-07-23  Ulrich Drepper  <drepper@redhat.com>
15935
15936         mktime.c: normalize tp->tm_isdst value to -1/0/1.
15937         * lib/mktime.c (__mktime_internal): Normalize tp->tm_isdst value.
15938         Reported by Michael Ringe <Michael.Ringe@gmx.de> in
15939         <http://sourceware.org/bugzilla/show_bug.cgi?id=6723>.
15940
15941         * lib/canonicalize-lgpl.c (__realpath): Avoid buffer overflow after
15942         readlink on platforms without PATH_MAX.
15943
15944 2008-07-21  Eric Blake  <ebb9@byu.net>
15945
15946         Warn, not fail, on stale version.
15947         * top/GNUmakefile (_curr-ver): Tone down previous patch.
15948
15949         Don't allow installation with stale devel version number.
15950         * top/GNUmakefile (_is-install-target): New macro.
15951         (_curr-ver): Forbid installation with stale version number.
15952
15953 2008-07-20  Bruno Haible  <bruno@clisp.org>
15954
15955         * modules/c-stack-tests (Makefile.am): Add LIBSIGSEGV to
15956         TESTS_ENVIRONMENT.
15957         * tests/test-c-stack2.sh: React differently if LIBSIGSEGV is in use.
15958
15959 2008-07-20  Bruno Haible  <bruno@clisp.org>
15960
15961         * lib/c-stack.h (c_stack_action): Add documentation.
15962         * lib/c-stack.c (c_stack_action): Remove incomplete documentation.
15963
15964 2008-07-20  Bruno Haible  <bruno@clisp.org>
15965
15966         * modules/canonicalize-lgpl (License): Relicense under LGPLv2+.
15967         * modules/readlink (License): Likewise.
15968
15969 2008-07-17  Eric Blake  <ebb9@byu.net>
15970
15971         * modules/c-stack (Link): Fix typo.
15972
15973         Make c-stack use libsigsegv, when available.
15974         * modules/c-stack (Depends-on): Add libsigsegv.
15975         * modules/c-stack-tests (Makefile.am): Link with libsigsegv, if
15976         needed.
15977         * lib/c-stack.c (SIGSTKSZ): Define fallback.
15978         (segv_handler, overflow_handler, c_stack_action)
15979         [HAVE_LIBSIGSEGV && !HAVE_XSI_STACK_OVERFLOW_HEURISTIC]: Add new
15980         implementation when libsigsegv is available, but only when using
15981         the library is necessary.
15982         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Add
15983         comment, explaining why XSI check fails on Linux.
15984         (gl_PREREQ_C_STACK): Supply LIBCSTACK, LTLIBCSTACK.
15985         * tests/test-c-stack2.sh: Tweak skip message.
15986         * NEWS: Document new link-time requirements.
15987
15988 2008-07-16  Eric Blake  <ebb9@byu.net>
15989
15990         c-stack: Expose false positives when not using libsigsegv.
15991         * modules/c-stack-tests (Files): Expand test.
15992         * tests/test-c-stack.c (main): Add means to conditionally trigger
15993         non-overflow SIGSEGV.
15994         * tests/test-c-stack2.sh: New file.
15995
15996 2008-07-14  Bruno Haible  <bruno@clisp.org>
15997
15998         * m4/libsigsegv.m4: Remove unneeded AC_PREREQ.
15999         Reported by Eric Blake.
16000
16001 2008-07-14  Sam Steingold  <sds@gnu.org>
16002             Bruno Haible  <bruno@clisp.org>
16003
16004         New module libsigsegv.
16005         * modules/libsigsegv: New file.
16006         * m4/libsigsegv.m4: New file, from GNU clisp sigsegv.m4 with
16007         modifications.
16008         * MODULES.html.sh (Signal handling): New section.
16009
16010 2008-07-14  Bruno Haible  <bruno@clisp.org>
16011
16012         * modules/unictype/ctype-* (Description): Add the word "function".
16013         Improves the resulting doc in MODULES.html.
16014
16015 2008-07-12  Ben Pfaff  <blp@gnu.org>
16016
16017         Add longlong module.
16018         * modules/longlong: New file.
16019
16020 2008-07-12  Bruno Haible  <bruno@clisp.org>
16021
16022         * m4/isnan.m4 (gl_ISNAN): When the replacement is used, set ISNAN_LIBM
16023         to empty.
16024
16025 2008-07-10  Ben Pfaff  <blp@gnu.org>
16026
16027         Add isnan module.
16028         * doc/posix-functions/isnan.texi: Mention new module.
16029         * lib/math.in.h: Define isnan macro if we have decided to replace
16030         it.
16031         * m4/isnan.m4: New file.
16032         * m4/isnanl.m4 (gl_FUNC_ISNANL): Factor out some code into new
16033         macro gl_BUILD_ISNANL so that isnan.m4 can use that functionality
16034         also.
16035         (gl_FUNC_ISNANL_NO_LIBM): Factor out same code, to reduce
16036         redundancy.
16037         * m4/math_h.m4: Initialize and substitute variables for isnan
16038         module.
16039         * modules/isnan: New file.
16040         * modules/isnan-tests: New file.
16041         * modules/math: Add substitutions for new module.
16042         * tests/test-isnan.c: New file.
16043         * MODULES.html.sh: Mention new module.
16044
16045 2008-07-10  Ben Pfaff  <blp@gnu.org>
16046
16047         Add isnanf module.
16048         * lib/isnanf.m4: New file.
16049         * m4/isnanf.m4 (gl_FUNC_ISNANF): New macro.
16050         (gl_HAVE_ISNANF_IN_LIBM): New macro.
16051         (gl_BUILD_ISNANF): New macro used by gl_FUNC_ISNANF,
16052         gl_FUNC_ISNANF_NO_LIBM, and gl_FUNC_ISNAN.
16053         * modules/isnanf: New file.
16054         * modules/isnanf-tests: New file.
16055         * modules/isnanf-nolibm-tests: Add tests/test-isnanf.h to list of
16056         files.
16057         * tests/test-isnanf-nolibm.c: factored most of its contents into
16058         new file tests/test-isnanf.h.
16059         * tests/test-isnanf.h: New file.
16060         * tests/test-isnanf.c: New file.
16061         * MODULES.html.sh: Mention new module.
16062         * doc/glibc-functions/isnanf.texi: Mention new module.
16063
16064 2008-07-10  Ben Pfaff  <blp@gnu.org>
16065
16066         Add isnand module.
16067         * lib/isnand.h: New file.
16068         * m4/isnand.m4 (gl_FUNC_ISNAND): New macro.
16069         (gl_FUNC_ISNAND_NO_LIBM): Split partially into new macro
16070         gl_HAVE_ISNAND_NO_LIBM so that gl_FUNC_ISNAND can use that
16071         functionality also.
16072         (gl_BUILD_ISNAND): New macro used by gl_FUNC_ISNAND,
16073         gl_FUNC_ISNAND_NO_LIBM, and gl_FUNC_ISNAN.
16074         (gl_HAVE_ISNAND_IN_LIBM): New macro.
16075         * modules/isnand: New file.
16076         * modules/isnand-tests: New file.
16077         * modules/isnand-nolibm-tests: Add tests/test-isnand.h to list of
16078         files.
16079         * tests/test-isnand-nolibm.c: factored most of its contents into
16080         new file tests/test-isnand.h.
16081         * tests/test-isnand.h: New file.
16082         * tests/test-isnand.c: New file.
16083         * MODULES.html.sh: Mention new module.
16084
16085 2008-07-10  Ben Pfaff  <blp@gnu.org>
16086
16087         * lib/isnanf.h: Rename lib/isnanf-nolibm.h.
16088         * lib/isnand.h: Rename lib/isnand-nolibm.h.
16089         * tests/test-isnanf.c: Rename tests/test-isnanf-nolibm.c.
16090         * tests/test-isnand.c: Rename tests/test-isnand-nolibm.c.
16091         * modules/isnanf-nolibm: Update references to renamed files.
16092         * modules/isnand-nolibm: Likewise.
16093         * modules/isnanf-nolibm-tests: Likewise.
16094         * modules/isnand-nolibm-tests: Likewise.
16095         * lib/frexp.c: Likewise.
16096         * lib/isfinite.c: Likewise.
16097         * lib/signbitd.c: Likewise.
16098         * lib/signbitf.c: Likewise.
16099         * lib/vasnprintf.c: Likewise.
16100         * tests/test-ceilf1.c: Likewise.
16101         * tests/test-ceilf2.c: Likewise.
16102         * tests/test-floorf1.c: Likewise.
16103         * tests/test-floorf2.c: Likewise.
16104         * tests/test-frexp.c: Likewise.
16105         * tests/test-round1.c: Likewise.
16106         * tests/test-round2.c: Likewise.
16107         * tests/test-roundf1.c: Likewise.
16108         * tests/test-strtod.c: Likewise.
16109         * tests/test-trunc1.c: Likewise.
16110         * tests/test-trunc2.c: Likewise.
16111         * tests/test-truncf1.c: Likewise.
16112         * tests/test-truncf2.c: Likewise.
16113         * NEWS: Mention the renamed header files.
16114
16115 2008-07-11  Jim Meyering  <meyering@redhat.com>
16116
16117         vc-list-files: make the last-resort awk code more portable
16118         * build-aux/vc-list-files: Don't rely on awk's "sub" command.
16119         /bin/awk from OpenSolaris 11's SUNWesu version 2008.03.22.10.56
16120         does not support it.
16121
16122 2008-07-10  Eric Blake  <ebb9@byu.net>
16123
16124         Work with tar's bootstrap.
16125         * gnulib-tool (func_emit_initmacro_end): Use m4_defn in the case
16126         where LIBSOURCES_DIR contains .#bootmp but must not be treated as
16127         an m4 comment.
16128
16129 2008-07-09  Jim Meyering  <meyering@redhat.com>
16130
16131         posix-shell.m4: fix typo that made this test malfunction
16132         * m4/posix-shell.m4: Remove capitalization in variable name.
16133
16134 2008-07-08  Bruno Haible  <bruno@clisp.org>
16135
16136         * m4/onceonly.m4: Update comments.
16137         Reported by Ben Pfaff <blp@cs.stanford.edu>.
16138
16139 2008-07-04  Jim Meyering  <meyering@redhat.com>
16140
16141         * users.txt: Add vc-dwim.
16142         (bison, coreutils): Use the gitweb URL.
16143
16144 2008-07-03  Jim Meyering  <meyering@redhat.com>
16145
16146         * users.txt: Add libffcall.  From Sam Steingold.
16147
16148 2008-07-03  OndÅ™ej Vašík  <ovasik@redhat.com>
16149
16150         getdate.y: do not ignore TZ with relative day, month or year offset
16151         * lib/getdate.y (get_date): Move the tz-handling block to follow the
16152         relative-date-handling, since otherwise, the latter would clobber the
16153         sole output (an updated Start value) of the tz-handling block.
16154         * tests/test-getdate.c: Tests for the fix
16155
16156 2008-07-03  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
16157
16158         Recognize 'foo_LIBRARIES += libgnu.a'.
16159         * gnulib-tool (func_emit_lib_Makefile_am): Recognize if a
16160         makefile snippet has already specified an installation location,
16161         also using '+='.
16162
16163 2008-07-02  OndÅ™ej Vašík  <ovasik@redhat.com>
16164
16165         getdate.y: factor out common actions
16166         * lib/getdate.y (apply_relative_time, set_hhmmss): New functions.
16167         Use them in place of open-coded actions.
16168
16169 2008-07-01  Simon Josefsson  <simon@josefsson.org>
16170
16171         Add self-test for getdate module.
16172         * modules/getdate-tests: New file.
16173         * tests/test-getdate.c: New file.
16174
16175 2008-06-29  Bruno Haible  <bruno@clisp.org>
16176
16177         * gnulib-tool (func_import): Put gnulib-comp.m4 into .cvsignore or
16178         .gitignore.
16179         Reported by Sylvain Beucler <beuc@beuc.net>.
16180
16181 2008-06-29  Bruno Haible  <bruno@clisp.org>
16182
16183         * doc/gnulib-tool.texi (VCS Issues): Mention --no-vc-files option.
16184         * m4/gnulib-tool.m4: Update to match current gnulib-tool.
16185
16186 2008-06-29  Bruno Haible  <bruno@clisp.org>
16187
16188         * gnulib-tool (func_import): Recommend to put gnulib-cache.m4 into
16189         EXTRA_DIST.
16190         Reported by Sylvain Beucler <beuc@beuc.net>.
16191
16192 2008-06-26  Jim Meyering  <meyering@redhat.com>
16193
16194         make several modules depend on the "open" module
16195         This provides slightly increased consistency when opening-for-write
16196         the name of a non-directory spelled with a trailing slash.
16197         * modules/chdir-safer: Likewise.
16198         * modules/chown: Likewise.
16199         * modules/clean-temp: Likewise.
16200         * modules/copy-file: Likewise.
16201         * modules/fchdir: Likewise.
16202         * modules/fcntl-safer: Likewise.
16203         * modules/pipe: Likewise.
16204         * modules/utime: Likewise.
16205         Prompted by Eric Blake and Bruno Haible.
16206
16207 2008-06-24  Andreas Schwab  <schwab@suse.de>
16208
16209         * m4/getdate.m4 (gl_C_COMPOUND_LITERALS): Don't test whether compound
16210         literals can be used as initializers for global variables.
16211
16212 2008-06-23  Eric Blake  <ebb9@byu.net>
16213
16214         Make gnulib-cache.m4 easier to diff.
16215         * gnulib-tool (func_import): Allow newlines when reading cached
16216         gl_MODULES, and generate newlines when creating gnulib-cache.m4.
16217
16218 2008-06-23  Bruno Haible  <bruno@clisp.org>
16219
16220         * m4/signalblocking.m4 (gl_PREREQ_SIG_HANDLER_H): Remove macro.
16221         (gl_PREREQ_SIGPROCMASK): Don't invoke it.
16222         * m4/sigaction.m4 (gl_PREREQ_SIG_HANDLER_H): New macro, moved here from
16223         m4/signalblocking.m4.
16224         (gl_PREREQ_SIGACTION): Don't invoke it.
16225         * m4/nanosleep.m4 (gl_PREREQ_NANOSLEEP): Invoke
16226         gl_PREREQ_SIG_HANDLER_H.
16227         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Likewise.
16228         Don't check for sigaction here.
16229
16230 2008-06-23  Bruno Haible  <bruno@clisp.org>
16231
16232         * lib/fatal-signal.c (fatal_signal_handler): Update comment.
16233         (install_handlers): Don't set the SA_RESETHAND flag.
16234
16235 2008-06-23  Bruno Haible  <bruno@clisp.org>
16236
16237         * m4/sigaction.m4: Comment fixes.
16238         * lib/signal.in.h: Likewise.
16239
16240 2008-06-23  Eric Blake  <ebb9@byu.net>
16241
16242         Fix typo.
16243         * tests/test-sigaction.c (MASK_SA_FLAGS): Add missing operator.
16244
16245         Avoid SA_ namespace.
16246         * tests/test-sigaction.c (MASK_SA_FLAGS): Rename from SA_MASK.
16247         Reported by Ralf Wildenhues.
16248
16249         Avoid test failure due to SA_RESTORER.
16250         * tests/test-sigaction.c (SA_MASK): New macro.
16251         (main): Avoid failing due to extension flags being set.
16252         Reported by Jim Meyering.
16253
16254         Revert use of sig-handler.h in sigprocmask.c.
16255         * modules/sigprocmask (Files): Don't rely on sig-handler.h, since
16256         it requires the existence of struct sigaction.
16257         * lib/sigprocmask.c (handler_t): Restore typedef.
16258         (rpl_signal, old_handlers): Use local type.
16259
16260 2008-06-22  Bruno Haible  <bruno@clisp.org>
16261
16262         * tests/test-stdint.c: Disable the INTMAX_MAX preprocessor test
16263         conditionally.
16264         Reported by Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
16265
16266 2008-06-22  Bruno Haible  <bruno@clisp.org>
16267
16268         * doc/posix-functions/siginterrupt.texi: Move note.
16269
16270         * lib/signal.in.h (SA_RESTART): New macro.
16271         * lib/sigaction.c: Update comment.
16272
16273         * m4/sigaction.m4 (gl_SIGACTION): Require gl_SIGNAL_H_DEFAULTS.
16274
16275         * m4/signalblocking.m4 (gl_PREREQ_SIG_HANDLER_H): New macro.
16276         (gl_PREREQ_SIGPROCMASK): Invoke it.
16277         * m4/sigaction.m4 (gl_PREREQ_SIGACTION): Likewise.
16278
16279         * lib/nanosleep.c (rpl_nanosleep): Setup newact only when it is needed.
16280
16281         * lib/sigprocmask.c: Update a comment.
16282
16283 2008-06-21  Eric Blake  <ebb9@byu.net>
16284
16285         Use sigaction module rather than signal().
16286         * modules/c-stack (Depends-on): Add sigaction.
16287         * modules/fatal-signal (Depends-on): Likewise.
16288         * modules/nanosleep (Depends-on): Likewise.
16289         * modules/sigprocmask (Files): Add sig-handler.h.
16290         * modules/sigaction (Files): Likewise.
16291         * lib/sig-handler.h (get_handler): New file, suggested by Paul
16292         Eggert.
16293         * lib/c-stack.c (SIGACTION_WORKS): Simplify conditions.
16294         (c_stack_action) [!SIGACTION_WORKS]: Use sigaction, not signal.
16295         * lib/fatal-signal.c (uninstall_handlers, install_handlers)
16296         (init_fatal_signals): Likewise.
16297         * lib/nanosleep.c (rpl_nanosleep): Likewise.
16298         (siginterrupt): Delete fallback.
16299         * lib/sigprocmask.c (handler_t, old_handlers): Use sa_handler_t
16300         instead.
16301         * m4/nanosleep.m4 (gl_PREREQ_NANOSLEEP): Drop check for
16302         siginterrupt.
16303
16304         New module sigaction, for mingw.
16305         * modules/sigaction: New module...
16306         * modules/sigaction-tests: ...and its test.
16307         * m4/sigaction.m4: New file.
16308         * lib/sigaction.c: Likewise.
16309         * tests/test-sigaction.c: Likewise.
16310         * m4/signal_h.m4 (gl_SIGNAL_H_DEFAULTS): Add sigaction variables.
16311         * modules/signal (Makefile.am): Likewise.
16312         * lib/signal.in.h (!@HAVE_SIGACTION@): Define replacements when
16313         needed.
16314         * doc/posix-headers/signal.texi (signal.h): Mention provided
16315         types.
16316         * doc/posix-functions/siginterrupt.texi (siginterrupt): Mention
16317         that sigaction is preferable.
16318         * doc/posix-functions/sigaction.texi (sigaction): Mention new
16319         module.
16320         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
16321         sigaction.
16322
16323         Improve robustness of sigprocmask by overriding signal.
16324         * lib/signal.in.h (rpl_signal): Override signal when sigprocmask
16325         is in use.
16326         * lib/sigprocmask.c (blocked_handler): Reinstall block handler.
16327         (SIGKILL, SIGSTOP): Provide fallbacks.
16328         (rpl_signal): Implement.
16329         (old_handlers, blocked_set): Mark volatile, since sigprocmask and
16330         signal can be called inside handlers.
16331
16332         Fix nanosleep module on mingw.
16333         * modules/nanosleep (Depends-on): Add sys_select.
16334         * lib/nanosleep.c (HAVE_SYS_SELECT_H): Rely on gnulib module.
16335
16336         Fix licensing of sigprocmask.
16337         * modules/raise (License): Relicense as LGPL.
16338
16339 2008-06-21  Bruno Haible  <bruno@clisp.org>
16340
16341         * lib/propername.c (proper_name_utf8): Don't use the transliterated
16342         result if it contains question marks.
16343         Reported by Michael Geng <linux@michaelgeng.de>.
16344
16345 2008-06-19  Bruno Haible  <bruno@clisp.org>
16346
16347         Fix CVS-ism.
16348         * doc/gnulib.texi: Include updated-stamp.texi.
16349         * doc/Makefile (GNULIB_TEXI_FILES): New variable.
16350         (updated-stamp.texi): New rule.
16351         (gnulib.info): Depend on it.
16352         * doc/.gitignore: Add updated-stamp.texi.
16353         Based on a patch by Thien-Thi Nguyen <ttn@gnuvola.org>.
16354
16355 2008-06-19  Bruno Haible  <bruno@clisp.org>
16356
16357         * doc/Makefile (gnulib.info): Update and simplify dependencies.
16358         Reported by Thien-Thi Nguyen <ttn@gnuvola.org>.
16359
16360 2008-06-19  Eric Blake  <ebb9@byu.net>
16361
16362         Fix VPATH 'make dist' with GNU make and non-VCS tarball.
16363         * top/GNUmakefile (_curr-ver): Don't use $(srcdir) unnecessarily.
16364         Reported by Stepan Kasal.
16365
16366 2008-06-18  Bruno Haible  <bruno@clisp.org>
16367
16368         * lib/fatal-signal.c (init_fatal_signals): Add comment.
16369         Reported by Eric Blake.
16370
16371 2008-06-18  Eric Blake  <ebb9@byu.net>
16372
16373         Work around cygwin 1.5.25 strsignal bug.
16374         * tests/test-strsignal.c: Allow for const char *.
16375         * doc/glibc-functions/strsignal.texi (strsignal): Document the bug.
16376
16377 2008-06-18  Simon Josefsson  <simon@josefsson.org>
16378
16379         * users.txt: Update URL to article and add author/date
16380         information.
16381
16382 2008-06-17  Bruno Haible  <bruno@clisp.org>
16383
16384         New macro gl_DISABLE_THREADS.
16385         * m4/lock.m4 (gl_LOCK_EARLY_BODY): Use value gl_use_threads_default
16386         if the user did not pass --enable-threads or --disable-threads option.
16387         (gl_DISABLE_THREADS): New macro.
16388         Reported by Eric Blake <ebb9@byu.net>.
16389
16390 2008-06-17  Bruno Haible  <bruno@clisp.org>
16391
16392         * lib/tls.h (gl_tls_key_init): Evaluate the destructor argument also
16393         when the macro ignores it.
16394         Based on a patch by Eric Blake <ebb9@byu.net>.
16395
16396 2008-06-17  Bruno Haible  <bruno@clisp.org>
16397
16398         * modules/tls (License): Change to LGPLv2+.
16399         Reported by Eric Blake.
16400
16401 2008-06-17  Eric Blake  <ebb9@byu.net>
16402
16403         Simplify c-stack prerequisites.
16404         * lib/c-stack.c (includes): Remove unused <sys/resource.h>.
16405         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Posix 200x
16406         no longer requires <ucontext.h> to exist.  Optimize setrlimit
16407         check.
16408         (gl_PREREQ_C_STACK): Remove check for unused getcontext and
16409         <sys/resource.h>.
16410
16411         Move c-stack test into testsuite.
16412         * modules/c-stack-tests: New file.
16413         * lib/c-stack.c [DEBUG]: Move test program...
16414         * tests/test-c-stack.c: ...into this new file.  Skip rather than
16415         fail test if sigaltstack is lacking.
16416         * tests/test-c-stack.sh: New driver file.
16417
16418 2008-06-16  Eric Blake  <ebb9@byu.net>
16419
16420         Use raise module consistently.
16421         * modules/fatal-signal (Depends-on): Add raise.
16422         * modules/sigprocmask (Depends-on): Likewise.
16423         * lib/fatal-signal.c (fatal_signal_handler): Rely on raise.
16424         * lib/sigprocmask.c (sigprocmask): Likewise.
16425         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Likewise.
16426         * m4/signalblocking.m4 (gl_PREREQ_SIGPROCMASK): Likewise.
16427
16428         Fix compliance bug in sigpending.
16429         * lib/sigprocmask.c (sigpending): Return pending array via
16430         parameter, not return value.
16431
16432 2008-06-14  Eric Blake  <ebb9@byu.net>
16433
16434         Improve obstack-printf test code.
16435         * tests/test-obstack-printf.c (test_function): Fix comment, and
16436         simplify usage of obstack_* in macros.  Add a test for coverage.
16437         Reported by Bruno Haible.
16438
16439 2008-06-14  Bruno Haible  <bruno@clisp.org>
16440
16441         * lib/obstack_printf.c (obstack_vprintf): Define the stack-allocated
16442         array size as a constant, not as a const variable.
16443         * m4/obstack-printf.m4 (gl_FUNC_OBSTACK_PRINTF): Require
16444         AC_USE_SYSTEM_EXTENSIONS.
16445         * m4/obstack-printf-posix.m4 (gl_FUNC_OBSTACK_PRINTF_POSIX): Likewise.
16446         Test whether the obstack_printf function actually exists.
16447         * modules/obstack-printf (Depends-on): Add extensions.
16448         (Include): Remove obstack.h.
16449         * modules/obstack-printf-posix (Depends-on): Add extensions.
16450         (Include): Remove obstack.h.
16451
16452 2008-06-13  Eric Blake  <ebb9@byu.net>
16453
16454         Add obstack-printf and obstack-printf-posix modules.
16455         * modules/obstack-printf: New file.
16456         * modules/obstack-printf-posix: Likewise.
16457         * MODULES.html.sh (Misc): Mention them.
16458         * doc/glibc-functions/obstack_printf.texi (obstack_printf):
16459         Likewise.
16460         * doc/glibc-functions/obstack_vprintf.texi (obstack_vprintf):
16461         Likewise.
16462         * modules/stdio (Makefile.am): Accomodate new modules.
16463         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Likewise.
16464         * lib/stdio.in.h (rpl_obstack_printf, rpl_obstack_vprintf):
16465         Declare.
16466         * lib/obstack_printf.c (obstack_printf, obstack_vprintf): New
16467         functions.
16468         * m4/obstack-printf.m4 (gl_OBSTACK_PRINTF)
16469         (gl_REPLACE_OBSTACK_PRINTF): New macros
16470         * m4/obstack-printf-posix.m4 (gl_OBSTACK_PRINTF_POSIX): Likewise.
16471         * tests/test-obstack-printf.c: New file.
16472         * modules/obstack-printf-tests: Likewise.
16473         * modules/obstack-printf-posix-tests: Likewise.
16474
16475 2008-06-11  Bruno Haible  <bruno@clisp.org>
16476
16477         * m4/open.m4 (gl_FUNC_OPEN): Add test against trailing slash bug.
16478         * lib/open.c: Include errno.h.
16479         (open): Fail when attempting to write to a file that has a trailing
16480         slash.
16481         * tests/test-open.c (main): Test against trailing slash bug.
16482         * doc/posix-functions/open.texi: Mention the trailing slash bug.
16483
16484 2008-06-10  Bruno Haible  <bruno@clisp.org>
16485
16486         * tests/test-vc-list-files-git.sh: Make double use of 'exit'. Needed
16487         for $? to work inside the trap command, with various /bin/sh-s.
16488         * tests/test-vc-list-files-cvs.sh: Likewise.
16489
16490 2008-06-10  Bruno Haible  <bruno@clisp.org>
16491
16492         * lib/acl-internal.h: Don't include gettext.h here.
16493         * lib/set-mode-acl.c: Include gettext.h here.
16494         * lib/copy-acl.c: Likewise.
16495
16496 2008-06-10  Bruno Haible  <bruno@clisp.org>
16497
16498         * lib/wait-process.h (wait_subprocess): Add termsigp argument.
16499         * lib/wait-process.c (wait_subprocess): Likewise.
16500         * lib/execute.h (execute): Add termsigp argument.
16501         * lib/execute.c (execute): Likewise.
16502         * lib/csharpcomp.c (compile_csharp_using_pnet,
16503         compile_csharp_using_mono, compile_csharp_using_sscli): Update.
16504         * lib/csharpexec.c (execute_csharp_using_pnet,
16505         execute_csharp_using_mono, execute_csharp_using_sscli): Update.
16506         * lib/javacomp.c (compile_using_envjavac, compile_using_gcj,
16507         compile_using_javac, compile_using_jikes, is_envjavac_gcj,
16508         is_envjavac_gcj43, is_gcj_present, is_gcj_43, is_javac_present,
16509         is_jikes_present): Update.
16510         * lib/javaexec.c (execute_java_class): Update.
16511         * lib/javaversion.c (execute_and_read_line): Update.
16512         * NEWS: Document the changes.
16513         Reported by Eric Blake.
16514
16515 2008-06-10  Eric Blake  <ebb9@byu.net>
16516
16517         Add missing include.
16518         * tests/test-strstr.c (includes): Add <signal.h>.
16519         * tests/test-strcasestr.c (includes): Likewise.
16520         * tests/test-memmem.c (includes): Likewise.
16521
16522 2008-06-10  Bruno Haible  <bruno@clisp.org>
16523
16524         * lib/wait-process.c (wait_subprocess): Add an assertion.
16525
16526 2008-06-10  Bruno Haible  <bruno@clisp.org>
16527
16528         * lib/wait-process.c (wait_subprocess): Try to fix waitid() based code.
16529
16530 2008-06-10  Bruno Haible  <bruno@clisp.org>
16531
16532         * tests/test-memmem.c (main): Reset SIGALRM to default handling before
16533         using alarm().
16534         * tests/test-strcasestr.c (main): Likewise.
16535         * tests/test-strstr.c (main): Likewise.
16536
16537 2008-06-09  Bruno Haible  <bruno@clisp.org>
16538
16539         Work around the Solaris 10 ACE ACLs ABI change.
16540         * lib/acl-internal.h (acl_nontrivial, acl_ace_nontrivial): Don't
16541         declare if ACL_NO_TRIVIAL is present.
16542         (ACE_ACCESS_ALLOWED_ACE_TYPE, ACE_ACCESS_DENIED_ACE_TYPE,
16543         NEW_ACE_OWNER, NEW_ACE_GROUP, NEW_ACE_IDENTIFIER_GROUP, ACE_EVERYONE,
16544         NEW_ACE_READ_DATA, NEW_ACE_WRITE_DATA, NEW_ACE_EXECUTE): New macros.
16545         * lib/file-has-acl.c (acl_nontrivial, acl_ace_nontrivial): Don't
16546         define if ACL_NO_TRIVIAL is present.
16547         (acl_ace_nontrivial): Detect whether the old or new ABI is in use,
16548         and use the current ABI.
16549         (file_has_acl): Use same #if condition as elsewhere.
16550         * lib/set-mode-acl.c (qset_acl): Detect whether the old or new ABI is
16551         in use, and use the current ABI.
16552         * doc/acl-resources.txt: More doc about newer Solaris 10 versions.
16553         Reported by Jim Meyering.
16554
16555 2008-06-09  Eric Blake  <ebb9@byu.net>
16556
16557         Work around environments that (stupidly) ignore SIGALRM.
16558         * m4/strstr.m4 (gl_FUNC_STRSTR): Reset SIGALRM to default handling
16559         before using alarm().
16560         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Likewise.
16561         * m4/memmem.m4 (gl_FUNC_MEMMEM): Likewise.
16562         Reported by Ian Beckwith <ianb@erislabs.net>.
16563
16564         Produce autobuild blurb earlier in log.
16565         * modules/autobuild (configure.ac-early): Move AB_INIT here.
16566
16567 2008-06-09  Jim Meyering  <meyering@redhat.com>
16568         and OndÅ™ej Vašík  <ovasik@redhat.com>
16569
16570         utimens.c: correct kernel bug work-around
16571         OndÅ™ej Vašík found that the invalid return value of 280 indicates
16572         failure, not success, and the kernel bug we're trying to work
16573         around affects not just the utimensat call, but also the fallback
16574         futimens call.
16575         * lib/utimens.c (gl_futimens) [HAVE_UTIMENSAT]: Simulate failure,
16576         not success.
16577         [HAVE_FUTIMENS]: Use the same work-around, here.
16578
16579 2008-06-09  Jim Meyering  <meyering@redhat.com>
16580
16581         add more guards around definition of ACE_-related code
16582         * lib/file-has-acl.c (acl_ace_nontrivial): Define only if
16583         ALLOW and ACE_OWNER are also defined.
16584
16585 2008-06-08  Bruno Haible  <bruno@clisp.org>
16586
16587         * lib/acl-internal.h: Add me as co-author.
16588         * lib/file-has-acl.c: Likewise.
16589         * lib/set-mode-acl.c: Likewise.
16590         * lib/copy-acl.c: Likewise.
16591
16592 2008-06-08  Bruno Haible  <bruno@clisp.org>
16593
16594         Add support for AIX ACLs.
16595         * lib/acl-internal.h (acl_nontrivial): New declaration.
16596         * lib/file-has-acl.c (acl_nontrivial): New function.
16597         (file_has_acl): Add implementation using AIX 4 ACL API.
16598         * lib/set-mode-acl.c (qset_acl): Likewise.
16599         * lib/copy-acl.c (qcopy_acl): Likewise.
16600
16601 2008-06-08  Bruno Haible  <bruno@clisp.org>
16602
16603         Add support for HP-UX ACLs.
16604         * lib/acl-internal.h (acl_nontrivial): New declaration.
16605         * lib/file-has-acl.c (acl_nontrivial): New function.
16606         (file_has_acl): Add implementation using HP-UX 11 ACL API.
16607         * lib/set-mode-acl.c (qset_acl): Likewise.
16608         * lib/copy-acl.c (qcopy_acl): Likewise.
16609
16610 2008-06-08  Bruno Haible  <bruno@clisp.org>
16611
16612         Add support for Cygwin ACLs.
16613         * lib/acl-internal.h (MODE_INSIDE_ACL): New macro for Solaris-like API.
16614         * lib/set-mode-acl.c (qset_acl) [!MODE_INSIDE_ACL]: Don't optimize away
16615         the chmod_or_fchmod call.
16616         * lib/copy-acl.c (qcopy_acl) [!MODE_INSIDE_ACL]: Likewise.
16617
16618 2008-06-08  Bruno Haible  <bruno@clisp.org>
16619
16620         Fix bug with setuid modes in Solaris 10+ code.
16621         * lib/set-mode-acl.c (qset_acl): Call chmod_or_fchmod when acl_set
16622         succeeded, when the mode contains some special bits.
16623
16624 2008-06-08  Bruno Haible  <bruno@clisp.org>
16625
16626         Add support for Solaris 7..10 ACLs.
16627         * lib/acl-internal.h (acl_nontrivial, acl_ace_nontrivial): New
16628         declarations.
16629         * lib/file-has-acl.c (acl_nontrivial, acl_ace_nontrivial): New
16630         functions.
16631         (file_has_acl): Add implementation using Solaris 7..10 ACL API.
16632         * lib/set-mode-acl.c (qset_acl): Likewise.
16633         * lib/copy-acl.c (qcopy_acl): Likewise.
16634
16635 2008-06-08  Bruno Haible  <bruno@clisp.org>
16636
16637         * lib/acl-internal.h (acl_extended_nontrivial) [MacOS X]: New
16638         declaration.
16639         * lib/file-has-acl.c (acl_extended_nontrivial) [MacOS X]: New function.
16640         (acl_access_nontrivial): Remove MacOS X case.
16641         (file_has_acl): Use acl_extended_nontrivial.
16642         * lib/copy-acl.c (qcopy_acl): Likewise.
16643
16644 2008-06-08  Bruno Haible  <bruno@clisp.org>
16645
16646         * lib/set-mode-acl.c (qset_acl): Trivial code simplifications.
16647
16648 2008-06-08  Jim Meyering  <meyering@redhat.com>
16649
16650         * modules/acl (Maintainer): Add Bruno Haible.
16651
16652 2008-06-07  Bruno Haible  <bruno@clisp.org>
16653
16654         Improve support for Tru64 ACLs.
16655         * lib/file-has-acl.c (file_has_acl): Don't test the ACL_TYPE_DEFAULT
16656         ACL on OSF/1.
16657
16658 2008-06-07  Bruno Haible  <bruno@clisp.org>
16659
16660         Add support for MacOS X ACLs.
16661         * lib/file-has-acl.c (file_has_acl): Use ACL_TYPE_EXTENDED instead of
16662         ACL_TYPE_ACCESS and ACL_TYPE_DEFAULT.
16663         * lib/set-mode-acl.c (qset_acl): Likewise.
16664         * lib/copy-acl.c (qcopy_acl): Likewise.
16665
16666 2008-06-07  Bruno Haible  <bruno@clisp.org>
16667
16668         Fix memory leak introduced on 2008-05-22.
16669         * lib/set-mode-acl.c (qset_acl) [!MODE_INSIDE_ACL]: Free ACLs after
16670         use.
16671
16672 2008-06-07  Bruno Haible  <bruno@clisp.org>
16673
16674         * lib/set-mode-acl.c (qset_acl): Use acl_init(), not acl_from_text(),
16675         to construct an empty ACL.
16676
16677 2008-06-07  Bruno Haible  <bruno@clisp.org>
16678
16679         * lib/set-mode-acl.c (chmod_or_fchmod): Document return value
16680         precisely.
16681         * lib/copy-acl.c (qcopy_acl): Trivial code simplifications.
16682
16683 2008-06-07  Bruno Haible  <bruno@clisp.org>
16684
16685         * lib/copy-acl.c (qcopy_acl): Make the #if branches independent.
16686         * lib/set-mode-acl.c (qset_acl): Choose better local variable names.
16687
16688 2008-06-07  Bruno Haible  <bruno@clisp.org>
16689
16690         * doc/posix-functions/_setjmp.texi: Explain the use of this function
16691         regardless of POSIX.
16692         * doc/posix-functions/_longjmp.texi: Likewise.
16693         * doc/posix-functions/setjmp.texi: Mention HP-UX as not counting as a
16694         SystemV platform in this case.
16695
16696 2008-06-06  Eric Blake  <ebb9@byu.net>
16697
16698         Document abort() bugs.
16699         * doc/posix-functions/abort.texi (abort): Mention anomalies.
16700
16701         * doc/posix-functions/setjmp.texi (setjmp): Mingw has setjmp.
16702         * doc/posix-functions/sigsetjmp.texi (sigsetjmp): Cygwin has
16703         sigsetjmp.
16704         * doc/posix-functions/siglongjmp.texi (siglongjmp): Cygwin has
16705         siglongjmp, but only as a macro.
16706         * doc/posix-functions/_longjmp.texi (_longjmp): Mention that this
16707         is obsolete.
16708         * doc/posix-functions/_setjmp.texi (_setjmp): Likewise.
16709
16710         Tweak documentation to cover cygwin argz bugs.
16711         * m4/argz.m4 (gl_FUNC_ARGZ): Mention date of last known cygwin
16712         argz bug fix; no code change needed since no cygwin releases
16713         occurred between the last fix and the bug being tested.
16714         * doc/glibc-functions/argz_add.texi (argz_add): Document the argz
16715         module and recently fixed cygwin bugs.
16716         * doc/glibc-functions/argz_add_sep.texi (argz_add_sep): Likewise.
16717         * doc/glibc-functions/argz_append.texi (argz_append): Likewise.
16718         * doc/glibc-functions/argz_count.texi (argz_count): Likewise.
16719         * doc/glibc-functions/argz_create.texi (argz_create): Likewise.
16720         * doc/glibc-functions/argz_create_sep.texi (argz_create_sep):
16721         Likewise.
16722         * doc/glibc-functions/argz_delete.texi (argz_delete): Likewise.
16723         * doc/glibc-functions/argz_extract.texi (argz_extract): Likewise.
16724         * doc/glibc-functions/argz_insert.texi (argz_insert): Likewise.
16725         * doc/glibc-functions/argz_next.texi (argz_next): Likewise.
16726         * doc/glibc-functions/argz_replace.texi (argz_replace): Likewise.
16727         * doc/glibc-functions/argz_stringify.texi (argz_stringify):
16728         Likewise.
16729
16730         Avoid gcc warning on cygwin.
16731         * lib/copy-acl.c (qcopy_acl) [!HAVE_ACL_GET_FILE &&
16732         !ACL_NO_TRIVIAL]: Avoid unused variable.
16733
16734 2008-06-05  Eric Blake  <ebb9@byu.net>
16735
16736         Be tolerant of UNKNOWN version in gnulib-tool test dir.
16737         * top/GNUmakefile (_dummy): Warn rather than reconfigure if
16738         git-version-gen fails to come up with a version.
16739         Reported by Simon Josefsson.
16740
16741 2008-06-05  Jim Meyering  <meyering@redhat.com>
16742             Paul Eggert  <eggert@cs.ucla.edu>
16743
16744         utimens.c: work around a probable Linux kernel bug
16745         * lib/utimens.c (gl_futimens) [HAVE_UTIMENSAT]: Work around what
16746         appears to be a kernel bug that causes utimensat to return 280
16747         instead of 0, indicating success.
16748
16749 2008-06-04  Bruno Haible  <bruno@clisp.org>
16750
16751         * lib/copy-acl.c (qcopy_acl): Call qset_acl, not set_acl. Fixes
16752         2008-06-01 commit.
16753
16754 2008-06-04  Bruno Haible  <bruno@clisp.org>
16755
16756         * lib/acl-internal.h (acl_access_nontrivial): New declaration.
16757         * lib/file-has-acl.c (acl_access_nontrivial): New function.
16758         (file_has_acl): Use it. Save errno afterwards.
16759         * lib/copy-acl.c (qcopy_acl): Use acl_access_nontrivial.
16760
16761 2008-06-03  Bruno Haible  <bruno@clisp.org>
16762
16763         * lib/file-has-acl.c (file_has_acl): Put Solaris 10 code after POSIX-
16764         draft code. Simplify #ifs.
16765         * lib/set-mode-acl.c (qset_acl): Don't test for symlink if !USE_ACL.
16766         Put Solaris code after POSIX-draft code. Fix comments regarding
16767         Solaris 10, HP-UX. Mention Cygwin.
16768         * lib/copy-acl.c (qcopy_acl): Simplify #ifs.
16769
16770 2008-06-03  Eric Blake  <ebb9@byu.net>
16771
16772         Provide fallback for older kernels.
16773         * lib/utimens.c (gl_futimens) [HAVE_UTIMENSAT, HAVE_FUTIMENS]:
16774         Provide runtime fallback if kernel lacks support.
16775         Reported by Mike Frysinger.
16776
16777 2008-06-02  Bruno Haible  <bruno@clisp.org>
16778
16779         * lib/acl-internal.h (ACL_NOT_WELL_SUPPORTED): Include EOPNOTSUPP if
16780         it exists.
16781
16782 2008-06-02  Bruno Haible  <bruno@clisp.org>
16783
16784         * lib/acl_entries.c (acl_entries): Rewrite to use acl_get_entry.
16785         * lib/copy-acl.c (qcopy_acl): Update comment.
16786
16787 2008-06-02  Bruno Haible  <bruno@clisp.org>
16788
16789         * lib/acl-entries.h: Enclose most definitions in #ifs for POSIX-draft
16790         like ACL APIs.
16791
16792 2008-06-02  Bruno Haible  <bruno@clisp.org>
16793
16794         * tests/test-file-has-acl.sh: Use different code for Cygwin.
16795         * tests/test-set-mode-acl.sh: Likewise.
16796         * tests/test-copy-acl.sh: Likewise.
16797         * tests/test-copy-file.sh: Likewise.
16798
16799 2008-06-02  Bruno Haible  <bruno@clisp.org>
16800
16801         * tests/test-file-has-acl.sh: Remove unused code.
16802
16803 2008-06-01  Bruno Haible  <bruno@clisp.org>
16804
16805         * lib/copy-acl.c (qcopy_acl): New function, extracted from copy_acl.
16806         (copy_acl): Just a wrapper around qcopy_acl that emits the error
16807         messages.
16808         * lib/set-mode-acl.c (qset_acl): Document return value precisely.
16809
16810 2008-06-01  Bruno Haible  <bruno@clisp.org>
16811
16812         * m4/acl.m4 (gl_FUNC_ACL): Separate the POSIX-like and the Solaris
16813         tests. Test for libpacl, needed for OSF/1. Test for extended ACLs,
16814         needed for MacOS X. Test for HP-UX API. Test for newer and older AIX
16815         APIs.
16816         * modules/acl-tests (configure.ac): Remove tests now contained in
16817         m4/acl.m4.
16818
16819 2008-06-02  Jim Meyering  <meyering@redhat.com>
16820
16821         announce-gen: use a better key-server host name
16822         * build-aux/announce-gen (main): Recommend keys.gnupg.net, since
16823         it may be more consistently reliable.  Suggested by Werner Koch
16824         in <http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/13717>.
16825
16826 2008-06-01  Bruno Haible  <bruno@clisp.org>
16827
16828         * lib/stdio-impl.h (fp_ub): Use fp_. Needed for DragonFly BSD.
16829         Reported by Voroskoi Andras <voroskoi@gmail.com>.
16830
16831 2008-06-01  Voroskoi Andras  <voroskoi@gmail.com>  (tiny change)
16832
16833         * lib/stdio-impl.h [__DragonFly__]: Fix typo.
16834
16835 2008-06-01  Bruno Haible  <bruno@clisp.org>
16836
16837         New ACL tests.
16838         * tests/test-file-has-acl.sh: New file.
16839         * tests/test-file-has-acl.c: New file.
16840         * tests/test-set-mode-acl.sh: New file.
16841         * tests/test-set-mode-acl.c: New file.
16842         * tests/test-copy-acl.sh: New file, based on tests/test-copy-file.sh.
16843         * tests/test-copy-acl.c: New file.
16844         * modules/acl-tests: New file, based on modules/copy-file-tests.
16845         * modules/copy-file-tests (Files): Remove tests/test-sameacls.c.
16846         (Depends-on): Add acl-tests.
16847         (configure.ac): Remove checks.
16848         (Makefile.am): Don't create test-sameacls program here any more.
16849
16850 2008-06-01  Bruno Haible  <bruno@clisp.org>
16851
16852         * tests/test-copy-file.sh: Portability fixes for Solaris, HP-UX, IRIX.
16853         * tests/test-sameacls.c: Include progname.h.
16854         (main): Invoke set_program_name. Portability fixes for MacOS X,
16855         Solaris, HP-UX.
16856
16857 2008-06-01  Bruno Haible  <bruno@clisp.org>
16858
16859         * lib/freadahead.c (freadahead) [__DragonFly__]: Use the __sreadahead
16860         function.
16861         Reported by VOROSKOI Andras <voroskoi@gmail.com>.
16862
16863 2008-06-01  Bruno Haible  <bruno@clisp.org>
16864
16865         * modules/rpmatch (Depends-on): Add strdup.
16866
16867 2008-06-01  Bruno Haible  <bruno@clisp.org>
16868
16869         * lib/pipe.c: Include unistd-safer.h.
16870         (create_pipe): Ensure the returned file descriptors are not in {0,1,2}.
16871         * modules/pipe (Depends-on): Add unistd-safer.
16872
16873 2008-05-30  Simon Josefsson  <simon@josefsson.org>
16874
16875         * modules/autobuild (configure.ac): Call AB_INIT.
16876
16877 2008-05-30  Simon Josefsson  <simon@josefsson.org>
16878
16879         * tests/test-getaddrinfo.c: Don't print debug messages by default.
16880         Suggested by Bruno Haible <bruno@clisp.org>.
16881
16882 2008-05-30  Simon Josefsson  <simon@josefsson.org>
16883
16884         * tests/test-base64.c: Cast size_t to unsigned long when invoking
16885         printf.  Use %lu instead of %d.  Reported by Bruno Haible
16886         <bruno@clisp.org>.
16887
16888 2008-05-29  Eric Blake  <ebb9@byu.net>
16889
16890         Prefer new POSIX 200x interfaces over futimesat.
16891         * m4/utimens.m4 (gl_UTIMENS): Check for futimens, utimensat.
16892         * lib/utimens.c (gl_futimens): Use them for nanosecond resolution
16893         when available.
16894         [HAVE_BUGGY_NFS_TIME_STAMPS]: Allow C89 compilation.
16895
16896 2008-05-28  Bruno Haible  <bruno@clisp.org>
16897
16898         * modules/stpcpy (License): Change to LGPLv2+.
16899         Requested by David Lutterkort <dlutter@redhat.com>.
16900
16901 2008-05-27  Bruno Haible  <bruno@clisp.org>
16902
16903         * lib/localename.c (SUBLANG_TIBETAN_BHUTAN): Force value 2. Needed for
16904         current mingw.
16905         Reported by Jose E. Marchesi <jemarch@gnu.org>.
16906
16907 2008-05-27  Bruno Haible  <bruno@clisp.org>
16908
16909         * modules/iconv_open (Link): New section, from module 'iconv'.
16910         * modules/striconv (Link): Likewise.
16911         * modules/striconveh (Link): Likewise.
16912         * modules/xstriconv (Link): Likewise.
16913         * modules/unicodeio (Link): Likewise.
16914         * modules/propername (Link): Likewise.
16915         Reported by Jim Meyering.
16916
16917 2008-05-26  Jim Meyering  <meyering@redhat.com>
16918
16919         sha256: do not artificially restrict buffer length to be < 2^32
16920         * lib/sha256.h (struct sha256_ctx) [buflen]: Change type from
16921         uint32_t to size_t.
16922         * lib/sha256.c (sha256_conclude_ctx): Change type of a local
16923         to match.
16924
16925         avoid unaligned access errors, e.g., on sparc
16926         * lib/sha512.c (sha512_conclude_ctx): Use set_uint64 rather than
16927         direct access through a possibly-unaligned uint64* pointer.
16928         * lib/sha256.c (sha256_conclude_ctx): Use set_uint32 rather than
16929         direct access through a possibly-unaligned uint32* pointer.
16930         Prompted by this patch from Tom "spot" Callaway:
16931         http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/13638
16932
16933         sha512.c: fix typo in comment
16934         * lib/sha512.c (sha512_conclude_ctx): Length is 128-bit, not 64-bit.
16935
16936 2008-05-25  Bruno Haible  <bruno@clisp.org>
16937
16938         * lib/set-mode-acl.c: Renamed from lib/acl.c.
16939         * modules/acl (Files): Add lib/set-mode-acl.c, remove lib/acl.c.
16940         (Makefile.am): Update lib_SOURCES.
16941
16942 2008-05-25  Bruno Haible  <bruno@clisp.org>
16943
16944         * m4/acl.m4 (gl_FUNC_ACL): Don't set LIB_ACL_TRIVIAL.
16945
16946 2008-05-25  Jim Meyering  <meyering@redhat.com>
16947
16948         useless-if-before-free: freed expr may have white-space differences
16949         * build-aux/useless-if-before-free: Recognize cases in which the
16950         freed expression differs from the tested one in embedded white
16951         space, e.g., if (p[i + 1]) free(p[i+1]).  Correct thinko in prev:
16952         $1 was used, so we can't make any regexp shy.  Improved tests now
16953         detect this.
16954
16955         useless-if-before-free: accept white space in the expression.
16956         * build-aux/useless-if-before-free: For now, any white space
16957         in the expression must be identical in the free argument.
16958
16959         useless-if-before-free: efficiency tweak
16960         * build-aux/useless-if-before-free: Make the expression-matching
16961         regexp "shy".
16962         Make the *outer* regexp shy, not the expr-matching one.
16963
16964         update code-in-comment to accept cast of free arg
16965         * build-aux/useless-if-before-free: Update regexp.
16966
16967 2008-05-25  Bruno Haible  <bruno@clisp.org>
16968
16969         * tests/test-sameacls.c: Renamed from tests/test-copy-file-sameacls.c.
16970         * modules/copy-file-tests (Files, Makefile.am): Update.
16971         * tests/test-copy-file.c (func_test_copy): Update.
16972
16973 2008-05-24  Andreas Färber  <andreas.faerber@web.de>  (tiny change)
16974
16975         * lib/stdbool.in.h [__HAIKU__]: Disable __BEOS__ workarounds.
16976
16977 2008-05-23  Bruno Haible  <bruno@clisp.org>
16978
16979         Improve support for ACLs on OSF/1.
16980         * lib/acl.c (qset_acl): For OSF/1, use a string that ends in a comma.
16981         Remove fallback for unknown flavors of ACLs.
16982
16983 2008-05-22  Bruno Haible  <bruno@clisp.org>
16984
16985         Add support for ACLs on OSF/1.
16986         * lib/acl-internal.h (acl_get_fd, acl_set_fd): New inline function
16987         replacements.
16988         (acl_free_text): New macro fallback.
16989         * lib/acl_entries.c (acl_entries): Use acl_free_text instead of
16990         acl_free.
16991         * m4/acl.m4 (gl_FUNC_ACL): Look also in libpacl library. Test for
16992         acl_free_text function. Require AC_C_INLINE.
16993
16994 2008-05-22  Bruno Haible  <bruno@clisp.org>
16995
16996         Make copy_acl work on MacOS X 10.5.
16997         * lib/acl-internal.h (MODE_INSIDE_ACL): New macro.
16998         (ACL_NOT_WELL_SUPPORTED): On MacOS X, also handle ENOENT.
16999         * lib/acl.c (qset_acl): Add different code branch for !MODE_INSIDE_ACL.
17000         If MODE_INSIDE_ACL, don't assume that every system has the same text
17001         representation for ACLs as FreeBSD.
17002         * lib/copy-acl.c (copy_acl): Add support for platforms with
17003         !MODE_INSIDE_ACL.
17004         * lib/file-has-acl.c (file_has_acl): Likewise.
17005         * m4/acl.m4 (gl_FUNC_ACL): Test for some functions that are witness of
17006         FreeBSD, MacOS X, or IRIX, respectively.
17007
17008 2008-05-22  Bruno Haible  <bruno@clisp.org>
17009
17010         * lib/acl.h: Don't include <sys/acl.h>.
17011         (GETACLCNT): Move fallback to lib/acl-internal.h.
17012         * lib/acl-internal.h: Include <sys/acl.h> here.
17013         (GETACLCNT): New macro fallback, moved here from lib/acl.h.
17014
17015 2008-05-22  Bruno Haible  <bruno@clisp.org>
17016
17017         Split off copy_acl function to separate file.
17018         * lib/copy-acl.c: New file, extracted from lib/acl.c.
17019         * lib/acl.c (copy_acl): Moved function to separate file.
17020         * m4/acl.m4 (gl_FUNC_ACL): Remove unconditional AC_LIBOBJs.
17021         * modules/acl (Files): Add lib/copy-acl.c.
17022         (Makefiles.am): Augment lib_SOURCES.
17023
17024 2008-05-22  Bruno Haible  <bruno@clisp.org>
17025
17026         * modules/copy-file-tests: New file.
17027         * tests/test-copy-file.sh: New file.
17028         * tests/test-copy-file.c: New file.
17029         * tests/test-copy-file-sameacls.c: New file.
17030
17031 2008-05-22  Eric Blake  <ebb9@byu.net>
17032
17033         Avoid gcc warning.
17034         * tests/test-memcmp.c (main): Pass NULL indirectly.
17035
17036 2008-05-21  Bruno Haible  <bruno@clisp.org>
17037
17038         Add reference doc about ACLs.
17039         * doc/acl-resources.txt: New file.
17040         * doc/acl-cygwin.txt: New file.
17041
17042 2008-05-21  Bruno Haible  <bruno@clisp.org>
17043
17044         Avoid one more warning from gcc.
17045         * lib/vasnprintf.c (IF_LINT): Update comments.
17046         (VASNPRINTF): Use it also for the 'prefix' array initializer.
17047
17048 2008-05-21  Jim Meyering  <meyering@redhat.com>
17049
17050         avoid a warning from gcc
17051         * lib/vasnprintf.c (IF_LINT): Define.
17052         (scale10_round_decimal_long_double):
17053         Use it to avoid a "may be used uninitialized" warning.
17054         (scale10_round_decimal_double): Likewise.
17055
17056 2008-05-21  Simon Josefsson  <simon@josefsson.org>
17057
17058         * m4/memcmp.m4: When cross-compiling, assume memcmp works if it is
17059         declared.
17060
17061 2008-05-20  Bruno Haible  <bruno@clisp.org>
17062
17063         * tests/test-memcmp.c (main): Test also the sign of the result. Test
17064         against two known bugs; code taken from autoconf's AC_FUNC_MEMCMP.
17065
17066 2008-05-20  Simon Josefsson  <simon@josefsson.org>
17067
17068         * modules/memcmp-tests: New file.
17069         * tests/test-memcmp.c: New file.
17070
17071 2008-05-19  Bruno Haible  <bruno@clisp.org>
17072
17073         * modules/propername (Notice, configure.ac): Put quoted "..." into
17074         --keyword option.
17075         * lib/propername.h: Update comments accordingly.
17076         Reported by Eric Blake.
17077
17078 2008-05-19  Martin Lambers  <marlam@marlam.de>  (tiny change)
17079
17080         * modules/getpass-gnu (Depends-on): Add fseeko.
17081
17082 2008-05-19  Simon Josefsson  <simon@josefsson.org>
17083
17084         * modules/base64-tests: New file.
17085
17086 2008-05-19  Bo Borgerson <gigabo@gmail.com>
17087
17088         * lib/base64.c (base64_decode_ctx): If a decode context structure
17089         was passed in use it to ignore newlines.  If a context structure
17090         was _not_ passed in, continue to treat newlines as garbage (this
17091         is the historical behavior).  Formerly base64_decode.
17092         (base64_decode_alloc_ctx): Formerly base64_decode_alloc.  Now
17093         takes a decode context structure.
17094         * lib/base64.h (base64_decode): Macro for four-argument calls.
17095         (base64_decode_alloc): Likewise.
17096         * lib/base64.c (base64_decode_ctx): If a decode context structure
17097         was passed in use it to ignore newlines.  If a context structure
17098         was _not_ passed in, continue to treat newlines as garbage (this
17099         is the historical behavior).  Formerly base64_decode.
17100         (base64_decode_alloc_ctx): Formerly base64_decode_alloc.  Now
17101         takes a decode context structure.
17102         * lib/base64.h (base64_decode): Macro for four-argument calls.
17103         (base64_decode_alloc): Likewise.
17104
17105 2008-05-19  Jim Meyering  <meyering@redhat.com>
17106
17107         avoid a warning from gcc
17108         * lib/trim.c (IF_LINT): Define.
17109         (trim2): Use it to avoid a "may be used uninitialized" warning.
17110
17111         Fix doc typo.
17112         * doc/glibc-functions/getpass.texi (getpass): s/PATH_MAX/PASS_MAX/.
17113
17114 2008-05-19  Bruno Haible  <bruno@clisp.org>
17115
17116         * doc/glibc-functions/getpass.texi: Document limits of other
17117         implementations.
17118
17119 2008-05-19  Simon Josefsson  <simon@josefsson.org>
17120             Bruno Haible <bruno@clisp.org>
17121
17122         * doc/glibc-functions/getpass.texi: Document gnulib implementation.
17123
17124 2008-05-18  Bruno Haible  <bruno@clisp.org>
17125
17126         * modules/propername: New file, from GNU gettext.
17127         * lib/propername.h: New file, from GNU gettext.
17128         * lib/propername.c: New file, from GNU gettext.
17129         * MODULES.html.sh (Internationalization functions): Add propername.
17130
17131 2008-05-16  Jim Meyering  <meyering@redhat.com>
17132             Bruno Haible  <bruno@clisp.org>
17133
17134         Avoid some warnings from "gcc -Wshadow".
17135         * lib/vasnprintf.c (exp, remainder): Define to different identifiers.
17136
17137 2008-05-15  Eric Blake  <ebb9@byu.net>
17138
17139         Extend previous patch to cygwin 1.7.0.
17140         * m4/memmem.m4 (gl_FUNC_MEMMEM): When cross-compiling, assume a
17141         fast implementation in cygwin >= 1.7.0.
17142         * m4/strstr.m4 (gl_FUNC_STRSTR): Likewise.
17143         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Likewise.
17144
17145 2008-05-15  Bruno Haible  <bruno@clisp.org>
17146
17147         * m4/memmem.m4 (gl_FUNC_MEMMEM): When cross-compiling, assume a fast
17148         implementation in glibc >= 2.9.
17149         * m4/strstr.m4 (gl_FUNC_STRSTR): Likewise.
17150         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Likewise.
17151
17152 2008-05-15  Bruno Haible  <bruno@clisp.org>
17153
17154         * MODULES.html.sh (Internationalization functions): Remove linebreak.
17155         (Unicode string functions): Add unilbrk/*.
17156         Reported by Karl Berry.
17157
17158 2008-05-15  Eric Blake  <ebb9@byu.net>
17159
17160         Fix violation of <stdbool.h> replacement in regex.
17161         * lib/regcomp.c (re_compile_internal): Avoid implicit cast to bool.
17162         * lib/regexec.c (re_search_internal): Likewise.
17163         Reported by Heinrich Mislik <Heinrich.Mislik@univie.ac.at>.
17164
17165 2008-05-15  Jim Meyering  <meyering@redhat.com>
17166
17167         avoid distracting test output when git or cvs is not found
17168         * tests/test-vc-list-files-cvs.sh: Suppress 'init' error output.
17169         * tests/test-vc-list-files-git.sh: Likewise.
17170
17171 2008-05-15  Eric Blake  <ebb9@byu.net>
17172
17173         Glibc finally accepted the memmem speedup code, bugzilla #5514.
17174         * doc/glibc-functions/memmem.texi (memmem): Mention last broken
17175         glibc version.
17176         * doc/glibc-functions/strcasestr.texi (strcasestr): Likewise.
17177         * doc/posix-functions/strstr.texi (strstr): Likewise.
17178         * lib/str-two-way.h (MAX): Sychronize with glibc.
17179
17180 2008-05-15  Paolo Bonzini  <bonzini@gnu.org>
17181
17182         * lib/regcomp.c (optimize_utf8): Add a note on why we test
17183         opr.ctx_type.
17184         (calc_first): Initialize constraint field.
17185         (duplicate_node_closure): Use it instead of special casing ANCHORS.
17186         Fix grammar.
17187         (duplicate_node): Merge constraint field for all node types.
17188         (calc_eclosure_iter): Look at constraint field for all node types.
17189         * lib/regex_internal.c (create_cd_newstate): Don't look at
17190         opr.ctx_type.
17191
17192 2008-05-14  Bruno Haible  <bruno@clisp.org>
17193
17194         Help GCC to do better code generation.
17195         * lib/eealloc.h (eemalloc) [GCC >= 3]: Declare with attribute 'malloc'.
17196         * lib/pagealign_alloc.h (pagealign_alloc, pagealign_xalloc): Likewise.
17197         * lib/xalloc.h (ATTRIBUTE_MALLOC): New macro.
17198         (xmalloc, xzalloc, xcalloc, xmemdup, xstrdup, xnmalloc, xcharalloc):
17199         Declare with attribute 'malloc' if supported.
17200
17201 2008-05-14  Lasse Collin  <lasse.collin@tukaani.org>
17202
17203         use "echo STR|wc -c" rather than unportable "expr length STR"
17204         * build-aux/mktempd (mktempd): Vendor-supplied expr from at least
17205         OpenBSD 4.3 and Solaris 10 do not honor expr's "length" function.
17206
17207 2008-05-14  Jim Meyering  <meyering@redhat.com>
17208
17209         use dd ibs=$n count=1 ... rather than less-portable head -c$n
17210         * build-aux/mktempd (rand_bytes): head's -cN option is not accepted
17211         by Solaris 10's /bin/head or by the one from HP-UX 11.x.
17212         Reported in http://sourceforge.net/forum/message.php?msg_id=4960334
17213         via Collin Lasse.
17214
17215 2008-05-14  Eric Blake  <ebb9@byu.net>
17216
17217         Avoid quadratic growth in gl_LIBSOURCES.
17218         * gnulib-tool (func_emit_initmacro_done): s/\(m4_append\)_uniq/\1/.
17219         Suggested by Bruno Haible.
17220
17221         Test xmemdup0.
17222         * modules/xmemdup0-tests: New file.
17223         * tests/test-xmemdup0.c: Likewise.
17224
17225 2008-05-13  Eric Blake  <ebb9@byu.net>
17226
17227         Split xmemdup0 into its own module.
17228         * modules/xmemdup0: New file.
17229         * lib/xmemdup0.h: Likewise.
17230         * lib/xmemdup0.c: Likewise.
17231         * MODULES.html.sh (Memory management functions): Add xmemdup0.
17232         * lib/xalloc.h (xmemdup0): Remove.
17233         * lib/xmalloc.c (xmemdup0): Likewise.
17234
17235 2008-05-13  Eric Blake  <ebb9@byu.net>
17236             Bruno Haible  <bruno@clisp.org>
17237
17238         Reduce number of forks required during autoconf.
17239         * gnulib-tool (func_emit_initmacro_start): Prepare gl_LIBSOURCES_LIST
17240         and gl_LIBSOURCES_DIR.
17241         (func_emit_initmacro_end): Use them here in a single m4_syscmd...
17242         (func_emit_initmacro_done) <gl_LIBSOURCES>: ...rather than in one
17243         m4_syscmd per file.
17244         <m4_foreach_w>: Move...
17245         * m4/gnulib-common.m4 (m4_foreach_w): ...here.
17246
17247 2008-05-13  Eric Blake  <ebb9@byu.net>
17248
17249         * gnulib-tool: Fix various comment typos.
17250
17251 2008-05-12  Bruno Haible  <bruno@clisp.org>
17252
17253         Tailor the linebreaking algorithm.
17254         * lib/unilbrk/tables.c (unilbrk_table): Change (IS,AL) entry.
17255
17256 2008-05-12  Bruno Haible  <bruno@clisp.org>
17257
17258         Update to Unicode 5.0.0.
17259         * lib/unilbrk/tables.h (LBP_*): Add LBP_WJ, LBP_H2, LBP_H3, LBP_JL,
17260         LBP_JV, LBP_JT. Redistribute values.
17261         (unilbrk_table): Change size.
17262         * lib/unilbrk/tables.c (unilbrk_table): Change size. Update to match
17263         Unicode TR#14 rev. 22.
17264         * lib/unilbrk/gen-lbrk.c (LBP_*): Add LBP_WJ, LBP_H2, LBP_H3, LBP_JL,
17265         LBP_JV, LBP_JT. Redistribute values.
17266         (get_lbp): Update to match Unicode TR#14 rev. 21/22 and Unicode 5.0.0.
17267         (debug_output_lbp, fill_org_lbp, debug_output_org_lbp, output_lbp):
17268         Update.
17269         * lib/unilbrk/lbrkprop1.h: Regenerated.
17270         * lib/unilbrk/lbrkprop2.h: Regenerated.
17271         * lib/unilbrk/u8-possible-linebreaks.c (u8_possible_linebreaks):
17272         Change handling of LBP_CM after LBP_ZW. Update for new value of LBP_BK.
17273         * lib/unilbrk/u16-possible-linebreaks.c (u16_possible_linebreaks):
17274         Likewise.
17275         * lib/unilbrk/u32-possible-linebreaks.c (u32_possible_linebreaks):
17276         Likewise.
17277         * tests/unilbrk/test-u8-possible-linebreaks.c (main): Update expected
17278         result.
17279         * tests/unilbrk/test-u16-possible-linebreaks.c (main): Likewise.
17280         * tests/unilbrk/test-u32-possible-linebreaks.c (main): Likewise.
17281         * tests/unilbrk/test-ulc-possible-linebreaks.c (main): Likewise.
17282         * tests/unilbrk/test-u8-width-linebreaks.c (main): Likewise.
17283         * tests/unilbrk/test-u16-width-linebreaks.c (main): Likewise.
17284         * tests/unilbrk/test-u32-width-linebreaks.c (main): Likewise.
17285
17286 2008-05-11  Bruno Haible  <bruno@clisp.org>
17287
17288         * lib/unilbrk/gen-lbrk.c (output_lbp): Fix whitespace.
17289
17290 2008-05-11  Bruno Haible  <bruno@clisp.org>
17291
17292         * lib/unilbrk/gen-lbrk.c: New file, from GNU gettext (gen-lbrkprop.c).
17293         * modules/unilbrk/gen-lbrk: New file.
17294
17295 2008-05-11  Bruno Haible  <bruno@clisp.org>
17296
17297         * m4/sha256.m4 (gl_SHA256): Require AC_C_INLINE.
17298         * m4/sha512.m4 (gl_SHA512): Likewise.
17299
17300 2008-05-11  Jim Meyering  <meyering@redhat.com>
17301
17302         New modules: crypto/sha256, crypto/sha512 (from coreutils)
17303         * modules/crypto/sha256: New file.
17304         * modules/crypto/sha512: Likewise.
17305         * lib/sha256.c: Likewise.
17306         * lib/sha256.h: Likewise.
17307         * lib/sha512.c: Likewise.
17308         * lib/sha512.h: Likewise.
17309         * lib/u64.h: Likewise.
17310         * m4/sha256.m4: Likewise.
17311         * m4/sha512.m4: Likewise.
17312         * MODULES.html.sh (Cryptographic computations (low-level)): List them.
17313
17314 2008-05-10  Bruno Haible  <bruno@clisp.org>
17315
17316         * MODULES.html.sh (Environment variables <stdlib.h>): Add unsetenv.
17317         (Input/Output <stdio.h>): Add xprintf.
17318         (Signal handling <signal.h>): Add strsignal.
17319         (Cryptographic computations (high-level)): Add crypto/gc-camellia.
17320         (Core language properties): Add func.
17321         (Mathematics <math.h>): Add ceil, floor, frexp-nolibm.
17322         (Support for systems lacking POSIX:2001): Add environ, EOVERFLOW,
17323         strings.
17324         (Enhancements for POSIX:2001 functions): Add iconv_open-utf.
17325         (Input/output): New section.
17326         (File system functions): Add openat-die, stat-macros.
17327         (Networking functions): Add sockets.
17328         (Unicode string functions): Add unictype/*.
17329         (Support for building libraries and executables): Add gperf.
17330         (Support for building documentation): Add agpl-3.0.
17331         (Misc): Add nocrash.
17332
17333 2008-05-10  Bruno Haible  <bruno@clisp.org>
17334
17335         * modules/unictype/gen-ctype: New file.
17336
17337 2008-05-10  Jim Meyering  <meyering@redhat.com>
17338
17339         Make chdir-safer.c more efficient on a system with no symlinks.
17340         * lib/chdir-safer.c (chdir_no_follow): Skip lstat and fstat calls
17341         also if ELOOP is zero.  Suggested by Bruno Haible.
17342
17343         Make chdir-safer.c slightly safer.
17344         * lib/chdir-safer.c (chdir_no_follow): Test HAVE_WORKING_O_NOFOLLOW,
17345         not O_NOFOLLOW, in case the latter is nonzero and open ignores it.
17346
17347         Avoid compile failure on systems without ELOOP (like mingw).
17348         * lib/chdir-safer.c (ELOOP): Define if not already defined.
17349         Reported by Bruno Haible.
17350
17351 2008-05-10  Bruno Haible  <bruno@clisp.org>
17352
17353         * lib/unilbrk/ulc-common.c: Include c-strcaseeq.h instead of streq.h.
17354         (is_utf8_encoding): Use a case-insensitive comparison.
17355         * modules/unilbrk/ulc-common (Depends-on): Add c-strcaseeq. Remove
17356         streq.
17357
17358 2008-05-10  Bruno Haible  <bruno@clisp.org>
17359
17360         * lib/unilbrk/ulc-common.c: Don't include <stdlib.h>.
17361         (iconv_string_length, iconv_string_keeping_offsets): Remove functions.
17362         * lib/unilbrk/ulc-common.h (iconv_string_length,
17363         iconv_string_keeping_offsets): Remove declarations.
17364         * lib/unilbrk/ulc-possible-linebreaks.c: Include <string.h>, uniconv.h.
17365         Don't include <iconv.h>, streq.h, xsize.h.
17366         (ulc_possible_linebreaks): Use u8_conv_from_encoding for doing the
17367         conversion.
17368         * lib/unilbrk/ulc-width-linebreaks.c: Include uniconv.h. Don't include
17369         <iconv.h>, streq.h, xsize.h.
17370         (ulc_width_linebreaks): Use u8_conv_from_encoding for doing the
17371         conversion.
17372         * modules/unilbrk/ulc-common (Depends-on): Remove iconv.
17373         * modules/unilbrk/ulc-possible-linebreaks (Depends-on): Add
17374         uniconv/u8-conv-from-enc. Remove iconv_open, streq, xsize.
17375         * modules/unilbrk/ulc-width-linebreaks (Depends-on): Likewise.
17376
17377 2008-05-10  Bruno Haible  <bruno@clisp.org>
17378
17379         * modules/unilbrk/ulc-width-linebreaks-tests: New file.
17380         * tests/unilbrk/test-ulc-width-linebreaks.c: New file.
17381
17382         * modules/unilbrk/u32-width-linebreaks-tests: New file.
17383         * tests/unilbrk/test-u32-width-linebreaks.c: New file.
17384
17385         * modules/unilbrk/u16-width-linebreaks-tests: New file.
17386         * tests/unilbrk/test-u16-width-linebreaks.c: New file.
17387
17388         * modules/unilbrk/u8-width-linebreaks-tests: New file.
17389         * tests/unilbrk/test-u8-width-linebreaks.c: New file.
17390
17391         * modules/unilbrk/ulc-possible-linebreaks-tests: New file.
17392         * tests/unilbrk/test-ulc-possible-linebreaks.c: New file.
17393
17394         * modules/unilbrk/u32-possible-linebreaks-tests: New file.
17395         * tests/unilbrk/test-u32-possible-linebreaks.c: New file.
17396
17397         * modules/unilbrk/u16-possible-linebreaks-tests: New file.
17398         * tests/unilbrk/test-u16-possible-linebreaks.c: New file.
17399
17400         * modules/unilbrk/u8-possible-linebreaks-tests: New file.
17401         * tests/unilbrk/test-u8-possible-linebreaks.c: New file.
17402
17403 2008-05-10  Bruno Haible  <bruno@clisp.org>
17404
17405         Split up 'linebreak' module.
17406         * lib/unilbrk.h: New file, based on lib/linebreak.h.
17407         * lib/unilbrk/lbrkprop1.h: New file, extracted from lib/lbrkprop.h.
17408         * lib/unilbrk/lbrkprop2.h: New file, renamed from lib/lbrkprop.h with
17409         modifications.
17410         * lib/unilbrk/tables.h: New file, extracted from lib/linebreak.c.
17411         * lib/unilbrk/tables.c: New file, extracted from lib/linebreak.c.
17412         * lib/unilbrk/u8-possible-linebreaks.c: New file, extracted from
17413         lib/linebreak.c.
17414         * lib/unilbrk/u16-possible-linebreaks.c: New file, extracted from
17415         lib/linebreak.c.
17416         * lib/unilbrk/u32-possible-linebreaks.c: New file, extracted from
17417         lib/linebreak.c.
17418         * lib/unilbrk/ulc-common.h: New file, extracted from lib/linebreak.c.
17419         * lib/unilbrk/ulc-common.c: New file, extracted from lib/linebreak.c.
17420         * lib/unilbrk/ulc-possible-linebreaks.c: New file, extracted from
17421         lib/linebreak.c.
17422         * lib/unilbrk/u8-width-linebreaks.c: New file, extracted from
17423         lib/linebreak.c.
17424         * lib/unilbrk/u16-width-linebreaks.c: New file, extracted from
17425         lib/linebreak.c.
17426         * lib/unilbrk/u32-width-linebreaks.c: New file, extracted from
17427         lib/linebreak.c.
17428         * lib/unilbrk/ulc-width-linebreaks.c: New file, extracted from
17429         lib/linebreak.c.
17430         * modules/unilbrk/base: New file.
17431         * modules/unilbrk/tables: New file.
17432         * modules/unilbrk/u8-possible-linebreaks: New file.
17433         * modules/unilbrk/u16-possible-linebreaks: New file.
17434         * modules/unilbrk/u32-possible-linebreaks: New file.
17435         * modules/unilbrk/ulc-common: New file.
17436         * modules/unilbrk/ulc-possible-linebreaks: New file.
17437         * modules/unilbrk/u8-width-linebreaks: New file.
17438         * modules/unilbrk/u16-width-linebreaks: New file.
17439         * modules/unilbrk/u32-width-linebreaks: New file.
17440         * modules/unilbrk/ulc-width-linebreaks: New file.
17441         * lib/linebreak.h: Remove file.
17442         * lib/linebreak.c: Remove file.
17443         * m4/linebreak.m4: Remove file.
17444         * modules/linebreak: Remove file.
17445         * NEWS: Mention the changes.
17446
17447 2008-05-09  Eric Blake  <ebb9@byu.net>
17448
17449         Add xmemdup0.
17450         * lib/xalloc.h (xmemdup0): New prototype and C++ typesafe
17451         implementation.
17452         * lib/xmalloc.c (xmemdup0): New C implementation.
17453
17454 2008-05-08  Bruno Haible  <bruno@clisp.org>
17455
17456         * m4/wctype.m4 (gl_WCTYPE_H): Correct indentation.
17457
17458 2008-05-07  Eric Blake  <ebb9@byu.net>
17459
17460         Support cross-compilation of <wctype.h>.
17461         * m4/wctype.m4 (gl_WCTYPE_H): Fix improper nesting in
17462         AC_CACHE_CHECK.
17463
17464 2008-05-06  Soren Hansen  <soren@ubuntu.com>  (tiny change)
17465
17466         * build-aux/vc-list-files: Add support for bzr.
17467
17468 2008-05-03  Jim Meyering  <meyering@redhat.com>
17469
17470         avoid failed assertion with tight malloc
17471         * tests/test-getndelim2.c: Correct an off-by-one assertion.
17472
17473 2008-05-03  Simon Josefsson  <simon@josefsson.org>
17474
17475         * m4/inet_pton.m4: Set HAVE_DECL_INET_PTON to 0 when declarations
17476         are needed from arpa/inet.h.
17477         * m4/inet_ntop.m4: Likewise, for HAVE_DECL_INET_NTOP.
17478         Reported by Bruno Haible.
17479
17480 2008-05-02  Jim Meyering  <meyering@redhat.com>
17481
17482         avoid compilation error on FreeBSD 6
17483         * tests/test-getaddrinfo.c [!defined EAI_NODATA] (EAI_NODATA): Define.
17484
17485 2008-05-01  Jim Meyering  <meyering@redhat.com>
17486
17487         useless-if-before-free: correct --help's exit status description
17488         * build-aux/useless-if-before-free (usage): Like grep, exit 0
17489         for one or more matches, etc.  Reported by Bruno Haible.
17490
17491         vc-list-files: make the stand-alone gnulib test work
17492         * modules/vc-list-files-tests (configure.ac):
17493         Define and AC_SUBST abs_aux_dir.
17494         (Makefile.am) [TESTS_ENVIRONMENT]: Rather than passing
17495         $(abs_top_srcdir) to each script and having each of them
17496         duplicate the work of setting PATH, set PATH here, using
17497         the new variable, abs_aux_dir instead.
17498         * tests/test-vc-list-files-cvs.sh: Don't set PATH here.
17499         * tests/test-vc-list-files-git.sh: Likewise.
17500         Reported by Bruno Haible.
17501
17502 2008-05-01  Bruno Haible  <bruno@clisp.org>
17503
17504         * lib/getndelim2.c (getndelim2): Fix newsize computation during
17505         reallocation. Rename 'done' to 'found_delimiter'.
17506
17507 2008-05-01  Jim Meyering  <meyering@redhat.com>
17508
17509         vc-list-files: accommodate /bin/sh like the one from Solaris 10
17510         * build-aux/vc-list-files: Use `...`, not $(...).
17511
17512 2008-04-30  Jim Meyering  <meyering@redhat.com>
17513
17514         add tests for vc-list-files
17515         * modules/vc-list-files-tests: New module.
17516         * tests/test-vc-list-files-cvs.sh: New file.
17517         * tests/test-vc-list-files-git.sh: New file.
17518
17519         avoid a warning from gcc
17520         * lib/getndelim2.c (IF_LINT): Define.
17521         (getndelim2): Use it to avoid a "may be used uninitialized" warning.
17522
17523         vc-list-files: work properly with build-aux/cvsu, too
17524         * build-aux/vc-list-files: Hoist the "./"-removing code to apply
17525         to all cvs-based clauses.
17526
17527         vc-list-files: work properly in the CVS+awk case, too
17528         * build-aux/vc-list-files: In the CVS+awk case, remove "./" prefix.
17529
17530         vc-list-files: avoid use of ${*-*} that fails when /bin/sh is dash
17531         * build-aux/vc-list-files: Simplify ${*-*} to $dir, since we no longer
17532         take more than one file argument, so .  Add quotes, just in case $dir
17533         ever contains a shell meta-character.  Prompted by Soren Hansen in
17534         <http://thread.gmane.org/gmane.comp.emulators.libvirt/6221/focus=6240>.
17535
17536 2008-04-29  Eric Blake  <ebb9@byu.net>
17537
17538         Optimize getndelim2 to use block operations when possible.
17539         * modules/getndelim2 (Depends-on): Add stdbool, freadptr,
17540         freadseek, and memchr2.
17541         * lib/getndelim2.c (getndelim2): Use them for block reads.
17542
17543 2008-04-29  Bruno Haible  <bruno@clisp.org>
17544
17545         * m4/inet_ntop.m4 (gl_INET_NTOP): Require gl_USE_SYSTEM_EXTENSIONS.
17546         * m4/inet_pton.m4 (gl_INET_PTON): Likewise.
17547         * modules/inet_ntop (Depends-on): Add extensions.
17548         * modules/inet_pton (Depends-on): Likewise.
17549         Reported by Simon Josefsson.
17550
17551 2008-04-29  Jim Meyering  <meyering@redhat.com>
17552
17553         When the is more than one match in a block, match all of them.
17554         * build-aux/useless-if-before-free: Iterate through each block
17555         until there are no more matches.
17556
17557         Fix broken useless-if-before-free script.
17558         * build-aux/useless-if-before-free: Fix typo: missing "?" after
17559         the expression to match cast of argument to free-like function.
17560
17561 2008-04-29  Eric Blake  <ebb9@byu.net>
17562
17563         Use new header.
17564         * lib/getaddrinfo.c (includes): s/"inet_ntop.h"/<arpa/inet.h>/.
17565
17566 2008-04-29  Jim Meyering  <meyering@redhat.com>
17567
17568         Avoid test segfault on x86_64 due to lack of inet_ntop declaration.
17569         * tests/test-getaddrinfo.c: Include <arpa/inet.h>, now guaranteed
17570         by gnulib to exist and to declare e.g., inet_ntop.
17571         Don't include "inet_ntop.h", now removed.
17572
17573         * m4/arpa_inet_h.m4: Remove trailing blanks.
17574
17575 2008-04-29  Eric Blake  <ebb9@byu.net>
17576
17577         Silence valgrind on safe reads beyond potential array bounds.
17578         * lib/rawmemchr.valgrind: New file.
17579         * lib/strchrnul.valgrind: Likewise.
17580         * modules/rawmemchr (Files): Distribute new file.
17581         * modules/strchrnul (Files): Likewise.
17582         Suggested by Bruno Haible.
17583
17584 2008-04-29  Bruno Haible  <bruno@clisp.org>
17585
17586         * lib/arpa_inet.in.h: Include system's <arpa/inet.h> if it exists.
17587         (inet_ntop, inet_pton): Change portability warning's wording.
17588         * m4/arpa_inet_h.m4 (gl_HEADER_ARPA_INET): Set HAVE_ARPA_INET_H.
17589         Invoke gl_CHECK_NEXT_HEADERS.
17590         (gl_ARPA_INET_H_DEFAULTS): Initialize ARPA_INET_H.
17591         * m4/inet_ntop.m4 (gl_INET_NTOP): Require gl_ARPA_INET_H_DEFAULTS and
17592         set ARPA_INET_H.
17593         * m4/inet_pton.m4 (gl_INET_PTON): Likewise.
17594         * modules/arpa_inet (Description): No longer only for systems that
17595         lack it.
17596         (Depends-on): Add include_next.
17597         (Makeile.am): Substitute INCLUDE_NEXT, NEXT_ARPA_INET_H,
17598         HAVE_ARPA_INET_H.
17599
17600 2008-04-29  Jim Meyering  <meyering@redhat.com>
17601
17602         * modules/mkdir (License): Re-license as LGPLv2+.
17603
17604 2008-04-29  Bruno Haible  <bruno@clisp.org>
17605
17606         * modules/rawmemchr (Maintainer): Set to Eric.
17607         * modules/strchrnul (Maintainer): Likewise.
17608
17609 2008-04-29  Simon Josefsson  <simon@josefsson.org>
17610
17611         * m4/arpa_inet_h.m4 (gl_ARPA_INET_H_DEFAULTS): Set
17612         HAVE_DECL_INET_NTOP and HAVE_DECL_INET_PTON.
17613
17614         * modules/arpa_inet (arpa/inet.h): Use them.
17615
17616 2008-04-28  Eric Blake  <ebb9@byu.net>
17617
17618         Test getndelim2.
17619         * modules/getndelim2-tests: New file.
17620         * tests/test-getndelim2.c: Likewise.
17621         * lib/getndelim2.c (getndelim2): Never return 0.  Lock the
17622         stream.
17623         * m4/getndelim2.m4 (gl_GETNDELIM2): Check for lock functions.
17624
17625         * MODULES.html.sh: Document new module.
17626
17627 2008-04-20  Bruno Haible  <bruno@clisp.org>
17628
17629         * lib/c-stack.c (die): Use raise.
17630         * modules/c-stack (Depends-on): Add raise.
17631
17632 2008-04-28  Bruno Haible  <bruno@clisp.org>
17633
17634         Expect rpmatch to be declared.
17635         * lib/yesno.c (rpmatch): Remove declaration.
17636
17637         Declare rpmatch.
17638         * lib/stdlib.in.h (rpmatch): New declaration.
17639         * lib/rpmatch.c: Include <stdlib.h> first.
17640         * m4/rpmatch.m4 (gl_FUNC_RPMATCH): Require AC_USE_SYSTEM_EXTENSIONS and
17641         gl_STDLIB_H_DEFAULTS. Set HAVE_RPMATCH.
17642         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_RPMATCH,
17643         HAVE_RPMATCH.
17644         * modules/rpmatch (Depends-on): Add stdlib, extensions.
17645         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
17646         (Include): Set to <stdlib.h>.
17647         * modules/stdlib (Makefile.am): Substitute GNULIB_RPMATCH and
17648         HAVE_RPMATCH.
17649         * NEWS: Document the change.
17650
17651 2008-04-28  Bruno Haible  <bruno@clisp.org>
17652
17653         Change rpmatch to use nl_langinfo when appropriate.
17654         * lib/rpmatch.c: Include stdbool.h, string.h, langinfo.h.
17655         (N_): New macro.
17656         (localized_pattern): New function/macro.
17657         (try): Remove match, nomatch arguments. Copy the pattern into safe
17658         memory before caching it.
17659         (rpmatch): Use localized_pattern. Add translator comments.
17660         * m4/rpmatch.m4 (gl_PREREQ_RPMATCH): Test for nl_langinfo and YESEXPR.
17661         Suggested by Eric Blake.
17662         * modules/rpmatch (Depends-on): Add stdbool.
17663
17664 2008-04-28  Eric Blake  <ebb9@byu.net>
17665
17666         Add rawmemchr module, matching glibc.
17667         * modules/string (Makefile.am): New indicator.
17668         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Set it.
17669         * lib/string.in.h (rawmemchr): Declare when appropriate.
17670         * modules/rawmemchr: New file.
17671         * m4/rawmemchr.m4: Likewise.
17672         * lib/rawmemchr.c: Likewise.
17673         * modules/rawmemchr-tests: Likewise.
17674         * tests/test-rawmemchr.c: Likewise.
17675         * doc/glibc-functions/rawmemchr.texi (rawmemchr): Document
17676         module.
17677         * modules/strchrnul (Depends-on): Add rawmemchr.
17678         * lib/strchrnul.c (strchrnul): Optimize a corner case.
17679
17680         Whitespace cleanup.
17681         * tests/test-strchrnul.c: Reindent.
17682         * lib/strchrnul.c: Likewise.
17683
17684         Optimize and test strchrnul.
17685         * lib/strchrnul.c (strchrnul): Rewrite to do parallel search.
17686         * modules/strchrnul-tests: New file.
17687         * tests/test-strchrnul.c: Likewise.
17688
17689         Remove intprops dependency.
17690         * modules/memchr (Depends-on): Remove intprops.
17691         * modules/memrchr (Depends-on): Likewise.
17692         * modules/memchr2 (Depends-on): Likewise.
17693         * lib/memchr.c (__memchr): Hand-inline the TYPE_MAXIMUM check.
17694         * lib/memrchr.c (__memrchr): Likewise.
17695         * lib/memrchr2.c (memchr2): Likewise.
17696         Reported by Simon Josefsson.
17697
17698 2008-04-28  Simon Josefsson  <simon@josefsson.org>
17699
17700         * m4/sys_socket_h.m4: Move AC_REQUIRE([AC_C_INLINE]) to top.
17701         Suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
17702
17703 2008-04-28  Simon Josefsson  <simon@josefsson.org>
17704
17705         * lib/inet_ntop.h, lib/inet_pton.h: Remove files.
17706
17707         * lib/inet_ntop.c: Include arpa/inet.h instead of inet_ntop.h.
17708
17709         * lib/inet_pton.c: Include arpa/inet.h instead of inet_pton.h.
17710
17711         * lib/arpa_inet.in.h [@GNULIB_INET_NTOP@]: Inline inet_ntop.h
17712         declarations.
17713         [@GNULIB_INET_PTON@]: Inline inet_pton.h declarations.
17714
17715         * m4/inet_pton.m4: Don't check for header files.
17716
17717         * m4/inet_ntop.m4: Don't check for header files.
17718
17719 2008-04-28  Simon Josefsson  <simon@josefsson.org>
17720
17721         * m4/sys_socket_h.m4: Require AC_C_INLINE when necessary.
17722         * lib/sys_socket.in.h (setsockopt): Use proper win32 tests (don't
17723         trigger for cygwin).
17724         Reported by Bruno Haible  <bruno@clisp.org>.
17725
17726 2008-04-28  Bruno Haible  <bruno@clisp.org>
17727
17728         * doc/posix-functions/strdup.texi: Mention mingw problem.
17729
17730 2008-04-27  Bruno Haible  <bruno@clisp.org>
17731
17732         * modules/stat-time-tests (Depends-on): Add sleep.
17733         * tests/test-stat-time.c (force_unlink): New function.
17734         (cleanup): Use it.
17735         (test_mtime): Remove the ctime related tests.
17736         (test_ctime): New function, containing the ctime related tests.
17737         (main): Call test_ctime, except on native Windows platforms.
17738
17739 2008-04-27  Bruno Haible  <bruno@clisp.org>
17740
17741         * lib/rpmatch.c (rpmatch): Add some comments.
17742         Reported by James Youngman <jay@gnu.org>.
17743
17744 2008-04-27  Bruno Haible  <bruno@clisp.org>
17745
17746         * m4/isnanl.m4 (gl_FUNC_ISNANL_WORKS): Also test the behaviour on
17747         quiet NaNs.
17748
17749 2008-04-27  Bruno Haible  <bruno@clisp.org>
17750
17751         Make test-yesno.sh work on mingw.
17752         * tests/test-yesno.sh: Postprocess the output to convert CR/LF to LF.
17753         * tests/test-yesno.c: Include yesno.h first. Include binary-io.h.
17754         (main): Set stdin to binary mode.
17755         * modules/yesno-tests (Depends-on): Add binary-io.
17756
17757 2008-04-27  Bruno Haible  <bruno@clisp.org>
17758
17759         Fix 'isfinite' on x86, x86_64, ia64 platforms.
17760         * tests/test-isfinite.c (test_isfinitel): Also test the behavior on
17761         argument that lie outside the IEEE 854 domain.
17762         * m4/isfinite.m4 (gl_ISFINITEL_WORKS): New macro.
17763         (gl_ISFINITE): Use it.
17764         * doc/posix-functions/isfinite.texi: Document the fixed bugs.
17765
17766 2008-04-27  Bruno Haible  <bruno@clisp.org>
17767
17768         Allow local renaming in config.h.
17769         * lib/memrchr.c (memrchr): Don't undefine outside libc.
17770
17771 2008-04-27  Bruno Haible  <bruno@clisp.org>
17772
17773         * lib/memchr.c (__memchr): Change type of 'i'.
17774         * lib/memchr2.c (memchr2): Likewise.
17775
17776 2008-04-26  Eric Blake  <ebb9@byu.net>
17777         and Bruno Haible  <bruno@clisp.org>
17778
17779         Optimize and test memrchr.
17780         * modules/memrchr (Depends-on): Add intprops.
17781         * lib/memrchr.c (__memrchr): Avoid false positives in loop.
17782         * modules/memrchr-tests: New file.
17783         * tests/test-memrchr.c: New file.
17784
17785 2008-04-26  Bruno Haible  <bruno@clisp.org>
17786
17787         Add tentative support for DragonFly BSD.
17788         * lib/stdio-impl.h: Add macros for DragonFly BSD.
17789         * lib/fbufmode.c (fbufmode): Update conditionals. Use fp_ instead of
17790         fp.
17791         * lib/fflush.c (clear_ungetc_buffer, disable_seek_optimization,
17792         restore_seek_optimization, update_fpos_cache, rpl_fflush: Likewise.
17793         * lib/fpurge.c (fpurge): Likewise.
17794         * lib/freadable.c (freaadable): Likewise.
17795         * lib/freadahead.c (freadahead): Likewise.
17796         * lib/freading.c (freading): Likewise.
17797         * lib/freadptr.c (freadptr): Likewise.
17798         * lib/freadseek.c (freadptrinc): Likewise.
17799         * lib/fseeko.c (fseeko): Likewise.
17800         * lib/fseterr.c (fseterr): Likewise.
17801         * lib/fwritable.c (fwritable): Likewise.
17802         * lib/fwriting.c (fwriting): Likewise.
17803
17804 2008-04-26  Bruno Haible  <bruno@clisp.org>
17805
17806         * lib/stdio-impl.h: New file.
17807         * lib/fbufmode.c: Include stdio-impl.h.
17808         (fbufmode): Use fp_, remove redundant #defines.
17809         * lib/fflush.c: Include stdio-impl.h.
17810         (clear_ungetc_buffer): Remove redundant #defines.
17811         * lib/fpurge.c: Include stdio-impl.h.
17812         (fpurge): Remove redundant #defines.
17813         * lib/freadable.c: Include stdio-impl.h.
17814         (freadable): Remove redundant #defines.
17815         * lib/freadahead.c: Include stdio-impl.h.
17816         (freadahead): Remove redundant #defines.
17817         * lib/freading.c: Include stdio-impl.h.
17818         (freading): Remove redundant #defines.
17819         * lib/freadptr.c: Include stdio-impl.h.
17820         (freadptr): Remove redundant #defines.
17821         * lib/freadseek.c: Include stdio-impl.h.
17822         (freadptrinc): Remove redundant #defines.
17823         * lib/fseeko.c: Include stdio-impl.h.
17824         (rpl_fseeko): Remove redundant #defines.
17825         * lib/fseterr.c: Include stdio-impl.h.
17826         (fseterr): Remove redundant #defines.
17827         * lib/fwritable.c: Include stdio-impl.h.
17828         (fwritable: Remove redundant #defines.
17829         * lib/fwriting.c: Include stdio-impl.h.
17830         (fwriting): Remove redundant #defines.
17831         * modules/fbufmode (Files): Add lib/stdio-impl.h.
17832         * modules/fflush (Files): Likewise.
17833         * modules/fpurge (Files): Likewise.
17834         * modules/freadable (Files): Likewise.
17835         * modules/freadahead (Files): Likewise.
17836         * modules/freading (Files): Likewise.
17837         * modules/freadptr (Files): Likewise.
17838         * modules/freadseek (Files): Likewise.
17839         * modules/fseeko (Files): Likewise.
17840         * modules/fseterr (Files): Likewise.
17841         * modules/fwritable (Files): Likewise.
17842         * modules/fwriting (Files): Likewise.
17843
17844 2008-04-26  Bruno Haible  <bruno@clisp.org>
17845
17846         * lib/fflush.c (clear_ungetc_buffer, disable_seek_optimization,
17847         restore_seek_optimization, update_fpos_cache): New functions, extracted
17848         from rpl_fflush.
17849         (rpl_fflush): Use them.
17850         * m4/fflush.m4 (gl_PREREQ_FFLUSH): New macro.
17851         (gl_REPLACE_FFLUSH): Use it.
17852
17853 2008-04-26  Bruno Haible  <bruno@clisp.org>
17854
17855         * tests/test-xstrtol.sh: Work around limitation of an old 'tr' program
17856         on Solaris.
17857         * tests/test-xstrtoimax.sh: Likewise.
17858         * tests/test-xstrtoumax.sh: Likewise.
17859         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
17860
17861 2008-04-26  Bruno Haible  <bruno@clisp.org>
17862
17863         * modules/memchr-tests: New file.
17864         * tests/test-memchr.c; New file, based on tests/test-memchr2.c.
17865
17866 2008-04-26  Eric Blake  <ebb9@byu.net>
17867             Bruno Haible  <bruno@clisp.org>
17868
17869         * lib/memchr.c: Include intprops.h.
17870         (__memchr): Optimize parallel detection of matching bytes. Rename local
17871         variables. Add explanatory comments.
17872
17873 2008-04-26  Bruno Haible  <bruno@clisp.org>
17874
17875         Fix module 'memchr', broken since 2000-10-28.
17876         * lib/memchr.c: Outside glibc, define memchr, not __memchr.
17877
17878 2008-04-26  Bruno Haible  <bruno@clisp.org>
17879
17880         * lib/memchr2.c (memchr2): Rename local variables. Add explanatory
17881         comments.
17882
17883 2008-04-25  Eric Blake  <ebb9@byu.net>
17884
17885         Use native fstatat on cygwin 1.7.0.
17886         * m4/openat.m4 (gl_FUNC_OPENAT): Make sure lstat check is made
17887         first.
17888
17889 2008-04-23  Eric Blake  <ebb9@byu.net>
17890
17891         Improve memchr2 performance.
17892         * lib/memchr2.c (memchr2): Further optimize parallel detection of
17893         NUL bytes.
17894         * modules/memchr2 (Depends-on): Use intprops.h.
17895
17896 2008-04-23  Simon Josefsson  <simon@josefsson.org>
17897
17898         * lib/sys_socket.in.h (setsockopt): Be more type safe by declaring
17899         an inline function instead of a CPP macro.  Patch by Ben Pfaff
17900         <blp@cs.stanford.edu>.
17901
17902 2008-04-23  Simon Josefsson  <simon@josefsson.org>
17903
17904         * lib/arpa_inet.in.h: New file.
17905
17906         * modules/arpa_inet (Files): Add lib/arpa_inet.in.h.
17907         (Makefile.am): Sed in substitute header file.
17908
17909         * m4/arpa_inet_h.m4: Add gl_ARPA_INET_H_DEFAULTS and
17910         gl_ARPA_INET_MODULE_INDICATOR.  Use them.
17911
17912         * modules/inet_ntop (configure.ac): Use
17913         gl_ARPA_INET_MODULE_INDICATOR.
17914
17915         * modules/inet_pton (configure.ac): Use
17916         gl_ARPA_INET_MODULE_INDICATOR.
17917
17918 2008-04-22  Jim Meyering  <meyering@redhat.com>
17919
17920         * modules/verify (License): Re-license as LGPLv2+.
17921
17922 2008-04-22  Simon Josefsson  <simon@josefsson.org>
17923
17924         * lib/sys_socket.in.h: Define setsockopt macro to cast fourth
17925         parameter to void* as per POSIX standard (MinGW uses char*).
17926
17927 2008-04-21  Bruno Haible  <bruno@clisp.org>
17928
17929         * lib/wctype.in.h (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit,
17930         iswgraph, iswlower, iswprint, iswpunct, iswspace, iswupper, iswxdigit):
17931         Define to replacements if REPLACE_ISWCNTRL is 1.
17932         * m4/wctype.m4 (gl_WCTYPE_H): Test whether the isw* functions work.
17933         If not, set WCTYPE_H to nonempty and REPLACE_ISWCNTRL to 1.
17934         * modules/wctype (Makefile.am): Substitute REPLACE_ISWCNTRL.
17935         * doc/posix-functions/iswalnum.texi: Mention the 'wctype' module and
17936         what it fixes.
17937         * doc/posix-functions/iswalpha.texi: Likewise.
17938         * doc/posix-functions/iswblank.texi: Likewise.
17939         * doc/posix-functions/iswcntrl.texi: Likewise.
17940         * doc/posix-functions/iswdigit.texi: Likewise.
17941         * doc/posix-functions/iswgraph.texi: Likewise.
17942         * doc/posix-functions/iswlower.texi: Likewise.
17943         * doc/posix-functions/iswprint.texi: Likewise.
17944         * doc/posix-functions/iswpunct.texi: Likewise.
17945         * doc/posix-functions/iswspace.texi: Likewise.
17946         * doc/posix-functions/iswupper.texi: Likewise.
17947         * doc/posix-functions/iswxdigit.texi: Likewise.
17948         Reported by Alain Guibert.
17949
17950 2008-04-21  Bruno Haible  <bruno@clisp.org>
17951
17952         * m4/vsnprintf.m4 (gl_FUNC_VSNPRINTF): Fix typo in last commit.
17953         Patch by Alain Guibert.
17954
17955 2008-04-21  Bruno Haible  <bruno@clisp.org>
17956
17957         Fix test failures on mingw.
17958         * tests/test-xstrtol.c (print_no_progname): New function.
17959         (main): Install it in error_print_progname hook.
17960         * tests/test-xstrtol.sh: Convert CR/LF to NL in output.
17961         * tests/test-xstrtoimax.sh: Likewise.
17962         * tests/test-xstrtoumax.sh: Likewise.
17963
17964 2008-04-21  Bruno Haible  <bruno@clisp.org>
17965
17966         Fix test failure on mingw.
17967         * tests/test-argp-2.sh (func_compare): Remove CRs from sed's output.
17968
17969 2008-04-21  Bruno Haible  <bruno@clisp.org>
17970
17971         * lib/localename.c (SUBLANG_TIBETAN_PRC, SUBLANG_TIBETAN_BHUTAN):
17972         Actually assign a value.
17973
17974 2008-04-20  Bruno Haible  <bruno@clisp.org>
17975
17976         Fix conflict between modules 'canonicalize' and 'canonicalize-lgpl',
17977         take 2.
17978         * lib/canonicalize.c (canonicalize_file_name): Elide if the
17979         'canonicalize-lgpl' module is also used.
17980         * lib/canonicalize-lgpl.c: Undo last change.
17981         * modules/canonicalize-lgpl (configure.ac): Invoke gl_MODULE_INDICATOR.
17982
17983 2008-04-20  Bruno Haible  <bruno@clisp.org>
17984
17985         * lib/mkdir.c (mkdir): Undefine after the includes, not right after
17986         config.h. Provide _mkdir based fallback for mingw.
17987         * lib/sys_stat.in.h (mkdir): Define through an 'extern' declaration
17988         if REPLACE_MKDIR is 1. Otherwise, test for mingw directly.
17989         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Require
17990         gl_SYS_STAT_H_DEFAULTS. When doing the replacement, set REPLACE_MKDIR
17991         rather than defining mkdir in config.h.
17992         * m4/sys_stat_h.m4 (gl_SYS_STAT_MODULE_INDICATOR): New macro.
17993         (gl_SYS_STAT_H_DEFAULTS): New macro.
17994         (gl_HEADER_SYS_STAT_H): Require it. Don't set HAVE_DECL_MKDIR and
17995         HAVE_IO_H any more.
17996         * modules/sys_stat (Makefile.am): Substitute REPLACE_MKDIR instead of
17997         HAVE_DECL_MKDIR and HAVE_IO_H.
17998
17999 2008-04-20  Bruno Haible  <bruno@clisp.org>
18000
18001         * lib/isapipe.c: Port to native Windows platforms.
18002
18003 2008-04-20  Bruno Haible  <bruno@clisp.org>
18004
18005         * lib/gc-gnulib.c: Include <windows.h> before <wincrypt.h>.
18006
18007 2008-04-21  Eric Blake  <ebb9@byu.net>
18008
18009         Work around preprocessors that don't handle UINTMAX_MAX.
18010         * lib/memchr2.c (memchr2): Avoid embedded #if.
18011         Reported by Alain Guibert, fix suggested by Bruno Haible.
18012
18013 2008-04-21  Simon Josefsson  <simon@josefsson.org>
18014
18015         * doc/posix-functions/strftime.texi (strftime): Explain better
18016         Windows incompatibility.  Suggested by Micah Cowan
18017         <micah@cowan.name>.
18018
18019 2008-04-20  Bruno Haible  <bruno@clisp.org>
18020
18021         * modules/uniconv/u32-conv-to-enc (Depends-on): Add unistr/u32-mblen,
18022         unistr/u8-mblen.
18023
18024 2008-04-20  Bruno Haible  <bruno@clisp.org>
18025
18026         Fix test failure on platforms with non-GNU iconv.
18027         * lib/uniconv/u16-conv-to-enc.c (u16_to_u8_lenient): New function.
18028         (U_TO_U8): Use it, rather than u16_to_u8.
18029         * lib/uniconv/u-conv-to-enc.h (FUNC): Allow an incomplete sequence of
18030         units at the end of the input string.
18031         * modules/uniconv/u16-conv-to-enc (Depends-on): Update.
18032
18033 2008-04-20  Bruno Haible  <bruno@clisp.org>
18034
18035         * tests/uniconv/test-u8-conv-to-enc.c (main): Accept result == NULL
18036         when the resulting length is 0.
18037         * tests/uniconv/test-u16-conv-to-enc.c (main): Likewise.
18038
18039 2008-04-20  Bruno Haible  <bruno@clisp.org>
18040
18041         * m4/roundf.m4 (gl_FUNC_ROUNDF): Add test whether roundf actually
18042         works.
18043         * doc/posix-functions/roundf.texi: Mention roundf bug on mingw.
18044
18045 2008-04-20  Bruno Haible  <bruno@clisp.org>
18046
18047         * tests/test-tsearch.c (main): Don't use initstate if it is missing.
18048         * modules/tsearch-tests (configure.ac): Test for initstate function.
18049
18050 2008-04-20  Bruno Haible  <bruno@clisp.org>
18051
18052         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Also provided a substitute
18053         for nlink_t if missing.
18054         * tests/test-sys_stat.c: Check the existence of the nlink_t type.
18055
18056 2008-04-19  Bruno Haible  <bruno@clisp.org>
18057
18058         Work around snprintf bug on Linux libc5.
18059         * m4/printf.m4 (gl_SNPRINTF_SIZE1): New macro.
18060         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
18061         gl_SNPRINTF_SIZE1.
18062         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
18063         * m4/snprintf.m4 (gl_FUNC_SNPRINTF): Likewise. Replace snprintf if
18064         that test failed.
18065         * m4/vsnprintf.m4 (gl_FUNC_VSNPRINTF): Likewise.
18066         * lib/vasnprintf.c (USE_SNPRINTF): Set to 0 on Linux libc5 systems.
18067         * modules/snprintf (Files): Add m4/printf.m4.
18068         * modules/vsnprintf (Files): Likewise.
18069         * doc/posix-functions/snprintf.texi: Document Linux libc5 problem.
18070         * doc/posix-functions/vsnprintf.texi: Likewise.
18071
18072 2008-04-19  Bruno Haible  <bruno@clisp.org>
18073
18074         * lib/vasnprintf.c (floorlog10l, floorlog10): Reduce maximum error
18075         from 0.0058 to less than 10^-7.
18076
18077 2008-04-19  Bruno Haible  <bruno@clisp.org>
18078
18079         Fix rounding when a precision is given.
18080         * lib/vasnprintf.c (is_borderline): New function.
18081         (VASNPRINTF): For %e and %g, consider replacing the digits 10....0 with
18082         9...9x.
18083         * tests/test-vasnprintf-posix.c (test_function): Test rounding with %f,
18084         %e, %g.
18085         * tests/test-vasprintf-posix.c (test_function): Likewise.
18086         * tests/test-snprintf-posix.h (test_function): Likewise.
18087         * tests/test-sprintf-posix.h (test_function): Likewise.
18088         * tests/test-fprintf-posix.h (test_function): Test rounding with %f.
18089         * tests/test-printf-posix.h (test_function): Likewise.
18090         * tests/test-printf-posix.output: Update.
18091         Reported by John Darrington <john@darrington.wattle.id.au> via
18092         Ben Pfaff <blp@cs.stanford.edu>.
18093
18094 2008-04-18  Simon Josefsson  <simon@josefsson.org>
18095
18096         * doc/posix-functions/strftime.texi (strftime): Clarify platform.
18097         Suggested by Bruno Haible <bruno@clisp.org>.
18098
18099 2008-04-17  Bruno Haible  <bruno@clisp.org>
18100
18101         * lib/lock.h (gl_lock_destroy, gl_rwlock_destroy,
18102         gl_recursive_lock_destroy): Provide no-op definitions for the dummy
18103         implementation.
18104         Patch by Bruce Merry <bmerry@gmail.com>.
18105
18106 2008-04-17  Simon Josefsson  <simon@josefsson.org>
18107
18108         * doc/posix-functions/strftime.texi (strftime): Mention that %e
18109         doesn't work under Windows.
18110
18111 2008-04-16  Bruno Haible  <bruno@clisp.org>
18112
18113         * lib/localename.c (LANG_MAORI, LANG_QUECHUA, LANG_SOTHO, LANG_UIGHUR):
18114         New macros.
18115         (SUBLANG_BOSNIAN_BOSNIA_HERZEGOVINA_LATIN,
18116         SUBLANG_BOSNIAN_BOSNIA_HERZEGOVINA_CYRILLIC,
18117         SUBLANG_CROATIAN_CROATIA, SUBLANG_CROATIAN_BOSNIA_HERZEGOVINA_LATIN,
18118         SUBLANG_MONGOLIAN_CYRILLIC_MONGOLIA, SUBLANG_MONGOLIAN_PRC,
18119         SUBLANG_QUECHUA_BOLIVIA, SUBLANG_QUECHUA_ECUADOR, SUBLANG_QUECHUA_PERU,
18120         SUBLANG_RUSSIAN_RUSSIA, SUBLANG_RUSSIAN_MOLDAVIA, SUBLANG_SPANISH_US,
18121         SUBLANG_TIBETAN_PRC, SUBLANG_TIBETAN_BHUTAN, SUBLANG_UIGHUR_PRC): New
18122         macros.
18123         (gl_locale_name_from_win32_LANGID): Refine code for Croatian/Bosnian,
18124         Mongolian, Russian, Spanish, Tibetan. Add code for Maori, Quechua,
18125         Northern Sotho, Uighur.
18126
18127 2008-04-16  Bruno Haible  <bruno@clisp.org>
18128
18129         * lib/localename.c (SUBLANG_SINDHI_INDIA): New macro.
18130         (SUBLANG_SINDHI_PAKISTAN): Change value from 1 to 2.
18131         (gl_locale_name_from_win32_LANGID): Fix code for Sindhi.
18132         Reported by Daniel Bergström <daniel@octocode.com>.
18133
18134 2007-12-25  KJK::Hyperion  <hackbunny@reactos.com>
18135             Bruno Haible  <bruno@clisp.org>
18136
18137         * lib/localename.c (gl_locale_name_canonicalize) [WIN32_NATIVE]: New
18138         function.
18139         (gl_locale_name_from_win32_LANGID, gl_locale_name_from_win32_LCID):
18140         New functions, mostly extracted from gl_locale_name_default.
18141         (gl_locale_name_default): Use gl_locale_name_from_win32_LCID.
18142
18143 2008-04-16  Eric Blake  <ebb9@byu.net>
18144
18145         Adjust strtod detection to catch glibc 2.7 bug.
18146         * m4/strtod.m4 (gl_FUNC_STRTOD): Test "nan()" behavior.
18147         Reported by John Gatewood Ham.
18148
18149 2008-04-16  Bruno Haible  <bruno@clisp.org>
18150
18151         Add tentative support for Linux libc5.
18152         * lib/fbufmode.c (fbufmode) [__GNU_LIBRARY__==1]: Reuse glibc2 code.
18153         * lib/fpurge.c (fpurge): Likewise.
18154         * lib/freadable.c (freadable): Likewise.
18155         * lib/freadahead.c (freadahead): Likewise.
18156         * lib/freading.c (freading): Likewise.
18157         * lib/freadptr.c (freadptr): Likewise.
18158         * lib/freadseek.c (freadptrinc): Likewise.
18159         * lib/fseeko.c (rpl_fseeko): Likewise.
18160         * lib/fseterr.c (fseterr): Likewise.
18161         * lib/fwritable.c (fwritable): Likewise.
18162         * lib/fwriting.c (fwriting): Likewise.
18163         Reported by Alain Guibert <alguibert+bts@free.fr>.
18164
18165 2008-04-15  Bruno Haible  <bruno@clisp.org>
18166
18167         * modules/mathl (configure.ac): Define module indicator.
18168
18169 2008-04-15  Bruno Haible  <bruno@clisp.org>
18170
18171         * lib/logl.c (logl): Remove unused variables.
18172
18173 2008-04-15  Bruno Haible  <bruno@clisp.org>
18174
18175         * lib/uniconv/u-conv-to-enc.h (FUNC): Fix return value when U_TO_U8
18176         fails.
18177
18178 2008-04-15  Bruno Haible  <bruno@clisp.org>
18179
18180         * lib/trim.c (trim2): Fix argument of isspace() macro.
18181
18182 2008-04-15  Paolo Bonzini  <bonzini@gnu.org>
18183
18184         * lib/tanl.c (kernel_tanl): Rename flag to invert, initialize it
18185         to 0.
18186         * lib/trigl.c (ieee754_rem_pio2l): Fix range checks.
18187
18188 2008-04-14  Bruno Haible  <bruno@clisp.org>
18189
18190         * m4/calloc.m4 (_AC_FUNC_CALLOC_IF): Fix underquoting of
18191         AC_LANG_PROGRAM argument.
18192         * m4/extensions.m4 (AC_USE_SYSTEM_EXTENSIONS): Likewise.
18193         * m4/gethrxtime.m4 (gl_ARITHMETIC_HRTIME_T): Likewise.
18194         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Likewise.
18195         * m4/inttypes.m4 (gl_INTTYPES_H): Likewise.
18196         * m4/math_h.m4 (gl_MATH_H): Likewise.
18197         * m4/mbstate_t.m4 (AC_TYPE_MBSTATE_T): Likewise.
18198         * m4/memmem.m4 (gl_FUNC_MEMMEM): Likewise.
18199         * m4/netinet_in_h.m4 (gl_HEADER_NETINET_IN): Likewise.
18200         * m4/physmem.m4 (gl_SYS__SYSTEM_CONFIGURATION): Likewise.
18201         * m4/putenv.m4 (gl_FUNC_PUTENV): Likewise.
18202         * m4/regex.m4 (gl_REGEX): Likewise.
18203         * m4/stdint.m4 (gl_INTEGER_TYPE_SUFFIX): Likewise.
18204         * m4/stdio_h.m4 (gl_STDIN_LARGE_OFFSET): Likewise.
18205         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Likewise.
18206         * m4/strerror.m4 (gl_FUNC_STRERROR_SEPARATE): Likewise.
18207         * m4/strndup.m4 (gl_FUNC_STRNDUP): Likewise.
18208         * m4/strstr.m4 (gl_FUNC_STRSTR): Likewise.
18209         * m4/sys_select_h.m4 (gl_HEADER_SYS_SELECT): Likewise.
18210         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Likewise.
18211
18212 2008-04-14  Jim Meyering  <meyering@redhat.com>
18213
18214         test-strtod: fix typos: s/abs/fabs/
18215         * tests/test-strtod.c (main): Use fabs, not narrowing-to-int "abs".
18216
18217 2008-04-13  Bruno Haible  <bruno@clisp.org>
18218
18219         Fix conflict between modules 'canonicalize' and 'canonicalize-lgpl'.
18220         * lib/canonicalize-lgpl.c: Elide the contents if the 'canonicalize'
18221         module is also used and while not building the reloc-wrapper.
18222
18223 2008-04-13  Bruno Haible  <bruno@clisp.org>
18224
18225         * tests/test-getaddrinfo.c (simple): Ignore EAI_NODATA error.
18226
18227 2008-04-13  Bruno Haible  <bruno@clisp.org>
18228
18229         Fix AIX compilation failure introduced on 2008-04-02.
18230         * tests/test-frexp.c (exp): Undefine before redefining.
18231         * tests/test-frexpl.c (exp): Likewise.
18232
18233 2008-04-13  Bruno Haible  <bruno@clisp.org>
18234
18235         Work around a HP-UX stdio bug.
18236         * tests/test-ftell.c (main): Disable the fseek/ftell test on HP-UX.
18237         * tests/test-ftello.c (main): Likewise.
18238         * doc/posix-functions/ftell.texi: Mention HP-UX bug.
18239         * doc/posix-functions/ftello.texi: Likewise.
18240
18241 2008-04-13  Bruno Haible  <bruno@clisp.org>
18242
18243         Make test-signbit pass on HP-UX/hppa.
18244         * tests/test-signbit.c (minus_zerol): New variable.
18245         (test_signbitl): Use it.
18246
18247 2008-04-13  Bruno Haible  <bruno@clisp.org>
18248
18249         Make truncl work on OSF/1 4.0.
18250         * m4/truncl.m4 (gl_FUNC_TRUNCL): Test whether truncl actually works.
18251         Set REPLACE_TRUNCL, not HAVE_DECL_TRUNCL.
18252         * lib/math.in.h (truncl): Test REPLACE_TRUNCL, not HAVE_DECL_TRUNCL.
18253         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize REPLACE_TRUNCL, not
18254         HAVE_DECL_TRUNCL.
18255         * modules/math (Makefile.am): Substitute REPLACE_TRUNCL, not
18256         HAVE_DECL_TRUNCL.
18257         * doc/posix-functions/truncl.texi: Document the OSF/1 4.0 problem.
18258
18259 2008-04-13  Bruno Haible  <bruno@clisp.org>
18260
18261         * lib/unictype.h: Remove trailing comma from enumeration definitions.
18262
18263 2008-04-13  Bruno Haible  <bruno@clisp.org>
18264
18265         * lib/count-one-bits.h (COUNT_ONE_BITS): Rewrite verification
18266         expression, so as to avoid HP-UX 11 cc compiler bug.
18267
18268 2008-04-13  Bruno Haible  <bruno@clisp.org>
18269
18270         * m4/regex.m4 (gl_PREREQ_REGEX): Also check for <libintl.h>.
18271
18272 2008-04-13  Bruno Haible  <bruno@clisp.org>
18273
18274         * lib/git-merge-changelog.c: Remove empty declaration outside of
18275         functions.
18276
18277 2008-04-13  Bruno Haible  <bruno@clisp.org>
18278
18279         * modules/quotearg-tests (Makefile.am): Define test_quotearg_LDADD.
18280
18281 2008-04-13  Bruno Haible  <bruno@clisp.org>
18282
18283         * doc/posix-headers/sys_socket.texi: Document the problem on EMX.
18284         * lib/sys_socket.in.h (SHUT_RD, SHUT_WR, SHUT_RDWR): Define if missing.
18285         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Replace <sys/socket.h>
18286         also if it exists but lacks definitions of the SHUT_* macros.
18287         * modules/sys_socket (Description): Update.
18288         Reported by Elbert Pol <e.pol@chello.nl>.
18289
18290 2008-04-13  Bruno Haible  <bruno@clisp.org>
18291
18292         * lib/localcharset.c (OS2): Don't redefine if already defined.
18293         Reported by Elbert Pol <e.pol@chello.nl>.
18294
18295 2008-04-13  Bruno Haible  <bruno@clisp.org>
18296
18297         * lib/binary-io.h [__EMX__]: Include <io.h>.
18298         Reported by Elbert Pol <e.pol@chello.nl>.
18299
18300 2008-04-12  Bruno Haible  <bruno@clisp.org>
18301
18302         * lib/fpucw.h: Enable the definitions also for x86_64.
18303         Needed for NetBSD/x86_64.
18304         Reported by Thomas Klausner <tk@giga.or.at>.
18305
18306 2008-04-12  Bruno Haible  <bruno@clisp.org>
18307
18308         * tests/test-strtod.c: Include isnand.h.
18309         (main): Use isnand instead of isnan.
18310         Reported by Jim Meyering.
18311
18312 2008-04-12  Bruno Haible  <bruno@clisp.org>
18313
18314         * m4/isnanf.m4 (gl_ISNANF_WORKS): Add a test for a special NaN.
18315         Reported by Nelson H. F. Beebe <beebe@math.utah.edu>.
18316
18317 2008-04-12  Jim Meyering  <meyering@redhat.com>
18318
18319         * m4/math_h.m4 (gl_MATH_H): Fix typos.
18320
18321 2008-04-12  Bruno Haible  <bruno@clisp.org>
18322
18323         * lib/freadptr.c (freadptr) [__EMX__]: Fix wrong assertion.
18324         Reported by Elbert Pol <e.pol@chello.nl>.
18325
18326 2008-04-12  Eric Blake  <ebb9@byu.net>
18327
18328         Work around Solaris 10 math.h bug.
18329         * m4/math_h.m4 (gl_MATH_H): Check for bug.
18330         (gl_MATH_H_DEFAULTS): Set up default.
18331         * modules/math (Makefile.am): Replace new indicators.
18332         * lib/math.in.h (NAN, HUGE_VAL): Provide replacements.
18333         * tests/test-math.c (main): Test this.
18334         * m4/strtod.m4 (gl_FUNC_STRTOD): Don't rely on HUGE_VAL.
18335         * doc/posix-headers/math.texi (math.h): Mention bug.
18336         Reported by Nelson H. F. Beebe and Jim Meyering.
18337
18338 2008-04-11  Bruno Haible  <bruno@clisp.org>
18339
18340         Adapt to future versions of Apple GCC.
18341         * lib/argp-fmtstream.h (ARGP_FS_EI): Don't test __GNUC_GNU_INLINE__.
18342         Reported by Peter O'Gorman <peter@pogma.com>.
18343
18344 2008-04-11  Bruno Haible  <bruno@clisp.org>
18345
18346         * tests/test-getaddrinfo.c (simple): Ignore EAI_NONAME error.
18347
18348 2008-04-11  Bruno Haible  <bruno@clisp.org>
18349
18350         * modules/strsignal-tests (Makefile.am): Define test_strsignal_LDADD.
18351
18352         * modules/getaddrinfo-tests (Makefile.am): Define
18353         test_getaddrinfo_LDADD.
18354
18355 2008-04-11  Bruno Haible  <bruno@clisp.org>
18356
18357         * lib/strsignal.c (_sys_siglist): Don't declare if already declared.
18358         (init): Fix syntax error.
18359         * m4/strsignal.m4 (gl_PREREQ_STRSIGNAL): Check whether _sys_siglist
18360         is declared.
18361
18362 2008-04-11  Bruno Haible  <bruno@clisp.org>
18363
18364         * lib/glob.c: Include <stdbool.h>. Needed at least with IRIX cc.
18365         * modules/glob (Depends-on): Add stdbool.
18366
18367 2008-04-11  Bruno Haible  <bruno@clisp.org>
18368
18369         * lib/trim.c: Include <string.h>.
18370
18371 2008-04-11  Eric Blake  <ebb9@byu.net>
18372
18373         Avoid compile failure on OS/2.
18374         * lib/regex_internal.h (internal_function): Disable optimization
18375         on OS/2 (__EMX__), where it caused compiler error.
18376         Reported by Elbert Pol.
18377
18378 2008-04-11  Bruno Haible  <bruno@clisp.org>
18379
18380         Flush the standard error stream before aborting. Needed on mingw.
18381         * tests/test-argmatch.c (ASSERT): Call fflush(stderr) before abort().
18382         * tests/test-array_list.c (ASSERT): Likewise.
18383         * tests/test-array_oset.c (ASSERT): Likewise.
18384         * tests/test-avltree_list.c (ASSERT): Likewise.
18385         * tests/test-avltree_oset.c (ASSERT): Likewise.
18386         * tests/test-avltreehash_list.c (ASSERT): Likewise.
18387         * tests/test-binary-io.c (ASSERT): Likewise.
18388         * tests/test-byteswap.c (ASSERT): Likewise.
18389         * tests/test-c-ctype.c (ASSERT): Likewise.
18390         * tests/test-c-strcasecmp.c (ASSERT): Likewise.
18391         * tests/test-c-strcasestr.c (ASSERT): Likewise.
18392         * tests/test-c-strncasecmp.c (ASSERT): Likewise.
18393         * tests/test-c-strstr.c (ASSERT): Likewise.
18394         * tests/test-canonicalize-lgpl.c (ASSERT): Likewise.
18395         * tests/test-canonicalize.c (ASSERT): Likewise.
18396         * tests/test-carray_list.c (ASSERT): Likewise.
18397         * tests/test-ceilf1.c (ASSERT): Likewise.
18398         * tests/test-ceilf2.c (ASSERT): Likewise.
18399         * tests/test-ceill.c (ASSERT): Likewise.
18400         * tests/test-count-one-bits.c (ASSERT): Likewise.
18401         * tests/test-fbufmode.c (ASSERT): Likewise.
18402         * tests/test-fflush2.c (ASSERT): Likewise.
18403         * tests/test-floorf1.c (ASSERT): Likewise.
18404         * tests/test-floorf2.c (ASSERT): Likewise.
18405         * tests/test-floorl.c (ASSERT): Likewise.
18406         * tests/test-fopen.c (ASSERT): Likewise.
18407         * tests/test-fpending.c (ASSERT): Likewise.
18408         * tests/test-fprintf-posix.c (ASSERT): Likewise.
18409         * tests/test-fpurge.c (ASSERT): Likewise.
18410         * tests/test-freadable.c (ASSERT): Likewise.
18411         * tests/test-freadahead.c (ASSERT): Likewise.
18412         * tests/test-freading.c (ASSERT): Likewise.
18413         * tests/test-freadptr.c (ASSERT): Likewise.
18414         * tests/test-freadptr2.c (ASSERT): Likewise.
18415         * tests/test-freadseek.c (ASSERT): Likewise.
18416         * tests/test-freopen.c (ASSERT): Likewise.
18417         * tests/test-frexp.c (ASSERT): Likewise.
18418         * tests/test-frexpl.c (ASSERT): Likewise.
18419         * tests/test-fseek.c (ASSERT): Likewise.
18420         * tests/test-fseeko.c (ASSERT): Likewise.
18421         * tests/test-fstrcmp.c (ASSERT): Likewise.
18422         * tests/test-ftell.c (ASSERT): Likewise.
18423         * tests/test-ftello.c (ASSERT): Likewise.
18424         * tests/test-func.c (ASSERT): Likewise.
18425         * tests/test-fwritable.c (ASSERT): Likewise.
18426         * tests/test-fwriting.c (ASSERT): Likewise.
18427         * tests/test-getdelim.c (ASSERT): Likewise.
18428         * tests/test-getline.c (ASSERT): Likewise.
18429         * tests/test-i-ring.c (ASSERT): Likewise.
18430         * tests/test-iconv-utf.c (ASSERT): Likewise.
18431         * tests/test-iconv.c (ASSERT): Likewise.
18432         * tests/test-isfinite.c (ASSERT): Likewise.
18433         * tests/test-isnand.c (ASSERT): Likewise.
18434         * tests/test-isnanf.c (ASSERT): Likewise.
18435         * tests/test-isnanl.h (ASSERT): Likewise.
18436         * tests/test-ldexpl.c (ASSERT): Likewise.
18437         * tests/test-linked_list.c (ASSERT): Likewise.
18438         * tests/test-linkedhash_list.c (ASSERT): Likewise.
18439         * tests/test-localename.c (ASSERT): Likewise.
18440         * tests/test-lseek.c (ASSERT): Likewise.
18441         * tests/test-mbscasecmp.c (ASSERT): Likewise.
18442         * tests/test-mbscasestr1.c (ASSERT): Likewise.
18443         * tests/test-mbscasestr2.c (ASSERT): Likewise.
18444         * tests/test-mbscasestr3.c (ASSERT): Likewise.
18445         * tests/test-mbscasestr4.c (ASSERT): Likewise.
18446         * tests/test-mbschr.c (ASSERT): Likewise.
18447         * tests/test-mbscspn.c (ASSERT): Likewise.
18448         * tests/test-mbsncasecmp.c (ASSERT): Likewise.
18449         * tests/test-mbspbrk.c (ASSERT): Likewise.
18450         * tests/test-mbspcasecmp.c (ASSERT): Likewise.
18451         * tests/test-mbsrchr.c (ASSERT): Likewise.
18452         * tests/test-mbsspn.c (ASSERT): Likewise.
18453         * tests/test-mbsstr1.c (ASSERT): Likewise.
18454         * tests/test-mbsstr2.c (ASSERT): Likewise.
18455         * tests/test-mbsstr3.c (ASSERT): Likewise.
18456         * tests/test-memchr2.c (ASSERT): Likewise.
18457         * tests/test-memmem.c (ASSERT): Likewise.
18458         * tests/test-open.c (ASSERT): Likewise.
18459         * tests/test-printf-frexp.c (ASSERT): Likewise.
18460         * tests/test-printf-frexpl.c (ASSERT): Likewise.
18461         * tests/test-printf-posix.c (ASSERT): Likewise.
18462         * tests/test-quotearg.c (ASSERT): Likewise.
18463         * tests/test-rbtree_list.c (ASSERT): Likewise.
18464         * tests/test-rbtree_oset.c (ASSERT): Likewise.
18465         * tests/test-rbtreehash_list.c (ASSERT): Likewise.
18466         * tests/test-round1.c (ASSERT): Likewise.
18467         * tests/test-roundf1.c (ASSERT): Likewise.
18468         * tests/test-roundl.c (ASSERT): Likewise.
18469         * tests/test-signbit.c (ASSERT): Likewise.
18470         * tests/test-sleep.c (ASSERT): Likewise.
18471         * tests/test-snprintf-posix.c (ASSERT): Likewise.
18472         * tests/test-snprintf.c (ASSERT): Likewise.
18473         * tests/test-sprintf-posix.c (ASSERT): Likewise.
18474         * tests/test-stat-time.c (ASSERT): Likewise.
18475         * tests/test-strcasestr.c (ASSERT): Likewise.
18476         * tests/test-strerror.c (ASSERT): Likewise.
18477         * tests/test-striconv.c (ASSERT): Likewise.
18478         * tests/test-striconveh.c (ASSERT): Likewise.
18479         * tests/test-striconveha.c (ASSERT): Likewise.
18480         * tests/test-strsignal.c (ASSERT): Likewise.
18481         * tests/test-strstr.c (ASSERT): Likewise.
18482         * tests/test-strtod.c (ASSERT): Likewise.
18483         * tests/test-trunc1.c (ASSERT): Likewise.
18484         * tests/test-trunc2.c (ASSERT): Likewise.
18485         * tests/test-truncf1.c (ASSERT): Likewise.
18486         * tests/test-truncf2.c (ASSERT): Likewise.
18487         * tests/test-truncl.c (ASSERT): Likewise.
18488         * tests/test-vasnprintf-posix.c (ASSERT): Likewise.
18489         * tests/test-vasnprintf-posix2.c (ASSERT): Likewise.
18490         * tests/test-vasnprintf.c (ASSERT): Likewise.
18491         * tests/test-vasprintf-posix.c (ASSERT): Likewise.
18492         * tests/test-vasprintf.c (ASSERT): Likewise.
18493         * tests/test-vfprintf-posix.c (ASSERT): Likewise.
18494         * tests/test-vprintf-posix.c (ASSERT): Likewise.
18495         * tests/test-vsnprintf-posix.c (ASSERT): Likewise.
18496         * tests/test-vsnprintf.c (ASSERT): Likewise.
18497         * tests/test-vsprintf-posix.c (ASSERT): Likewise.
18498         * tests/test-wcwidth.c (ASSERT): Likewise.
18499         * tests/test-xfprintf-posix.c (ASSERT): Likewise.
18500         * tests/test-xprintf-posix.c (ASSERT): Likewise.
18501         * tests/test-xvasprintf.c (ASSERT): Likewise.
18502         * tests/uniconv/test-u16-conv-from-enc.c (ASSERT): Likewise.
18503         * tests/uniconv/test-u16-conv-to-enc.c (ASSERT): Likewise.
18504         * tests/uniconv/test-u16-strconv-from-enc.c (ASSERT): Likewise.
18505         * tests/uniconv/test-u16-strconv-to-enc.c (ASSERT): Likewise.
18506         * tests/uniconv/test-u32-conv-from-enc.c (ASSERT): Likewise.
18507         * tests/uniconv/test-u32-conv-to-enc.c (ASSERT): Likewise.
18508         * tests/uniconv/test-u32-strconv-from-enc.c (ASSERT): Likewise.
18509         * tests/uniconv/test-u32-strconv-to-enc.c (ASSERT): Likewise.
18510         * tests/uniconv/test-u8-conv-from-enc.c (ASSERT): Likewise.
18511         * tests/uniconv/test-u8-conv-to-enc.c (ASSERT): Likewise.
18512         * tests/uniconv/test-u8-strconv-from-enc.c (ASSERT): Likewise.
18513         * tests/uniconv/test-u8-strconv-to-enc.c (ASSERT): Likewise.
18514         * tests/unictype/test-bidi_byname.c (ASSERT): Likewise.
18515         * tests/unictype/test-bidi_name.c (ASSERT): Likewise.
18516         * tests/unictype/test-bidi_of.c (ASSERT): Likewise.
18517         * tests/unictype/test-bidi_test.c (ASSERT): Likewise.
18518         * tests/unictype/test-block_list.c (ASSERT): Likewise.
18519         * tests/unictype/test-block_of.c (ASSERT): Likewise.
18520         * tests/unictype/test-block_test.c (ASSERT): Likewise.
18521         * tests/unictype/test-categ_and.c (ASSERT): Likewise.
18522         * tests/unictype/test-categ_and_not.c (ASSERT): Likewise.
18523         * tests/unictype/test-categ_byname.c (ASSERT): Likewise.
18524         * tests/unictype/test-categ_name.c (ASSERT): Likewise.
18525         * tests/unictype/test-categ_none.c (ASSERT): Likewise.
18526         * tests/unictype/test-categ_of.c (ASSERT): Likewise.
18527         * tests/unictype/test-categ_or.c (ASSERT): Likewise.
18528         * tests/unictype/test-categ_test_withtable.c (ASSERT): Likewise.
18529         * tests/unictype/test-combining.c (ASSERT): Likewise.
18530         * tests/unictype/test-decdigit.c (ASSERT): Likewise.
18531         * tests/unictype/test-digit.c (ASSERT): Likewise.
18532         * tests/unictype/test-mirror.c (ASSERT): Likewise.
18533         * tests/unictype/test-numeric.c (ASSERT): Likewise.
18534         * tests/unictype/test-pr_byname.c (ASSERT): Likewise.
18535         * tests/unictype/test-pr_test.c (ASSERT): Likewise.
18536         * tests/unictype/test-predicate-part1.h (ASSERT): Likewise.
18537         * tests/unictype/test-scripts.c (ASSERT): Likewise.
18538         * tests/unictype/test-sy_c_ident.c (ASSERT): Likewise.
18539         * tests/unictype/test-sy_java_ident.c (ASSERT): Likewise.
18540         * tests/unistdio/test-u16-asnprintf1.c (ASSERT): Likewise.
18541         * tests/unistdio/test-u16-vasnprintf1.c (ASSERT): Likewise.
18542         * tests/unistdio/test-u16-vasnprintf2.c (ASSERT): Likewise.
18543         * tests/unistdio/test-u16-vasnprintf3.c (ASSERT): Likewise.
18544         * tests/unistdio/test-u16-vasprintf1.c (ASSERT): Likewise.
18545         * tests/unistdio/test-u16-vsnprintf1.c (ASSERT): Likewise.
18546         * tests/unistdio/test-u16-vsprintf1.c (ASSERT): Likewise.
18547         * tests/unistdio/test-u32-asnprintf1.c (ASSERT): Likewise.
18548         * tests/unistdio/test-u32-vasnprintf1.c (ASSERT): Likewise.
18549         * tests/unistdio/test-u32-vasnprintf2.c (ASSERT): Likewise.
18550         * tests/unistdio/test-u32-vasnprintf3.c (ASSERT): Likewise.
18551         * tests/unistdio/test-u32-vasprintf1.c (ASSERT): Likewise.
18552         * tests/unistdio/test-u32-vsnprintf1.c (ASSERT): Likewise.
18553         * tests/unistdio/test-u32-vsprintf1.c (ASSERT): Likewise.
18554         * tests/unistdio/test-u8-asnprintf1.c (ASSERT): Likewise.
18555         * tests/unistdio/test-u8-vasnprintf1.c (ASSERT): Likewise.
18556         * tests/unistdio/test-u8-vasnprintf2.c (ASSERT): Likewise.
18557         * tests/unistdio/test-u8-vasnprintf3.c (ASSERT): Likewise.
18558         * tests/unistdio/test-u8-vasprintf1.c (ASSERT): Likewise.
18559         * tests/unistdio/test-u8-vsnprintf1.c (ASSERT): Likewise.
18560         * tests/unistdio/test-u8-vsprintf1.c (ASSERT): Likewise.
18561         * tests/unistdio/test-ulc-asnprintf1.c (ASSERT): Likewise.
18562         * tests/unistdio/test-ulc-vasnprintf1.c (ASSERT): Likewise.
18563         * tests/unistdio/test-ulc-vasnprintf2.c (ASSERT): Likewise.
18564         * tests/unistdio/test-ulc-vasnprintf3.c (ASSERT): Likewise.
18565         * tests/unistdio/test-ulc-vasprintf1.c (ASSERT): Likewise.
18566         * tests/unistdio/test-ulc-vsnprintf1.c (ASSERT): Likewise.
18567         * tests/unistdio/test-ulc-vsprintf1.c (ASSERT): Likewise.
18568         * tests/uniwidth/test-u16-strwidth.c (ASSERT): Likewise.
18569         * tests/uniwidth/test-u16-width.c (ASSERT): Likewise.
18570         * tests/uniwidth/test-u32-strwidth.c (ASSERT): Likewise.
18571         * tests/uniwidth/test-u32-width.c (ASSERT): Likewise.
18572         * tests/uniwidth/test-u8-strwidth.c (ASSERT): Likewise.
18573         * tests/uniwidth/test-u8-width.c (ASSERT): Likewise.
18574         * tests/uniwidth/test-uc_width.c (ASSERT): Likewise.
18575         Reported by Eric Blake.
18576
18577 2008-04-11  Bruno Haible  <bruno@clisp.org>
18578
18579         * lib/wchar.in.h: Tweak comment.
18580
18581 2008-04-11  Bruno Haible  <bruno@clisp.org>
18582
18583         Fix __GNUC_STDC_INLINE__ predefine with Apple GCC on MacOS X 10.5.
18584         * gnulib-tool (func_emit_initmacro_start): Emit an invocation of
18585         gl_COMMON.
18586         * m4/gnulib-common.m4 (gl_COMMON, gl_COMMON_BODY): New macros.
18587
18588 2008-04-11  Bruno Haible  <bruno@clisp.org>
18589
18590         * modules/git-merge-changelog (git_merge_changelog_LDADD): Add LIBINTL.
18591
18592 2008-04-11  Simon Josefsson  <simon@josefsson.org>
18593
18594         * lib/gc-gnulib.c: On Windows, use CryptGenRandom from CSP instead
18595         of attempting to use non-existing /dev/*random.  Based on patch
18596         from Adam Strzelecki <ono@java.pl> in
18597         <http://lists.gnu.org/archive/html/help-gsasl/2008-02/msg00000.html>.
18598
18599 2008-04-08  Bruno Haible  <bruno@clisp.org>
18600
18601         Add tentative support for emx+gcc.
18602         * lib/fbufmode.c (fbufmode) [__EMX__]: Add conditional code.
18603         * lib/fpurge.c (fpurge): Likewise.
18604         * lib/freadable.c (freadable): Likewise.
18605         * lib/freadahead.c (freadahead): Likewise.
18606         * lib/freading.c (freading): Likewise.
18607         * lib/freadptr.c (freadptr): Likewise.
18608         * lib/freadseek.c (freadptrinc): Likewise.
18609         * lib/fseeko.c (rpl_fseeko): Likewise.
18610         * lib/fseterr.c (fseterr): Likewise.
18611         * lib/fwritable.c (fwritable): Likewise.
18612         * lib/fwriting.c (fwriting): Likewise.
18613         * m4/fpending.m4 (gl_FUNC_FPENDING): Add a variant for emx+gcc.
18614
18615 2008-04-09  Eric Blake  <ebb9@byu.net>
18616
18617         Avoid some autoconf warnings.
18618         * m4/regex.m4 (gl_REGEX): s/AC_HELP_STRING/AS_HELP_STRING/.
18619         * m4/acl.m4 (gl_FUNC_ACL): Likewise.
18620         * m4/afs.m4 (gl_AFS): Likewise.
18621         * m4/gc-random.m4 (gl_GC_RANDOM): Likewise.
18622         * m4/include_next.m4 (gl_INCLUDE_NEXT): s/AC_FOREACH/m4_foreach_w/.
18623         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Likewise.
18624         * m4/stdint.m4 (gl_STDINT_BITSIZEOF, gl_CHECK_TYPES_SIGNED)
18625         (gl_INTEGER_TYPE_SUFFIX): Likewise.
18626         * m4/onceonly_2_57.m4 (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE)
18627         (AC_CHECK_DECLS_ONCE): Likewise.
18628         Rename file...
18629         * m4/onceonly.m4: ...to this, and delete 2.54 variant, now that
18630         gnulib-tool requires autoconf 2.59 or better.
18631         * gnulib-tool (func_get_filelist): s/\(onceonly\)_2_57.m4/\1.m4/.
18632
18633 2008-04-08  Eric Blake  <ebb9@byu.net>
18634
18635         Use 'git describe --match' if present (added in git 1.5.5).
18636         * build-aux/git-version-gen: Limit result to tags that match 'v*'
18637         if possible.
18638
18639 2008-04-08  Bruno Haible  <bruno@clisp.org>
18640
18641         Add tentative support for OpenServer.
18642         * lib/fbufmode.c (fbufmode): Add conditional define for _flag, _base,
18643         _ptr, _cnt.
18644         * lib/fpurge.c (fpurge): Likewise.
18645         * lib/freadable.c (freadable): Likewise.
18646         * lib/freadahead.c (freadahead): Likewise.
18647         * lib/freading.c (freading): Likewise.
18648         * lib/freadptr.c (freadptr): Likewise.
18649         * lib/freadseek.c (freadptrinc): Likewise.
18650         * lib/fseeko.c (rpl_fseeko): Likewise.
18651         * lib/fseterr.c (fseterr): Likewise.
18652         * lib/fwritable.c (fwritable): Likewise.
18653         * lib/fwriting.c (fwriting): Likewise.
18654         Reported by Roger Cornelius <rac@tenzing.org> and
18655         Brian K. White <brian@aljex.com>.
18656
18657 2008-04-06  Jim Meyering  <meyering@redhat.com>
18658
18659         * gnulib-tool (func_add_or_update): s/backuped/backed up/ in diagnostic
18660
18661 2008-04-06  Bruno Haible  <bruno@clisp.org>
18662
18663         Avoid possible error with non-ASCII bytes in UTF-8 locales.
18664         * tests/test-fprintf-posix.sh: Use "LC_ALL=C tr" instead of "tr".
18665         * tests/test-printf-posix.sh: Likewise.
18666         * tests/test-vfprintf-posix.sh: Likewise.
18667         * tests/test-vprintf-posix.sh: Likewise.
18668         * tests/test-xprintf-posix.sh: Likewise.
18669
18670 2008-04-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
18671
18672         * m4/double-slash-root.m4 (gl_DOUBLE_SLASH_ROOT): Fix quoting,
18673         hide error from 'ls', needed on OS/2.
18674         Report by Elbert Pol <elbert.pol@gmail.com>.
18675
18676 2008-04-04  Eric Blake  <ebb9@byu.net>
18677
18678         Make test-fseeko.c failures meaningful.
18679         * tests/test-fseeko.c: Print line number on failure.
18680         * tests/test-fseek.c: Likewise.
18681         Reported by Nelson H. F. Beebe.
18682
18683         Improve strtod bug detection check.
18684         * m4/strtod.m4 (gl_FUNC_STRTOD): Also check for hex-float parsing,
18685         required for Solaris 10.
18686         Reported by Bob Friesenhahn and Nelson H. F. Beebe.
18687
18688 2008-04-04  Bruno Haible  <bruno@clisp.org>
18689
18690         * modules/relocatable-prog-wrapper (Files): Add m4/environ.m4. Needed
18691         by m4/setenv.m4.
18692
18693 2008-04-03  Eric Blake  <ebb9@byu.net>
18694
18695         Ensure sane .version contents.
18696         * top/GNUmakefile (_dummy): Also delete .version when rebuilding
18697         version string.
18698         * build-aux/git-version-gen: Improve documentation.
18699
18700         Make GNU make output nicer.
18701         * top/GNUmakefile [!_have-Makefile]: Add dependency on
18702         MAKECMDGOALS to enforce message for all command line targets.  Set
18703         srcdir for use in maint.mk.
18704
18705         Another maintainer tweak.
18706         * top/GNUmakefile (_is-dist-target): Allow maintainer-distcheck as
18707         a target that regenerates version.
18708
18709 2008-04-03  Jim Meyering  <meyering@redhat.com>
18710
18711         vc-list-files: don't cause coreutils "make po-check" failure
18712         * build-aux/vc-list-files: Skip postprocessing when $2 is '.'
18713
18714 2008-04-03  Eric Blake  <ebb9@byu.net>
18715
18716         Allow VPATH usage of vc-list-files.
18717         * build-aux/vc-list-files (scriptversion): Add timestamp.
18718         (options): Add --help, --version, -C.
18719         (CVS): Support installed cvsu.
18720
18721 2008-04-02  Bruno Haible  <bruno@clisp.org>
18722
18723         Avoid some "statement with no effect" warnings from gcc.
18724         * tests/test-wctype.c (main): Explicitly ignore unused values.
18725         Reported by Jim Meyering.
18726
18727 2008-04-02  Jim Meyering  <meyering@redhat.com>
18728
18729         Avoid some warnings from "gcc -Wshadow".
18730         * tests/test-frexp.c (exp): Define to a different identifier.
18731         * tests/test-frexpl.c (exp): Likewise.
18732
18733 2008-04-03  Jim Meyering  <meyering@redhat.com>
18734
18735         bootstrap: remove dangling *.[ch] symlinks from lib
18736         * build-aux/bootstrap [dangling symlink removal]: Move find's
18737         -depth option to precede all others, to avoid a warning.
18738         Remove *.[ch] files too, and from "$source_base" (usually lib/).
18739
18740 2008-04-02  Bruno Haible  <bruno@clisp.org>
18741
18742         Avoid some warnings from "gcc -Wshadow".
18743         * tests/tests-vfprintf-posix.c (my_fprintf): Move after test_function.
18744         * tests/tests-vprintf-posix.c (my_printf): Move after test_function.
18745         * tests/tests-vsnprintf-posix.c (my_snprintf): Move after test_function.
18746         * tests/tests-vsprintf-posix.c (my_sprintf): Move after test_function.
18747         Reported by Jim Meyering.
18748
18749 2008-04-01  Bruno Haible  <bruno@clisp.org>
18750
18751         Fix test to work on IRIX 6.5 with cc.
18752         * tests/test-math.c (numeric_equal): New function.
18753         (main): Use it.
18754
18755 2008-04-01  Bruno Haible  <bruno@clisp.org>
18756
18757         * doc/posix-headers/math.texi: Refine documentation of NAN problem.
18758
18759 2008-04-01  Bruno Haible  <bruno@clisp.org>
18760
18761         * tests/test-vasnprintf-posix.c: Include nan.h instead of <math.h>.
18762         (test_function): Use NaNd, NaNl instead of NAN or 0.0L/0.0L.
18763         * modules/vasnprintf-posix-tests (Files): Add tests/nan.h.
18764         (Depends-on): Remove math.
18765
18766         * tests/test-vasprintf-posix.c: Include nan.h instead of <math.h>.
18767         (test_function): Use NaNd, NaNl instead of NAN or 0.0L/0.0L.
18768         * modules/vasprintf-posix-tests (Files): Add tests/nan.h.
18769         (Depends-on): Remove math.
18770
18771         * tests/test-snprintf-posix.h: Include nan.h instead of <math.h>.
18772         (test_function): Use NaNd, NaNl instead of NAN or 0.0L/0.0L.
18773         * modules/snprintf-posix-tests (Files): Add tests/nan.h.
18774         (Depends-on): Remove math.
18775         * modules/vsnprintf-posix-tests (Files): Add tests/nan.h.
18776         (Depends-on): Remove math.
18777
18778         * tests/test-sprintf-posix.h: Include nan.h instead of <math.h>.
18779         (test_function): Use NaNd, NaNl instead of NAN or 0.0L/0.0L.
18780         * modules/sprintf-posix-tests (Files): Add tests/nan.h.
18781         (Depends-on): Remove math.
18782         * modules/vsprintf-posix-tests (Files): Add tests/nan.h.
18783         (Depends-on): Remove math.
18784
18785         * tests/test-round1.c: Include nan.h.
18786         (main): Use NaNd instead of NAN.
18787         * modules/round-tests (Files): Add tests/nan.h.
18788
18789         * tests/test-trunc1.c: Include nan.h.
18790         (main): Use NaNd instead of NAN.
18791         * modules/trunc-tests (Files): Add tests/nan.h.
18792
18793         * tests/test-roundf1.c: Include nan.h.
18794         (main): Use NaNf instead of NAN.
18795         * modules/roundf-tests (Files): Add tests/nan.h.
18796
18797         * tests/test-truncf1.c: Include nan.h.
18798         (main): Use NaNf instead of NAN.
18799         * modules/truncf-tests (Files): Add tests/nan.h.
18800
18801         * tests/test-ceilf1.c: Include nan.h.
18802         (main): Use NaNf instead of NAN.
18803         * modules/ceilf-tests (Files): Add tests/nan.h.
18804
18805         * tests/test-floorf1.c: Include nan.h.
18806         (main): Use NaNf instead of NAN.
18807         * modules/floorf-tests (Files): Add tests/nan.h.
18808
18809         * tests/test-isnanf.c: Include nan.h instead of <math.h>.
18810         (main): Use NaNf instead of NAN.
18811         * modules/isnanf-nolibm-tests (Files): Add tests/nan.h.
18812
18813         * tests/test-isnand.c: Include nan.h instead of <math.h>.
18814         (main): Use NaNd instead of NAN.
18815         * modules/isnand-nolibm-tests (Files): Add tests/nan.h.
18816
18817         * tests/test-frexp.c: Include nan.h.
18818         (main): Use NaNd instead of NAN.
18819         * modules/frexp-tests (Files): Add tests/nan.h.
18820
18821         * lib/isnan.c: Don't include <math.h>.
18822         (FUNC): Don't use NAN macro.
18823         * modules/isnand-nolibm (Depends-on): Remove math.
18824         * modules/isnanf-nolibm (Depends-on): Remove math.
18825         * modules/isnanl (Depends-on): Remove math.
18826         * modules/isnanl-nolibm (Depends-on): Remove math.
18827
18828         * tests/nan.h: New file.
18829
18830 2008-04-01  Eric Blake  <ebb9@byu.net>
18831
18832         Fix typos.
18833         * tests/test-strtod.c (main): s/FLT_/DBL_/ for minimum and epsilon
18834         values to be the right type.
18835
18836         For now, cater to gnulib strtod inaccuracies.
18837         * tests/test-strtod.c (main): Allow 1-ulp error on expected
18838         fractional results.  While not as nice from a QoI perspective, it
18839         is a quicker patch than correctly implementing decimal to binary
18840         rounding.
18841
18842 2008-03-31  Eric Blake  <ebb9@byu.net>
18843
18844         Guarantee a definition of NAN.
18845         * lib/math.in.h (NAN): Define if missing.
18846         * tests/test-math.c (main): Test it.
18847         * doc/posix-headers/math.texi (math.h): Document this.
18848         * lib/isnan.c (rpl_isnand): Use it.
18849         * tests/test-ceilf1.c (NaN): Delete, and use NAN instead.
18850         * tests/test-floorf1.c (NaN): Likewise.
18851         * tests/test-frexp.c (NaN): Likewise.
18852         * tests/test-isnand.c (NaN): Likewise.
18853         * tests/test-isnanf.c (NaN): Likewise.
18854         * tests/test-round1.c (NaN): Likewise.
18855         * tests/test-roundf1.c (NaN): Likewise.
18856         * tests/test-snprintf-posix.h (NaN): Likewise.
18857         * tests/test-sprintf-posix.h (NaN): Likewise.
18858         * tests/test-trunc1.c (NaN): Likewise.
18859         * tests/test-truncf1.c (NaN): Likewise.
18860         * tests/test-vasnprintf-posix.c (NaN): Likewise.
18861         * tests/test-vasprintf-posix.c (NaN): Likewise.
18862         * modules/isnand-nolibm (Depends-on): Add math.
18863         * modules/isnanf-nolibm (Depends-on): Likewise.
18864         * modules/isnanl (Depends-on): Likewise.
18865         * modules/isnanl-nolibm (Depends-on): Likewise.
18866         * modules/snprintf-posix-tests (Depends-on): Likewise.
18867         * modules/sprintf-posix-tests (Depends-on): Likewise.
18868         * modules/vsnprintf-posix-tests (Depends-on): Likewise.
18869         * modules/vsprintf-posix-tests (Depends-on): Likewise.
18870         * modules/vasnprintf-posix-tests (Depends-on): Likewise.
18871         * modules/vasprintf-posix-tests (Depends-on): Likewise.
18872
18873 2008-03-31  Bruno Haible  <bruno@clisp.org>
18874
18875         * tests/test-strtod.c (main): Update results for OSF/1 platforms.
18876         * doc/posix-functions/strtod.texi: Likewise.
18877
18878 2008-03-31  Bruno Haible  <bruno@clisp.org>
18879
18880         * tests/test-strtod.c (main): Don't use C99 syntax.
18881
18882 2008-03-31  Bruno Haible  <bruno@clisp.org>
18883
18884         * tests/test-strtod.c (main): Don't test NAN macro. Needed for Solaris.
18885         Reported by Eric Blake.
18886
18887 2008-03-31  Jim Meyering  <meyering@redhat.com>
18888
18889         Don't compare actual signbit return values.
18890         * tests/test-strtod.c (main): Rather, compare only their
18891         zero/non-zero nature.
18892
18893 2008-03-31  Eric Blake  <ebb9@byu.net>
18894
18895         More strtod documentation.
18896         * doc/posix-functions/strtod.texi (strtod): Interpret more test
18897         failures as distinct bugs.
18898
18899 2008-03-30  Paul Eggert  <eggert@cs.ucla.edu>
18900
18901         * lib/wchar.in.h [defined __need_mbstate_t]: Just include <wchar.h>.
18902         Problem reported by Erik Benada in
18903         <http://lists.gnu.org/archive/html/bug-gnulib/2008-03/msg00249.html>.
18904
18905 2008-03-30  Bruno Haible  <bruno@clisp.org>
18906
18907         * tests/test-strtod.c: Add comments about which assertion fails on which
18908         platform.
18909         * doc/posix-functions/strtod.texi: Add info about many more platforms.
18910
18911 2008-03-30  Eric Blake  <ebb9@byu.net>
18912
18913         Test signbit behavior on zeros.
18914         * tests/test-signbit.c (test_signbitf): Add tests for zero.
18915         (test_signbitd, test_signbitl): Likewise.
18916
18917         More strtod touchups.
18918         * tests/test-strtod.c (main): Ignore tests for signbit on NaN, and
18919         sign of negative underflow, for now.  Use .5, not .1.
18920         * doc/posix-functions/strtod.texi (strtod): Mention these
18921         limitations.
18922         Reported by Jim Meyering.
18923
18924 2008-03-30  Bruno Haible  <bruno@clisp.org>
18925
18926         * lib/striconveh.h (mem_iconveh, str_iconveh): Optimize the conversion
18927         from UTF-8 to UTF-8//TRANSLIT in the same way as from UTF-8 to UTF-8.
18928
18929 2008-03-30  Bruno Haible  <bruno@clisp.org>
18930
18931         Avoid failure when attempting to return empty iconv results on some
18932         platforms.
18933         * lib/striconveh.c (mem_cd_iconveh_internal): In the final memory
18934         allocation, don't report ENOMEM when the resulting string is empty.
18935
18936 2008-03-30  Bruno Haible  <bruno@clisp.org>
18937
18938         Fix buffer overrun.
18939         * lib/vasnprintf.c (VASNPRINTF): If !USE_SNPRINTF && pad_ourselves:
18940         Don't consider the width for tmp_length. Check count against tmp_length
18941         before doing the padding. Ensure enough allocation during padding.
18942
18943 2008-03-30  Eric Blake  <ebb9@byu.net>
18944
18945         strtod touchups.
18946         * lib/strtod.c (strtod): Avoid compiler warnings.
18947         Reported by Jim Meyering.
18948
18949 2008-03-30  Bruno Haible  <bruno@clisp.org>
18950
18951         * lib/unistdio/u-vsprintf.h (EOVERFLOW): Remove fallback.
18952         * modules/unistdio/ulc-vsprintf (Depends-on): Add EOVERFLOW.
18953         * modules/unistdio/u8-vsprintf (Depends-on): Add EOVERFLOW.
18954         * modules/unistdio/u8-u8-vsprintf (Depends-on): Add EOVERFLOW.
18955         * modules/unistdio/u16-vsprintf (Depends-on): Add EOVERFLOW.
18956         * modules/unistdio/u16-u16-vsprintf (Depends-on): Add EOVERFLOW.
18957         * modules/unistdio/u32-vsprintf (Depends-on): Add EOVERFLOW.
18958         * modules/unistdio/u32-u32-vsprintf (Depends-on): Add EOVERFLOW.
18959
18960         * lib/unistdio/u-vsnprintf.h (EOVERFLOW): Remove fallback.
18961         * modules/unistdio/ulc-vsnprintf (Depends-on): Add EOVERFLOW.
18962         * modules/unistdio/u8-vsnprintf (Depends-on): Add EOVERFLOW.
18963         * modules/unistdio/u8-u8-vsnprintf (Depends-on): Add EOVERFLOW.
18964         * modules/unistdio/u16-vsnprintf (Depends-on): Add EOVERFLOW.
18965         * modules/unistdio/u16-u16-vsnprintf (Depends-on): Add EOVERFLOW.
18966         * modules/unistdio/u32-vsnprintf (Depends-on): Add EOVERFLOW.
18967         * modules/unistdio/u32-u32-vsnprintf (Depends-on): Add EOVERFLOW.
18968
18969         * lib/unistdio/u-vasprintf.h (EOVERFLOW): Remove fallback.
18970         * modules/unistdio/ulc-vasprintf (Depends-on): Add EOVERFLOW.
18971         * modules/unistdio/u8-vasprintf (Depends-on): Add EOVERFLOW.
18972         * modules/unistdio/u8-u8-vasprintf (Depends-on): Add EOVERFLOW.
18973         * modules/unistdio/u16-vasprintf (Depends-on): Add EOVERFLOW.
18974         * modules/unistdio/u16-u16-vasprintf (Depends-on): Add EOVERFLOW.
18975         * modules/unistdio/u32-vasprintf (Depends-on): Add EOVERFLOW.
18976         * modules/unistdio/u32-u32-vasprintf (Depends-on): Add EOVERFLOW.
18977
18978         * lib/unistdio/ulc-vfprintf.c (EOVERFLOW): Remove fallback.
18979         * modules/unistdio/ulc-vfprintf (Depends-on): Add EOVERFLOW.
18980
18981         * lib/unistdio/ulc-fprintf.c (EOVERFLOW): Remove fallback.
18982         * modules/unistdio/ulc-fprintf (Depends-on): Add EOVERFLOW.
18983
18984         * lib/xvasprintf.c (EOVERFLOW): Remove fallback.
18985         * modules/xvasprintf (Depends-on): Add EOVERFLOW.
18986
18987         * lib/vsprintf.c (EOVERFLOW): Remove fallback.
18988         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Drop gl_EOVERFLOW.
18989         * modules/vsprintf-posix (Depends-on): Add EOVERFLOW.
18990
18991         * lib/vsnprintf.c (EOVERFLOW): Remove fallback.
18992         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Drop gl_EOVERFLOW.
18993         * modules/vsnprintf (Depends-on): Add EOVERFLOW.
18994
18995         * lib/vfprintf.c (EOVERFLOW): Remove fallback.
18996         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Drop gl_EOVERFLOW.
18997         * modules/vfprintf-posix (Depends-on): Add EOVERFLOW.
18998
18999         * lib/vasprintf.c (EOVERFLOW): Remove fallback.
19000         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Drop gl_EOVERFLOW.
19001         * modules/vasprintf (Depends-on): Add EOVERFLOW.
19002
19003         * lib/vasnprintf.c (EOVERFLOW): Remove fallback.
19004         * m4/vasnprintf.m4 (gl_FUNC_VASNPRINTF): Drop gl_EOVERFLOW.
19005         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Drop gl_EOVERFLOW.
19006         * modules/vasnprintf (Files): Remove m4/eoverflow.m4.
19007         (Depends-on): Add EOVERFLOW.
19008         * modules/unistdio/ulc-vasnprintf (Files): Remove m4/eoverflow.m4.
19009         (Depends-on): Add EOVERFLOW.
19010         * modules/unistdio/u8-vasnprintf (Files): Remove m4/eoverflow.m4.
19011         (Depends-on): Add EOVERFLOW.
19012         * modules/unistdio/u8-u8-vasnprintf (Files): Remove m4/eoverflow.m4.
19013         (Depends-on): Add EOVERFLOW.
19014         * modules/unistdio/u16-vasnprintf (Files): Remove m4/eoverflow.m4.
19015         (Depends-on): Add EOVERFLOW.
19016         * modules/unistdio/u16-u16-vasnprintf (Files): Remove m4/eoverflow.m4.
19017         (Depends-on): Add EOVERFLOW.
19018         * modules/unistdio/u32-vasnprintf (Files): Remove m4/eoverflow.m4.
19019         (Depends-on): Add EOVERFLOW.
19020         * modules/unistdio/u32-u32-vasnprintf (Files): Remove m4/eoverflow.m4.
19021         (Depends-on): Add EOVERFLOW.
19022
19023         * lib/sprintf.c (EOVERFLOW): Remove fallback.
19024         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Drop gl_EOVERFLOW.
19025         * modules/sprintf-posix (Depends-on): Add EOVERFLOW.
19026
19027         * lib/snprintf.c (EOVERFLOW): Remove fallback.
19028         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Drop gl_EOVERFLOW.
19029         * modules/snprintf (Depends-on): Add EOVERFLOW.
19030
19031         * lib/poll.c (EOVERFLOW): Remove fallback.
19032         * modules/poll (Depends-on): Add EOVERFLOW.
19033
19034         * lib/getugroups.c (EOVERFLOW): Remove fallback.
19035         * modules/getugroups (Depends-on): Add EOVERFLOW.
19036
19037         * lib/getdelim.c (EOVERFLOW): Remove fallback.
19038         * modules/getdelim (Depends-on): Add EOVERFLOW.
19039
19040         * lib/ftell.c (EOVERFLOW): Remove fallback.
19041         * modules/ftell (Depends-on): Add EOVERFLOW.
19042
19043         * lib/fprintf.c (EOVERFLOW): Remove fallback.
19044         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Drop gl_EOVERFLOW.
19045         * modules/fprintf-posix (Depends-on): Add EOVERFLOW.
19046
19047         * lib/c-stack.c (EOVERFLOW): Remove unused fallback.
19048
19049         * modules/EOVERFLOW-tests: New file.
19050         * tests/test-EOVERFLOW.c: New file.
19051
19052         * modules/EOVERFLOW: New file.
19053         * doc/posix-headers/errno.texi: Mention EOVERFLOW portability problem.
19054
19055 2008-03-30  Bruno Haible  <bruno@clisp.org>
19056
19057         Fix bug introduced on 2007-06-10.
19058         * lib/vasnprintf.c (VASNPRINTF): When performing zero-padding, use
19059         spaces instead of 0 digits for 's' also when ENABLE_UNISTDIO.
19060
19061 2008-03-30  Bruno Haible  <bruno@clisp.org>
19062
19063         Improve freadseek's efficiency after ungetc.
19064         * lib/freadseek.c: Include freadahead.h.
19065         (freadptrinc): New function, extracted from freadseek.
19066         (freadseek): Use it in a loop. Use freadahead to determine the number
19067         of loop iterations.
19068         * modules/freadseek (Depends-on): Add freadahead.
19069         (configure.ac): Require AC_C_INLINE.
19070
19071 2008-03-30  Bruno Haible  <bruno@clisp.org>
19072
19073         * lib/freadseek.c (freadseek): Don't ignore the return value of
19074         freadptr.
19075
19076 2008-03-29  Eric Blake  <ebb9@byu.net>
19077
19078         Add hex float support.
19079         * modules/strtod (Depends-on): Add c-ctype.
19080         (Link): Mention POW_LIB.
19081         * lib/strtod.c (strtod): Recognize hex floats.  Don't allow
19082         whitespace between 'e' and exponent.
19083         * tests/test-strtod.c (main): Enable hex float tests.
19084         * doc/posix-functions/strtod.texi (strtod): Document what gnulib
19085         now provides.
19086
19087         Document various strtod bugs, with some fixes.
19088         * doc/posix-functions/strtod.texi (strtod): Document bugs with
19089         "-0x", "inf", "nan", and hex constants.
19090         * doc/posix-functions/atof.texi (atof): Likewise.
19091         * modules/stdlib (Makefile.am): Support strtod.
19092         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Likewise.
19093         * m4/strtod.m4 (gl_FUNC_STRTOD): Fit in stdlib framework, and
19094         detect additional strtod bugs.
19095         * lib/stdlib.in.h (rpl_strtod): Add declarations.
19096         * lib/strtod.c (strtod): Return -0.0 on negative underflow.  Use
19097         bool where appropriate.  Parse 'inf' and 'nan'.
19098         * tests/test-strtod.c: New file.
19099         * modules/strtod (Depends-on): Add stdbool, stdlib.
19100         (configure.ac): Turn on module indicator.
19101         * modules/strtod-tests: New module.
19102
19103 2008-03-29  Eric Blake  <ebb9@byu.net>
19104
19105         Fix ftell on mingw.
19106         * lib/ftell.c (EOVERFLOW): Define if the system lacks it.
19107         * modules/ftell-tests (Depends-on): Add binary-io.
19108         * modules/ftello-tests (Depends-on): Likewise.
19109         * tests/test-ftell.c (main): Enhance test to cover behavior after
19110         ungetc.  Enforce binary mode.
19111         * tests/test-ftello.c (main): Likewise.
19112
19113         Pass test-freadseek on cygwin.
19114         * modules/freadseek (Depends-on): Use freadptr, not freadahead.
19115         * lib/freadseek.c (freadseek): Don't increment beyond bounds of
19116         ungetc buffer.
19117
19118         * tests/test-fflush2.c (main): Fix typo.
19119
19120 2008-03-29  Bruno Haible  <bruno@clisp.org>
19121
19122         * tests/test-fflush2.c (main): Temporarily disable the contents of
19123         this test.
19124         * m4/fflush.m4 (gl_FUNC_FFLUSH): Add a TODO.
19125         Reported by Eric Blake.
19126
19127 2008-03-28  Simon Josefsson  <simon@josefsson.org>
19128
19129         * lib/gc.h (enum Gc_hash): Add GC_SHA224.
19130         (GC_SHA224_DIGEST_SIZE): Add.
19131
19132         * lib/gc-libgcrypt.c (gc_hash_open): Handle SHA-224.
19133         (gc_hash_digest_length): Likewise.
19134         (gc_hash_buffer): Likewise.
19135
19136 2008-03-25  Bruno Haible  <bruno@clisp.org>
19137
19138         * doc/gnulib-tool.texi (gettextize and autopoint): Explain in more
19139         detail which gettext release to use.
19140         Reported by Simon Josefsson.
19141
19142 2008-03-26  Jim Meyering  <meyering@redhat.com>
19143
19144         gnumakefile: remove file from $(top_builddir), not from $(top_srcdir)
19145         * modules/gnumakefile (clean-GNUmakefile): Also, use
19146         test ... && ... || : syntax rather than if-then ... fi.
19147
19148         gnumakefile: Don't double-quote-expand $(VPATH) value.
19149         * modules/gnumakefile (clean-GNUmakefile): Use single quotes.
19150
19151 2008-03-24  Eric Blake  <ebb9@byu.net>
19152
19153         Alter GNUmakefile to install into top directory.
19154         * modules/maintainer-makefile: Split, and add dependency...
19155         * modules/gnumakefile: to this new module.
19156         * build-aux/GNUmakefile: Move...
19157         * top/GNUmakefile: ...here.
19158         * build-aux/maint.mk: Move...
19159         * top/maint.mk: ...here.
19160         * MODULES.html.sh (Support for maintaining...): Document new
19161         module.
19162
19163 2008-03-23  Bruno Haible  <bruno@clisp.org>
19164
19165         * gnulib-tool: New options --vc-files, --no-vc-files.
19166         (func_usage): Document them.
19167         (vc_files): New variable.
19168         (func_import): Consider vc_files.
19169         (func_create_testdir): Set vc_files to empty.
19170         Suggested by Jim Meyering and Karl Berry.
19171
19172 2008-03-23  Bruno Haible  <bruno@clisp.org>
19173
19174         Fix regex compilation error on HP-UX 11.
19175         * m4/regex.m4 (gl_PREREQ_REGEX): Require AC_TYPE_MBSTATE_T.
19176         * modules/regex (Files): Add m4/mbstate_t.m4.
19177         Reported by Ton Voon <ton.voon@altinity.com>.
19178
19179 2008-03-23  Bruno Haible  <bruno@clisp.org>
19180
19181         * doc/gnulib-tool.texi (gettextize and autopoint): New section.
19182
19183 2008-03-23  Eric Blake  <ebb9@byu.net>
19184             Bruno Haible  <bruno@clisp.org>
19185
19186         Install files from top/ in the destination directory.
19187         * gnulib-tool (func_get_automake_snippet): Synthesize an EXTRA_DIST
19188         augmentation also for the files from top/.
19189         (func_import, func_create_testdir): Rewrite file names:
19190         top/filename -> filename.
19191
19192 2008-03-23  Bruno Haible  <bruno@clisp.org>
19193
19194         Tweak "gnulib --version" output.
19195         * gnulib-tool (func_version): Replace "-dirty" suffix with "-modified".
19196
19197 2008-03-23  Bruno Haible  <bruno@clisp.org>
19198
19199         Tweak "gnulib --version" output.
19200         * gnulib-tool (func_version): Use date of last commit to ChangeLog,
19201         rather than contents of ChangeLog, when possible.
19202
19203 2008-03-21  Eric Blake  <ebb9@byu.net>
19204
19205         More --version tweaks.
19206         * gnulib-tool (func_version): Obey GNU Coding Standards.  Output
19207         date of last ChangeLog entry.
19208
19209 2008-03-21  Jim Meyering  <meyering@redhat.com>
19210
19211         * build-aux/GNUmakefile (_have-git-version-gen): Split long line.
19212
19213 2008-03-20  Eric Blake  <ebb9@byu.net>
19214
19215         VPATH fix.
19216         * build-aux/GNUmakefile (_have_git-version-gen): Look in correct dir.
19217
19218 2008-03-20  Simon Josefsson  <simon@josefsson.org>
19219
19220         * build-aux/GNUmakefile: Make git-version-gen optional.  Add
19221         _build-aux variable.  Suggested by Eric Blake <ebb9@byu.net>.
19222
19223 2008-03-20  Eric Blake  <ebb9@byu.net>
19224
19225         Sync GNUmakefile with coreutils.
19226         * build-aux/GNUmakefile (have-Makefile): Rename...
19227         (_have-Makefile): ...to this, for namespace consideration.
19228         (GNUmakefile.cfg): Include, if present.
19229         (_autoreconf): Define a default.
19230         (_is-dist-target): New rule for rebuilds to pick up intra-release
19231         version.
19232         (maint-cfg.mk): Rename...
19233         (cfg.mk): ...to this.
19234
19235 2008-03-18  Jim Meyering  <meyering@redhat.com>
19236
19237         New script and module: mktempd
19238         * MODULES.html.sh (maint+release support): Add mktempd.
19239         * build-aux/mktempd: New file.
19240         * modules/mktempd: New file.
19241
19242 2008-03-15  Jim Meyering  <meyering@redhat.com>
19243
19244         Undo last change.
19245         * lib/sha1.c, lib/md5.c: 63 != ~63.
19246         Reported by Andreas Schwab.
19247
19248         sha1.c, md5.c: Hoist a redundant expression.
19249         * lib/sha1.c (sha1_process_bytes): AND-off the low bits in
19250         "ctx->buflen" only once, before calling *_process_block.
19251         * lib/md5.c (md5_process_bytes): Likewise.
19252
19253 2008-03-14  Eric Blake  <ebb9@byu.net>
19254
19255         Bump copyright year in files generated by gnulib-tool.
19256         * gnulib-tool (func_emit_copyright_notice): Extract copyright from
19257         gnulib-tool, rather than hard-coding it.
19258
19259         Fix 'gnulib-tool --version' output to work with git.
19260         * gnulib-tool (func_gnulib_dir): New function, extracted from...
19261         (startup): ...here.
19262         (func_version): Use it to invoke git-version-gen, rather than
19263         relying on CVS keyword expansion.  Modernize wording.
19264         (cvsdatestamp, last_checkin_date, version): Kill unused
19265         variables.
19266
19267 2008-03-12  Jim Meyering  <meyering@redhat.com>
19268
19269         Recognize optional cast of the argument to free.
19270         * build-aux/useless-if-before-free: Update regexps.
19271
19272         * build-aux/bootstrap (gnulib_tool): Remove trailing blanks.
19273
19274 2008-03-11  Bruno Haible  <bruno@clisp.org>
19275
19276         Extend AC_LIB_LINKFLAGS to the situation of several libraries provided
19277         by a single package.
19278         * m4/lib-link.m4 (AC_LIB_FROMPACKAGE): New macro.
19279         (AC_LIB_LINKFLAGS_BODY): Use the information stored by
19280         AC_LIB_FROMPACKAGE. Use AC_ARG_WITH instead of AC_LIB_ARG_WITH.
19281         Reported by Sam Steingold <sds@gnu.org>.
19282
19283 2008-03-12  Sergey Poznyakoff  <gray@gnu.org.ua>
19284
19285         * build-aux/bootstrap (version_controlled_file): Adapt for SVN
19286         repositories.
19287
19288 2008-03-11  Bruno Haible  <bruno@clisp.org>
19289
19290         Avoid conflicts between local macro definitions.
19291         * m4/lib-link.m4 (AC_LIB_LINKFLAGS, AC_LIB_HAVE_LINKFLAGS,
19292         AC_LIB_LINKFLAGS_BODY): Use pushdef/popdef instead of define/undefine.
19293
19294 2008-03-10  Peter O'Gorman  <bug-gnulib@mlists.thewrittenword.com>
19295             Bruno Haible  <bruno@clisp.org>
19296
19297         Make va_copy work with some version of xlc on AIX 5.1.
19298         * lib/stdarg.in.h: New file.
19299         * m4/stdarg.m4 (gl_STDARG_H): Initialize STDARG_H and NEXT_STDARG_H.
19300         On AIX, use a <stdarg.h> file substitute.
19301         * modules/stdarg (Files): Add lib/stdarg.in.h.
19302         (Depends-on): Add include_next.
19303         (Makefile.am): Build a stdarg.h substitute if requested.
19304         * doc/posix-functions/va_copy.texi: Document the platforms lacking it.
19305
19306 2008-03-10  Bruno Haible  <bruno@clisp.org>
19307
19308         * m4/include_next.m4 (gl_CHECK_NEXT_HEADERS): Document a restriction.
19309         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Likewise.
19310         Reported by Peter O'Gorman <bug-gnulib@mlists.thewrittenword.com>.
19311
19312 2008-03-10  Bruno Haible  <bruno@clisp.org>
19313
19314         * modules/stdlib (Depends-on): Add include_next, remove
19315         absolute-header.
19316
19317 2008-03-09  Bruno Haible  <bruno@clisp.org>
19318
19319         * lib/freadahead.h (freadahead): Document more precisely.
19320         * lib/freadahead.c (freadahead): When an ungetc is in effect, return
19321         the sum of both buffer sizes.
19322         * tests/test-freadahead.c (main): Also test behaviour after ungetc.
19323         * NEWS: Document the change.
19324
19325 2008-03-09  Bruno Haible  <bruno@clisp.org>
19326
19327         Extend freadptr to return also the buffer size.
19328         * lib/freadptr.h (freadptr): Add sizep argument.
19329         * lib/freadptr.c: Include freadptr.h, not freadahead.h.
19330         (freadptr): Add sizep argument. Determine buffer size like freadahead
19331         does.
19332         * tests/test-freadptr.c: Don't include freadahead.h.
19333         (main): Adapt for new calling convention of freadptr.
19334         * tests/test-freadptr2.c: New file, based on tests/test-freadahead.c.
19335         * tests/test-freadptr2.sh: New file, based on tests/test-freadahead.sh.
19336         * modules/freadptr-tests (Files): Add tests/test-freadptr2.c,
19337         tests/test-freadptr2.sh.
19338         (Depends): Remove freadahead.
19339         (TESTS): Add test-freadptr2.sh.
19340         (check_PROGRAMS): Add test-freadptr2.
19341
19342 2008-03-09  Bruno Haible  <bruno@clisp.org>
19343
19344         * doc/Makefile (%.pdf): Explain how to remedy the save_size error.
19345         Report and solution by Simon Josefsson.
19346
19347 2008-03-06  Bruno Haible  <bruno@clisp.org>
19348
19349         Make fflush after ungetc work on BSD platforms.
19350         * lib/fflush.c (rpl_fflush): Discard ungetc buffer if possible.
19351         * tests/test-fflush2.c: New file.
19352         * tests/test-fflush2.sh: New file.
19353         * modules/fflush-tests (Files): Add tests/test-fflush2.sh,
19354         tests/test-fflush2.c.
19355         (Makefile.am): Build test-fflush2 and run test-fflush2.sh.
19356         * doc/posix-functions/fflush.texi: Document fflush after ungetc bug.
19357
19358 2008-03-06  Eric Blake  <ebb9@byu.net>
19359
19360         Likewise for ftello.
19361         * modules/ftello (Dependencies): Add extensions.
19362         * m4/ftello.m4 (gl_FUNC_FTELLO): Require AC_USE_SYSTEM_EXTENSIONS.
19363
19364 2008-03-06  Bruno Haible  <bruno@clisp.org>
19365
19366         * modules/fseeko (Dependencies): Add extensions.
19367         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Require AC_USE_SYSTEM_EXTENSIONS.
19368         Needed on glibc systems.
19369
19370 2008-03-06  Bruno Haible  <bruno@clisp.org>
19371
19372         * doc/gnulib-tool.texi (@nosuchmodulenote): Avoid line break inside
19373         email address.
19374         Reported by Thien-Thi Nguyen <ttn@gnuvola.org>.
19375
19376 2008-03-06  Bruno Haible  <bruno@clisp.org>
19377
19378         * users.txt: Add libgnupdf.
19379
19380 2008-03-06  Thien-Thi Nguyen  <ttn@gnuvola.org>  (tiny change)
19381
19382         * doc/gnulib-tool.texi (@nosuchmodulenote): New macro.
19383         (Header File Substitutes, Function Substitutes,
19384         Glibc Header File Substitutes, Glibc Function Substitutes): Use it.
19385         (Build robot for gnulib): Fix typo.
19386
19387 2008-03-06  Bruno Haible  <bruno@clisp.org>
19388
19389         * doc/gnulib-tool.texi (VCS Issues): Small updates.
19390         Reported by Thien-Thi Nguyen <ttn@gnuvola.org>.
19391
19392 2008-03-06  Bruno Haible  <bruno@clisp.org>
19393
19394         * doc/func.texi: New file, extracted from doc/gnulib.texi.
19395         * doc/gnulib.texi: Include it.
19396
19397 2008-03-06  Simon Josefsson  <simon@josefsson.org>
19398
19399         * modules/func (License): Change license to unlimited; there was
19400         no LGPL parts in the module anyway.
19401
19402 2008-03-06  Simon Josefsson  <simon@josefsson.org>
19403
19404         * modules/__func__: Renamed to modules/func.
19405         * modules/__func__-tests: Renamed to modules/func-tests.
19406         * tests/test-__func__.c: Renamed to tests/test-func.c.
19407         * m4/__func__.m4: Renamed to m4/func.m4.
19408         * doc/gnulib.texi (__func__): Section renamed to func.
19409         Suggested by Eric Blake <ebb9@byu.net>.
19410
19411 2008-03-06  Simon Josefsson  <simon@josefsson.org>
19412
19413         * doc/gnulib.texi (__func__): Use C99 terminology when talking
19414         about __func__.  Make example self-contained.  Suggested by Eric
19415         Blake <ebb9@byu.net>.
19416
19417         * tests/test-__func__.c (main): Avoid extraneous () around __func.
19418         Suggested by Eric Blake <ebb9@byu.net>.
19419
19420 2008-03-06  Simon Josefsson  <simon@josefsson.org>
19421
19422         * modules/__func__: New file.
19423         * modules/__func__-tests: New file.
19424         * tests/test-__func__.c: New file.
19425         * m4/__func__.m4: New file.
19426         * doc/gnulib.texi (__func__): Document __func__ module.
19427
19428 2008-03-05  Simon Josefsson  <simon@josefsson.org>
19429
19430         * modules/byteswap (License): Re-license as LGPLv2+.
19431
19432 2008-03-05  Simon Josefsson  <simon@josefsson.org>
19433
19434         * doc/Makefile: Add pdf target.
19435
19436 2008-03-05  Simon Josefsson  <simon@josefsson.org>
19437
19438         * modules/inline (License): Use 'unlimited', since there are only
19439         *.m4 files in this module.
19440
19441 2008-03-03  John E. Malmberg  <wb8tyw@qsl.net>  (tiny change)
19442             Bruno Haible  <bruno@clisp.org>
19443
19444         Add support for HP C 7.1 on OpenVMS 8.3.
19445         * lib/alloca.in.h (alloca): Define as alias for DEC C on VMS.
19446
19447 2008-03-03  John E. Malmberg  <wb8tyw@qsl.net>  (tiny change)
19448
19449         Update VMS specifics.
19450         * lib/getopt.c [VMS]: Remove include of unixlib.h.
19451
19452 2008-03-02  Jim Meyering  <meyering@redhat.com>
19453
19454         Remove the last dependency on the "free" module.
19455         * m4/readutmp.m4 (gl_READUTMP): Don't require gl_FUNC_FREE.
19456         Reported by Bob Proulx.
19457
19458         * lib/getdelim.c (getdelim): Don't leak memory upon failed realloc.
19459
19460         Remove useless "if" tests before free.  Deprecate "free" module.
19461         * doc/posix-functions/free.texi: Mention that this
19462         module is no longer useful.
19463         * modules/free (Notice): Say this module is obsolete.
19464         * modules/readutmp (Depends-on): Remove free.
19465         * lib/save-cwd.c (free_cwd): Remove useless "if" before free.
19466         * lib/putenv.c (putenv): Likewise.
19467         * lib/gc-gnulib.c (gc_cipher_close): Likewise.
19468         * lib/getaddrinfo.c (freeaddrinfo): Likewise.
19469         * tests/test-c-strcasestr.c (main): Likewise.
19470         * tests/test-c-strstr.c (main): Likewise.
19471         * tests/test-mbscasestr1.c (main): Likewise.
19472         * tests/test-mbscasestr2.c (main): Likewise.
19473         * tests/test-mbsstr1.c (main): Likewise.
19474         * tests/test-mbsstr2.c (main): Likewise.
19475         * tests/test-memmem.c (main): Likewise.
19476         * tests/test-strcasestr.c (main): Likewise.
19477         * tests/test-striconv.c (main): Likewise.
19478         * tests/test-striconveh.c (main): Likewise.
19479         * tests/test-striconveha.c (main): Likewise.
19480         * tests/test-strstr.c (main): Likewise.
19481
19482         * build-aux/git-version-gen: Adjust a comment and the Usage string.
19483
19484         bootstrap: sync from coreutils again
19485         * build-aux/bootstrap: Remove dangling m4/*.m4 symlinks.
19486
19487 2008-03-01  Jim Meyering  <meyering@redhat.com>
19488
19489         bootstrap: sync from coreutils
19490         * build-aux/bootstrap (update_po_files): Copy a .po file into place
19491         also when the target doesn't exist.
19492
19493 2008-03-01  Eric Blake  <ebb9@byu.net>
19494
19495         Fix bugs in last patch.
19496         * lib/memchr2.c (memchr2): Fix typo.
19497         * tests/test-memchr2.c: Test previous bug, and don't use GNU
19498         extension.
19499         Reported by Bruce Korb.
19500
19501         New module 'memchr2'.
19502         * modules/memchr2: New file.
19503         * modules/memchr2-tests: Likewise.
19504         * lib/memchr2.h: Likewise.
19505         * lib/memchr2.c: Likewise, based on memchr.c.
19506         * tests/test-memchr2.c: New test.
19507         * MODULES.html.sh (String handling): Add memchr2.
19508
19509 2008-02-29  Bruno Haible  <bruno@clisp.org>
19510
19511         * modules/freadseek-tests: New file.
19512         * tests/test-freadseek.sh: New file.
19513         * tests/test-freadseek.c: New file.
19514
19515         New module 'freadseek'.
19516         * modules/freadseek: New file.
19517         * lib/freadseek.h: New file.
19518         * lib/freadseek.c: New file.
19519         * MODULES.html.sh (File stream based Input/Output): Add freadseek.
19520
19521 2008-02-29  Sergey Poznyakoff  <gray@gnu.org.ua>
19522
19523         * users.txt: Add anubis, cpio, mailfromd, mailutils, radius,
19524         wydawca.
19525
19526         * m4/argp.m4 (gl_ARGP): Use AC_TRY_LINK to test if
19527         program_invocation_name and program_invocation_short_name are
19528         present.
19529
19530 2008-02-28  Bruno Haible  <bruno@clisp.org>
19531
19532         * tests/test-freadptr.c: Add a test for behaviour after ungetc.
19533         * tests/test-freadptr.sh: Also test non-seekable stdin.
19534
19535 2008-02-28  Sergey Poznyakoff  <gray@gnu.org.ua>
19536
19537         * build-aux/bootstrap (source_base, m4_base)
19538         (doc_base, tests_base): New variables.
19539         (gnulib_tool_options): Do not hardcode base directories, use
19540         the above variables instead.
19541
19542 2008-02-28  Atsushi SAKAI  <sakaia@jp.fujitsu.com>
19543
19544         * lib/xsize.h: Fix typo in comment: s/tupe/type/.
19545
19546 2008-02-28  Bruno Haible  <bruno@clisp.org>
19547
19548         * modules/freadptr-tests: New file.
19549         * tests/test-freadptr.sh: New file.
19550         * tests/test-freadptr.c: New file.
19551
19552         New module 'freadptr'.
19553         * modules/freadptr: New file.
19554         * lib/freadptr.h: New file.
19555         * lib/freadptr.c: New file.
19556         * MODULES.html.sh (File stream based Input/Output): Add freadptr.
19557
19558 2008-02-26  Karl Berry  <karl@freefriends.org>
19559
19560         Sync from Libtool:
19561         * libltdl/argz.c (argz_add, argz_count): New functions.
19562         * libltdl/argz.in.h: Declare them.
19563         Report by Juan Manuel Guerrero <juan.guerrero@gmx.de>.
19564
19565 2008-02-22  Bruno Haible  <bruno@clisp.org>
19566
19567         * m4/time_r.m4 (gl_TIME_R): Also check that localtime_r's return type
19568         is a pointer type.  Needed for HP-UX 10.
19569         * doc/posix-functions/localtime_r.texi: Mention HP-UX 10.
19570         * doc/posix-functions/gmtime_r.texi: Likewise.
19571         Reported by Peter O'Gorman <bug-gnulib@mlists.thewrittenword.com>.
19572
19573 2008-02-24  Bruno Haible  <bruno@clisp.org>
19574
19575         * modules/environ-tests: New file.
19576         * tests/test-environ.c: New file.
19577
19578         New module 'environ'.
19579         * modules/environ: New file.
19580         * lib/unistd.in.h (environ): New declaration.
19581         * m4/environ.m4: New file.
19582         (gt_CHECK_VAR_DECL): Moved here from m4/setenv.m4. Undefine gt_cv_var
19583         after use.
19584         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_ENVIRON and
19585         HAVE_DECL_ENVIRON.
19586         * modules/unistd (Makefile.am): Substitute also GNULIB_ENVIRON and
19587         HAVE_DECL_ENVIRON.
19588         * doc/posix-functions/environ.texi: Mention module 'environ'. Remove
19589         wrong claim that 'environ' is missing on some systems.
19590         * modules/execute (Depends-on): Add environ.
19591         * lib/execute.c (environ): Remove fallback declaration.
19592         * modules/pipe (Depends-on): Add environ.
19593         * lib/pipe.c (environ): Remove fallback declaration.
19594         * modules/setenv (Depends-on): Add environ.
19595         * lib/setenv.c (environ): Remove fallback declaration.
19596         * modules/unsetenv (Depends-on): Add environ.
19597         * lib/unsetenv.c (environ): Remove fallback declaration.
19598         * m4/setenv.m4 (gt_CHECK_VAR_DECL): Remove macro. Moved to
19599         m4/environ.m4.
19600         (gl_PREREQ_SETENV): Require gl_ENVIRON instead of testing for environ.
19601         (gl_PREREQ_UNSETENV): Likewise.
19602
19603 2008-02-24  Bruno Haible  <bruno@clisp.org>
19604
19605         * doc/posix-functions/environ.texi: Document the MacOS X problem.
19606
19607 2008-02-20  Bob Proulx  <bob@proulx.com>
19608
19609         Enable use of older two part flavor 'git describe'.
19610         * build-aux/git-version-gen: If using the older two part flavor of
19611         git version then recreate the third part now present in the
19612         newer three part flavor of git describe.
19613
19614 2008-02-20  Martin Buchholz  <martin@xemacs.org>  (tiny change)
19615
19616         * lib/fts.c (fts_build): Typo correction to comment.
19617
19618 2008-02-17  Bruno Haible  <bruno@clisp.org>
19619
19620         * lib/git-merge-changelog.c (main) [split_merged_entry]: Avoid
19621         generating no-op conflicts.
19622
19623 2008-02-17  Bruno Haible  <bruno@clisp.org>
19624
19625         Speed up by 10%.
19626         * lib/git-merge-changelog.c (main): Use the iterator to iterate through
19627         result_entries, rather than an index-based loop.
19628
19629 2008-02-17  Bruno Haible  <bruno@clisp.org>
19630
19631         Speed up by 25%.
19632         * lib/git-merge-changelog.c (struct entry): New fields 'hashcode',
19633         'hashcode_cached'.
19634         (entry_create): New function.
19635         (entry_hashcode): Use the cached hashcode if possible.
19636         (read_changelog_file, try_split_merged_entry): Use entry_create.
19637
19638 2008-02-17  Bruno Haible  <bruno@clisp.org>
19639
19640         Speed up from O(n^2) to O(n) for long ChangeLog files.
19641         * lib/git-merge-changelog.c: Include gl_rbtreehash_list.h.
19642         (read_changelog_file): Change implementation of entries_reversed list
19643         to rbtreehash.
19644         * modules/git-merge-changelog (Depends-on): Add rbtreehash-list.
19645
19646 2008-02-17  Bruno Haible  <bruno@clisp.org>
19647
19648         New option --split-merged-entry.
19649         * lib/git-merge-changelog.c (FSTRCMP_STRICTER_THRESHOLD): New macro.
19650         (find_paragraph_end, try_split_merged_entry): New functions.
19651         (long_options): Add option --split-merged-entry.
19652         (usage): Document option --split-merged-entry.
19653         (main): Implement option --split-merged-entry.
19654         Reported by Eric Blake.
19655
19656 2008-02-17  Bruno Haible  <bruno@clisp.org>
19657
19658         * lib/git-merge-changelog.c: Include c-strstr.h.
19659         (main): Support the "git pull --rebase" situation.
19660         * modules/git-merge-changelog (Depends-on): Add c-strstr.
19661         Reported by Eric Blake.
19662
19663 2008-02-16  Eric Blake  <ebb9@byu.net>
19664
19665         Avoid doubling \ in common case of "c-maybe" quoting style.
19666         * lib/quotearg.c (quotearg_buffer_restyled): Don't escape \ when
19667         eliding outer quotes.
19668         * lib/quotearg.h: Document this.
19669         * tests/test-quotearg.c (result_strings, inputs, results_g)
19670         (flag_results, locale_results): Test it by adding a new string to
19671         each test group.
19672         (compare_strings): Test new string.
19673
19674 2008-02-13  Eric Blake  <ebb9@byu.net>
19675
19676         Avoid trigraph quoting in default output.
19677         * lib/quotearg.h (enum quoting_flags): Add QA_SPLIT_TRIGRAPHS.
19678         * lib/quotearg.c (quotearg_buffer_restyled): Don't quote trigraphs
19679         unless explicitly requested.
19680         * tests/test-quotearg.c (flag_results, main): Add additional tests.
19681
19682 2008-02-13  Lasse Collin  <lasse.collin@tukaani.org>
19683
19684         Don't rely on signed integer overflowing to negative value.
19685         * lib/getugroups.c (getugroups): Include <limits.h>.
19686         Instead, compare against INT_MAX, and increment only if the test passes.
19687
19688 2008-02-13  Jim Meyering  <meyering@redhat.com>
19689         and Eric Blake  <ebb9@byu.net>
19690
19691         Avoid shadowing warning and compile errors on Linux.
19692         * tests/test-quotearg.c [ENABLE_NLS]: Disable <libintl.h>
19693         forwarding macros on Linux.
19694         (dcgettext): Define a stub, for Linux.
19695         (results_g, main): Avoid warnings.
19696
19697 2008-02-12  Eric Blake  <ebb9@byu.net>
19698
19699         Silence warning in last patch.
19700         * lib/quotearg.c (quotearg_buffer_restyled): Add missing const.
19701
19702         Quotearg part 4: add tests, fix c-maybe colon quoting.
19703         * lib/quotearg.h: Improve documentation.
19704         * lib/quotearg.c (quotearg_buffer_restyled): Don't add extra
19705         escapes when adding outer quotes.  When quoting trigraphs, use
19706         valid C notation.  When quoting NUL, omit extra characters if next
19707         character is not digit.  Alter prototype.
19708         (quotearg_buffer, quotearg_alloc_mem, quotearg_n_options): Adjust
19709         callers.
19710         * modules/quotearg-tests: New module.
19711         * tests/test-quotearg.c: New test.
19712
19713 2008-02-07  Eric Blake  <ebb9@byu.net>
19714
19715         Quotearg part 3: add flag to control outer quote elision.
19716         * lib/quotearg.h (c_maybe_quoting_style): New style.
19717         (enum quoting_flags): Better documentation of flags.
19718         * lib/quotearg.c (quoting_style_args, quoting_style_vals): Add
19719         c-maybe style.
19720         (quotearg_buffer_restyled): Handle new flag to elide outer
19721         quotes.
19722
19723         Quotearg part 2: add flag that can control NUL elision.
19724         * lib/quotearg.h (set_quoting_flags): New prototype.
19725         * lib/quotearg.c (struct quoting_options): Add flag field.
19726         (set_quoting_flags): New function.
19727         (quotearg_buffer_restyled): Add flags parameter.
19728         (quotearg_alloc_mem): Set the flag if length cannot be returned.
19729         (quotearg_n_options): Set the flag, since length cannot be
19730         returned.
19731         (quoting_options_from_style): Default flags correctly.
19732
19733         Quotearg part 1: more wrappers, restore quotearg_char state.
19734         * lib/quotearg.h (quotearg_alloc_mem, quotearg_n_mem)
19735         (quotearg_mem, quotearg_style_mem, quotearg_char_mem)
19736         (quotearg_colon_mem): New wrappers.
19737         * lib/quotearg.c (quotearg_alloc, quotearg_char): Rewrite...
19738         (quotearg_alloc_mem, quotearg_char_mem): ...in terms of these new
19739         functions.
19740         (quotearg_n_mem, quotearg_mem, quotearg_style_mem)
19741         (quotearg_colon_mem): New functions.
19742
19743 2008-02-11  Bruno Haible  <bruno@clisp.org>
19744
19745         * modules/git-merge-changelog (Makefile.am): Don't use -L and -l for a
19746         library in the current directory: it does not work with parallel make.
19747         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
19748
19749 2008-02-11  Bruno Haible  <bruno@clisp.org>
19750
19751         * .gitattributes: New file.
19752
19753 2008-02-11  Jim Meyering  <meyering@redhat.com>
19754
19755         useless-if-before-free: Fix reversed exit values.
19756         * build-aux/useless-if-before-free: Use correct values
19757         for EXIT_MATCH and EXIT_NO_MATCH.
19758
19759         * build-aux/useless-if-before-free: Close stdout carefully.
19760
19761 2008-02-10  Bruno Haible  <bruno@clisp.org>
19762
19763         New module 'git-merge-changelog'.
19764         * modules/git-merge-changelog: New file.
19765         * lib/git-merge-changelog.c: New file.
19766
19767 2008-02-10  Jim Meyering  <meyering@redhat.com>
19768
19769         useless-if-before-free: New option: --list (-l).
19770
19771         useless-if-before-free: Don't exit immediately upon open failure.
19772         * build-aux/useless-if-before-free: Exit 2 for errors.
19773         Upon failure to open a file, don't exit immediately.
19774         Rather, just warn and continue with any remaining files.
19775
19776 2008-02-10  Bruno Haible  <bruno@clisp.org>
19777
19778         New abstract list operation 'node_set_value'.
19779         * lib/gl_list.h (gl_list_node_set_value): New function.
19780         (struct gl_list_implementation): New field node_set_value.
19781         * lib/gl_list.c (gl_list_node_set_value): New function.
19782         * lib/gl_array_list.c (gl_array_node_set_value): New function.
19783         (gl_array_list_implementation): Update.
19784         * lib/gl_carray_list.c (gl_carray_node_set_value): New function.
19785         (gl_carray_list_implementation): Update.
19786         * lib/gl_anylinked_list2.h (gl_linked_node_set_value): New function.
19787         * lib/gl_linked_list.c (gl_linked_list_implementation): Update.
19788         * lib/gl_linkedhash_list.c (gl_linkedhash_list_implementation): Update.
19789         * lib/gl_anytree_list2.h (gl_tree_node_set_value): New function.
19790         * lib/gl_avltree_list.c (gl_avltree_list_implementation): Update.
19791         * lib/gl_rbtree_list.c (gl_rbtree_list_implementation): Update.
19792         * lib/gl_avltreehash_list.c (gl_avltreehash_list_implementation):
19793         Update.
19794         * lib/gl_rbtreehash_list.c (gl_rbtreehash_list_implementation): Update.
19795         * lib/gl_sublist.c (gl_sublist_node_set_value): New function.
19796         (gl_sublist_list_implementation): Update.
19797
19798 2008-02-10  Bruno Haible  <bruno@clisp.org>
19799
19800         * lib/diffseq.h: Write "ELEMENT const" instead of "const ELEMENT".
19801         Needed when ELEMENT is #defined to 'some_type *'.
19802
19803 2008-02-10  Jim Meyering  <meyering@redhat.com>
19804
19805         New script and module: useless-if-before-free
19806         * MODULES.html.sh (maint+release support): Add useless-if-before-free.
19807         * build-aux/useless-if-before-free: New file.
19808         * modules/useless-if-before-free: New file.
19809
19810         * build-aux/gitlog-to-changelog: Use committer date, not author date.
19811
19812         xstrtol_error: Fix typo.
19813         * lib/xstrtol-error.c (xstrtol_error): The parameter was unused:
19814         s/exit_failure/exit_status/.
19815
19816 2008-02-09  Jim Meyering  <meyering@redhat.com>
19817
19818         New script and module: gitlog-to-changelog
19819         * MODULES.html.sh (maint+release support): Add gitlog-to-changelog.
19820         * modules/gitlog-to-changelog: New file.
19821         * build-aux/gitlog-to-changelog: New file.
19822
19823 2008-02-08  Jim Meyering  <meyering@redhat.com>
19824
19825         Avoid two "parameter unused" warnings.
19826         * lib/stat-time.h (get_stat_birthtime_ns, get_stat_birthtime):
19827         Mark "st" as used.
19828
19829         Use "git COMMAND", not "git-COMMAND".
19830         * build-aux/bootstrap (version_controlled_file): s/git-rm/git-rm/.
19831         * build-aux/announce-gen (get_tool_versions): Correct a diagnostic.
19832         * build-aux/git-version-gen: Use "git status", not "git-status".
19833
19834 2008-02-07  Bruno Haible  <bruno@clisp.org>
19835
19836         * lib/vasnprintf.c (VASNPRINTF): Don't use %n on native Woe32 systems.
19837         Avoids a crash on Windows Vista.
19838         Reported by Adam Strzelecki <ono@java.pl> via
19839         Simon Josefsson <simon@josefsson.org>.
19840
19841 2008-02-06  Bruno Haible  <bruno@clisp.org>
19842
19843         Fix *printf behaviour regarding the left-adjust flag on HP-UX 10.20.
19844         * m4/printf.m4 (gl_PRINTF_FLAG_LEFTADJUST): New macro.
19845         * lib/vasnprintf.c (VASNPRINTF): Handle NEED_PRINTF_FLAG_LEFTADJUST.
19846         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_FLAG_LEFTADJUST): New macro.
19847         (gl_PREREQ_VASNPRINTF_WITH_EXTRAS): Invoke it.
19848         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
19849         gl_PRINTF_FLAG_LEFTADJUST and test its result. Invoke
19850         gl_PREREQ_VASNPRINTF_FLAG_LEFTADJUST.
19851         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
19852         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
19853         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
19854         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
19855         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
19856         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
19857         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
19858         * tests/test-vasnprintf-posix.c (test_function): Add testcases for the
19859         left-adjust flag.
19860         * tests/test-snprintf-posix.h (test_function): Likewise.
19861         * tests/test-sprintf-posix.h (test_function): Likewise.
19862         * tests/test-vasprintf-posix.c (test_function): Likewise.
19863         * doc/posix-functions/fprintf.texi: Update.
19864         * doc/posix-functions/printf.texi: Update.
19865         * doc/posix-functions/snprintf.texi: Update.
19866         * doc/posix-functions/sprintf.texi: Update.
19867         * doc/posix-functions/vfprintf.texi: Update.
19868         * doc/posix-functions/vprintf.texi: Update.
19869         * doc/posix-functions/vsnprintf.texi: Update.
19870         * doc/posix-functions/vsprintf.texi: Update.
19871         Reported by Peter Fales <psfales@alcatel-lucent.com>.
19872
19873 2008-02-06  Bruno Haible  <bruno@clisp.org>
19874
19875         Fix bug introduced on 2008-01-26.
19876         * lib/isnan.c (FUNC): Set to rpl_isnand, not rpl_isnan.
19877
19878 2008-02-06  Bruno Haible  <bruno@clisp.org>
19879
19880         Fix bug introduced on 2007-06-10.
19881         * lib/vasnprintf.c (VASNPRINTF): Perform zero-padding also if
19882         !NEED_PRINTF_FLAG_ZERO.
19883
19884 2008-02-05  Peter O'Gorman <pogma@thewrittenword.com>
19885
19886         getloadavg: use libperfstat on AIX5
19887         * lib/getloadavg.c, m4/getloadavg.m4 [aix]: Use libperfstat
19888
19889 2008-02-03  Bruno Haible  <bruno@clisp.org>
19890
19891         * lib/diffseq.h: Add comments about required #includes.
19892         Reported by Michael Biggs <gnulib@doubleplum.net>.
19893
19894 2008-02-01  Bruno Haible  <bruno@clisp.org>
19895
19896         * users.txt: Add gnuit.
19897
19898 2008-01-31  Bruno Haible  <bruno@clisp.org>
19899
19900         * lib/md4.c (set_uint32): Mark as inline.
19901         * lib/md5.c (set_uint32): Likewise.
19902         * lib/sha1.c (set_uint32): Likewise.
19903         * m4/md4.m4 (gl_MD4): Require AC_C_INLINE.
19904         * m4/md5.m4 (gl_MD5): Likewise.
19905         * m4/sha1.m4 (gl_SHA1): Likewise.
19906
19907 2008-01-31  Jim Meyering  <meyering@redhat.com>
19908
19909         Use "sizeof VAR", rather than a literal "4".
19910         * lib/md5.c (md5_read_ctx): Use sizeof ctx->A, not 4.
19911         * lib/md4.c (md4_read_ctx): Likewise.
19912         * lib/sha1.c (sha1_read_ctx): Likewise.
19913
19914 2008-01-31  Simon Josefsson  <simon@josefsson.org>
19915
19916         * tests/test-sha1.c: New file, based on test-md5.c.
19917
19918         * modules/crypto/sha1-tests: New file.
19919
19920 2008-01-31  Simon Josefsson  <simon@josefsson.org>
19921
19922         * lib/sha1.h (SHA1_DIGEST_SIZE): Define.
19923
19924 2008-01-31  Jim Meyering  <meyering@redhat.com>
19925
19926         Prefer "sizeof v" over the equivalent "4".
19927         * lib/md4.c (set_uint32): Use "sizeof v" as memcpy length, not 4.
19928         * lib/md5.c (set_uint32): Likewise.
19929         * lib/sha1.c (set_uint32): Likewise.
19930
19931 2008-01-31  Simon Josefsson  <simon@josefsson.org>
19932
19933         * lib/sha1.c (set_uint32): Mark function as static.
19934
19935 2008-01-31  Simon Josefsson  <simon@josefsson.org>
19936
19937         md2: clarify comments to say that alignment is not required.
19938         * lib/md2.h: Remove warning about alignment in comment.
19939         * lib/md2.c (md2_read_ctx, md2_finish_ctx): Doc fix, alignment has
19940         never been required.
19941
19942 2008-01-31  Simon Josefsson  <simon@josefsson.org>
19943
19944         md4: adapt alignment constraint fix from sha1.
19945         * lib/md4.c (set_uint32): New function, from sha1.c
19946         (md4_read_ctx): Use it.
19947         (md4_finish_ctx): Doc fix.
19948         * lib/md4.h: Doc fix.
19949
19950 2008-01-31  Simon Josefsson  <simon@josefsson.org>
19951
19952         md5: adapt alignment constraint fix from sha1.
19953         * lib/md5.c (set_uint32): New function, from sha1.c
19954         (md5_read_ctx): Use it.
19955         (md5_finish_ctx): Doc fix.
19956         * lib/md5.h: Doc fix.
19957
19958 2008-01-30  Peter Palfrader  <weasel@debian.org>
19959
19960         sha1: remove the result buffer alignment constraint
19961         * lib/sha1.c (set_uint32): New function.
19962         (sha1_read_ctx): Rewrite to remove the result buffer alignment
19963         constraint.
19964         (sha1_finish_ctx): Remove comment warning about alignment constraint.
19965         * lib/sha1.h: Likewise.
19966
19967 2008-01-30  Andreas Schwab  <schwab@suse.de>
19968             Bruno Haible  <bruno@clisp.org>
19969
19970         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Include <float.h> and ensure a
19971         correct definition of LDBL_MIN_EXP.
19972
19973 2008-01-30  Karl Berry  <karl@gnu.org>
19974
19975         * config/srclist-update: try to preserve x bit on updates.
19976         * config/srclistvars.sh: update for karl.
19977
19978 2008-01-29  Jim Meyering  <meyering@redhat.com>
19979
19980         vasnprintf.c: Avoid warning about unused label
19981         * lib/vasnprintf.c (VASNPRINTF) [!USE_SNPRINTF]: Guard the
19982         "overflow" label definition and associated code with the
19983         same cpp condition that guards the sole use of that label.
19984
19985 2008-01-26  Bruno Haible  <bruno@clisp.org>
19986
19987         * m4/isnanl.m4 (gl_HAVE_ISNANL_NO_LIBM, gl_HAVE_ISNANL_IN_LIBM,
19988         gl_FUNC_ISNANL_WORKS): Test the GCC >= 4.0 built-in.
19989         * lib/isnanl.h (isnanl): Use the GCC >= 4.0 built-in.
19990         * lib/isnanl-nolibm.h (isnanl): Likewise.
19991         Reported by Paul Eggert <eggert@cs.ucla.edu>.
19992
19993 2008-01-26  Bruno Haible  <bruno@clisp.org>
19994
19995         * m4/isnand.m4 (gl_FUNC_ISNAND_NO_LIBM): Test the GCC >= 4.0 built-in.
19996         * lib/isnand.h (isnand): Use the GCC >= 4.0 built-in.
19997
19998 2008-01-26  Bruno Haible  <bruno@clisp.org>
19999
20000         * m4/isnanf.m4 (gl_HAVE_ISNANF_NO_LIBM, gl_ISNANF_WORKS): Test the
20001         GCC >= 4.0 built-in.
20002         * lib/isnanf.h (isnanf): Use the GCC >= 4.0 built-in.
20003
20004 2008-01-26  Bruno Haible  <bruno@clisp.org>
20005
20006         Rename isnan, applicable to 'double' only, to isnand.
20007         * modules/isnand-nolibm: Renamed from modules/isnan-nolibm.
20008         (Files): Add lib/isnand.h, lib/isnand.c. Remove lib/isnan.h.
20009         (configure.ac): Update.
20010         (Include): Replace "isnan.h" with "isnand.h".
20011         * m4/isnand.m4: Renamed from m4/isnan.m4.
20012         (gl_FUNC_ISNAND_NO_LIBM): Renamed from gl_FUNC_ISNAN_NO_LIBM. Set
20013         HAVE_ISNAND_IN_LIBC instead of HAVE_ISNAN_IN_LIBC. Build isnand.c
20014         instead of isnan.c.
20015         * lib/isnand.h: Renamed from lib/isnan.h. Test HAVE_ISNAND_IN_LIBC
20016         instead of HAVE_ISNAN_IN_LIBC.
20017         (isnand): Renamed from isnan.
20018         * lib/isnand.c: New file.
20019         * modules/isnand-nolibm-tests: Renamed from modules/isnan-nolibm-tests.
20020         (Files): Add tests/test-isnand.c. Remove tests/test-isnan.c.
20021         (Makefile.am): Update.
20022         * tests/test-isnand.c: Renamed from tests/test-isnan.c.
20023         Include isnand.h instead of isnan.h.
20024         (main): Test isnand instead of isnan.
20025         * modules/fprintf-posix (Depends-on): Add isnand-nolibm, remove
20026         isnan-nolibm.
20027         * modules/frexp (Depends-on): Likewise.
20028         * modules/frexp-tests (Depends-on): Likewise.
20029         * modules/frexp-nolibm (Depends-on): Likewise.
20030         * modules/frexp-nolibm-tests (Depends-on): Likewise.
20031         * modules/isfinite (Depends-on): Likewise.
20032         * modules/round-tests (Depends-on): Likewise.
20033         * modules/signbit (Depends-on): Likewise.
20034         * modules/signbit-tests (Depends-on): Likewise.
20035         * modules/snprintf-posix (Depends-on): Likewise.
20036         * modules/sprintf-posix (Depends-on): Likewise.
20037         * modules/trunc-tests (Depends-on): Likewise.
20038         * modules/unistdio/u8-vasnprintf (Depends-on): Likewise.
20039         * modules/unistdio/u8-u8-vasnprintf (Depends-on): Likewise.
20040         * modules/unistdio/u16-vasnprintf (Depends-on): Likewise.
20041         * modules/unistdio/u16-u16-vasnprintf (Depends-on): Likewise.
20042         * modules/unistdio/u32-vasnprintf (Depends-on): Likewise.
20043         * modules/unistdio/u32-u32-vasnprintf (Depends-on): Likewise.
20044         * modules/unistdio/ulc-vasnprintf (Depends-on): Likewise.
20045         * modules/vasnprintf-posix (Depends-on): Likewise.
20046         * modules/vasprintf-posix (Depends-on): Likewise.
20047         * modules/vfprintf-posix (Depends-on): Likewise.
20048         * modules/vsnprintf-posix (Depends-on): Likewise.
20049         * modules/vsprintf-posix (Depends-on): Likewise.
20050         * lib/frexp.c: Include isnand.h instead of isnan.h.
20051         (ISNAN): Set to isnand instead of isnan.
20052         * lib/isfinite.c: Include isnand.h instead of isnan.h.
20053         (gl_isfinited): Use isnand instead of isnan.
20054         * lib/signbitd.c: Include isnand.h instead of isnan.h.
20055         (gl_signbitd): Use isnand instead of isnan.
20056         * lib/vasnprintf.c: Include isnand.h instead of isnan.h.
20057         (is_infinite_or_zero, VASNPRINTF): Use isnand instead of isnan.
20058         * tests/test-frexp.c: Include isnand.h instead of isnan.h.
20059         (main): Use isnand instead of isnan.
20060         * tests/test-round1.c: Include isnand.h.
20061         (main): Use isnand instead of isnan.
20062         * tests/test-round2.c: Include isnand.h instead of isnan.h.
20063         (ISNAN): Set to isnand instead of isnan.
20064         * tests/test-trunc1.c: Include isnand.h.
20065         (main): Use isnand instead of isnan.
20066         * tests/test-trunc2.c: Include isnand.h instead of isnan.h.
20067         (equal): Use isnand instead of isnan.
20068         * MODULES.html.sh (Mathematics <math.h>): Replace isnan-nolibm with
20069         isnand-nolibm.
20070         * NEWS: Mention the change.
20071
20072 2008-01-25  Paul Eggert  <eggert@cs.ucla.edu>
20073             Bruno Haible  <bruno@clisp.org>
20074
20075         * m4/signbit.m4 (gl_SIGNBIT): Require a macro definition. Test whether
20076         the GCC builtins for signbits are present and set
20077         REPLACE_SIGNBIT_USING_GCC if so.
20078         * lib/math.in.h (signbit): Define using GCC builtins if
20079         REPLACE_SIGNBIT_USING_GCC is set.
20080         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize
20081         REPLACE_SIGNBIT_USING_GCC.
20082         * modules/math (Makefile.am): Substitute REPLACE_SIGNBIT_USING_GCC.
20083
20084 2008-01-25  Jim Meyering  <meyering@redhat.com>
20085
20086         Prefer <config.h> over "config.h".  See autoconf doc for explanation.
20087         * lib/poll.c: Include <config.h>, not "config.h".
20088         * tests/test-getaddrinfo.c: Likewise.
20089
20090 2008-01-25  Simon Josefsson  <simon@josefsson.org>
20091
20092         * modules/sockets-tests: New file.
20093
20094 2008-01-24  Simon Josefsson  <simon@josefsson.org>
20095
20096         * modules/sockets: New module, can be used to call WSA_Startup and
20097         WSA_Cleanup when needed.
20098
20099         * lib/sockets.h, lib/sockets.c: New files.
20100
20101         * m4/sockets.m4: New file.
20102
20103         * tests/test-sockets.c: New file.
20104
20105 2008-01-19  Bruno Haible  <bruno@clisp.org>
20106
20107         * doc/posix-headers: Renamed from doc/headers.
20108         * doc/posix-functions: Renamed from doc/functions.
20109         * doc/gnulib.texi: Update.
20110
20111 2008-01-19  Bruno Haible  <bruno@clisp.org>
20112
20113         * doc/glibc-functions/strcasestr.texi: Include contents of
20114         doc/functions/strcasestr.texi, fixing the list of platforms.
20115         * doc/functions/strcasestr.texi: Remove file.
20116
20117 2008-01-19  Bruno Haible  <bruno@clisp.org>
20118
20119         * doc/glibc-functions/memmem.texi: Include contents of
20120         doc/functions/memmem.texi.
20121         * doc/functions/memmem.texi: Remove file.
20122
20123 2008-01-18  Bruno Haible  <bruno@clisp.org>
20124
20125         * doc/glibc-functions/*.texi: New files.
20126         * doc/gnulib.texi (Glibc Function Substitutes): Completely rewritten
20127         to use the new files.
20128
20129 2008-01-17  Bruno Haible  <bruno@clisp.org>
20130
20131         * tests/test-gethostname.c (main): Fix printf statement.
20132
20133 2008-01-17  Simon Josefsson  <simon@josefsson.org>
20134
20135         * modules/gethostname-tests: New file.
20136
20137         * tests/test-gethostname.c: New file.
20138
20139 2008-01-17  Simon Josefsson  <simon@josefsson.org>
20140
20141         * lib/gethostname.c: Include string.h unconditionally, strncpy is
20142         used by the UNAME case.  Reported by Bruno Haible
20143         <bruno@clisp.org>.
20144
20145 2008-01-17  Eric Blake  <ebb9@byu.net>
20146
20147         Convert c-strcasestr to be more efficient.
20148         * modules/c-strcasestr (Files): Use Two-Way, not KMP.
20149         (Depends-on): Add c-strcase, remove malloca, strnlen.
20150         * tests/test-c-strcasestr.c (main): Enhance test.
20151         * lib/c-strcasestr.c (c_strcasestr): Rewrite to new algorithm.
20152
20153 2007-01-16  Paolo Bonzini  <bonzini@gnu.org>
20154
20155         * build-aux/bootstrap (MSGID_BUGS_ADDRESS): New overridable variable.
20156         Use it in creating po/Makevars.
20157
20158 2008-01-15  Simon Josefsson  <simon@josefsson.org>
20159
20160         * lib/gc-libgcrypt.c (gc_init): Disable secure memory by default.
20161         Applications that requires it should initialize libgcrypt
20162         manually.
20163
20164 2008-01-16  Simon Josefsson  <simon@josefsson.org>
20165
20166         * lib/gethostname.c [!HAVE_UNAME]: Need string.h for strcpy.
20167
20168 2008-01-15  Paul Eggert  <eggert@cs.ucla.edu>
20169
20170         Fix problem with getdate on mingw32 reported by Simon Josefsson
20171         in <http://lists.gnu.org/archive/html/bug-gnulib/2008-01/msg00192.html>.
20172         * lib/getdate.y (get_date): Check "HAVE_DECL_TZNAME", not "defined
20173         tzname", when deciding whether to declare tzname.
20174         * lib/strftime.c (tzname): Likewise.
20175
20176 2008-01-15  Bruno Haible  <bruno@clisp.org>
20177
20178         Work around a MacOS X 10.5 bug in frexpl().
20179         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Also check denormalized numbers.
20180         * doc/functions/frexpl.texi: Document the bug.
20181         Reported by Elias Pipping <pipping@gentoo.org>.
20182
20183 2008-01-14  Eric Blake  <ebb9@byu.net>
20184
20185         Touch up previous patch.
20186         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR_SIMPLE): Fix typo.
20187         * doc/functions/strcasestr.texi (strcasestr): Document OpenBSD bug.
20188
20189         Convert strcasestr module to use Two-Way algorithm.
20190         * modules/strcasestr-simple: New module, based on the old
20191         strcasestr, but with Two-Way rather than KMP.
20192         * modules/strcasestr (Depends-on): Change to strcasestr-simple.
20193         * lib/string.in.h (rpl_strcasestr): Declare.
20194         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Check for linear
20195         performance.
20196         * lib/strcasestr.c (strcasestr): Simplify, and avoid malloc.
20197         * modules/string (Makefile.am): Support strcasestr.
20198         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Likewise.
20199         * modules/strcasestr-tests (Depends-on): Check for alarm.
20200         * tests/test-strcasestr.c: Augment test.
20201         * lib/str-two-way.h: Clean up stray macro.
20202         * NEWS: Document new module.
20203         * MODULES.html.sh (string handling): Likewise.
20204         * doc/functions/strcasestr.texi: New file.
20205         * doc/gnulib.texi (Function Substitutes): New node.  Move memmem
20206         here, since it is not a POSIX function.
20207
20208 2008-01-14  Colin Watson  <cjwatson@debian.org>
20209             Bruno Haible  <bruno@clisp.org>
20210
20211         * m4/strsignal.m4 (gl_FUNC_STRSIGNAL): Also check whether strsignal
20212         works fine; if not, set REPLACE_STRSIGNAL.
20213         (gl_PREREQ_STRSIGNAL): Require AC_DECL_SYS_SIGLIST.
20214         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
20215         REPLACE_STRSIGNAL.
20216         * lib/string.in.h (strsignal): Consider REPLACE_STRSIGNAL.
20217         * modules/string (Makefile.am): Substitute REPLACE_STRSIGNAL.
20218         * tests/test-strsignal.c (main): Check out-of-range signal numbers.
20219
20220 2008-01-14  Bruno Haible  <bruno@clisp.org>
20221
20222         * modules/strsignal (Include): Change to <string.h>.
20223
20224 2008-01-14  Colin Watson  <cjwatson@debian.org>
20225
20226         * modules/argp (Notice): Add a notice recommending to change
20227         XGETTEXT_OPTIONS.
20228         (configure.ac): Invoke AM_XGETTEXT_OPTION if it exists.
20229
20230 2008-01-13  Colin Watson  <cjwatson@debian.org>
20231
20232         * modules/strsignal-tests: New file.
20233         * tests/test-strsignal.c: New file.
20234
20235         * lib/strsignal.c: New file, from glibc with modifications.
20236         * lib/siglist.h: New file, from glibc with modifications.
20237         * lib/string.in.h (strsignal): New declaration.
20238         * m4/strsignal.m4: New file.
20239         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
20240         GNULIB_STRSIGNAL and HAVE_DECL_STRSIGNAL.
20241         * modules/strsignal: New file.
20242         * modules/string (Makefile.am): Substitute GNULIB_STRSIGNAL and
20243         HAVE_DECL_STRSIGNAL.
20244
20245 2008-01-13  Bruno Haible  <bruno@clisp.org>
20246
20247         * m4/locale-fr.m4 (gt_LOCALE_FR, gt_LOCALE_FR_UTF8): Check that the
20248         locale encoding is not ASCII. Needed for OpenBSD 4.0.
20249         * m4/locale-tr.m4 (gt_LOCALE_TR_UTF8): Likewise.
20250         * m4/locale-zh.m4 (gt_LOCALE_ZH_CN): Likewise.
20251
20252 2008-01-13  Bruno Haible  <bruno@clisp.org>
20253
20254         * lib/argp-fmtstream.h (__attribute__): Don't redefine if
20255         __STRICT_ANSI__ is set: it's not needed by any version of gcc.
20256         * lib/argp.h (__attribute__): Likewise.
20257         * lib/c-stack.c (__attribute__): Likewise.
20258         * lib/error.h (__attribute__): Likewise.
20259         * lib/fts.c (__attribute__): Likewise.
20260         * lib/openat.h (__attribute__): Likewise.
20261         * lib/stdio.in.h (__attribute__): Likewise.
20262         * lib/string.in.h (__attribute__): Likewise.
20263         * lib/utimens.c (__attribute__): Likewise.
20264         * lib/vasnprintf.h (__attribute__): Likewise.
20265         * lib/xalloc.h (__attribute__): Likewise.
20266         * lib/xprintf.h (__attribute__): Likewise.
20267         * lib/xstrtol.h (__attribute__): Likewise.
20268         * lib/xvasprintf.h (__attribute__): Likewise.
20269
20270 2008-01-12  Bruno Haible  <bruno@clisp.org>
20271
20272         * doc/gnulib.texi (Glibc Header File Substitutes): New chapter.
20273         * doc/glibc-headers/a.out.texi: New file.
20274         * doc/glibc-headers/aliases.texi: New file.
20275         * doc/glibc-headers/alloca.texi: New file.
20276         * doc/glibc-headers/ar.texi: New file.
20277         * doc/glibc-headers/argp.texi: New file.
20278         * doc/glibc-headers/argz.texi: New file.
20279         * doc/glibc-headers/byteswap.texi: New file.
20280         * doc/glibc-headers/crypt.texi: New file.
20281         * doc/glibc-headers/endian.texi: New file.
20282         * doc/glibc-headers/envz.texi: New file.
20283         * doc/glibc-headers/err.texi: New file.
20284         * doc/glibc-headers/error.texi: New file.
20285         * doc/glibc-headers/execinfo.texi: New file.
20286         * doc/glibc-headers/fpu_control.texi: New file.
20287         * doc/glibc-headers/fstab.texi: New file.
20288         * doc/glibc-headers/fts.texi: New file.
20289         * doc/glibc-headers/getopt.texi: New file.
20290         * doc/glibc-headers/ieee754.texi: New file.
20291         * doc/glibc-headers/ifaddrs.texi: New file.
20292         * doc/glibc-headers/libintl.texi: New file.
20293         * doc/glibc-headers/mcheck.texi: New file.
20294         * doc/glibc-headers/mntent.texi: New file.
20295         * doc/glibc-headers/obstack.texi: New file.
20296         * doc/glibc-headers/paths.texi: New file.
20297         * doc/glibc-headers/printf.texi: New file.
20298         * doc/glibc-headers/pty.texi: New file.
20299         * doc/glibc-headers/resolv.texi: New file.
20300         * doc/glibc-headers/shadow.texi: New file.
20301         * doc/glibc-headers/sysexits.texi: New file.
20302         * doc/glibc-headers/ttyent.texi: New file.
20303
20304 2008-01-12  Jim Meyering  <meyering@redhat.com>
20305
20306         announce-gen: emit Gnulib's git-based version string.
20307         * build-aux/announce-gen: Remove option: --gnulib-snapshot-time-stamp=S.
20308         New option --gnulib-version=V, where V is expected to be
20309         the output of running git describe in the gnulib directory.
20310         (get_tool_versions): Request feedback on xdelta.  I suspect it's
20311         not useful, and plan to stop publishing an xdelta file with each
20312         coreutils release.
20313
20314         * build-aux/announce-gen: Also check for lzma-compressed files.
20315
20316 2008-01-11  Bruno Haible  <bruno@clisp.org>
20317
20318         * tests/test-memmem.c (main): Increase maximum allowed time.
20319         * tests/test-strstr.c (main): Likewise.
20320
20321 2008-01-11  Bruno Haible  <bruno@clisp.org>
20322
20323         * doc/functions/memmem.texi: Add more precisions about platforms.
20324         * doc/functions/strstr.texi: Likewise.
20325
20326 2008-01-10  Eric Blake  <ebb9@byu.net>
20327
20328         * m4/strstr.m4: Delete cruft from copy-n-paste.
20329         Reported by Bruno Haible.
20330
20331 2008-01-10  Bruno Haible  <bruno@clisp.org>
20332
20333         Make c-strstr rely on strstr.
20334         * lib/c-strstr.c: Don't include str-kmp.h.
20335         (c_strstr): Define in terms of strstr.
20336         * modules/c-strstr (Files): Remove lib/str-kmp.h.
20337         (Depends-on): Remove stdbool, malloca, strnlen. Add strstr.
20338
20339 2008-01-10  Bruno Haible  <bruno@clisp.org>
20340
20341         * doc/gnulib.texi (String Functions in C Locale): New section.
20342         * doc/c-ctype.texi: New file.
20343         * doc/c-strcase.texi: New file.
20344         * doc/c-strcaseeq.texi: New file.
20345         * doc/c-strcasestr.texi: New file.
20346         * doc/c-strstr.texi: New file.
20347         * doc/c-strtod.texi: New file.
20348         * doc/c-strtold.texi: New file.
20349
20350 2008-01-10  Eric Blake  <ebb9@byu.net>
20351
20352         * lib/relocatable.h: Fix a comment.
20353
20354 2008-01-10  Eric Blake  <ebb9@byu.net>
20355
20356         Share two-way algorithm.
20357         * lib/str-two-way.h: New file, merged from...
20358         * lib/memmem.c: ...here...
20359         * lib/strstr.c: ...and here.
20360         * modules/memmem (Files): Use it.
20361         * modules/strstr (Files): Likewise.
20362
20363         Avoid quadratic strstr implementations.
20364         * lib/strstr.c: New file.
20365         * m4/strstr.m4: Likewise.
20366         * modules/strstr: Likewise.
20367         * modules/strstr-tests: Likewise.
20368         * tests/test-strstr.c: Likewise.
20369         * lib/string.in.h (rpl_strstr): Declare.
20370         (memmem) [GNULIB_POSIXCHECK]: Document speed issue.
20371         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Support strstr.
20372         * modules/string (Makefile.am): Likewise.
20373         * MODULES.html.sh (string handling): Mention new module.
20374         * doc/functions/strstr.texi (strstr): Document the bug.
20375
20376 2008-01-10  Bruno Haible  <bruno@clisp.org>
20377
20378         * lib/relocatable.h (relocate): State whether result is freshly
20379         allocated or not.
20380         * lib/relocatable.c (relocate): Return a freshly allocated string
20381         instead of a pointer to a privately held string.
20382         Reported by Sylvain Beucler <beuc@gnu.org>.
20383
20384 2008-01-10  Colin Watson  <cjwatson@debian.org>
20385
20386         * lib/canonicalize-lgpl.c [!_LIBC]: Fix typo in #if directive:
20387         s/S_ISNLK/S_ISLNK/.
20388
20389 2008-01-09  Bruno Haible  <bruno@clisp.org>
20390
20391         * doc/functions/memmem.texi: Use the same structure as snprintf.texi
20392         and other files.
20393         * m4/memmem.m4 (gl_FUNC_MEMMEM): Say "guessing no" instead of "no"
20394         if it's only a guess.
20395         * modules/memmem: Simplify by depending on memmem-simple.
20396
20397 2008-01-09  Bruno Haible  <bruno@clisp.org>
20398
20399         Work around OpenBSD 4.0 tdelete() bug.
20400         * m4/tsearch.m4 (gl_FUNC_TSEARCH): Also check tdelete's return value.
20401         * lib/search.in.h: If REPLACE_TSEARCH is 1, define tsearch etc. as
20402         macros and don't redefine the enum values.
20403         * m4/search_h.m4 (gl_SEARCH_H_DEFAULTS): Initialize REPLACE_TSEARCH.
20404         * modules/search (Makefile.am): Also substitute REPLACE_TSEARCH.
20405         * doc/functions/tdelete.texi: Document the OpenBSD 4.0 bug.
20406
20407 2008-01-09  Bruno Haible  <bruno@clisp.org>
20408
20409         * tests/test-wcwidth.c: Include <string.h> and localcharset.h.
20410         (main): Don't perform the tests if setlocale did not install a UTF-8
20411         locale. Needed on OpenBSD 4.0.
20412         * modules/wcwidth-tests (Depends-on): Add localcharset.
20413
20414 2008-01-09  Paul Eggert  <eggert@cs.ucla.edu>
20415
20416         gl_FUNC_ALLOCA no longer defines HAVE_ALLOCA_H unconditionally.
20417         See <http://lists.gnu.org/archive/html/bug-gnulib/2007-12/msg00149.html>.
20418         * NEWS: announce this.
20419         * m4/alloca.m4 (gl_FUNC_ALLOCA): Don't define HAVE_ALLOCA_H.
20420
20421 2008-01-09  Simon Josefsson  <simon@josefsson.org>
20422         and Eric Blake  <ebb9@byu.net>
20423
20424         Add memmem-simple module.
20425         * m4/memmem.m4 (gl_FUNC_MEMMEM_SIMPLE): New macro.
20426         (gl_FUNC_MEMMEM): Separate performance from presence checks.
20427         * modules/memmem-simple: New file.
20428         * modules/memmem (Description): Tweak.
20429         * MODULES.html.sh (string handling): Mention new module.
20430         * doc/functions/memmem.texi (memmem): Distinguish which flaws are
20431         addressed by memmem-simple.
20432         * NEWS: Document the difference.
20433
20434 2008-01-09  Eric Blake  <ebb9@byu.net>
20435
20436         Give gcc some memmem optimization hints.
20437         * lib/string.in.h (memmem, memrchr, strchrnul, strnlen, strpbrk)
20438         (strcasestr): Declare as pure.
20439         * modules/memmem (Maintainer): Claim my implementation.
20440
20441 2008-01-09  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
20442
20443         Support AIX 6.1 and higher.
20444         * build-aux/config.libpath: Likewise.
20445         * build-aux/config.rpath: Likewise.
20446
20447 2008-01-08  Jim Meyering  <meyering@redhat.com>
20448             Bruno Haible  <bruno@clisp.org>
20449
20450         * lib/printf-parse.c (PRINTF_PARSE): Handle a size specifier "q"
20451         on MacOS X and a size specifier "I64" on mingw. Needed for PRIdMAX.
20452         Reported by Peter Fales in
20453         <http://lists.gnu.org/archive/html/bug-coreutils/2007-12/msg00148.html>.
20454
20455 2008-01-08  Bruno Haible  <bruno@clisp.org>
20456
20457         * modules/unictype/category-of (Depends-on): Add
20458         unictype/category-none.
20459         * modules/unictype/category-and-tests (Depends-on): Add
20460         unictype/category-{L,N,Lu,Nd}.
20461         * modules/unictype/category-and-not-tests (Depends-on): Likewise.
20462         * modules/unictype/category-or-tests (Depends-on): Add
20463         unictype/category-{L,N}.
20464         * modules/unictype/category-name-tests (Depends-on): Add
20465         unictype/category-{Z,Nl}.
20466         Reported by Simon Josefsson.
20467
20468 2008-01-08  Bruno Haible  <bruno@clisp.org>
20469
20470         * lib/str-kmp.h (knuth_morris_pratt_unibyte): Document the calling
20471         convention better.
20472         * lib/mbsstr.c (knuth_morris_pratt_multibyte): Likewise.
20473         * lib/mbscasestr.c (knuth_morris_pratt_multibyte): Likewise.
20474         Reported by Peter Miller <millerp@canb.auug.org.au>.
20475
20476 2008-01-08  Eric Blake  <ebb9@byu.net>
20477
20478         Rewrite memmem to guarantee linear complexity without malloc.
20479         * lib/memmem.c (memmem): Use Two-Way rather than
20480         Knuth-Morris-Pratt, to allow O(1) space usage.
20481         (critical_factorization, two_way_short_needle)
20482         (two_way_long_needle): New functions.
20483         (knuth_morris_pratt): Delete.
20484         * modules/memmem (Depends-on): No longer need malloca or stdbool.
20485         Add stdint.
20486         * tests/test-memmem.c (main): Add tests for periodic needle and
20487         sublinear performance.
20488         * doc/functions/memmem.texi (memmem): Document other deficiencies
20489         in cygwin and older glibc.
20490
20491 2008-01-08  Bruno Haible  <bruno@clisp.org>
20492
20493         * modules/memmem-tests (Makefile.am): Remove TESTS_ENVIRONMENT
20494         augmentation.
20495
20496 2008-01-08  Mike Frysinger  <vapier@gentoo.org>
20497
20498         Add a configure time option: --disable-acl.
20499         * m4/acl.m4 (gl_FUNC_ACL): Wrap all ACL logic in a call to
20500         AC_ARG_ENABLE(acl).
20501
20502 2008-01-06  Simon Josefsson  <simon@josefsson.org>
20503
20504         * tests/test-localename.c: Don't include obsolete "setenv.h".
20505
20506         * modules/localename-tests (Depends-on): Need unsetenv.
20507
20508 2008-01-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
20509
20510         * DEPENDENCIES: Require Texinfo version 4.6 or newer.
20511
20512 2008-01-06  Colin Watson  <cjwatson@debian.org>
20513
20514         * users.txt: Add man-db.
20515
20516 2008-01-07  Bruno Haible  <bruno@clisp.org>
20517
20518         * doc/gnulib-intro.texi (Library vs Reusable Code): Restore the
20519         previous section name.
20520
20521 2008-01-07  Bruno Haible  <bruno@clisp.org>
20522
20523         * lib/progname.c (set_program_name): Don't strip off a leading
20524         "lt-" prefix outside a .libs directory.
20525         Suggested by Paul Eggert.
20526
20527 2008-01-01  Sylvain Beucler  <beuc@gnu.org>
20528             Bruno Haible  <bruno@clisp.org>
20529
20530         Improve memory cleanup in 'relocatable' module.
20531         * lib/relocatable.h (compute_curr_prefix): Change return type to
20532         'char *'.
20533         * lib/relocatable.c (compute_curr_prefix): Change return type to
20534         'char *'. Free curr_installdir after use.
20535         (relocate): Free curr_prefix_better after use.
20536         * lib/progreloc.c (prepare_relocate): Free curr_prefix after use.
20537
20538 2008-01-01  Bruno Haible  <bruno@clisp.org>
20539
20540         * tests/test-wcwidth.c (main): Relax test of U+2060. Avoids a test
20541         failure on older glibc systems.
20542         Reported by Peter Fales <psfales@alcatel-lucent.com>.
20543
20544 2008-01-05  Eric Blake  <ebb9@byu.net>
20545
20546         Avoid quadratic system memmem.
20547         * m4/memmem.m4 (gl_FUNC_MEMMEM): Check for quadratic memmem.
20548         Reported by Ralf Wildenhues.
20549
20550         Fix memmem test for mingw.
20551         * modules/memmem-tests (configure.ac): Check for alarm.
20552         * tests/test-memmem.c (main): Avoid alarm on platforms that lack
20553         it.
20554         * doc/functions/memmem.texi: New file.
20555         * doc/gnulib.texi (Function Substitutes): Add memmem.
20556         Reported by Bruno Haible.
20557
20558 2008-01-04  Bruno Haible  <bruno@clisp.org>
20559
20560         * m4/strcase.m4 (gl_FUNC_STRCASECMP, gl_FUNC_STRNCASECMP):
20561         Require gl_HEADER_STRINGS_H_DEFAULTS, not
20562         gl_HEADER_STRING_H_DEFAULTS.
20563
20564 2008-01-04  Eric Blake  <ebb9@byu.net>
20565
20566         Shorten duration of memmem test.
20567         * tests/test-memmem.c (main): Use alarm to declare failure if test
20568         is taking too long.
20569         Reported by Ralf Wildenhues.
20570
20571 2007-12-21  Simon Josefsson  <simon@josefsson.org>
20572
20573         * modules/relocatable-prog-wrapper (Depends-on): Add intprops and
20574         string, needed by strerror.
20575
20576 2008-01-03  Colin Watson  <cjwatson@debian.org>
20577             Bruno Haible  <bruno@clisp.org>
20578
20579         * doc/gnulib-tool.texi (Localization): New section.
20580
20581 2008-01-02  Bruno Haible  <bruno@clisp.org>
20582
20583         * lib/memmem.c (knuth_morris_pratt, memmem): Change all 'char *'
20584         variables to 'unsigned char *' type.
20585         Reported by Paul Eggert.
20586
20587 2008-01-02  Jim Meyering  <jim@meyering.net>
20588
20589         * lib/version-etc.c (COPYRIGHT_YEAR): Increase for new year.
20590
20591 2007-12-31  Jim Meyering  <jim@meyering.net>
20592
20593         Avoid use of private FTS type name.
20594         * lib/fts.c (fts_sort): Use FTSENT rather than "struct _ftsent".
20595
20596 2007-12-30  Karl Berry  <karl@gnu.org>
20597
20598         * doc/gnulib.texi (Library vs. Reusable Code): remove period, to
20599         work around defect in Texinfo and/or the standalone Info browser.
20600
20601 2007-12-30  Bruno Haible  <bruno@clisp.org>
20602
20603         Unify 5 copies of the KMP code.
20604         * lib/str-kmp.h: New file.
20605         * lib/c-strcasestr.c: Include str-kmp.h.
20606         (knuth_morris_pratt): Remove function.
20607         (c_strcasestr): Update.
20608         * lib/c-strstr.c: Include str-kmp.h.
20609         (knuth_morris_pratt): Remove function.
20610         (c_strcasestr): Update.
20611         * lib/mbscasestr.c: Include str-kmp.h.
20612         (knuth_morris_pratt_unibyte): Remove function.
20613         * lib/mbsstr.c: Include str-kmp.h.
20614         (knuth_morris_pratt_unibyte): Remove function.
20615         * lib/strcasestr.c: Include str-kmp.h.
20616         (knuth_morris_pratt): Remove function.
20617         (strcasestr): Update.
20618         * modules/c-strcasestr (Files): Add lib/str-kmp.h.
20619         * modules/c-strstr (Files): Likewise.
20620         * modules/mbscasestr (Files): Likewise.
20621         * modules/mbsstr (Files): Likewise.
20622         * modules/strcasestr (Files): Likewise.
20623         Suggested by Paul Eggert.
20624
20625 2007-12-30  Bruno Haible  <bruno@clisp.org>
20626
20627         * lib/xmalloca.c (xmmalloca): Don't define if HAVE_ALLOCA is not
20628         defined.
20629
20630 2007-12-30  Bruno Haible  <bruno@clisp.org>
20631
20632         * lib/xmalloca.h: Include xalloc.h.
20633         (xnmalloca): New macro.
20634
20635 2007-12-30  Bruno Haible  <bruno@clisp.org>
20636
20637         * lib/malloca.h (nmalloca): New macro.
20638         * lib/c-strcasestr.c (knuth_morris_pratt): Use it.
20639         * lib/c-strstr.c (knuth_morris_pratt): Likewise.
20640         * lib/mbscasestr.c (knuth_morris_pratt_unibyte,
20641         knuth_morris_pratt_multibyte): Likewise.
20642         * lib/mbsstr.c (knuth_morris_pratt_unibyte,
20643         knuth_morris_pratt_multibyte): Likewise.
20644         * lib/memmem.c (knuth_morris_pratt): Likewise.
20645         * lib/strcasestr.c (knuth_morris_pratt): Likewise.
20646
20647 2007-12-25  Bruno Haible  <bruno@clisp.org>
20648
20649         Fixup after 2007-10-17 commit. Ensure that 'glob' stays under LGPLv2+.
20650         * lib/glob.c: Don't include openat.h.
20651         (link_exists2_p): Add back the code that deals with the
20652         !GLOB_ALTDIRFUNC case.
20653         (link_exists_p) [!_LIBC && !HAVE_FSTATAT]: Just call link_exists2_p and
20654         let it do the filename concatenation.
20655         * m4/glob.m4 (gl_PREREQ_GLOB): Add check for fstatat.
20656         * modules/glob (Depends-on): Remove openat.
20657
20658 2007-12-31  Bruno Haible  <bruno@clisp.org>
20659
20660         * modules/dirfd (License): Change to LGPLv2+.
20661         Approved by Jim Meyering.
20662
20663 2007-12-29  Paul Eggert  <eggert@cs.ucla.edu>
20664
20665         * lib/memmem.c (knuth_morris_pratt): Check for size_t overflow
20666         when multiplying M by sizeof (size_t).
20667
20668 2007-12-10  Martin Lambers  <marlam@marlam.de>
20669
20670         Override getpagesize on mingw.
20671         * lib/getpagesize.c: New file.
20672         * m4/getpagesize.m4 (gl_FUNC_GETPAGESIZE): Enable replacement on mingw.
20673         * modules/getpagesize (Files): Add lib/getpagesize.c.
20674         * lib/unistd.in.h (getpagesize): Declare if we are using a replacement.
20675         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
20676         REPLACE_GETPAGESIZE.
20677         * modules/unistd (Makefile.am): Substitute REPLACE_GETPAGESIZE.
20678
20679 2007-12-25  Bruno Haible  <bruno@clisp.org>
20680
20681         * modules/localcharset (Notice): New field.
20682         (configure.ac): Define LOCALCHARSET_TESTS_ENVIRONMENT.
20683         Suggested by Ben Pfaff <blp@cs.stanford.edu>.
20684
20685 2007-12-25  Paul Eggert  <eggert@cs.ucla.edu>
20686             Bruno Haible  <bruno@clisp.org>
20687
20688         Avoid using the syntax symbol() in formatted documentation.
20689         * MODULES.html.sh (func_module): When replacing symbol() with a
20690         hyperlink, remove the parentheses. Show an error if some remain.
20691         Recognize and render the '...' syntax.
20692         * doc/alloca-opt.texi: Remove parentheses from symbol reference.
20693         Rework. Add paragraph about GCC's inlining.
20694         * doc/alloca.texi: Likewise.
20695         * doc/error.texi: Remove parentheses from symbol reference.
20696         * doc/gnulib-intro.texi: Likewise.
20697         * doc/gnulib.texi (alloca, alloca-opt): New nodes.
20698         * modules/fnmatch (Description): Reword to say "the ... function".
20699         * modules/full-read (Description): Likewise.
20700         * modules/full-write (Description): Likewise.
20701         * modules/safe-read (Description): Likewise.
20702         * modules/safe-write (Description): Likewise.
20703         * modules/strchrnul (Description): Likewise.
20704         * modules/trim (Description): Likewise.
20705         * modules/error (Description): Remove parentheses from symbol
20706         references.
20707         * modules/verror (Description): Likewise.
20708         Reported by Karl Berry.
20709
20710 2007-12-25  Bruno Haible  <bruno@clisp.org>
20711
20712         Fixup after 2007-10-16 commit.
20713         * lib/glob.c (glob_in_dir): Don't use ISO C99 syntax.
20714
20715 2007-12-24  Bruno Haible  <bruno@clisp.org>
20716
20717         Make --enable-relocatable work with DESTDIR.
20718         * build-aux/install-reloc: Accept another argument 'destdir'. Use it
20719         to compute installdir from destprog.
20720         * m4/relocatable.m4 (gl_RELOCATABLE_BODY): In INSTALL_PROGRAM_ENV,
20721         also set the RELOC_DESTDIR variable.
20722         Reported by Ð›ÐµÐ²Ð°ÑˆÐµÐ² Ð˜Ð²Ð°Ð½ <octagram@bluebottle.com>.
20723
20724 2007-12-24  Bruno Haible  <bruno@clisp.org>
20725
20726         Fix link error due to xalloc_die().
20727         * lib/progreloc.c: When NO_XMALLOC is defined, use areadlink instead
20728         of xreadlink.
20729         * lib/relocwrapper.c: Update comments.
20730         * build-aux/install-reloc: Remove xreadlink.c from file list.
20731         * modules/relocatable-prog-wrapper (Files): Remove xreadlink.h and
20732         xreadlink.c.
20733         Reported by Ð›ÐµÐ²Ð°ÑˆÐµÐ² Ð˜Ð²Ð°Ð½ <octagram@bluebottle.com>.
20734
20735 2007-12-24  Bruno Haible  <bruno@clisp.org>
20736
20737         Split setenv module into setenv and unsetenv. Get rid of setenv.h.
20738         * lib/setenv.h: Remove file.
20739         * lib/stdlib.in.h (setenv, unsetenv): New declarations, moved here from
20740         lib/setenv.h.
20741         * modules/setenv (Files): Remove lib/setenv.h, lib/unsetenv.c.
20742         (Depends-on): Add stdlib.
20743         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR. Don't invoke
20744         gl_FUNC_UNSETENV.
20745         (Include): Replace setenv.h with <stdlib.h>.
20746         * modules/unsetenv: New file.
20747         * lib/setenv.c: Include <stdlib.h> first, after alloca.h.
20748         * lib/unsetenv.c: Include <stdlib.h> first.
20749         * m4/setenv.m4 (gl_FUNC_SETENV, gl_FUNC_SETENV_SEPARATE): Require
20750         gl_STDLIB_H_DEFAULTS. Conditionally set HAVE_SETENV to 0.
20751         (gl_FUNC_UNSETENV): Require gl_STDLIB_H_DEFAULTS. Conditionally set
20752         HAVE_UNSETENV to 0. Set VOID_UNSETENV as an AC_SUBSTed variable.
20753         * modules/stdlib (Makefile.am): Substitute also GNULIB_SETENV,
20754         HAVE_SETENV, GNULIB_UNSETENV, HAVE_UNSETENV, VOID_UNSETENV.
20755         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_SETENV,
20756         HAVE_SETENV, GNULIB_UNSETENV, HAVE_UNSETENV, VOID_UNSETENV.
20757         * doc/functions/unsetenv.texi: Update.
20758         * modules/xsetenv (Depends-on): Add unsetenv.
20759         * modules/getdate (Depends-on): Likewise.
20760         * lib/xsetenv.h: Include <stdlib.h> instead of setenv.h.
20761         * lib/xsetenv.c: Don't include setenv.h.
20762         * lib/getdate.y: Likewise.
20763         * lib/relocwrapper.c: Likewise.
20764         * modules/relocatable-prog-wrapper (Files): Remove lib/setenv.h.
20765         (Depends-on): Add stdlib.
20766         * NEWS: Mention the changes.
20767         Reported by Ð›ÐµÐ²Ð°ÑˆÐµÐ² Ð˜Ð²Ð°Ð½ <octagram@bluebottle.com>.
20768
20769 2007-12-23  Bruno Haible  <bruno@clisp.org>
20770
20771         * lib/memmem.c (memmem): Use lowercase variable names. Tab
20772         indentation.
20773
20774 2007-12-23  Bruno Haible  <bruno@clisp.org>
20775
20776         * lib/c-strcasestr.c: Add more comments.
20777         * lib/c-strstr.c: Likewise.
20778         * lib/mbscasestr.c: Likewise.
20779         * lib/mbsstr.c: Likewise.
20780         * lib/strcasestr.c: Likewise.
20781         * lib/memmem.c: Likewise.
20782
20783 2007-12-23  Bruno Haible  <bruno@clisp.org>
20784
20785         * tests/test-memmem.c: Include <string.h> first.
20786
20787 2007-12-22  Bruno Haible  <bruno@clisp.org>
20788
20789         * gnulib-tool (func_create_testdir): Change $auxdir while generating
20790         the contents of $testsbase.
20791         Reported by Ralf Wildenhues.
20792
20793 2007-12-22  Bruno Haible  <bruno@clisp.org>
20794
20795         * gnulib-tool (func_emit_tests_Makefile_am): Replace local_ldadd with
20796         two variables local_ldadd_before, local_ldadd_last.
20797
20798 2007-12-20  Eric Blake  <ebb9@byu.net>
20799
20800         Work around circular library issue when cross-compiling.
20801         * lib/progname.c (set_program_name): Use strncmp, not memcmp, so
20802         that progname.o does not need to pull in rpl_memcmp.
20803
20804 2007-12-19  Eric Blake  <ebb9@byu.net>
20805
20806         Fix memmem to avoid O(n^2) worst-case complexity.
20807         * lib/memmem.c (knuth_morris_pratt): New function.
20808         (memmem): Use it if first few naive iterations fail.
20809         * m4/memmem.m4 (gl_FUNC_MEMMEM): Detect cygwin bug.
20810         * modules/memcmp (License): Set to LGPLv2+, not LGPL.
20811         * modules/memchr (License): Likewise.
20812         * modules/memmem (Depends-on): Add memcmp, memchr, stdbool, and
20813         malloca.
20814         * tests/test-memmem.c: Rewrite, borrowing ideas from
20815         test-mbsstr1.c; the old version wouldn't even compile!
20816         * modules/memmem-tests: New file.
20817         * lib/string.in.h (rpl_memmem): Add declaration.
20818         * modules/string (Makefile.am): Substitute REPLACE_MEMMEM.
20819         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Default for
20820         REPLACE_MEMMEM.
20821
20822 2007-12-18  Paul Eggert  <eggert@cs.ucla.edu>
20823
20824         Fix problem with _GL_JUST_INCLUDE_SYSTEM_INTTYPES_H on VMS.
20825         * lib/stdint.in.h (_GL_JUST_INCLUDE_SYSTEM_INTTYPES_H): Define
20826         before any system include files, and undef after them all.  This
20827         should fix a problem on VMS reported by John E. Malmberg in
20828         <http://lists.gnu.org/archive/html/bug-gnulib/2007-12/msg00118.html>.
20829
20830 2007-12-17  Eric Blake  <ebb9@byu.net>
20831
20832         Revert addition of verify, for BSD/OS.
20833         * lib/fseeko.c [!HAVE_FSEEKO]: Allow off_t > long, even though it
20834         can't handle large files, for the sake of obsolete platforms.
20835         * modules/fseeko (Depends-on): Remove verify.
20836         * doc/functions/fseeko.texi (fseeko): Document BSD/OS limitation.
20837         * doc/functions/ftello.texi (ftello): Likewise.
20838         * doc/functions/fgetpos.texi (fgetpos): Likewise.
20839         Reported by Larry Jones.
20840
20841 2007-12-17  Petr Salinger  <Petr.Salinger@seznam.cz>
20842
20843         getcwd.c: Use a more readable witness: HAVE_OPENAT_SUPPORT
20844         * lib/getcwd.c: Define and use HAVE_OPENAT_SUPPORT, in place of AT_FDCWD.
20845
20846 2007-12-17  Jim Meyering  <meyering@redhat.com>
20847
20848         Port to GNU/kFreeBSD - FreeBSD kernel + GNU libc,
20849         which has no openat syscall, yet <fcntl.h> does define AT_FDCWD.
20850         * lib/getcwd.c: Undef AT_FDCWD if there is no openat function.
20851         * modules/getcwd (Depends-on): Add openat.
20852         Reported by Petr Salinger.
20853
20854 2007-12-17  Bruno Haible  <bruno@clisp.org>
20855
20856         * m4/printf.m4 (gl_PRINTF_INFINITE_LONG_DOUBLE): Use GL_NOCRASH to
20857         avoid a segmentation fault of the configure test on x86_64 systems.
20858
20859 2007-12-15  Jim Meyering  <meyering@redhat.com>
20860
20861         * build-aux/gnupload (GPG): Don't hard-code absolute name of gpg binary.
20862
20863 2007-12-13  Eric Blake  <ebb9@byu.net>
20864
20865         Another fseek test.
20866         * tests/test-fseek.c (main): Also test ungetc handling.
20867         * tests/test-fseeko.c (main): Likewise.
20868         * modules/fseeko (Depends-on): Add verify.
20869         * lib/fseeko.c [!HAVE_FSEEKO]: Verify that off_t is not too
20870         large.
20871         Reported by Larry Jones.
20872
20873         Fix fseeko on mingw.
20874         * lib/fseeko.c (rpl_fseeko) [_IOERR]: Reset EOF flag on successful
20875         seek.
20876
20877         Beef up fseek tests.
20878         * tests/test-fseek.c (main): Also test eof handling.
20879         * tests/test-fseeko.c (main): Likewise.
20880         Reported by Larry Jones.
20881
20882 2007-12-13  Larry Jones  <lawrence.jones@siemens.com>  (tiny change)
20883
20884         Fix fseeko on BSD-based platforms.
20885         * lib/fseeko.c (rpl_fseeko) [__sferror]: Reset EOF flag on
20886         successful seek.
20887
20888 2007-12-12  Eric Blake  <ebb9@byu.net>
20889
20890         Allow circular dependency of separate libtests.a
20891         * gnulib-tool (func_emit_tests_Makefile_am): Add AM_LIBTOOLFLAGS
20892         when use_libtests.
20893
20894 2007-12-11  Eric Blake  <ebb9@byu.net>
20895
20896         Fix bug with -0.0L in previous patch.
20897         * lib/isnan.c (rpl_isnanl): Make robust to -0.0L and pad bits.
20898         * tests/test-isnan.c (main): Also test on zeroes.
20899         * tests/test-isnanf.c (main): Likewise.
20900         * tests/test-isnanl.h (main): Likewise.
20901
20902         Detect pseudo-denormals on x86 even when cross-compiling.
20903         * lib/isnan.c (rpl_isnanl) [!KNOWN_EXPBIT0_LOCATION
20904         && USE_LONG_DOUBLE && x86]: Add one more check to filter out
20905         invalid bit patterns that happen to satisfy ==.
20906
20907         Avoid link failures with separate libtests.a.
20908         * gnulib-tool (func_emit_tests_Makefile_am): Also list local_ldadd
20909         last, to satisfy circular dependencies.
20910
20911 2007-12-11  Eric Blake  <ebb9@byu.net>
20912         and Bruno Haible  <bruno@clisp.org>
20913
20914         Fix OpenBSD 4.0 <float.h> handling of long double.
20915         * m4/float_h.m4 (gl_FLOAT_H): Also claim OpenBSD is broken.
20916         * lib/float.in.h [__OpenBSD__]: Add fixes for OpenBSD.
20917         * doc/headers/float.texi (float.h): Document OpenBSD bug.
20918
20919 2007-12-11  Jim Meyering  <meyering@redhat.com>
20920
20921         * users.txt: Add libvirt.
20922
20923         Support versions of autoconf prior to 2.59c.
20924         * gnulib-tool (func_emit_initmacro_done): Define m4_foreach_w
20925         if it is not already defined.
20926
20927 2007-12-09  Bruno Haible  <bruno@clisp.org>
20928
20929         Let 'gnulib-tool --import' collect sources needed for the tests in
20930         tests/ rather than in lib/.
20931         * gnulib-tool (func_emit_tests_Makefile_am): Accept use_libtests
20932         argument. If true, add rules to generate libtests.a, and put libtests.a
20933         into $(LDADD). Consider source files in subdirectories and set
20934         uses_subdirs.
20935         (func_emit_initmacro_start, func_emit_initmacro_end,
20936         func_emit_initmacro_done): Pass all arguments explicitly.
20937         (func_import): Determine two module lists main_modules,
20938         testsrelated_modules. Determine use_libtests. Determine two variables
20939         sed_transform_main_lib_file, sed_transform_testsrelated_lib_file
20940         instead of just sed_transform_lib_file. Determine two variables
20941         main_files and testsrelated_files. Compute 'files' as the union of
20942         both. Adjust sed_rewrite_old_files, sed_rewrite_new_files,
20943         func_add_or_update. In the generated gnulib-comp.m4, collect the
20944         object files for tests/ in different variables than those for lib/.
20945         Substitute LIBTESTS_LIBDEPS.
20946         (func_create_testdir): Combine the uses_subdirs results from
20947         func_emit_lib_Makefile_am and from func_emit_tests_Makefile_am.
20948
20949 2007-12-09  Bruno Haible  <bruno@clisp.org>
20950
20951         * gnulib-tool (func_emit_tests_Makefile_am): Expand references to
20952         the build-aux directory.
20953
20954 2007-12-09  Bruno Haible  <bruno@clisp.org>
20955
20956         * gnulib-tool (func_emit_tests_Makefile_am): Remove redundant code
20957         introduced on 2006-09-09.
20958
20959 2007-12-07  Jim Meyering  <meyering@redhat.com>
20960
20961         Let these macros work also with autoconf-2.59.
20962         * m4/getline.m4 (gl_FUNC_GETLINE): Require only autoconf-2.59.  2.60
20963         is not needed, since gnulib now permits use of AC_CHECK_DECLS_ONCE.
20964         * m4/getdelim.m4 (gl_FUNC_GETDELIM): Likewise.
20965
20966 2007-12-06  Jim Meyering  <meyering@redhat.com>
20967
20968         Avoid a configure-time syntax error in gl_FUNC_ACL.
20969         * m4/acl.m4 (gl_FUNC_ACL): Be careful to check for the acl_trivial
20970         function in each branch, before testing the cache variable.
20971
20972 2007-12-04  Eric Blake  <ebb9@byu.net>
20973
20974         Make scripts executable.
20975         * build-aux/config.guess: Add execute permissions.
20976         * build-aux/config.sub: Likewise.
20977         * build-aux/gendocs.sh: Likewise.
20978
20979         Fix frexp on mingw.
20980         * m4/frexp.m4 (gl_FUNC_FREXP_WORKS): Detect mingw bug when
20981         cross-compiling.
20982         * doc/functions/frexp.texi (frexp): Document the bug.
20983
20984         Make cygwin fseeko check more reliable.
20985         * m4/stdio_h.m4 (gl_STDIN_LARGE_OFFSET) [__CYGWIN__]: Use cygwin
20986         version numbers, rather than unrelated feature check.
20987         * doc/functions/fseeko.texi (fseeko): Tweak failure report.
20988         * doc/functions/ftello.texi (ftello): Likewise.
20989         Reported by Bruno Haible.
20990
20991         * m4/strerror.m4: Bump version number.
20992
20993 2007-12-03  Bruno Haible  <bruno@clisp.org>
20994
20995         * doc/functions/mprotect.texi: Mention the mingw problem.
20996
20997 2007-12-03  Eric Blake  <ebb9@byu.net>
20998
20999         * m4/strerror.m4 (gl_FUNC_STRERROR_SEPARATE): Ensure
21000         REPLACE_STRERROR is initialized before this macro.
21001
21002 2007-12-03  Paul Eggert  <eggert@cs.ucla.edu>
21003
21004         Add support for Solaris 10 ACLs.  Also, ACLs are Gnulib, not Autoconf.
21005         * modules/acl (configure.ac): Rename AC_FUNC_ACL to gl_FUNC_ACL.
21006         * m4/acl.m4 (gl_FUNC_ACL): Renamed from AC_FUNC_ACL.  On Solaris,
21007         put -lsec in even for programs other than 'ls'.  This fixes a problem
21008         for gettext reported by Bruno Haible in
21009         <http://lists.gnu.org/archive/html/bug-gnulib/2007-12/msg00007.html>.
21010         * lib/acl.c (copy_acl, qset_acl) [USE_ACL && defined ACL_NO_TRIVIAL]:
21011         Add support for Solaris 10.  This isn't efficient, but should get the
21012         job done for now.
21013
21014 2007-12-03  James Youngman  <jay@gnu.org>
21015
21016         * doc/regexprops-generic.texi: change "an close-group" to "a
21017         close-group" and "illegal" to "not allowed".
21018
21019 2007-11-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
21020
21021         * lib/unictype/pr_byname.c: Include unictype/pr_byname.h instead of
21022         pr_byname.h. Needed for the rare case when the maintainer has done
21023         "make maintainer-clean" in the source directory and then attempts a
21024         build outside the source directory.
21025         * lib/unictype/scripts.c: Include unictype/scripts_byname.h instead of
21026         scripts_byname.h.
21027
21028 2007-12-02  Martin Lambers <marlam@marlam.de>
21029             Bruno Haible  <bruno@clisp.org>
21030
21031         * lib/getpagesize.h: Remove file.
21032         * lib/unistd.in.h: Include declaration of getpagesize here.
21033         * m4/getpagesize.m4 (gl_FUNC_GETPAGESIZE): Renamed from gl_GETPAGESIZE.
21034         Invoke gl_UNISTD_H_DEFAULTS. Set HAVE_GETPAGESIZE, HAVE_OS_H,
21035         HAVE_SYS_PARAM_H.
21036         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_GETPAGESIZE,
21037         HAVE_GETPAGESIZE, HAVE_OS_H, HAVE_SYS_PARAM_H.
21038         * modules/getpagesize (Files): Remove lib/getpagesize.h.
21039         (Depends-on): Add unistd.
21040         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
21041         (Include): Use <unistd.h> instead of getpagesize.h.
21042         * modules/unistd (Makefile.am): Substitute also GNULIB_GETPAGESIZE,
21043         HAVE_GETPAGESIZE, HAVE_OS_H, HAVE_SYS_PARAM_H.
21044         * m4/pagealign_alloc.m4 (gl_PREREQ_PAGEALIGN_ALLOC): Remove
21045         gl_GETPAGESIZE invocation, already handled by module dependency.
21046         * lib/pagealign_alloc.c: Don't include getpagesize.h.
21047
21048 2007-12-02  Bruno Haible  <bruno@clisp.org>
21049
21050         * modules/strings-tests: New file.
21051         * tests/test-strings.c: New file.
21052
21053         Move declarations of str{,n}casecmp from <string.h> to <strings.h>.
21054         * lib/strings.in.h: New file.
21055         * lib/string.in.h (strcasecmp, strncasecmp): Remove declarations.
21056         * m4/strings_h.m4: New file.
21057         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Remove initialization
21058         of HAVE_STRCASECMP, HAVE_DECL_STRNCASECMP.
21059         * modules/strings: New file.
21060         * modules/string (Makefile.am): Update.
21061         * modules/strcase (Include): Mention <strings.h>, not <string.h>.
21062         Reported by Karl Berry.
21063
21064 2007-12-01  Eric Blake  <ebb9@byu.net>
21065
21066         * m4/stdio_h.m4 (gl_STDIN_LARGE_OFFSET) [__CYGWIN__]: Rewrite to
21067         accomodate fix in cygwin 1.5.25.
21068
21069 2007-12-01  Jim Meyering  <meyering@redhat.com>
21070
21071         Fix a bug that inhibited much of the utf8-optimization in regcomp.c.
21072         * lib/regcomp.c (optimize_utf8): Fix a typo, s/idx/ctx_type/,
21073         that would inhibit utf8-optimization of a regexp containing line-
21074         or buffer-anchors, e.g., `^', `$'.
21075
21076 2007-11-30  Bruno Haible  <bruno@clisp.org>
21077
21078         * lib/lock.h (gl_recursive_lock_init) [PTHREAD &&
21079         PTHREAD_RECURSIVE_MUTEX_INITIALIZER]: Call
21080         glthread_recursive_lock_init.
21081         * lib/lock.c (glthread_recursive_lock_init)
21082         [PTHREAD_RECURSIVE_MUTEX_INITIALIZER]: New function.
21083         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
21084
21085 2007-11-28  Paul Eggert  <eggert@cs.ucla.edu>
21086
21087         New function qset_acl, like set_acl but with syscall semantics.
21088         * lib/acl.h (qset_acl): New decl.
21089         * lib/acl.c (qset_acl): New function.
21090         (set_acl): Use new function.  Use more-consistent diagnostics.
21091
21092 2007-11-28  Jim Meyering  <meyering@redhat.com>
21093
21094         * modules/physmem (License): Change from GPL to LGPLv2+.
21095
21096 2007-11-26  Bruno Haible  <bruno@clisp.org>
21097
21098         * lib/vasnprintf.c (decode_long_double): Don't abort if the
21099         'long double' type has excess precision.
21100         Reported by Jim Meyering in
21101         <http://lists.gnu.org/archive/html/bug-gnulib/2007-11/msg00120.html>.
21102
21103 2007-11-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
21104
21105         * doc/fdl.texi, doc/gpl-3.0.texi, doc/lgpl-3.0.texi:
21106         Sync from <http://gnu.org/licenses>.
21107         * modules/agpl-3.0, doc/agpl-3.0.texi: New module,
21108         with license text from same location.
21109         * doc/maintain.texi, doc/standards.texi:  Sync from
21110         <http://savannah.gnu.org/projects/gnustandards>.
21111
21112 2007-11-22  OndÅ™ej Vašík  <ovasik@redhat.com>
21113         and Jim Meyering  <meyering@redhat.com>
21114
21115         Adjust getdate' grammar to accept a slightly more regular language.
21116         E.g., accept "YYYYMMDD +N days" as well as "YYYYMMDD N days".
21117         Before, the former was rejected.
21118         * lib/getdate.y (digits_to_date_time): New function, factored
21119         out of ...
21120         (number): ...here.  Just call digits_to_date_time.
21121         (hybrid): New non-terminal to handle an <unsigned number,
21122         signed relative offset> sequence consistently.
21123
21124 2007-11-18  Jim Meyering  <meyering@redhat.com>
21125
21126         Pull my changes from coreutils:
21127         bootstrap: fix typo to enable use of $gnulib_tool_option_extras.
21128         * build-aux/bootstrap (gnulib_tool_options): Add a space before the
21129         use of $gnulib_tool_option_extras, so that it's separated from the
21130         preceding argument.
21131
21132         Fix bootstrap failure to handle files like lib/uniwidth/cjk.h.
21133         * build-aux/bootstrap (cp_mark_as_generated): Create any required
21134         parent destination directories before copying a file into place.
21135
21136 2007-11-18  Sergey Poznyakoff  <gray@gnu.org.ua>
21137
21138         bootstrap: work also with 4-argument variant of AC_INIT
21139         * build-aux/bootstrap (gnulib_extra_files): Adjust sed command.
21140
21141 2007-11-16  Paul Eggert  <eggert@cs.ucla.edu>
21142
21143         Port test-getaddrinfo to Solaris.
21144         Problem reported by Bruno Haible in
21145         <http://lists.gnu.org/archive/html/bug-gnulib/2007-03/msg00171.html>.
21146         * tests/test-getaddrinfo.c (simple): Add a comment asking for an
21147         explanation of setting 'hints'.
21148         Don't reject an implementation merely because it returns EAI_SERVICE.
21149         (EAI_SERVICE): Define to 0 if not defined.
21150
21151 2007-11-15  Paul Eggert  <eggert@cs.ucla.edu>
21152
21153         The license of gnu-make and posix-shell is now "GPLed build tool".
21154         * modules/gnu-make (License): Likewise.
21155         * modules/posix-shell (License): Likewise.
21156
21157         New module posix-shell, for determining a POSIX shell
21158         or perhaps something that is close enough to a POSIX shell.
21159         * m4/posix-shell.m4: New file.
21160         * modules/posix-shell: New file.
21161
21162         * MODULES.html.sh: Mention new module.
21163
21164         New module gnu-make, for determining whether we're using GNU Make.
21165         * m4/gnu-make.m4: New file.
21166         * modules/gnu-make: New file.
21167         * MODULES.html.sh: Mention new module.
21168
21169 2007-11-14  Jim Meyering  <meyering@redhat.com>
21170
21171         Define a sometimes-link-required function using ARGMATCH_DIE_DECL.
21172         * tests/test-argmatch.c (ARGMATCH_DIE_DECL): When defined,
21173         use this macro to create a function _definition_.
21174         Remove useless "#undef ARGMATCH_DIE".
21175
21176 2007-11-14  Bruno Haible  <bruno@clisp.org>
21177
21178         * lib/config.charset: Update for OpenBSD 4.1.
21179         Reported and helped by Ben Pfaff <blp@cs.stanford.edu>.
21180
21181 2007-11-12  Paul Eggert  <eggert@cs.ucla.edu>
21182
21183         Document 64-bit #if problems in stdint.texi.
21184         * doc/headers/stdint.texi (stdint.h): Mention problems with
21185         64-bit-#if, and how to work around them.
21186
21187         Don't insist on 'long long int' support in the preprocessor.  It
21188         breaks too many things.  For example, PRIdMAX still uses a 'long
21189         long int' format with the latest Sun compiler, even though
21190         HAVE_LONG_LONG_INT isn't defined due to that compiler's
21191         preprocessor problem.  This causes the latest coreutils to dump
21192         core on Solaris 10 sparc with the Sun C compiler.
21193         Instead, fix the 2007-10-16 problem in a different way, by evaluating
21194         the troublesome expressions at configure-time, not at #if-time.
21195         * m4/longlong.m4 (_AC_TYPE_LONG_LONG_SNIPPET): Don't test the
21196         preprocessor.
21197         * m4/inttypes.m4 (gl_INTTYPES_H): Move the #if checks into
21198         compile-time C checks, done at 'configure'-time.
21199         (gl_INTTYPES_CHECK_LONG_LONG_INT_CONDITION): New macro.
21200         * modules/inttypes (Makefile): Substitute the new symbols that
21201         gl_INTTYPES_H now generates.
21202         * lib/inttypes.in.h: Don't use constants wider than 'long' in #if.
21203
21204 2007-11-12  Bruno Haible  <bruno@clisp.org>
21205
21206         Tests for Unicode character classification functions.
21207
21208         * modules/unictype/bidicategory-byname-tests: New file.
21209         * modules/unictype/bidicategory-name-tests: New file.
21210         * modules/unictype/bidicategory-of-tests: New file.
21211         * modules/unictype/bidicategory-test-tests: New file.
21212         * modules/unictype/block-list-tests: New file.
21213         * modules/unictype/block-of-tests: New file.
21214         * modules/unictype/block-test-tests: New file.
21215         * modules/unictype/category-C-tests: New file.
21216         * modules/unictype/category-Cc-tests: New file.
21217         * modules/unictype/category-Cf-tests: New file.
21218         * modules/unictype/category-Cn-tests: New file.
21219         * modules/unictype/category-Co-tests: New file.
21220         * modules/unictype/category-Cs-tests: New file.
21221         * modules/unictype/category-L-tests: New file.
21222         * modules/unictype/category-Ll-tests: New file.
21223         * modules/unictype/category-Lm-tests: New file.
21224         * modules/unictype/category-Lo-tests: New file.
21225         * modules/unictype/category-Lt-tests: New file.
21226         * modules/unictype/category-Lu-tests: New file.
21227         * modules/unictype/category-M-tests: New file.
21228         * modules/unictype/category-Mc-tests: New file.
21229         * modules/unictype/category-Me-tests: New file.
21230         * modules/unictype/category-Mn-tests: New file.
21231         * modules/unictype/category-N-tests: New file.
21232         * modules/unictype/category-Nd-tests: New file.
21233         * modules/unictype/category-Nl-tests: New file.
21234         * modules/unictype/category-No-tests: New file.
21235         * modules/unictype/category-P-tests: New file.
21236         * modules/unictype/category-Pc-tests: New file.
21237         * modules/unictype/category-Pd-tests: New file.
21238         * modules/unictype/category-Pe-tests: New file.
21239         * modules/unictype/category-Pf-tests: New file.
21240         * modules/unictype/category-Pi-tests: New file.
21241         * modules/unictype/category-Po-tests: New file.
21242         * modules/unictype/category-Ps-tests: New file.
21243         * modules/unictype/category-S-tests: New file.
21244         * modules/unictype/category-Sc-tests: New file.
21245         * modules/unictype/category-Sk-tests: New file.
21246         * modules/unictype/category-Sm-tests: New file.
21247         * modules/unictype/category-So-tests: New file.
21248         * modules/unictype/category-Z-tests: New file.
21249         * modules/unictype/category-Zl-tests: New file.
21250         * modules/unictype/category-Zp-tests: New file.
21251         * modules/unictype/category-Zs-tests: New file.
21252         * modules/unictype/category-and-not-tests: New file.
21253         * modules/unictype/category-and-tests: New file.
21254         * modules/unictype/category-byname-tests: New file.
21255         * modules/unictype/category-name-tests: New file.
21256         * modules/unictype/category-none-tests: New file.
21257         * modules/unictype/category-of-tests: New file.
21258         * modules/unictype/category-or-tests: New file.
21259         * modules/unictype/category-test-withtable-tests: New file.
21260         * modules/unictype/combining-class-tests: New file.
21261         * modules/unictype/ctype-alnum-tests: New file.
21262         * modules/unictype/ctype-alpha-tests: New file.
21263         * modules/unictype/ctype-blank-tests: New file.
21264         * modules/unictype/ctype-cntrl-tests: New file.
21265         * modules/unictype/ctype-digit-tests: New file.
21266         * modules/unictype/ctype-graph-tests: New file.
21267         * modules/unictype/ctype-lower-tests: New file.
21268         * modules/unictype/ctype-print-tests: New file.
21269         * modules/unictype/ctype-punct-tests: New file.
21270         * modules/unictype/ctype-space-tests: New file.
21271         * modules/unictype/ctype-upper-tests: New file.
21272         * modules/unictype/ctype-xdigit-tests: New file.
21273         * modules/unictype/decimal-digit-tests: New file.
21274         * modules/unictype/digit-tests: New file.
21275         * modules/unictype/mirror-tests: New file.
21276         * modules/unictype/numeric-tests: New file.
21277         * modules/unictype/property-alphabetic-tests: New file.
21278         * modules/unictype/property-ascii-hex-digit-tests: New file.
21279         * modules/unictype/property-bidi-arabic-digit-tests: New file.
21280         * modules/unictype/property-bidi-arabic-right-to-left-tests: New file.
21281         * modules/unictype/property-bidi-block-separator-tests: New file.
21282         * modules/unictype/property-bidi-boundary-neutral-tests: New file.
21283         * modules/unictype/property-bidi-common-separator-tests: New file.
21284         * modules/unictype/property-bidi-control-tests: New file.
21285         * modules/unictype/property-bidi-embedding-or-override-tests: New file.
21286         * modules/unictype/property-bidi-eur-num-separator-tests: New file.
21287         * modules/unictype/property-bidi-eur-num-terminator-tests: New file.
21288         * modules/unictype/property-bidi-european-digit-tests: New file.
21289         * modules/unictype/property-bidi-hebrew-right-to-left-tests: New file.
21290         * modules/unictype/property-bidi-left-to-right-tests: New file.
21291         * modules/unictype/property-bidi-non-spacing-mark-tests: New file.
21292         * modules/unictype/property-bidi-other-neutral-tests: New file.
21293         * modules/unictype/property-bidi-pdf-tests: New file.
21294         * modules/unictype/property-bidi-segment-separator-tests: New file.
21295         * modules/unictype/property-bidi-whitespace-tests: New file.
21296         * modules/unictype/property-byname-tests: New file.
21297         * modules/unictype/property-combining-tests: New file.
21298         * modules/unictype/property-composite-tests: New file.
21299         * modules/unictype/property-currency-symbol-tests: New file.
21300         * modules/unictype/property-dash-tests: New file.
21301         * modules/unictype/property-decimal-digit-tests: New file.
21302         * modules/unictype/property-default-ignorable-code-point-tests: New file.
21303         * modules/unictype/property-deprecated-tests: New file.
21304         * modules/unictype/property-diacritic-tests: New file.
21305         * modules/unictype/property-extender-tests: New file.
21306         * modules/unictype/property-format-control-tests: New file.
21307         * modules/unictype/property-grapheme-base-tests: New file.
21308         * modules/unictype/property-grapheme-extend-tests: New file.
21309         * modules/unictype/property-grapheme-link-tests: New file.
21310         * modules/unictype/property-hex-digit-tests: New file.
21311         * modules/unictype/property-hyphen-tests: New file.
21312         * modules/unictype/property-id-continue-tests: New file.
21313         * modules/unictype/property-id-start-tests: New file.
21314         * modules/unictype/property-ideographic-tests: New file.
21315         * modules/unictype/property-ids-binary-operator-tests: New file.
21316         * modules/unictype/property-ids-trinary-operator-tests: New file.
21317         * modules/unictype/property-ignorable-control-tests: New file.
21318         * modules/unictype/property-iso-control-tests: New file.
21319         * modules/unictype/property-join-control-tests: New file.
21320         * modules/unictype/property-left-of-pair-tests: New file.
21321         * modules/unictype/property-line-separator-tests: New file.
21322         * modules/unictype/property-logical-order-exception-tests: New file.
21323         * modules/unictype/property-lowercase-tests: New file.
21324         * modules/unictype/property-math-tests: New file.
21325         * modules/unictype/property-non-break-tests: New file.
21326         * modules/unictype/property-not-a-character-tests: New file.
21327         * modules/unictype/property-numeric-tests: New file.
21328         * modules/unictype/property-other-alphabetic-tests: New file.
21329         * modules/unictype/property-other-default-ignorable-code-point-tests: New file.
21330         * modules/unictype/property-other-grapheme-extend-tests: New file.
21331         * modules/unictype/property-other-id-continue-tests: New file.
21332         * modules/unictype/property-other-id-start-tests: New file.
21333         * modules/unictype/property-other-lowercase-tests: New file.
21334         * modules/unictype/property-other-math-tests: New file.
21335         * modules/unictype/property-other-uppercase-tests: New file.
21336         * modules/unictype/property-paired-punctuation-tests: New file.
21337         * modules/unictype/property-paragraph-separator-tests: New file.
21338         * modules/unictype/property-pattern-syntax-tests: New file.
21339         * modules/unictype/property-pattern-white-space-tests: New file.
21340         * modules/unictype/property-private-use-tests: New file.
21341         * modules/unictype/property-punctuation-tests: New file.
21342         * modules/unictype/property-quotation-mark-tests: New file.
21343         * modules/unictype/property-radical-tests: New file.
21344         * modules/unictype/property-sentence-terminal-tests: New file.
21345         * modules/unictype/property-soft-dotted-tests: New file.
21346         * modules/unictype/property-space-tests: New file.
21347         * modules/unictype/property-terminal-punctuation-tests: New file.
21348         * modules/unictype/property-test-tests: New file.
21349         * modules/unictype/property-titlecase-tests: New file.
21350         * modules/unictype/property-unassigned-code-value-tests: New file.
21351         * modules/unictype/property-unified-ideograph-tests: New file.
21352         * modules/unictype/property-uppercase-tests: New file.
21353         * modules/unictype/property-variation-selector-tests: New file.
21354         * modules/unictype/property-white-space-tests: New file.
21355         * modules/unictype/property-xid-continue-tests: New file.
21356         * modules/unictype/property-xid-start-tests: New file.
21357         * modules/unictype/property-zero-width-tests: New file.
21358         * modules/unictype/scripts-tests: New file.
21359         * modules/unictype/syntax-c-ident-tests: New file.
21360         * modules/unictype/syntax-c-whitespace-tests: New file.
21361         * modules/unictype/syntax-java-ident-tests: New file.
21362         * modules/unictype/syntax-java-whitespace-tests: New file.
21363         * tests/unictype/test-bidi_byname.c: New file.
21364         * tests/unictype/test-bidi_name.c: New file.
21365         * tests/unictype/test-bidi_of.c: New file.
21366         * tests/unictype/test-bidi_test.c: New file.
21367         * tests/unictype/test-block_list.c: New file.
21368         * tests/unictype/test-block_of.c: New file.
21369         * tests/unictype/test-block_test.c: New file.
21370         * tests/unictype/test-categ_and.c: New file.
21371         * tests/unictype/test-categ_and_not.c: New file.
21372         * tests/unictype/test-categ_byname.c: New file.
21373         * tests/unictype/test-categ_name.c: New file.
21374         * tests/unictype/test-categ_none.c: New file.
21375         * tests/unictype/test-categ_of.c: New file.
21376         * tests/unictype/test-categ_or.c: New file.
21377         * tests/unictype/test-categ_test_withtable.c: New file.
21378         * tests/unictype/test-combining.c: New file.
21379         * tests/unictype/test-decdigit.c: New file.
21380         * tests/unictype/test-digit.c: New file.
21381         * tests/unictype/test-mirror.c: New file.
21382         * tests/unictype/test-numeric.c: New file.
21383         * tests/unictype/test-pr_byname.c: New file.
21384         * tests/unictype/test-pr_test.c: New file.
21385         * tests/unictype/test-predicate-part1.h: New file.
21386         * tests/unictype/test-predicate-part2.h: New file.
21387         * tests/unictype/test-scripts.c: New file.
21388         * tests/unictype/test-sy_c_ident.c: New file.
21389         * tests/unictype/test-sy_java_ident.c: New file.
21390
21391         * tests/unictype/test-categ_C.c: New file, generated by gen-ctype.c
21392         for Unicode 5.0.0.
21393         * tests/unictype/test-categ_Cc.c: Likewise.
21394         * tests/unictype/test-categ_Cf.c: Likewise.
21395         * tests/unictype/test-categ_Cn.c: Likewise.
21396         * tests/unictype/test-categ_Co.c: Likewise.
21397         * tests/unictype/test-categ_Cs.c: Likewise.
21398         * tests/unictype/test-categ_L.c: Likewise.
21399         * tests/unictype/test-categ_Ll.c: Likewise.
21400         * tests/unictype/test-categ_Lm.c: Likewise.
21401         * tests/unictype/test-categ_Lo.c: Likewise.
21402         * tests/unictype/test-categ_Lt.c: Likewise.
21403         * tests/unictype/test-categ_Lu.c: Likewise.
21404         * tests/unictype/test-categ_M.c: Likewise.
21405         * tests/unictype/test-categ_Mc.c: Likewise.
21406         * tests/unictype/test-categ_Me.c: Likewise.
21407         * tests/unictype/test-categ_Mn.c: Likewise.
21408         * tests/unictype/test-categ_N.c: Likewise.
21409         * tests/unictype/test-categ_Nd.c: Likewise.
21410         * tests/unictype/test-categ_Nl.c: Likewise.
21411         * tests/unictype/test-categ_No.c: Likewise.
21412         * tests/unictype/test-categ_P.c: Likewise.
21413         * tests/unictype/test-categ_Pc.c: Likewise.
21414         * tests/unictype/test-categ_Pd.c: Likewise.
21415         * tests/unictype/test-categ_Pe.c: Likewise.
21416         * tests/unictype/test-categ_Pf.c: Likewise.
21417         * tests/unictype/test-categ_Pi.c: Likewise.
21418         * tests/unictype/test-categ_Po.c: Likewise.
21419         * tests/unictype/test-categ_Ps.c: Likewise.
21420         * tests/unictype/test-categ_S.c: Likewise.
21421         * tests/unictype/test-categ_Sc.c: Likewise.
21422         * tests/unictype/test-categ_Sk.c: Likewise.
21423         * tests/unictype/test-categ_Sm.c: Likewise.
21424         * tests/unictype/test-categ_So.c: Likewise.
21425         * tests/unictype/test-categ_Z.c: Likewise.
21426         * tests/unictype/test-categ_Zl.c: Likewise.
21427         * tests/unictype/test-categ_Zp.c: Likewise.
21428         * tests/unictype/test-categ_Zs.c: Likewise.
21429         * tests/unictype/test-ctype_alnum.c: Likewise.
21430         * tests/unictype/test-ctype_alpha.c: Likewise.
21431         * tests/unictype/test-ctype_blank.c: Likewise.
21432         * tests/unictype/test-ctype_cntrl.c: Likewise.
21433         * tests/unictype/test-ctype_digit.c: Likewise.
21434         * tests/unictype/test-ctype_graph.c: Likewise.
21435         * tests/unictype/test-ctype_lower.c: Likewise.
21436         * tests/unictype/test-ctype_print.c: Likewise.
21437         * tests/unictype/test-ctype_punct.c: Likewise.
21438         * tests/unictype/test-ctype_space.c: Likewise.
21439         * tests/unictype/test-ctype_upper.c: Likewise.
21440         * tests/unictype/test-ctype_xdigit.c: Likewise.
21441         * tests/unictype/test-decdigit.h: Likewise.
21442         * tests/unictype/test-digit.h: Likewise.
21443         * tests/unictype/test-numeric.h: Likewise.
21444         * tests/unictype/test-pr_alphabetic.c: Likewise.
21445         * tests/unictype/test-pr_ascii_hex_digit.c: Likewise.
21446         * tests/unictype/test-pr_bidi_arabic_digit.c: Likewise.
21447         * tests/unictype/test-pr_bidi_arabic_right_to_left.c: Likewise.
21448         * tests/unictype/test-pr_bidi_block_separator.c: Likewise.
21449         * tests/unictype/test-pr_bidi_boundary_neutral.c: Likewise.
21450         * tests/unictype/test-pr_bidi_common_separator.c: Likewise.
21451         * tests/unictype/test-pr_bidi_control.c: Likewise.
21452         * tests/unictype/test-pr_bidi_embedding_or_override.c: Likewise.
21453         * tests/unictype/test-pr_bidi_eur_num_separator.c: Likewise.
21454         * tests/unictype/test-pr_bidi_eur_num_terminator.c: Likewise.
21455         * tests/unictype/test-pr_bidi_european_digit.c: Likewise.
21456         * tests/unictype/test-pr_bidi_hebrew_right_to_left.c: Likewise.
21457         * tests/unictype/test-pr_bidi_left_to_right.c: Likewise.
21458         * tests/unictype/test-pr_bidi_non_spacing_mark.c: Likewise.
21459         * tests/unictype/test-pr_bidi_other_neutral.c: Likewise.
21460         * tests/unictype/test-pr_bidi_pdf.c: Likewise.
21461         * tests/unictype/test-pr_bidi_segment_separator.c: Likewise.
21462         * tests/unictype/test-pr_bidi_whitespace.c: Likewise.
21463         * tests/unictype/test-pr_combining.c: Likewise.
21464         * tests/unictype/test-pr_composite.c: Likewise.
21465         * tests/unictype/test-pr_currency_symbol.c: Likewise.
21466         * tests/unictype/test-pr_dash.c: Likewise.
21467         * tests/unictype/test-pr_decimal_digit.c: Likewise.
21468         * tests/unictype/test-pr_default_ignorable_code_point.c: Likewise.
21469         * tests/unictype/test-pr_deprecated.c: Likewise.
21470         * tests/unictype/test-pr_diacritic.c: Likewise.
21471         * tests/unictype/test-pr_extender.c: Likewise.
21472         * tests/unictype/test-pr_format_control.c: Likewise.
21473         * tests/unictype/test-pr_grapheme_base.c: Likewise.
21474         * tests/unictype/test-pr_grapheme_extend.c: Likewise.
21475         * tests/unictype/test-pr_grapheme_link.c: Likewise.
21476         * tests/unictype/test-pr_hex_digit.c: Likewise.
21477         * tests/unictype/test-pr_hyphen.c: Likewise.
21478         * tests/unictype/test-pr_id_continue.c: Likewise.
21479         * tests/unictype/test-pr_id_start.c: Likewise.
21480         * tests/unictype/test-pr_ideographic.c: Likewise.
21481         * tests/unictype/test-pr_ids_binary_operator.c: Likewise.
21482         * tests/unictype/test-pr_ids_trinary_operator.c: Likewise.
21483         * tests/unictype/test-pr_ignorable_control.c: Likewise.
21484         * tests/unictype/test-pr_iso_control.c: Likewise.
21485         * tests/unictype/test-pr_join_control.c: Likewise.
21486         * tests/unictype/test-pr_left_of_pair.c: Likewise.
21487         * tests/unictype/test-pr_line_separator.c: Likewise.
21488         * tests/unictype/test-pr_logical_order_exception.c: Likewise.
21489         * tests/unictype/test-pr_lowercase.c: Likewise.
21490         * tests/unictype/test-pr_math.c: Likewise.
21491         * tests/unictype/test-pr_non_break.c: Likewise.
21492         * tests/unictype/test-pr_not_a_character.c: Likewise.
21493         * tests/unictype/test-pr_numeric.c: Likewise.
21494         * tests/unictype/test-pr_other_alphabetic.c: Likewise.
21495         * tests/unictype/test-pr_other_default_ignorable_code_point.c: Likewise.
21496         * tests/unictype/test-pr_other_grapheme_extend.c: Likewise.
21497         * tests/unictype/test-pr_other_id_continue.c: Likewise.
21498         * tests/unictype/test-pr_other_id_start.c: Likewise.
21499         * tests/unictype/test-pr_other_lowercase.c: Likewise.
21500         * tests/unictype/test-pr_other_math.c: Likewise.
21501         * tests/unictype/test-pr_other_uppercase.c: Likewise.
21502         * tests/unictype/test-pr_paired_punctuation.c: Likewise.
21503         * tests/unictype/test-pr_paragraph_separator.c: Likewise.
21504         * tests/unictype/test-pr_pattern_syntax.c: Likewise.
21505         * tests/unictype/test-pr_pattern_white_space.c: Likewise.
21506         * tests/unictype/test-pr_private_use.c: Likewise.
21507         * tests/unictype/test-pr_punctuation.c: Likewise.
21508         * tests/unictype/test-pr_quotation_mark.c: Likewise.
21509         * tests/unictype/test-pr_radical.c: Likewise.
21510         * tests/unictype/test-pr_sentence_terminal.c: Likewise.
21511         * tests/unictype/test-pr_soft_dotted.c: Likewise.
21512         * tests/unictype/test-pr_space.c: Likewise.
21513         * tests/unictype/test-pr_terminal_punctuation.c: Likewise.
21514         * tests/unictype/test-pr_titlecase.c: Likewise.
21515         * tests/unictype/test-pr_unassigned_code_value.c: Likewise.
21516         * tests/unictype/test-pr_unified_ideograph.c: Likewise.
21517         * tests/unictype/test-pr_uppercase.c: Likewise.
21518         * tests/unictype/test-pr_variation_selector.c: Likewise.
21519         * tests/unictype/test-pr_white_space.c: Likewise.
21520         * tests/unictype/test-pr_xid_continue.c: Likewise.
21521         * tests/unictype/test-pr_xid_start.c: Likewise.
21522         * tests/unictype/test-pr_zero_width.c: Likewise.
21523         * tests/unictype/test-sy_c_whitespace.c: Likewise.
21524         * tests/unictype/test-sy_java_whitespace.c: Likewise.
21525
21526 2007-11-12  Bruno Haible  <bruno@clisp.org>
21527
21528         Unicode character classification functions.
21529         * lib/unictype.h: New file.
21530         * modules/unictype/base: New file.
21531         * modules/unictype/category-L: New file.
21532         * modules/unictype/category-Lu: New file.
21533         * modules/unictype/category-Ll: New file.
21534         * modules/unictype/category-Lt: New file.
21535         * modules/unictype/category-Lm: New file.
21536         * modules/unictype/category-Lo: New file.
21537         * modules/unictype/category-M: New file.
21538         * modules/unictype/category-Mn: New file.
21539         * modules/unictype/category-Mc: New file.
21540         * modules/unictype/category-Me: New file.
21541         * modules/unictype/category-N: New file.
21542         * modules/unictype/category-Nd: New file.
21543         * modules/unictype/category-Nl: New file.
21544         * modules/unictype/category-No: New file.
21545         * modules/unictype/category-P: New file.
21546         * modules/unictype/category-Pc: New file.
21547         * modules/unictype/category-Pd: New file.
21548         * modules/unictype/category-Ps: New file.
21549         * modules/unictype/category-Pe: New file.
21550         * modules/unictype/category-Pi: New file.
21551         * modules/unictype/category-Pf: New file.
21552         * modules/unictype/category-Po: New file.
21553         * modules/unictype/category-S: New file.
21554         * modules/unictype/category-Sm: New file.
21555         * modules/unictype/category-Sc: New file.
21556         * modules/unictype/category-Sk: New file.
21557         * modules/unictype/category-So: New file.
21558         * modules/unictype/category-Z: New file.
21559         * modules/unictype/category-Zs: New file.
21560         * modules/unictype/category-Zl: New file.
21561         * modules/unictype/category-Zp: New file.
21562         * modules/unictype/category-C: New file.
21563         * modules/unictype/category-Cc: New file.
21564         * modules/unictype/category-Cf: New file.
21565         * modules/unictype/category-Cs: New file.
21566         * modules/unictype/category-Co: New file.
21567         * modules/unictype/category-Cn: New file.
21568         * modules/unictype/category-or: New file.
21569         * modules/unictype/category-of: New file.
21570         * modules/unictype/category-test: New file.
21571         * modules/unictype/category-test-withtable: New file.
21572         * modules/unictype/category-byname: New file.
21573         * modules/unictype/category-none: New file.
21574         * modules/unictype/category-and: New file.
21575         * modules/unictype/category-and-not: New file.
21576         * modules/unictype/category-name: New file.
21577         * modules/unictype/combining-class: New file.
21578         * modules/unictype/category-all: New file.
21579         * modules/unictype/bidicategory-all: New file.
21580         * modules/unictype/bidicategory-byname: New file.
21581         * modules/unictype/bidicategory-name: New file.
21582         * modules/unictype/bidicategory-of: New file.
21583         * modules/unictype/bidicategory-test: New file.
21584         * modules/unictype/decimal-digit: New file.
21585         * modules/unictype/digit: New file.
21586         * modules/unictype/numeric: New file.
21587         * modules/unictype/mirror: New file.
21588         * modules/unictype/property-white-space: New file.
21589         * modules/unictype/property-alphabetic: New file.
21590         * modules/unictype/property-other-alphabetic: New file.
21591         * modules/unictype/property-not-a-character: New file.
21592         * modules/unictype/property-default-ignorable-code-point: New file.
21593         * modules/unictype/property-other-default-ignorable-code-point: New
21594         file.
21595         * modules/unictype/property-deprecated: New file.
21596         * modules/unictype/property-logical-order-exception: New file.
21597         * modules/unictype/property-variation-selector: New file.
21598         * modules/unictype/property-private-use: New file.
21599         * modules/unictype/property-unassigned-code-value: New file.
21600         * modules/unictype/property-uppercase: New file.
21601         * modules/unictype/property-other-uppercase: New file.
21602         * modules/unictype/property-lowercase: New file.
21603         * modules/unictype/property-other-lowercase: New file.
21604         * modules/unictype/property-titlecase: New file.
21605         * modules/unictype/property-soft-dotted: New file.
21606         * modules/unictype/property-id-start: New file.
21607         * modules/unictype/property-other-id-start: New file.
21608         * modules/unictype/property-id-continue: New file.
21609         * modules/unictype/property-other-id-continue: New file.
21610         * modules/unictype/property-xid-start: New file.
21611         * modules/unictype/property-xid-continue: New file.
21612         * modules/unictype/property-pattern-white-space: New file.
21613         * modules/unictype/property-pattern-syntax: New file.
21614         * modules/unictype/property-join-control: New file.
21615         * modules/unictype/property-grapheme-base: New file.
21616         * modules/unictype/property-grapheme-extend: New file.
21617         * modules/unictype/property-other-grapheme-extend: New file.
21618         * modules/unictype/property-grapheme-link: New file.
21619         * modules/unictype/property-bidi-control: New file.
21620         * modules/unictype/property-bidi-left-to-right: New file.
21621         * modules/unictype/property-bidi-hebrew-right-to-left: New file.
21622         * modules/unictype/property-bidi-arabic-right-to-left: New file.
21623         * modules/unictype/property-bidi-european-digit: New file.
21624         * modules/unictype/property-bidi-eur-num-separator: New file.
21625         * modules/unictype/property-bidi-eur-num-terminator: New file.
21626         * modules/unictype/property-bidi-arabic-digit: New file.
21627         * modules/unictype/property-bidi-common-separator: New file.
21628         * modules/unictype/property-bidi-block-separator: New file.
21629         * modules/unictype/property-bidi-segment-separator: New file.
21630         * modules/unictype/property-bidi-whitespace: New file.
21631         * modules/unictype/property-bidi-non-spacing-mark: New file.
21632         * modules/unictype/property-bidi-boundary-neutral: New file.
21633         * modules/unictype/property-bidi-pdf: New file.
21634         * modules/unictype/property-bidi-embedding-or-override: New file.
21635         * modules/unictype/property-bidi-other-neutral: New file.
21636         * modules/unictype/property-hex-digit: New file.
21637         * modules/unictype/property-ascii-hex-digit: New file.
21638         * modules/unictype/property-ideographic: New file.
21639         * modules/unictype/property-unified-ideograph: New file.
21640         * modules/unictype/property-radical: New file.
21641         * modules/unictype/property-ids-binary-operator: New file.
21642         * modules/unictype/property-ids-trinary-operator: New file.
21643         * modules/unictype/property-zero-width: New file.
21644         * modules/unictype/property-space: New file.
21645         * modules/unictype/property-non-break: New file.
21646         * modules/unictype/property-iso-control: New file.
21647         * modules/unictype/property-format-control: New file.
21648         * modules/unictype/property-dash: New file.
21649         * modules/unictype/property-hyphen: New file.
21650         * modules/unictype/property-punctuation: New file.
21651         * modules/unictype/property-line-separator: New file.
21652         * modules/unictype/property-paragraph-separator: New file.
21653         * modules/unictype/property-quotation-mark: New file.
21654         * modules/unictype/property-sentence-terminal: New file.
21655         * modules/unictype/property-terminal-punctuation: New file.
21656         * modules/unictype/property-currency-symbol: New file.
21657         * modules/unictype/property-math: New file.
21658         * modules/unictype/property-other-math: New file.
21659         * modules/unictype/property-paired-punctuation: New file.
21660         * modules/unictype/property-left-of-pair: New file.
21661         * modules/unictype/property-combining: New file.
21662         * modules/unictype/property-composite: New file.
21663         * modules/unictype/property-decimal-digit: New file.
21664         * modules/unictype/property-numeric: New file.
21665         * modules/unictype/property-diacritic: New file.
21666         * modules/unictype/property-extender: New file.
21667         * modules/unictype/property-ignorable-control: New file.
21668         * modules/unictype/property-test: New file.
21669         * modules/unictype/property-byname: New file.
21670         * modules/unictype/property-all: New file.
21671         * modules/unictype/scripts: New file.
21672         * modules/unictype/scripts-all: New file.
21673         * modules/unictype/block-of: New file.
21674         * modules/unictype/block-test: New file.
21675         * modules/unictype/block-list: New file.
21676         * modules/unictype/block-all: New file.
21677         * modules/unictype/syntax-c-whitespace: New file.
21678         * modules/unictype/syntax-java-whitespace: New file.
21679         * modules/unictype/syntax-c-ident: New file.
21680         * modules/unictype/syntax-java-ident: New file.
21681         * modules/unictype/ctype-alnum: New file.
21682         * modules/unictype/ctype-alpha: New file.
21683         * modules/unictype/ctype-cntrl: New file.
21684         * modules/unictype/ctype-digit: New file.
21685         * modules/unictype/ctype-graph: New file.
21686         * modules/unictype/ctype-lower: New file.
21687         * modules/unictype/ctype-print: New file.
21688         * modules/unictype/ctype-punct: New file.
21689         * modules/unictype/ctype-space: New file.
21690         * modules/unictype/ctype-upper: New file.
21691         * modules/unictype/ctype-xdigit: New file.
21692         * modules/unictype/ctype-blank: New file.
21693         * lib/unictype/bidi_byname.c: New file.
21694         * lib/unictype/bidi_name.c: New file.
21695         * lib/unictype/bidi_of.c: New file.
21696         * lib/unictype/bidi_test.c: New file.
21697         * lib/unictype/bitmap.h: New file.
21698         * lib/unictype/block_test.c: New file.
21699         * lib/unictype/blocks.c: New file.
21700         * lib/unictype/categ_C.c: New file.
21701         * lib/unictype/categ_Cc.c: New file.
21702         * lib/unictype/categ_Cf.c: New file.
21703         * lib/unictype/categ_Cn.c: New file.
21704         * lib/unictype/categ_Co.c: New file.
21705         * lib/unictype/categ_Cs.c: New file.
21706         * lib/unictype/categ_L.c: New file.
21707         * lib/unictype/categ_Ll.c: New file.
21708         * lib/unictype/categ_Lm.c: New file.
21709         * lib/unictype/categ_Lo.c: New file.
21710         * lib/unictype/categ_Lt.c: New file.
21711         * lib/unictype/categ_Lu.c: New file.
21712         * lib/unictype/categ_M.c: New file.
21713         * lib/unictype/categ_Mc.c: New file.
21714         * lib/unictype/categ_Me.c: New file.
21715         * lib/unictype/categ_Mn.c: New file.
21716         * lib/unictype/categ_N.c: New file.
21717         * lib/unictype/categ_Nd.c: New file.
21718         * lib/unictype/categ_Nl.c: New file.
21719         * lib/unictype/categ_No.c: New file.
21720         * lib/unictype/categ_P.c: New file.
21721         * lib/unictype/categ_Pc.c: New file.
21722         * lib/unictype/categ_Pd.c: New file.
21723         * lib/unictype/categ_Pe.c: New file.
21724         * lib/unictype/categ_Pf.c: New file.
21725         * lib/unictype/categ_Pi.c: New file.
21726         * lib/unictype/categ_Po.c: New file.
21727         * lib/unictype/categ_Ps.c: New file.
21728         * lib/unictype/categ_S.c: New file.
21729         * lib/unictype/categ_Sc.c: New file.
21730         * lib/unictype/categ_Sk.c: New file.
21731         * lib/unictype/categ_Sm.c: New file.
21732         * lib/unictype/categ_So.c: New file.
21733         * lib/unictype/categ_Z.c: New file.
21734         * lib/unictype/categ_Zl.c: New file.
21735         * lib/unictype/categ_Zp.c: New file.
21736         * lib/unictype/categ_Zs.c: New file.
21737         * lib/unictype/categ_and.c: New file.
21738         * lib/unictype/categ_and_not.c: New file.
21739         * lib/unictype/categ_byname.c: New file.
21740         * lib/unictype/categ_name.c: New file.
21741         * lib/unictype/categ_none.c: New file.
21742         * lib/unictype/categ_of.c: New file.
21743         * lib/unictype/categ_or.c: New file.
21744         * lib/unictype/categ_test.c: New file.
21745         * lib/unictype/combining.c: New file.
21746         * lib/unictype/ctype_alnum.c: New file.
21747         * lib/unictype/ctype_alpha.c: New file.
21748         * lib/unictype/ctype_blank.c: New file.
21749         * lib/unictype/ctype_cntrl.c: New file.
21750         * lib/unictype/ctype_digit.c: New file.
21751         * lib/unictype/ctype_graph.c: New file.
21752         * lib/unictype/ctype_lower.c: New file.
21753         * lib/unictype/ctype_print.c: New file.
21754         * lib/unictype/ctype_punct.c: New file.
21755         * lib/unictype/ctype_space.c: New file.
21756         * lib/unictype/ctype_upper.c: New file.
21757         * lib/unictype/ctype_xdigit.c: New file.
21758         * lib/unictype/decdigit.c: New file.
21759         * lib/unictype/digit.c: New file.
21760         * lib/unictype/identsyntaxmap.h: New file.
21761         * lib/unictype/mirror.c: New file.
21762         * lib/unictype/numeric.c: New file.
21763         * lib/unictype/pr_alphabetic.c: New file.
21764         * lib/unictype/pr_ascii_hex_digit.c: New file.
21765         * lib/unictype/pr_bidi_arabic_digit.c: New file.
21766         * lib/unictype/pr_bidi_arabic_right_to_left.c: New file.
21767         * lib/unictype/pr_bidi_block_separator.c: New file.
21768         * lib/unictype/pr_bidi_boundary_neutral.c: New file.
21769         * lib/unictype/pr_bidi_common_separator.c: New file.
21770         * lib/unictype/pr_bidi_control.c: New file.
21771         * lib/unictype/pr_bidi_embedding_or_override.c: New file.
21772         * lib/unictype/pr_bidi_eur_num_separator.c: New file.
21773         * lib/unictype/pr_bidi_eur_num_terminator.c: New file.
21774         * lib/unictype/pr_bidi_european_digit.c: New file.
21775         * lib/unictype/pr_bidi_hebrew_right_to_left.c: New file.
21776         * lib/unictype/pr_bidi_left_to_right.c: New file.
21777         * lib/unictype/pr_bidi_non_spacing_mark.c: New file.
21778         * lib/unictype/pr_bidi_other_neutral.c: New file.
21779         * lib/unictype/pr_bidi_pdf.c: New file.
21780         * lib/unictype/pr_bidi_segment_separator.c: New file.
21781         * lib/unictype/pr_bidi_whitespace.c: New file.
21782         * lib/unictype/pr_byname.c: New file.
21783         * lib/unictype/pr_byname.gperf: New file.
21784         * lib/unictype/pr_combining.c: New file.
21785         * lib/unictype/pr_composite.c: New file.
21786         * lib/unictype/pr_currency_symbol.c: New file.
21787         * lib/unictype/pr_dash.c: New file.
21788         * lib/unictype/pr_decimal_digit.c: New file.
21789         * lib/unictype/pr_default_ignorable_code_point.c: New file.
21790         * lib/unictype/pr_deprecated.c: New file.
21791         * lib/unictype/pr_diacritic.c: New file.
21792         * lib/unictype/pr_extender.c: New file.
21793         * lib/unictype/pr_format_control.c: New file.
21794         * lib/unictype/pr_grapheme_base.c: New file.
21795         * lib/unictype/pr_grapheme_extend.c: New file.
21796         * lib/unictype/pr_grapheme_link.c: New file.
21797         * lib/unictype/pr_hex_digit.c: New file.
21798         * lib/unictype/pr_hyphen.c: New file.
21799         * lib/unictype/pr_id_continue.c: New file.
21800         * lib/unictype/pr_id_start.c: New file.
21801         * lib/unictype/pr_ideographic.c: New file.
21802         * lib/unictype/pr_ids_binary_operator.c: New file.
21803         * lib/unictype/pr_ids_trinary_operator.c: New file.
21804         * lib/unictype/pr_ignorable_control.c: New file.
21805         * lib/unictype/pr_iso_control.c: New file.
21806         * lib/unictype/pr_join_control.c: New file.
21807         * lib/unictype/pr_left_of_pair.c: New file.
21808         * lib/unictype/pr_line_separator.c: New file.
21809         * lib/unictype/pr_logical_order_exception.c: New file.
21810         * lib/unictype/pr_lowercase.c: New file.
21811         * lib/unictype/pr_math.c: New file.
21812         * lib/unictype/pr_non_break.c: New file.
21813         * lib/unictype/pr_not_a_character.c: New file.
21814         * lib/unictype/pr_numeric.c: New file.
21815         * lib/unictype/pr_other_alphabetic.c: New file.
21816         * lib/unictype/pr_other_default_ignorable_code_point.c: New file.
21817         * lib/unictype/pr_other_grapheme_extend.c: New file.
21818         * lib/unictype/pr_other_id_continue.c: New file.
21819         * lib/unictype/pr_other_id_start.c: New file.
21820         * lib/unictype/pr_other_lowercase.c: New file.
21821         * lib/unictype/pr_other_math.c: New file.
21822         * lib/unictype/pr_other_uppercase.c: New file.
21823         * lib/unictype/pr_paired_punctuation.c: New file.
21824         * lib/unictype/pr_paragraph_separator.c: New file.
21825         * lib/unictype/pr_pattern_syntax.c: New file.
21826         * lib/unictype/pr_pattern_white_space.c: New file.
21827         * lib/unictype/pr_private_use.c: New file.
21828         * lib/unictype/pr_punctuation.c: New file.
21829         * lib/unictype/pr_quotation_mark.c: New file.
21830         * lib/unictype/pr_radical.c: New file.
21831         * lib/unictype/pr_sentence_terminal.c: New file.
21832         * lib/unictype/pr_soft_dotted.c: New file.
21833         * lib/unictype/pr_space.c: New file.
21834         * lib/unictype/pr_terminal_punctuation.c: New file.
21835         * lib/unictype/pr_test.c: New file.
21836         * lib/unictype/pr_titlecase.c: New file.
21837         * lib/unictype/pr_unassigned_code_value.c: New file.
21838         * lib/unictype/pr_unified_ideograph.c: New file.
21839         * lib/unictype/pr_uppercase.c: New file.
21840         * lib/unictype/pr_variation_selector.c: New file.
21841         * lib/unictype/pr_white_space.c: New file.
21842         * lib/unictype/pr_xid_continue.c: New file.
21843         * lib/unictype/pr_xid_start.c: New file.
21844         * lib/unictype/pr_zero_width.c: New file.
21845         * lib/unictype/scripts.c: New file.
21846         * lib/unictype/sy_c_ident.c: New file.
21847         * lib/unictype/sy_c_whitespace.c: New file.
21848         * lib/unictype/sy_java_ident.c: New file.
21849         * lib/unictype/sy_java_whitespace.c: New file.
21850
21851         * lib/unictype/bidi_of.h: New file, generated by gen-ctype.c for
21852         Unicode 5.0.0.
21853         * lib/unictype/blocks.h: Likewise.
21854         * lib/unictype/categ_C.h: Likewise.
21855         * lib/unictype/categ_Cc.h: Likewise.
21856         * lib/unictype/categ_Cf.h: Likewise.
21857         * lib/unictype/categ_Cn.h: Likewise.
21858         * lib/unictype/categ_Co.h: Likewise.
21859         * lib/unictype/categ_Cs.h: Likewise.
21860         * lib/unictype/categ_L.h: Likewise.
21861         * lib/unictype/categ_Ll.h: Likewise.
21862         * lib/unictype/categ_Lm.h: Likewise.
21863         * lib/unictype/categ_Lo.h: Likewise.
21864         * lib/unictype/categ_Lt.h: Likewise.
21865         * lib/unictype/categ_Lu.h: Likewise.
21866         * lib/unictype/categ_M.h: Likewise.
21867         * lib/unictype/categ_Mc.h: Likewise.
21868         * lib/unictype/categ_Me.h: Likewise.
21869         * lib/unictype/categ_Mn.h: Likewise.
21870         * lib/unictype/categ_N.h: Likewise.
21871         * lib/unictype/categ_Nd.h: Likewise.
21872         * lib/unictype/categ_Nl.h: Likewise.
21873         * lib/unictype/categ_No.h: Likewise.
21874         * lib/unictype/categ_P.h: Likewise.
21875         * lib/unictype/categ_Pc.h: Likewise.
21876         * lib/unictype/categ_Pd.h: Likewise.
21877         * lib/unictype/categ_Pe.h: Likewise.
21878         * lib/unictype/categ_Pf.h: Likewise.
21879         * lib/unictype/categ_Pi.h: Likewise.
21880         * lib/unictype/categ_Po.h: Likewise.
21881         * lib/unictype/categ_Ps.h: Likewise.
21882         * lib/unictype/categ_S.h: Likewise.
21883         * lib/unictype/categ_Sc.h: Likewise.
21884         * lib/unictype/categ_Sk.h: Likewise.
21885         * lib/unictype/categ_Sm.h: Likewise.
21886         * lib/unictype/categ_So.h: Likewise.
21887         * lib/unictype/categ_Z.h: Likewise.
21888         * lib/unictype/categ_Zl.h: Likewise.
21889         * lib/unictype/categ_Zp.h: Likewise.
21890         * lib/unictype/categ_Zs.h: Likewise.
21891         * lib/unictype/categ_of.h: Likewise.
21892         * lib/unictype/combining.h: Likewise.
21893         * lib/unictype/ctype_alnum.h: Likewise.
21894         * lib/unictype/ctype_alpha.h: Likewise.
21895         * lib/unictype/ctype_blank.h: Likewise.
21896         * lib/unictype/ctype_cntrl.h: Likewise.
21897         * lib/unictype/ctype_digit.h: Likewise.
21898         * lib/unictype/ctype_graph.h: Likewise.
21899         * lib/unictype/ctype_lower.h: Likewise.
21900         * lib/unictype/ctype_print.h: Likewise.
21901         * lib/unictype/ctype_punct.h: Likewise.
21902         * lib/unictype/ctype_space.h: Likewise.
21903         * lib/unictype/ctype_upper.h: Likewise.
21904         * lib/unictype/ctype_xdigit.h: Likewise.
21905         * lib/unictype/decdigit.h: Likewise.
21906         * lib/unictype/digit.h: Likewise.
21907         * lib/unictype/mirror.h: Likewise.
21908         * lib/unictype/numeric.h: Likewise.
21909         * lib/unictype/pr_alphabetic.h: Likewise.
21910         * lib/unictype/pr_ascii_hex_digit.h: Likewise.
21911         * lib/unictype/pr_bidi_arabic_digit.h: Likewise.
21912         * lib/unictype/pr_bidi_arabic_right_to_left.h: Likewise.
21913         * lib/unictype/pr_bidi_block_separator.h: Likewise.
21914         * lib/unictype/pr_bidi_boundary_neutral.h: Likewise.
21915         * lib/unictype/pr_bidi_common_separator.h: Likewise.
21916         * lib/unictype/pr_bidi_control.h: Likewise.
21917         * lib/unictype/pr_bidi_embedding_or_override.h: Likewise.
21918         * lib/unictype/pr_bidi_eur_num_separator.h: Likewise.
21919         * lib/unictype/pr_bidi_eur_num_terminator.h: Likewise.
21920         * lib/unictype/pr_bidi_european_digit.h: Likewise.
21921         * lib/unictype/pr_bidi_hebrew_right_to_left.h: Likewise.
21922         * lib/unictype/pr_bidi_left_to_right.h: Likewise.
21923         * lib/unictype/pr_bidi_non_spacing_mark.h: Likewise.
21924         * lib/unictype/pr_bidi_other_neutral.h: Likewise.
21925         * lib/unictype/pr_bidi_pdf.h: Likewise.
21926         * lib/unictype/pr_bidi_segment_separator.h: Likewise.
21927         * lib/unictype/pr_bidi_whitespace.h: Likewise.
21928         * lib/unictype/pr_combining.h: Likewise.
21929         * lib/unictype/pr_composite.h: Likewise.
21930         * lib/unictype/pr_currency_symbol.h: Likewise.
21931         * lib/unictype/pr_dash.h: Likewise.
21932         * lib/unictype/pr_decimal_digit.h: Likewise.
21933         * lib/unictype/pr_default_ignorable_code_point.h: Likewise.
21934         * lib/unictype/pr_deprecated.h: Likewise.
21935         * lib/unictype/pr_diacritic.h: Likewise.
21936         * lib/unictype/pr_extender.h: Likewise.
21937         * lib/unictype/pr_format_control.h: Likewise.
21938         * lib/unictype/pr_grapheme_base.h: Likewise.
21939         * lib/unictype/pr_grapheme_extend.h: Likewise.
21940         * lib/unictype/pr_grapheme_link.h: Likewise.
21941         * lib/unictype/pr_hex_digit.h: Likewise.
21942         * lib/unictype/pr_hyphen.h: Likewise.
21943         * lib/unictype/pr_id_continue.h: Likewise.
21944         * lib/unictype/pr_id_start.h: Likewise.
21945         * lib/unictype/pr_ideographic.h: Likewise.
21946         * lib/unictype/pr_ids_binary_operator.h: Likewise.
21947         * lib/unictype/pr_ids_trinary_operator.h: Likewise.
21948         * lib/unictype/pr_ignorable_control.h: Likewise.
21949         * lib/unictype/pr_iso_control.h: Likewise.
21950         * lib/unictype/pr_join_control.h: Likewise.
21951         * lib/unictype/pr_left_of_pair.h: Likewise.
21952         * lib/unictype/pr_line_separator.h: Likewise.
21953         * lib/unictype/pr_logical_order_exception.h: Likewise.
21954         * lib/unictype/pr_lowercase.h: Likewise.
21955         * lib/unictype/pr_math.h: Likewise.
21956         * lib/unictype/pr_non_break.h: Likewise.
21957         * lib/unictype/pr_not_a_character.h: Likewise.
21958         * lib/unictype/pr_numeric.h: Likewise.
21959         * lib/unictype/pr_other_alphabetic.h: Likewise.
21960         * lib/unictype/pr_other_default_ignorable_code_point.h: Likewise.
21961         * lib/unictype/pr_other_grapheme_extend.h: Likewise.
21962         * lib/unictype/pr_other_id_continue.h: Likewise.
21963         * lib/unictype/pr_other_id_start.h: Likewise.
21964         * lib/unictype/pr_other_lowercase.h: Likewise.
21965         * lib/unictype/pr_other_math.h: Likewise.
21966         * lib/unictype/pr_other_uppercase.h: Likewise.
21967         * lib/unictype/pr_paired_punctuation.h: Likewise.
21968         * lib/unictype/pr_paragraph_separator.h: Likewise.
21969         * lib/unictype/pr_pattern_syntax.h: Likewise.
21970         * lib/unictype/pr_pattern_white_space.h: Likewise.
21971         * lib/unictype/pr_private_use.h: Likewise.
21972         * lib/unictype/pr_punctuation.h: Likewise.
21973         * lib/unictype/pr_quotation_mark.h: Likewise.
21974         * lib/unictype/pr_radical.h: Likewise.
21975         * lib/unictype/pr_sentence_terminal.h: Likewise.
21976         * lib/unictype/pr_soft_dotted.h: Likewise.
21977         * lib/unictype/pr_space.h: Likewise.
21978         * lib/unictype/pr_terminal_punctuation.h: Likewise.
21979         * lib/unictype/pr_titlecase.h: Likewise.
21980         * lib/unictype/pr_unassigned_code_value.h: Likewise.
21981         * lib/unictype/pr_unified_ideograph.h: Likewise.
21982         * lib/unictype/pr_uppercase.h: Likewise.
21983         * lib/unictype/pr_variation_selector.h: Likewise.
21984         * lib/unictype/pr_white_space.h: Likewise.
21985         * lib/unictype/pr_xid_continue.h: Likewise.
21986         * lib/unictype/pr_xid_start.h: Likewise.
21987         * lib/unictype/pr_zero_width.h: Likewise.
21988         * lib/unictype/scripts.h: Likewise.
21989         * lib/unictype/scripts_byname.gperf: Likewise.
21990         * lib/unictype/sy_c_ident.h: Likewise.
21991         * lib/unictype/sy_c_whitespace.h: Likewise.
21992         * lib/unictype/sy_java_ident.h: Likewise.
21993         * lib/unictype/sy_java_whitespace.h: Likewise.
21994
21995         * lib/unictype/Makefile: New file.
21996         * lib/unictype/gen-ctype.c: New file, based on gen-unicode-ctype.c in
21997         glibc.
21998         * lib/unictype/3level.h: New file, copied from glibc.
21999         * lib/unictype/3levelbit.h: New file.
22000
22001 2007-11-11  Bruno Haible  <bruno@clisp.org>
22002
22003         * modules/gperf: New file.
22004         * modules/iconv_open (Depends-on): Add it.
22005         (Makefile.am): Remove the GPERF definition.
22006
22007 2007-11-11  Bruno Haible  <bruno@clisp.org>
22008
22009         * m4/round.m4 (gl_FUNC_ROUND): Test against NetBSD 3.0 bug.
22010         * doc/functions/round.texi: Mention the NetBSD 3.0 bug.
22011
22012 2007-11-11  Bruno Haible  <bruno@clisp.org>
22013
22014         * tests/test-argmatch.c (ARGMATCH_DIE): Undefine.
22015         (usage): Remove function.
22016
22017 2007-11-11  Bruno Haible  <bruno@clisp.org>
22018
22019         * m4/roundf.m4 (gl_FUNC_ROUNDF): Use gl_FUNC_FLOORF_LIBS and
22020         gl_FUNC_CEILF_LIBS.
22021         * m4/round.m4 (gl_FUNC_ROUND): Use gl_FUNC_FLOOR_LIBS and
22022         gl_FUNC_CEIL_LIBS.
22023         * m4/roundl.m4 (gl_FUNC_ROUNDL): Use gl_FUNC_FLOORL_LIBS and
22024         gl_FUNC_CEILL_LIBS.
22025         * modules/roundf (Files): Add m4/floorf.m4, m4/ceilf.m4.
22026         * modules/round (Files): Add m4/floor.m4, m4/ceil.m4.
22027         * modules/roundl (Files): Add m4/floorl.m4, m4/ceill.m4.
22028
22029 2007-11-11  Bruno Haible  <bruno@clisp.org>
22030
22031         * m4/roundf.m4 (gl_FUNC_ROUNDF): Handle the case that floorf and
22032         roundf were declared but do not exist on functions.
22033         * m4/roundl.m4 (gl_FUNC_ROUNDL): Handle the case that floorl and
22034         roundl were declared but do not exist on functions.
22035         * lib/round.c (HAVE_FLOOR_AND_CEIL): Use HAVE_FLOORF_AND_CEILF and
22036         HAVE_FLOORL_AND_CEILL, respectively.
22037         Needed for Sun C on Solaris 10.
22038
22039 2007-11-11  Bruno Haible  <bruno@clisp.org>
22040
22041         * m4/roundf.m4 (gl_FUNC_ROUNDF): Set REPLACE_ROUNDF instead of
22042         HAVE_DECL_ROUNDF. Remove redundant AC_SUBST.
22043         * m4/round.m4 (gl_FUNC_ROUND): Set REPLACE_ROUND instead of
22044         HAVE_DECL_ROUND. Remove redundant AC_SUBST.
22045         * m4/roundl.m4 (gl_FUNC_ROUNDL): Set REPLACE_ROUNDL instead of
22046         HAVE_DECL_ROUNDL. Remove redundant AC_SUBST.
22047         * lib/math.in.h (roundf): Use REPLACE_ROUNDF instead of
22048         HAVE_DECL_ROUNDF.
22049         (round): Use REPLACE_ROUND instead of HAVE_DECL_ROUND.
22050         (roundl): Use REPLACE_ROUNDL instead of HAVE_DECL_ROUNDL.
22051         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize REPLACE_ROUND* instead
22052         of HAVE_DECL_ROUND*.
22053         * modules/math (Makefile.am): Update.
22054
22055 2007-11-10  Bruno Haible  <bruno@clisp.org>
22056
22057         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_PARSE): Use same check for
22058         ptrdiff_t as m4/intl.m4.
22059
22060 2007-11-10  Jim Meyering  <meyering@redhat.com>
22061
22062         Avoid link failure for the argmatch test.
22063         * tests/test-argmatch.c (usage): Define function to avoid a link
22064         failure: argmatch_die requires a usage function.
22065
22066 2007-11-09  Bruno Haible  <bruno@clisp.org>
22067
22068         * doc/functions/snprintf.texi: Mention BeOS deficiency.
22069         * doc/functions/vsnprintf.texi: Likewise.
22070         * lib/vasnprintf.c (VASNPRINTF): Ensure that we never call snprintf
22071         with a size argument < 2.
22072
22073 2007-11-09  Bruno Haible  <bruno@clisp.org>
22074
22075         * lib/vasnprintf.c (VASNPRINTF): Increase reallocation of snprintf
22076         buffer. Fixes an inefficiency introduced on 2007-11-03.
22077
22078 2007-11-09  Bruno Haible  <bruno@clisp.org>
22079
22080         * m4/locale-tr.m4 (gt_LOCALE_TR_UTF8) [BeOS]: Make this test return
22081         none instead of tr_TR. Fixes a failure of test-c-strcasecmp.c.
22082
22083 2007-11-08  Jim Meyering  <meyering@redhat.com>
22084
22085         Change cache variable name prefix "jm_" to "gl_" everywhere.
22086         * m4/d-type.m4, m4/jm-winsz1.m4, m4/jm-winsz2.m4, m4/link-follow.m4:
22087         * m4/putenv.m4, m4/strtoimax.m4, m4/strtoumax.m4, m4/unlink-busy.m4:
22088         * m4/uptime.m4: s/gl_/jm_/
22089
22090 2007-11-07  Bruno Haible  <bruno@clisp.org>
22091
22092         Update to GNU gettext 0.17.
22093         * m4/intl.m4: Update to GNU gettext 0.17.
22094         * m4/po.m4: Likewise.
22095         * modules/gettext (Files): Remove m4/ulonglong.m4.
22096         (configure.ac): Require gettext infrastructure from version 0.17.
22097
22098 2007-11-06  Bruno Haible  <bruno@clisp.org>
22099
22100         * lib/fbufmode.c (fbufmode) [QNX]: Use numerical values for flags; the
22101         symbolic values are not defined in a public header.
22102         * lib/freadable.c (freadable) [QNX]: Likewise.
22103         * lib/freadahead.c (freadahead) [QNX]: Likewise.
22104         * lib/freading.c (freading) [QNX]: Likewise.
22105         * lib/fseterr.c (fseterr) [QNX]: Likewise.
22106         * lib/fwritable.c (fwritable) [QNX]: Likewise.
22107         * lib/fwriting.c (fwriting) [QNX]: Likewise.
22108         * lib/fpurge.c (fpurge) [QNX]: Likewise. Add a return statement.
22109         Reported by Alain Magloire.
22110
22111         * m4/fpending.m4 (gl_FUNC_FPENDING): Add a variant for QNX.
22112
22113 2007-11-05  Bruno Haible  <bruno@clisp.org>
22114
22115         * lib/vasnprintf.c (VASNPRINTF): Expand the NEED_PRINTF_DIRECTIVE_A
22116         code when NEED_PRINTF_LONG_DOUBLE or NEED_PRINTF_DOUBLE is set.
22117         Needed on Cygwin, where !NEED_PRINTF_DIRECTIVE_A && NEED_PRINTF_DOUBLE.
22118         Reported by Eric Blake.
22119
22120 2007-10-27  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
22121             Bruno Haible  <bruno@clisp.org>
22122
22123         * modules/malloc (configure.ac): Define GNULIB_MALLOC_GNU always.
22124         * modules/realloc (configure.ac): Define GNULIB_REALLOC_GNU always.
22125         * lib/realloc.c (SYSTEM_MALLOC_GLIBC_COMPATIBLE): New macro.
22126         (malloc): Undefine also before including <stdlib.h>.
22127         (rpl_realloc): Turn malloc(0) into malloc(1) if necessary.
22128         Needed on OSF/1 4.0.
22129
22130 2007-11-05  Jim Meyering  <meyering@redhat.com>
22131
22132         git-version-gen: sync from coreutils.
22133         * build-aux/git-version-gen: Add comments.
22134         Change the first '-' to '.' in the snapshot version string,
22135         e.g., 6.9-377-08144 -> 6.9.377-08144
22136         Remove first parameter.
22137         Don't declare a version "-dirty" merely because a time
22138         stamp has changed.
22139
22140 2007-11-04  Bruno Haible  <bruno@clisp.org>
22141
22142         * lib/lock.h: Protect all macro definitions containing an 'if'
22143         statement through a "do { ... } while (0)".
22144         * lib/tls.h: Likewise.
22145
22146 2007-11-04  Bruno Haible  <bruno@clisp.org>
22147
22148         * lib/vasnprintf.c (DCHAR_IS_TCHAR, DCHAR_CPY): Undefine at the end.
22149
22150 2007-11-04  Bruno Haible  <bruno@clisp.org>
22151
22152         * m4/printf.m4 (gl_PRINTF_ENOMEM): Use GL_NOCRASH.
22153         * modules/fprintf-posix (Depends-on): Add nocrash.
22154         * modules/snprintf-posix (Depends-on): Likewise.
22155         * modules/sprintf-posix (Depends-on): Likewise.
22156         * modules/vasnprintf-posix (Depends-on): Likewise.
22157         * modules/vasprintf-posix (Depends-on): Likewise.
22158         * modules/vfprintf-posix (Depends-on): Likewise.
22159         * modules/vsnprintf-posix (Depends-on): Likewise.
22160         * modules/vsprintf-posix (Depends-on): Likewise.
22161         * modules/unistdio/u8-vasnprintf (Depends-on): Likewise.
22162         * modules/unistdio/u8-u8-vasnprintf (Depends-on): Likewise.
22163         * modules/unistdio/u16-vasnprintf (Depends-on): Likewise.
22164         * modules/unistdio/u16-u16-vasnprintf (Depends-on): Likewise.
22165         * modules/unistdio/u32-vasnprintf (Depends-on): Likewise.
22166         * modules/unistdio/u32-u32-vasnprintf (Depends-on): Likewise.
22167         * modules/unistdio/ulc-vasnprintf (Depends-on): Likewise.
22168
22169 2007-11-04  Bruno Haible  <bruno@clisp.org>
22170
22171         * modules/nocrash: New file.
22172         * m4/nocrash.m4: New file, taken from GNU clisp. Code taken from
22173         GNU libsigsegv, with permission of GNU libsigsegv's copyright holders.
22174
22175 2007-11-04  Bruno Haible  <bruno@clisp.org>
22176
22177         * tests/test-vasnprintf-posix.c (test_function): Add some tests of
22178         precision handling.
22179         * tests/test-vasprintf-posix.c (test_function): Likewise.
22180         * tests/test-snprintf-posix.h (test_function): Likewise.
22181         * tests/test-sprintf-posix.h (test_function): Likewise.
22182
22183         Fix *printf behaviour for large precisions on mingw and BeOS.
22184         * m4/printf.m4 (gl_PRINTF_PRECISION): New macro.
22185         * lib/vasnprintf.c (VASNPRINTF): Handle NEED_PRINTF_UNBOUNDED_PRECISION.
22186         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_PRECISION): New macro.
22187         (gl_PREREQ_VASNPRINTF_WITH_EXTRAS): Invoke it.
22188         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
22189         gl_PRINTF_PRECISION and test its result. Invoke
22190         gl_PREREQ_VASNPRINTF_PRECISION.
22191         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
22192         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
22193         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
22194         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
22195         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
22196         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
22197         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
22198         * doc/functions/fprintf.texi: Update.
22199         * doc/functions/printf.texi: Update.
22200         * doc/functions/snprintf.texi: Update.
22201         * doc/functions/sprintf.texi: Update.
22202         * doc/functions/vfprintf.texi: Update.
22203         * doc/functions/vprintf.texi: Update.
22204         * doc/functions/vsnprintf.texi: Update.
22205         * doc/functions/vsprintf.texi: Update.
22206
22207 2007-11-04  Bruno Haible  <bruno@clisp.org>
22208
22209         * lib/vasnprintf.c (scale10_round_decimal_decoded): Fix shift loop.
22210
22211 2007-11-04  Bruno Haible  <bruno@clisp.org>
22212
22213         * modules/relocatable-prog (Files): Add m4/lib-ld.m4.
22214         Reported by Sylvain Beucler <beuc@gnu.org>.
22215
22216 2007-11-03  Bruno Haible  <bruno@clisp.org>
22217
22218         * tests/test-fprintf-posix2.sh: New file.
22219         * tests/test-fprintf-posix2.c: New file.
22220         * modules/fprintf-posix-tests (Files): Add them.
22221         (TESTS): Add test-fprintf-posix2.sh.
22222         (configure.ac): Check for getrlimit and setrlimit.
22223         (check_PROGRAMS): Add test-fprintf-posix2.
22224
22225         * tests/test-printf-posix2.sh: New file.
22226         * tests/test-printf-posix2.c: New file.
22227         * modules/printf-posix-tests (Files): Add them.
22228         (TESTS): Add test-printf-posix2.sh.
22229         (configure.ac): Check for getrlimit and setrlimit.
22230         (check_PROGRAMS): Add test-printf-posix2.
22231
22232         Fix *printf behaviour in out-of-memory situations on MacOS X and *BSD.
22233         * m4/printf.m4 (gl_PRINTF_ENOMEM): New macro.
22234         * lib/vasnprintf.c: Implement NEED_PRINTF_DOUBLE.
22235         (decode_double): New function, copied from decode_long_double.
22236         (scale10_round_decimal_decoded): New function, extracted from
22237         scale10_round_decimal_long_double.
22238         (scale10_round_decimal_long_double): Use it.
22239         (scale10_round_decimal_double): New function.
22240         (floorlog10): New function.
22241         (VASNPRINTF): Handle NEED_PRINTF_DOUBLE case.
22242         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_ENOMEM): New macro.
22243         (gl_PREREQ_VASNPRINTF_WITH_EXTRAS): Invoke it.
22244         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
22245         gl_PRINTF_ENOMEM and test its result. Invoke
22246         gl_PREREQ_VASNPRINTF_ENOMEM.
22247         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
22248         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
22249         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
22250         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
22251         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
22252         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
22253         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
22254         * modules/fprintf-posix (Depends-on): Add frexp-nolibm.
22255         * modules/snprintf-posix (Depends-on): Likewise.
22256         * modules/sprintf-posix (Depends-on): Likewise.
22257         * modules/vasnprintf-posix (Depends-on): Likewise.
22258         * modules/vasprintf-posix (Depends-on): Likewise.
22259         * modules/vfprintf-posix (Depends-on): Likewise.
22260         * modules/vsnprintf-posix (Depends-on): Likewise.
22261         * modules/vsprintf-posix (Depends-on): Likewise.
22262         * doc/functions/fprintf.texi: Update.
22263         * doc/functions/printf.texi: Update.
22264         * doc/functions/snprintf.texi: Update.
22265         * doc/functions/sprintf.texi: Update.
22266         * doc/functions/vfprintf.texi: Update.
22267         * doc/functions/vprintf.texi: Update.
22268         * doc/functions/vsnprintf.texi: Update.
22269         * doc/functions/vsprintf.texi: Update.
22270
22271 2007-11-03  Bruno Haible  <bruno@clisp.org>
22272
22273         * modules/frexp-nolibm-tests: New file.
22274
22275         * modules/frexp-nolibm: New file.
22276         * m4/frexp.m4 (gl_FUNC_FREXP_NO_LIBM): New macro.
22277
22278 2007-11-03  Bruno Haible  <bruno@clisp.org>
22279
22280         * lib/vasnprintf.c (VASNPRINTF): Don't assume that snprintf's return
22281         value is C99 compliant.
22282         Needed for OSF/1 5.1.
22283
22284 2007-11-03  Bruno Haible  <bruno@clisp.org>
22285
22286         Fix out-of-memory handling of vasnprintf.
22287         * lib/printf-parse.c: Include <errno.h>.
22288         (PRINTF_PARSE): When failing, set errno to EINVAL or ENOMEM.
22289         * lib/vasnprintf.c (VASNPRINTF): When PRINTF_PARSE fails, assume errno
22290         is already set.
22291
22292 2007-11-02  Eric Blake  <ebb9@byu.net>
22293
22294         Fix tests on cygwin.
22295         * modules/xprintf-posix-tests (Makefile.am): Link against -lintl.
22296
22297 2007-11-01  Bruno Haible  <bruno@clisp.org>
22298
22299         * lib/stdlib.in.h (putenv): Remove the "not POSIX compliant everywhere"
22300         warning.
22301         * doc/functions/putenv.texi: Clarify that the 'putenv' module is not
22302         needed for POSIX compatibility.
22303
22304 2007-11-01  Paul Eggert  <eggert@cs.ucla.edu>
22305
22306         * m4/putenv.m4 (gl_FUNC_PUTENV): Also mention that we're checking
22307         for compatibility with GNU.
22308
22309 2007-11-01  Bruno Haible  <bruno@clisp.org>
22310
22311         * lib/putenv.c: Include <stdlib.h>. Remove rpl_putenv declaration.
22312         (putenv): Renamed from rpl_putenv. Change argument type from
22313         'const char *' to 'char *'.
22314         * m4/putenv.m4 (gl_FUNC_PUTENV): Require gl_STDLIB_H_DEFAULTS. Instead
22315         of defining putenv in config.h, just set REPLACE_PUTENV.
22316         * modules/putenv (Depends-on): Add stdlib.
22317         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
22318         (Include): Use <stdlib.h>.
22319         * lib/stdlib.in.h (putenv): New declaration.
22320         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_PUTENV and
22321         REPLACE_PUTENV.
22322         * modules/stdlib (Makefile.am): Substitute GNULIB_PUTENV and
22323         REPLACE_PUTENV.
22324         Needed for MacOS X 10.5.0.
22325         Reported by Peter O'Gorman <peter@pogma.com>.
22326
22327 2007-11-01  Jim Meyering  <meyering@redhat.com>
22328
22329         Treat an empty date string exactly like "0".
22330         * lib/getdate.y (get_date): Once any isspace or TZ= prefix is consumed,
22331         if the remaining date string (to be parsed) is empty, use "0".
22332         Reported by Mischa Molhoek and discussed in this thread:
22333         <http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/11726>.
22334
22335 2007-10-31  Bruno Haible  <bruno@clisp.org>
22336
22337         * m4/intmax_t.m4 (gl_AC_TYPE_INTMAX_T, gt_AC_TYPE_INTMAX_T): Use
22338         AC_TYPE_LONG_LONG_INT instead of gl_AC_TYPE_LONG_LONG.
22339         * m4/uintmax_t.m4 (gl_AC_TYPE_UINTMAX_T): Use
22340         AC_TYPE_UNSIGNED_LONG_LONG_INT instead of gl_AC_TYPE_UNSIGNED_LONG_LONG.
22341         * m4/longlong.m4 (gl_AC_TYPE_LONG_LONG): Remove macro.
22342         * m4/ulonglong.m4 (gl_AC_TYPE_UNSIGNED_LONG_LONG): Remove macro.
22343
22344 2007-10-31  Bruno Haible  <bruno@clisp.org>
22345
22346         * m4/longlong.m4 (_AC_TYPE_LONG_LONG_SNIPPET): New macro, extracted
22347         from AC_TYPE_LONG_LONG_INT and AC_TYPE_UNSIGNED_LONG_LONG_INT.
22348         (AC_TYPE_LONG_LONG_INT): Use it.
22349         (AC_TYPE_UNSIGNED_LONG_LONG_INT): Moved here from m4/ulonglong.m4. Use
22350         it as well.
22351         * m4/ulonglong.m4 (AC_TYPE_UNSIGNED_LONG_LONG_INT): Remove macro; moved
22352         to m4/longlong.m4.
22353         * modules/stdint (Files): Remove m4/ulonglong.m4.
22354         * modules/strtoull (Files): Use m4/longlong.m4 instead of
22355         m4/ulonglong.m4.
22356         * modules/strtoumax (Files): Likewise.
22357
22358 2007-10-30  Bruno Haible  <bruno@clisp.org>
22359
22360         * modules/xvasprintf-posix: New file.
22361         Suggested by Eric Blake.
22362
22363 2007-10-30  Bruno Haible  <bruno@clisp.org>
22364
22365         * modules/xprintf-posix-tests: New file.
22366         * tests/test-xprintf-posix.sh: New file.
22367         * tests/test-xprintf-posix.c: New file.
22368         * tests/test-xfprintf-posix.c: New file.
22369
22370         * modules/xprintf-posix: New file.
22371
22372 2007-10-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
22373
22374         * modules/fbufmode-tests (MOSTLYCLEANFILES): Remove temp files.
22375         * modules/freadable-tests (MOSTLYCLEANFILES): Likewise.
22376         * modules/fwritable-tests (MOSTLYCLEANFILES): Likewise.
22377
22378 2007-10-29  Bruno Haible  <bruno@clisp.org>
22379
22380         * m4/floorf.m4 (gl_FUNC_FLOORF_LIBS): Rename the cache variable to
22381         contain the special marker '_cv_'.
22382         * m4/floor.m4 (gl_FUNC_FLOOR_LIBS): Likewise.
22383         * m4/floorl.m4 (gl_FUNC_FLOORL_LIBS): Likewise.
22384         * m4/ceilf.m4 (gl_FUNC_CEILF_LIBS): Likewise.
22385         * m4/ceil.m4 (gl_FUNC_CEIL_LIBS): Likewise.
22386         * m4/ceill.m4 (gl_FUNC_CEILL_LIBS): Likewise.
22387         Reported by Ralf Wildenhues.
22388
22389 2007-10-29  Bruno Haible  <bruno@clisp.org>
22390
22391         * gnulib-tool (func_import): When --lgpl is not specified, set
22392         sed_transform_lib_file to convert LGPL and GPLv2+ copyright headers to
22393         GPLv3.
22394         Reported by Simon Josefsson.
22395
22396 2007-10-28  Bruno Haible  <bruno@clisp.org>
22397
22398         * lib/math.in.h: Test REPLACE_ISFINITE instead of HAVE_DECL_ISFINITE.
22399         * m4/isfinite.m4 (gl_ISFINITE): Initialize REPLACE_ISFINITE instead of
22400         HAVE_DECL_ISFINITE.
22401         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Update.
22402         * modules/math (Makefile.am): Substitute REPLACE_ISFINITE instead of
22403         HAVE_DECL_ISFINITE.
22404
22405 2007-10-28  Bruno Haible  <bruno@clisp.org>
22406
22407         * lib/stdint.in.h (_STDINT_MAX): Subtract 1 from an unused signed
22408         integer shift in the signed case. Fixes warnings with OSF/1 5.1 cc.
22409
22410 2007-10-28  Bruno Haible  <bruno@clisp.org>
22411
22412         Fix link errors with Sun C 5.0 on Solaris 10.
22413         * m4/floorf.m4 (gl_FUNC_FLOORF): Consider also the case that the
22414         function is declared but not present in the compiler's libm.
22415         * m4/floorl.m4 (gl_FUNC_FLOORL): Likewise.
22416         * m4/ceilf.m4 (gl_FUNC_CEILF): Likewise.
22417         * m4/ceill.m4 (gl_FUNC_CEILL: Likewise.
22418         * lib/math.in.h: Test REPLACE_CEILF instead of HAVE_DECL_CEILF.
22419         Test REPLACE_CEILL instead of HAVE_DECL_CEILL.
22420         Test REPLACE_FLOORF instead of HAVE_DECL_FLOORF.
22421         Test REPLACE_FLOORL instead of HAVE_DECL_FLOORL.
22422         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Update.
22423         * modules/math (Makefile.am): Substitute REPLACE_CEILF instead of
22424         HAVE_DECL_CEILF, REPLACE_CEILL instead of HAVE_DECL_CEILL,
22425         REPLACE_FLOORF instead of HAVE_DECL_FLOORF, REPLACE_FLOORL instead of
22426         HAVE_DECL_FLOORL.
22427
22428 2007-10-28  Bruno Haible  <bruno@clisp.org>
22429
22430         * m4/floorl.m4 (gl_FUNC_FLOORL_LIBS): New macro, extracted from
22431         gl_FUNC_FLOORL. Cache the result.
22432         (gl_FUNC_FLOORL): Use it.
22433         * m4/ceill.m4 (gl_FUNC_CEILL_LIBS): New macro, extracted from
22434         gl_FUNC_CEILL. Cache the result.
22435         (gl_FUNC_CEILL): Use it.
22436
22437         * m4/floor.m4 (gl_FUNC_FLOOR_LIBS): New macro, extracted from
22438         gl_FUNC_FLOOR. Cache the result.
22439         (gl_FUNC_FLOOR): Use it.
22440         * m4/ceil.m4 (gl_FUNC_CEIL_LIBS): New macro, extracted from
22441         gl_FUNC_CEIL. Cache the result.
22442         (gl_FUNC_CEIL): Use it.
22443
22444         * m4/floorf.m4 (gl_FUNC_FLOORF_LIBS): New macro, extracted from
22445         gl_FUNC_FLOORF. Cache the result.
22446         (gl_FUNC_FLOORF): Use it.
22447         * m4/ceilf.m4 (gl_FUNC_CEILF_LIBS): New macro, extracted from
22448         gl_FUNC_CEILF. Cache the result.
22449         (gl_FUNC_CEILF): Use it.
22450
22451 2007-10-28  Bruno Haible  <bruno@clisp.org>
22452
22453         * gnulib-tool: Allow specifying the LGPL version number through
22454         --lgpl=2 or --lgpl=3.
22455         (func_usage): Document --lgpl with argument.
22456         Handle --lgpl=... arguments.
22457         (func_import): Recognize also gl_LGPL calls with an argument. When
22458         --lgpl=2 is used and the module's license is just LGPL, report an
22459         error. Set sed_transform_lib_file according to the lgpl variable. In
22460         the generated files, use --lgpl or gl_LGPL invocations with argument,
22461         if necessary.
22462         * doc/gnulib-intro.texi (Copyright): Explain how to get modules under
22463         an LGPv2+ license.
22464         * doc/gnulib-tool.texi (Modified imports): Update explanation of
22465         gl_LGPL macro.
22466
22467 2007-10-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
22468             Bruno Haible  <bruno@clisp.org>
22469
22470         * lib/unistr.h (u8_uctomb_aux): Declare also if !HAVE_INLINE.
22471         (u16_uctomb_aux): Likewise.
22472         * lib/unistr/u8-uctomb-aux.c (u8_uctomb_aux): Define also if
22473         !HAVE_INLINE.
22474         * lib/unistr/u16-uctomb-aux.c (u16_uctomb_aux): Likewise
22475
22476 2007-10-28  Bruno Haible  <bruno@clisp.org>
22477
22478         * modules/error: Add a notice recommending to change XGETTEXT_OPTIONS.
22479         Invoke AM_GETTEXT_OPTION if it exists.
22480         * modules/vasprintf: Likewise.
22481         * modules/verror: Likewise.
22482         * modules/xprintf: Likewise.
22483         * modules/xvasprintf: Likewise.
22484
22485 2007-10-27  Ben Pfaff  <blp@gnu.org>
22486
22487         * lib/math.in.h: Define isfinite macro and prototypes for
22488         gl_isfinitef, gl_isfinited, gl_isfinitel if we are providing
22489         implementations.
22490         * m4/math_h.m4: New substitutions for isfinite module.
22491         * lib/isfinite.c: New file.
22492         * m4/isfinite.m4: New file.
22493         * modules/math: Replace isfinite-related @VARS@ in math.in.h.
22494         * modules/isfinite: New file.
22495         * modules/isfinite-tests: New file.
22496         * tests/tests-isfinite.c: New file.
22497         * doc/functions/isfinite.texi: Mention isfinite module.
22498         * MODULES.html.sh: Mention new module.
22499
22500 2007-10-27  Ben Pfaff  <blp@gnu.org>
22501
22502         Ralf Wildenhues reported that Tru64 4.0D declares the round
22503         functions but does not have definitions.
22504         * m4/check-math-lib.m4 (gl_CHECK_MATH_LIB): If the target function
22505         cannot be found in any library, set the output variable to
22506         "missing" instead of "".
22507         * m4/round.m4: Also use our substitute if we cannot find round in
22508         any library, even if it is declared.
22509         * m4/roundf.m4: Likewise for roundf.
22510         * m4/roundl.m4: Likewise for roundl.
22511         * lib/math.in.h: Undefine roundf, round, roundl before defining
22512         their replacements, to allow for hypothetical systems where these
22513         may be defined as macros but not available in libraries.
22514
22515 2007-10-27  Bruno Haible  <bruno@clisp.org>
22516
22517         * doc/gnulib.texi: Invoke @firstparagraphindent.
22518         * doc/gnulib-tool.texi (Simple update): Mention possible incompatible
22519         changes in gnulib.
22520         (Source changes): New section.
22521
22522 2007-10-26  Bruno Haible  <bruno@clisp.org>
22523
22524         * m4/gnulib-common.m4 (AC_C_RESTRICT): New overriding definition,
22525         borrowed from autoconf.
22526
22527 2007-10-26  Bruno Haible  <bruno@clisp.org>
22528
22529         * lib/strerror.c (rpl_strerror): Return "Unknown error ..." also if
22530         strerror returned the empty string. Needed on HP-UX 11.00.
22531
22532 2007-10-24  Micah Cowan  <micah@cowan.name>
22533
22534         Remove vestiges of cvs-gnulib-checkout process.  Now we use git.
22535         * build-aux/bootstrap: Remove support for now-unnecessary option,
22536         --cvs-user, and envvars CVS_USER, CVS_RSH.
22537
22538 2007-10-24  Jim Meyering  <meyering@redhat.com>
22539
22540         Avoid diagnostics from sha1sum when there is no cached checksum.
22541         * build-aux/bootstrap (update_po_files): Skip the sha1sum check
22542         if the po.s1 file hasn't been created yet.
22543
22544         * build-aux/bootstrap: Sync from coreutils:
22545         2007-10-24  Jim Meyering  <meyering@redhat.com>
22546         Get gnulib from the git repository, not from an obsolete cvs one.
22547         * build-aux/bootstrap: Suggestion from Micah Cowan.
22548         2007-10-04  Jim Meyering  <jim@meyering.net>
22549         * build-aux/bootstrap (slurp): Adapt to _.h -> .in.h name change.
22550         (update_po_files): Work also when there are no .po files in po/.
22551
22552 2007-10-24  Paul Eggert  <eggert@cs.ucla.edu>
22553
22554         * README: Append ".git" to git and cg examples.
22555         Problem reported by Benoit Sigoure.
22556
22557 2007-10-23  Micah Cowan  <micah@cowan.name>
22558
22559         * users.txt: Add wget.
22560
22561 2007-10-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
22562
22563         Fix linking of some unistdio tests on FreeBSD.
22564         * modules/unistdio/u16-vsnprintf-tests
22565         (test_u16_vsprintf1_LDADD): Add @LIBINTL@.
22566         * modules/unistdio/u16-vsprintf-tests
22567         (test_u16_vsnprintf1_LDADD): Likewise.
22568         * modules/unistdio/u32-vsnprintf-tests
22569         (test_u32_vsnprintf1_LDADD): Likewise.
22570         * modules/unistdio/u32-vsprintf-tests
22571         (test_u32_vsprintf1_LDADD): Likewise.
22572         * modules/unistdio/u8-vsnprintf-tests
22573         (test_u8_vsnprintf1_LDADD): Likewise.
22574         * modules/unistdio/u8-vsprintf-tests
22575         (test_u8_vsprintf1_LDADD): Likewise.
22576         * modules/unistdio/ulc-vsnprintf-tests
22577         (test_ulc_vsnprintf1_LDADD): Likewise.
22578         * modules/unistdio/ulc-vsprintf-tests
22579         (test_ulc_vsprintf1_LDADD): Likewise.
22580
22581         Fix linking of some uniconv tests on FreeBSD.
22582         * modules/uniconv/u16-conv-from-enc-tests
22583         (test_u16_conv_from_enc_LDADD): Link $(LDADD) before @LIBICONV@.
22584         * modules/uniconv/u16-conv-to-enc-tests
22585         (test_u16_conv_to_enc_LDADD): Likewise.
22586         * modules/uniconv/u16-strconv-from-enc-tests
22587         (test_u16_strconv_from_enc_LDADD): Likewise.
22588         * modules/uniconv/u16-strconv-to-enc-tests
22589         (test_u16_strconv_to_enc_LDADD): Likewise.
22590         * modules/uniconv/u32-conv-from-enc-tests
22591         (test_u32_conv_from_enc_LDADD): Likewise.
22592         * modules/uniconv/u32-conv-to-enc-tests
22593         (test_u32_conv_to_enc_LDADD): Likewise.
22594         * modules/uniconv/u32-strconv-from-enc-tests
22595         (test_u32_strconv_from_enc_LDADD): Likewise.
22596         * modules/uniconv/u32-strconv-to-enc-tests
22597         (test_u32_strconv_to_enc_LDADD): Likewise.
22598         * modules/uniconv/u8-conv-from-enc-tests
22599         (test_u8_conv_from_enc_LDADD): Likewise.
22600         * modules/uniconv/u8-conv-to-enc-tests
22601         (test_u8_conv_to_enc_LDADD): Likewise.
22602         * modules/uniconv/u8-strconv-from-enc-tests
22603         (test_u8_strconv_from_enc_LDADD): Likewise.
22604         * modules/uniconv/u8-strconv-to-enc-tests
22605         (test_u8_strconv_to_enc_LDADD): Likewise.
22606
22607 2007-10-22  Bruno Haible  <bruno@clisp.org>
22608
22609         * lib/stdint.in.h: Add check that intmax_t and uintmax_t have the same
22610         size.
22611
22612 2007-10-22  Eric Blake  <ebb9@byu.net>
22613
22614         Tweak x*printf documentation.
22615         * lib/xprintf.c (xprintf, xvprintf, xfprintf, xvfprintf): Adjust
22616         variable name and comments.
22617         Suggested by Bruno Haible.
22618
22619 2007-10-22  Bruno Haible  <bruno@clisp.org>
22620
22621         * lib/acl.c (copy_acl): Fix file name in comment.
22622
22623 2007-10-22  Paul Eggert  <eggert@cs.ucla.edu>
22624
22625         Fix Tru64 problem with stdbool.h.
22626         * lib/stdbool.in.h (false, true):
22627         [! (defined __cplusplus || defined __BEOS__) && !defined __GNUC__]:
22628         Don't declare as an enum in this situation; it runs afoul of Tru64.
22629         Problem reported by Steven M. Schweda in
22630         <http://lists.gnu.org/archive/html/bug-autoconf/2007-10/msg00019.html>.
22631
22632 2007-10-22  Eric Blake  <ebb9@byu.net>
22633
22634         Also wrap vf?printf.
22635         * lib/xprintf.h (xvprintf, xvfprintf): New declarations.
22636         * lib/xprintf.c (xprintf, xfprintf): Work for C89.
22637         (xvprintf, xvfprintf): New functions.
22638
22639 2007-10-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
22640
22641         * modules/fstrcmp-tests (test_fstrcmp_LDADD): New, add
22642         @LIBINTL@ for FreeBSD 6.2, $(LIBTHREAD) for AIX 4.3.3.
22643
22644         * lib/uniconv/u16-conv-to-enc.c (U_MBLEN): Define.
22645         * lib/uniconv/u32-conv-to-enc.c (U_MBLEN): Likewise.
22646
22647 2007-10-22  Paul Eggert  <eggert@cs.ucla.edu>
22648
22649         * lib/acl.c (copy_acl): Adjust to IRIX 6.5.  Problem reported
22650         by Bruno Haible.
22651
22652 2007-10-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
22653
22654         * lib/getloadavg.c
22655         [defined (__osf__) && (defined (__alpha) || defined (__alpha__)]:
22656         Undef `sys' after including sys/table.h, for Tru64 4.0D.
22657
22658         * tests/test-i-ring.c: Work for C89.
22659
22660 2007-10-22  Bruno Haible  <bruno@clisp.org>
22661
22662         * m4/ulonglong.m4 (AC_TYPE_UNSIGNED_LONG_LONG_INT): Use -1ull, not
22663         -1u, in preprocessor expression, so that we don't test for the bug
22664         in HP-UX 11.00 cpp.  Testing for this bug caused problems; see
22665         <http://lists.gnu.org/archive/html/bug-gnulib/2007-10/msg00329.html>.
22666
22667 2007-10-22  Eric Blake  <ebb9@byu.net>
22668
22669         * tests/test-yesno.sh: Silence stderr during test.
22670
22671 2007-10-22  Simon Josefsson  <simon@josefsson.org>
22672
22673         * modules/crypto/gc-camellia: New file.
22674
22675         * m4/gc-camellia.m4: New file.
22676
22677         * lib/gc-libgcrypt.c (gc_cipher_open): Support Camellia.
22678
22679         * lib/gc.h (enum Gc_cipher): Add GC_CAMELLIA128, GC_CAMELLIA256.
22680
22681 2007-10-22  Simon Josefsson  <simon@josefsson.org>
22682
22683         * build-aux/maint.mk (gzip_rsyncable): Don't fail if gzip sends
22684         --help to stdout.  Reported by sms@antinode.org (Steven
22685         M. Schweda).
22686
22687 2007-10-22  Simon Josefsson  <simon@josefsson.org>
22688
22689         * users.txt: Fix link to libksba.
22690
22691 2007-10-21  Ben Pfaff  <blp@gnu.org>
22692
22693         * modules/roundf-tests: Add dependency on floorf, ceilf to allow
22694         round.c roundf implementation that depends on floorf and ceilf to
22695         be tested unconditionally.
22696
22697 2007-10-21  Ben Pfaff  <blp@gnu.org>
22698
22699         * m4/check-libm-func.m4: Removed.
22700         * m4/check-math-lib.m4: New file.
22701         * m4/round.m4: Rewrite to use gl_CHECK_MATH_LIB.
22702         * m4/roundf.m4: Ditto, and fix lack of HAVE_DECL_ROUNDF
22703         definition and lack of AC_LIBOBJ([roundf]).
22704         * m4/roundl.m4: Ditto, and similarly for roundl.
22705         * modules/round: Reference new m4 file.
22706         * modules/roundf: Ditto.
22707         * modules/roundl: Ditto.
22708         * tests/test-round2.c (main): Use ROUND instead of round.
22709         Bug report from Bruno Haible.
22710
22711 2007-10-21  Bruno Haible  <bruno@clisp.org>
22712
22713         * lib/printf-parse.c: Don't assume <stdint.h> exists in IN_LIBASPRINTF
22714         context.
22715
22716 2007-10-21  Bruno Haible  <bruno@clisp.org>
22717
22718         * tests/test-wcwidth.c (main): Allow negative result for some control
22719         characters.
22720
22721         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Check also the width of U+200B.
22722         Needed on OSF/1 5.1.
22723
22724 2007-10-21  Bruno Haible  <bruno@clisp.org>
22725
22726         * tests/test-floorf1.c: Include isnanf.h.
22727         (main): Use isnanf() instead of isnan().
22728         * tests/test-ceilf1.c: Include isnanf.h.
22729         (main): Use isnanf() instead of isnan().
22730         * tests/test-truncf1.c: Include isnanf.h.
22731         (main): Use isnanf() instead of isnan().
22732         * tests/test-roundf1.c: Include isnanf.h.
22733         (main): Use isnanf() instead of isnan().
22734
22735 2007-10-21  Eric Blake  <ebb9@byu.net>
22736
22737         * users.txt: Update URL for m4.
22738
22739 2007-10-21  Bruno Haible  <bruno@clisp.org>
22740
22741         * users.txt: Add clisp. Update URLs to Simon Josefsson's projects.
22742
22743 2007-10-21  Bruno Haible  <bruno@clisp.org>
22744
22745         * gnulib-tool (func_create_megatestdir): Determine the cvsdate from
22746         Git's management files if the CVS files are not present.
22747
22748 2007-10-20  Bruno Haible  <bruno@clisp.org>
22749
22750         * lib/count-one-bits.h (COUNT_ONE_BITS): Use the builtin also for
22751         gcc-3.4.x.
22752
22753 2007-10-20  Ben Pfaff  <blp@gnu.org>
22754
22755         * lib/math.in.h: Declare round, roundf, roundl if we are providing
22756         implementations.
22757         * m4/math_h.m4: New substitutions for round, roundf, roundl modules.
22758         * lib/round.c: New file.
22759         * lib/roundf.c: New file.
22760         * lib/roundl.c: New file.
22761         * m4/round.m4: New file.
22762         * m4/roundf.m4: New file.
22763         * m4/roundl.m4: New file.
22764         * m4/check-libm-func-m4: New file.
22765         * modules/math: Replace round, roundf, roundl related @VARS@ in
22766         math.in.h.
22767         * modules/round: New file.
22768         * modules/round-tests: New file.
22769         * modules/roundf: New file.
22770         * modules/roundf-tests: New file.
22771         * modules/roundl: New file.
22772         * modules/roundl-tests: New file.
22773         * tests/test-round1.c: New file.
22774         * tests/test-round2.c: New file.
22775         * tests/test-roundf1.c: New file.
22776         * tests/test-roundf2.c: New file.
22777         * tests/test-roundl.c: New file.
22778         * doc/functions/round.texi: Mention round module.
22779         * doc/functions/roundf.texi: Mention roundf module.
22780         * doc/functions/roundl.texi: Mention roundl module.
22781         * MODULES.html.sh: Mention new modules.
22782         Thanks to Bruno Haible for suggestions.
22783
22784 2007-10-20  Jim Meyering  <meyering@redhat.com>
22785
22786         * lib/xprintf.c: Include <config.h> unconditionally.
22787
22788         Change xprintf's license to GPL.
22789         * modules/xprintf (License): s/LGPL/GPL/, since this module
22790         depends on modules (exit and exitfail) which are GPL.
22791         Suggestion from Bruno Haible.
22792
22793         xprintf fixes.
22794         * lib/xprintf.c (xprintf, xfprintf): Use va_end.
22795         Use a clearer diagnostic.
22796         Patch from Bruno Haible.
22797
22798 2007-10-20  Bruno Haible  <bruno@clisp.org>
22799
22800         * lib/vasnprintf.c (VASNPRINTF): Don't report overflow if the available
22801         length is INT_MAX and sizeof (DCHAR_T) > sizeof (TCHAR_T).
22802         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
22803
22804 2007-10-20  Bruno Haible  <bruno@clisp.org>
22805
22806         * tests/test-floorf2.c (correct_result_p): Don't rely on excess
22807         precision in the comparison result > x - 1 or similar.
22808         * tests/test-ceilf2.c (correct_result_p): Likewise.
22809         * tests/test-truncf2.c (correct_result_p): Likewise.
22810         * tests/test-trunc2.c (correct_result_p): Likewise.
22811         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
22812
22813 2007-10-20  Bruno Haible  <bruno@clisp.org>
22814
22815         * modules/ceil: New file.
22816         * m4/ceil.m4: New file.
22817         * doc/functions/ceil.texi: Mention the 'ceil' module.
22818
22819 2007-10-20  Bruno Haible  <bruno@clisp.org>
22820
22821         * modules/floor: New file.
22822         * m4/floor.m4: New file.
22823         * doc/functions/floor.texi: Mention the 'floor' module.
22824
22825 2007-10-20  Bruno Haible  <bruno@clisp.org>
22826
22827         * modules/ceilf-tests (Depends-on): Add fprintf-posix. Needed for use
22828         of %a.
22829         * modules/floorf-tests (Depends-on): Likewise.
22830         * modules/truncf-tests (Depends-on): Likewise.
22831         * modules/trunc-tests (Depends-on): Likewise.
22832         Reported by Ben Pfaff.
22833
22834 2007-10-19  Jim Meyering  <meyering@redhat.com>
22835
22836         * lib/xprintf.c (xprintf, xfprintf): Test err < 0, not just "err".
22837         Don't bother testing specific errno values.  Just test ferror.
22838
22839         New module: xprintf
22840         * modules/xprintf, lib/xprintf.c, lib/xprintf.h: New files.
22841
22842 2007-10-19  Bruno Haible  <bruno@clisp.org>
22843
22844         * modules/csharpexec (Makefile.am): Use @FOO@ syntax instead of $(FOO)
22845         syntax.
22846         * modules/javaexec (Makefile.am): Likewise.
22847         * modules/relocatable-prog (Makefile.am): Likewise.
22848         Suggested by Jim Meyering.
22849
22850 2007-10-18  Bruno Haible  <bruno@clisp.org>
22851
22852         * lib/vasnprintf.c (VASNPRINTF): Don't use %n on glibc >= 2.3 systems.
22853         Reported by Jim Meyering.
22854
22855 2007-10-18  Eric Blake  <ebb9@byu.net>
22856
22857         * modules/filenamecat-tests (Makefile.am): Link against -lintl.
22858
22859 2007-10-18  Bruno Haible  <bruno@clisp.org>
22860
22861         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_N, gl_SNPRINTF_DIRECTIVE_N): Put
22862         the format string into writable memory. Needed in Fortify conditions.
22863
22864 2007-10-18  Colin Watson <cjwatson@debian.org>  (tiny change)
22865             Bruno Haible  <bruno@clisp.org>
22866
22867         * lib/trim.c: Include config.h unconditionally. Include trim.h always.
22868         Include ctype.h always. Include stdlib.h, not mbuiter.h, for MB_CUR_MAX.
22869         * modules/trim (Depends-on): Add mbchar.
22870         (configure.ac): Add gl_FUNC_MBRTOWC.
22871         (Makefile.am): Augment lib_SOURCES.
22872
22873 2007-10-17  Paul Eggert  <eggert@cs.ucla.edu>
22874
22875         Modify glob.c to use fstatat and dirfd, to simplify it.
22876         Suggested by Eric Blake.
22877         * lib/glob.c (__fxstatat64) [!_LIBC]: New macro.
22878         Don't include <stdbool.h>; not used.
22879         (link_exists2_p, glob_in_dir) [!_LIBC]: No longer a special case.
22880         (link_exists_p): Simplify implementation, since we can now assume
22881         dirfd and fstatat.
22882         * modules/glob (Depends-on): Add dirfd, openat.  Remove stdbool.
22883
22884 2007-10-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
22885
22886         * gnulib-tool (func_get_dependencies): Fix sed script to
22887         match only tests.
22888
22889 2007-10-17  Bruno Haible  <bruno@clisp.org>
22890
22891         * m4/locale-fr.m4 (gt_LOCALE_FR, gt_LOCALE_FR_UTF8): On Cygwin, don't
22892         allow locale names without encoding suffix.
22893         * m4/locale-tr.m4 (gt_LOCALE_TR_UTF8): Likewise.
22894         * m4/locale-zh.m4 (gt_LOCALE_ZH_CN): Likewise.
22895
22896 2007-10-16  Bruno Haible  <bruno@clisp.org>
22897
22898         * lib/getcwd.c (__getcwd): Define with explicit rpl_ prefix.
22899         * lib/getgroups.c (getgroups): Likewise.
22900         * lib/gettimeofday.c (localtime, gmtime, tzset): Likewise.
22901
22902 2007-10-16  Bruno Haible  <bruno@clisp.org>
22903
22904         * modules/absolute-header (License): Change from LGPL to LGPLv2+.
22905         * modules/malloc-posix (License): Likewise.
22906         * modules/realloc-posix (License): Likewise.
22907         * modules/calloc-posix (License): Likewise.
22908         * modules/intprops (License): Change from GPL to LGPL, with
22909         Paul Eggert's approval.
22910
22911 2007-10-16  Paul Eggert  <eggert@cs.ucla.edu>
22912
22913         Merge glibc changes into lib/glob.c.
22914
22915         * lib/glob.c (glob_in_dir): Sync with glibc/posix/glob.c, dated
22916         2007-10-15 04:59:03 UTC.  Here are the changes:
22917
22918         2007-10-14  Ulrich Drepper  <drepper@redhat.com>
22919
22920         * lib/glob.c: Reimplement link_exists_p to use fstatat64.
22921
22922         * lib/glob.c: Add some branch prediction throughout.
22923
22924         2007-10-07  Ulrich Drepper  <drepper@redhat.com>
22925
22926         [BZ #5103]
22927         * lib/glob.c (glob): Recognize patterns starting \/.
22928
22929         2007-02-14  Jakub Jelinek  <jakub@redhat.com>
22930
22931         [BZ #3996]
22932         * lib/glob.c (attribute_hidden): Define if not defined.
22933         (glob): Unescape dirname, filename or username when needed and not
22934         GLOB_NOESCAPE.  Handle \/ correctly.  Handle GLOB_MARK if filename
22935         is NULL.  Handle unescaped [ in pattern without closing ].
22936         Don't pass GLOB_CHECK down to recursive glob for directories.
22937         (__glob_pattern_type): New function.
22938         (__glob_pattern_p): Implement using __glob_pattern_type.
22939         (glob_in_dir): Handle GLOB_NOCHECK patterns containing no meta
22940         characters and backslashes if not GLOB_NOESCAPE or unterminated [.
22941         Remove unreachable code.
22942
22943         2006-09-30  Ulrich Drepper  <drepper@redhat.com>
22944
22945         * lib/glob.c (glob_in_dir): Add some comments and asserts to
22946         explain why there are no leaks.
22947
22948         2006-09-25  Jakub Jelinek  <jakub@redhat.com>
22949
22950         [BZ #3253]
22951         * lib/glob.c (glob_in_dir): Don't alloca one struct globlink at a
22952         time, rather allocate increasingly bigger arrays of pointers, if
22953         possible with alloca, if too large with malloc.
22954
22955 2007-10-16  Paul Eggert  <eggert@cs.ucla.edu>
22956
22957         Check for 64-bit int errors in HP-UX 10.20 preprocessor.
22958         Problem reported by H.Merijn Brand in
22959         <http://lists.gnu.org/archive/html/bug-tar/2007-10/msg00018.html>.
22960         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Check preprocessor too.
22961         * m4/ulonglong.m4 (AC_TYPE_UNSIGNED_LONG_LONG_INT): Likewise.
22962
22963 2007-10-15  Bruno Haible  <bruno@clisp.org>
22964
22965         * lib/fchdir.c (close, open, closedir, opendir, dup, dup2): Define
22966         with explicit rpl_ prefix.
22967         * lib/fopen.c (fopen): Likewise.
22968         * lib/freopen.c (freopen): Likewise.
22969         * lib/iconv.c (iconv): Likewise.
22970         * lib/iconv_close.c (iconv_close): Likewise.
22971
22972 2007-10-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
22973
22974         * m4/iconv_open (gl_FUNC_ICONV_OPEN_UTF): Fix cache variable name.
22975
22976 2007-10-15  Bruno Haible  <bruno@clisp.org>
22977
22978         * m4/getaddrinfo.m4 (gl_GETADDRINFO, gl_PREREQ_GETADDRINFO): Use
22979         <stddef.h> instead of <stdlib.h> since we only need NULL.
22980         Reported by Ben Pfaff <blp@cs.stanford.edu>.
22981
22982 2007-10-15  Bruno Haible  <bruno@clisp.org>
22983
22984         * doc/gnulib-tool.texi (Initial import): Swap order of -I directives.
22985         Replace paragraph talking about LIBOBJS.
22986         Reported by Colin Watson <cjwatson@debian.org>.
22987
22988 2007-10-15  Bruno Haible  <bruno@clisp.org>
22989
22990         * m4/getaddrinfo.m4 (gl_GETADDRINFO, gl_PREREQ_GETADDRINFO): Include
22991         <stdlib.h> before using NULL.
22992
22993 2007-10-15  Simon Josefsson  <simon@josefsson.org>
22994
22995         * m4/getaddrinfo.m4: Use NULL rather than 0 for pointers.
22996         Reported by Albert Chin <china@thewrittenword.com>.
22997
22998 2007-10-14  Bruno Haible  <bruno@clisp.org>
22999
23000         * modules/iconv_open-utf-tests: New file.
23001         * tests/test-iconv-utf.c: New file.
23002
23003         Enhance iconv_open to support UTF-16BE, UTF-16LE, UTF-32BE, UTF-32LE.
23004         * modules/iconv_open-utf: New file.
23005         * lib/iconv.in.h (_ICONV_UTF8_UTF*, _ICONV_UTF*_UTF8): New macros.
23006         (iconv, iconv_close): New declarations.
23007         * lib/iconv_open.c: Include c-strcase.h. Don't require ICONV_FLAVOR to
23008         be defined.
23009         (iconv_open): Add special handling of conversion between UTF-8 and
23010         UTF-{16,32}{BE,LE}.
23011         * lib/iconv.c: New file, incorporating code from GNU libiconv 1.11.
23012         * lib/iconv_close.c: New file.
23013         * m4/iconv_open.m4 (gl_REPLACE_ICONV_OPEN): New macro, extracted from
23014         gl_FUNC_ICONV_OPEN.
23015         (gl_FUNC_ICONV_OPEN): Use it.
23016         (gl_FUNC_ICONV_OPEN_UTF): New macro.
23017         * m4/iconv_h.m4 (gl_ICONV_H_DEFAULTS): Initialize also REPLACE_ICONV
23018         and REPLACE_ICONV_UTF.
23019         * modules/iconv_open (Depends-on): Add c-strcase.
23020         (Makefile.am): Substitute also REPLACE_ICONV, REPLACE_ICONV_UTF,
23021         ICONV_CONST.
23022         * doc/functions/iconv_open.texi: Mention the iconv_open-utf module.
23023
23024 2007-10-13  Albert Chin  <china@thewrittenword.com>
23025             Bruno Haible  <bruno@clisp.org>
23026
23027         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Perform the test for getaddrinfo
23028         through a link check that includes <netdb.h>. Needed for OSF/1 5.1.
23029
23030 2007-10-13  Bruno Haible  <bruno@clisp.org>
23031
23032         * lib/argp-fmtstream.h (ARGP_FS_EI): If __GNUC_STDC_INLINE__ is
23033         defined, use the ISO C99 inline semantics.
23034         * lib/argp.h (ARGP_EI): Likewise.
23035
23036 2007-10-13  Bruno Haible  <bruno@clisp.org>
23037
23038         Handle 'inline' change in gcc 4.3.0.
23039         * lib/argp-fmtstream.h (argp_fmtstream_putc, argp_fmtstream_puts,
23040         argp_fmtstream_write, argp_fmtstream_set_lmargin,
23041         argp_fmtstream_set_rmargin, argp_fmtstream_set_wmargin,
23042         argp_fmtstream_point): Disable 'extern' declaration if the function
23043         definition is going to be provided inline.
23044         (ARGP_FS_EI): If __GNUC_STDC_INLINE__ is defined, use the GNU C inline
23045         semantics, not the ISO C99 inline semantics.
23046         * lib/argp.h (argp_usage, _option_is_short, _option_is_end): Disable
23047         'extern' declaration if the function definition is going to be provided
23048         inline.
23049         (ARGP_EI): Don't assume GNU C. If __GNUC_STDC_INLINE__ is defined, use
23050         the GNU C inline semantics, not the ISO C99 inline semantics. With
23051         GCC 4.2, avoid a warning.
23052
23053 2007-10-13  Bruno Haible  <bruno@clisp.org>
23054
23055         * lib/freading.h (freading): Enable the use of __freading for
23056         glibc >= 2.7.
23057         * lib/freading.c (freading): Likewise.
23058
23059 2007-10-12  Paul Eggert  <eggert@cs.ucla.edu>
23060
23061         * lib/argp-fmtstream.h (ARGP_FS_EI): Work around GCC 4.2.1 diagnostic
23062         "warning: C99 inline functions are not supported; using GNU89".
23063
23064 2007-10-12  Bruno Haible  <bruno@clisp.org>
23065
23066         * lib/ceil.c (FUNC): Avoid rounding errors for values near a power
23067         of 2.
23068         * tests/test-ceilf2.c: New file.
23069         * modules/ceilf-tests: (Files, Depends-on, Makefile.am): Add new test.
23070
23071         * tests/test-ceilf1.c: Renamed from tests/test-ceilf.c.
23072         * modules/ceilf-tests: Update.
23073
23074 2007-10-12  Bruno Haible  <bruno@clisp.org>
23075
23076         * lib/floor.c (FUNC): Avoid rounding errors for values near a power
23077         of 2.
23078         * tests/test-floorf2.c: New file.
23079         * modules/floorf-tests: (Files, Depends-on, Makefile.am): Add new test.
23080
23081         * tests/test-floorf1.c: Renamed from tests/test-floorf.c.
23082         * modules/floorf-tests: Update.
23083
23084 2007-10-12  Bruno Haible  <bruno@clisp.org>
23085
23086         * tests/test-trunc2.c: New file.
23087         * modules/trunc-tests: (Files, Depends-on, Makefile.am): Add new test.
23088
23089         * tests/test-trunc1.c: Renamed from tests/test-trunc.c.
23090         * modules/trunc-tests: Update.
23091
23092 2007-10-12  Bruno Haible  <bruno@clisp.org>
23093
23094         * lib/trunc.c (FUNC): Avoid rounding errors for values near a power
23095         of 2.
23096         * tests/test-truncf2.c: New file.
23097         * modules/truncf-tests: (Files, Depends-on, Makefile.am): Add new test.
23098
23099         * tests/test-truncf1.c: Renamed from tests/test-truncf.c.
23100         * modules/truncf-tests: Update.
23101
23102 2007-10-11  Eric Blake  <ebb9@byu.net>
23103
23104         Don't claim strerror is broken on Interix.
23105         * doc/functions/strerror.texi (strerror): Known broken systems are
23106         now Solaris 8, and not Interix.
23107         * m4/strerror.m4 (gl_FUNC_STRERROR_SEPARATE): No longer filter out
23108         Interix on cross-compile.
23109         Reported by Martin Koeppe in
23110         http://lists.gnu.org/archive/html/bug-gnulib/2007-10/msg00005.html.
23111
23112 2007-10-11  Bruno Haible  <bruno@clisp.org>
23113
23114         * modules/i-ring-tests: New file.
23115         * tests/test-i-ring.c: Renamed from lib/i-ring-test.c. Use ASSERT
23116         instead of assert.
23117
23118 2007-10-11  Bruno Haible  <bruno@clisp.org>
23119
23120         * modules/filenamecat-tests: New file.
23121         * tests/test-filenamecat.c: New file, extracted from lib/filenamecat.c.
23122         * lib/filenamecat.c: Remove test code.
23123
23124 2007-10-11  Paul Eggert  <eggert@cs.ucla.edu>
23125
23126         Simplify and modernize strerror substitute, partly to fix Solaris 8 bug.
23127
23128         * lib/strerror.c: Include <string.h> always, to test interface,
23129         and to remove the need for the dummy.
23130         Include intprops.h to compute width instead of doing it ourselves
23131         and missing a CHAR_BIT declaration, which broke tar 1.19 on Solaris 8.
23132         (strerror): Define it to return NULL if there's no system strerror.
23133         (rpl_strerror): Use INT_STRLEN_BOUND to compute bound.
23134         Omit !HAVE_STRERROR code.  We don't need to worry about supporting
23135         ancient pre-strerror Unix systems well any more.  Saying "unknown
23136         system error" is enough.
23137         * lib/string.in.h (strerror): Simplify the ifdef to reflect the
23138         simpler strerror.c implementation.
23139         * m4/strerror.m4 (gl_FUNC_STRERROR_SEPARATE, gl_PREREQ_STDERROR):
23140         Simplify the tests to reflect the simpler strerror implementation.
23141         * modules/strerror (Depends-on): Add intprops.
23142
23143 2007-10-09  Eric Blake  <ebb9@byu.net>
23144
23145         Silence test-fpending.
23146         * modules/fpending-tests (Files): Add wrapper script.
23147         * tests/test-fpending.sh: New file.
23148
23149 2007-10-09  Bruno Haible  <bruno@clisp.org>
23150
23151         * MODULES.html.sh (func_module): Don't create a hyperlink for
23152         function names like 'printf_frexp'.
23153         (Misc): Add crc, memxor.
23154         (Characteristics of floating types): New section.
23155         (Mathematics): Add ceilf, ceill, floorf, floorl, frexpl-nolibm,
23156         isnanf-nolibm, signbit, trunc, truncf, truncl.
23157         (Enhancements for ISO C 99 functions): New subsection Input/output.
23158         (Support for systems lacking POSIX:2001): Add arpa_inet, calloc-posix,
23159         fcntl, fopen, freopen, fseek, fseeko, ftell, ftello, iconv_open,
23160         locale, malloc-posix, netinet_in, open, realloc-posix, signal, sleep.
23161         (Compatibility checks for POSIX:2001 functions): Add clock-time.
23162         (Enhancements for POSIX:2001 functions): Add chdir-long.
23163         (File system functions): Add areadlink, chdir-safer, read-file.
23164         Remove cycle-check.
23165         (File system as inode set): New section.
23166         (Date and time): Add gethrxtime.
23167         (Multithreading): Add openmp.
23168         (Internationalization functions): Add localename.
23169         (Unicode string functions): Add unistr/u*-mbsnlen.
23170         (Support for maintaining and releasing projects): Add git-version-gen.
23171         (Lone files): Remove directories.
23172
23173 2007-10-08  Ben Pfaff  <blp@gnu.org>
23174
23175         * lib/xmalloca.h: Fix typo in comment.
23176
23177 2007-10-08  Paul Eggert  <eggert@cs.ucla.edu>
23178
23179         * lib/xnanosleep.c (xnanosleep): Don't assume GCC 4.3.0 behavior
23180         when avoiding problems with integer overflow.  Use a portable test
23181         instead.
23182
23183 2007-10-08  Simon Josefsson  <simon@josefsson.org>
23184
23185         * modules/dummy (License): Change to LGPLv2+.
23186         * modules/float (License): Likewise
23187         * modules/realloc (License): Likewise
23188         * modules/stdlib (License): Likewise
23189
23190 2007-10-07  Bruno Haible  <bruno@clisp.org>
23191
23192         * trunc.c (TWO_MANT_DIG): Change type to DOUBLE.
23193         * floor.c (TWO_MANT_DIG): Likewise.
23194         * ceil.c (TWO_MANT_DIG): Likewise.
23195         Reported by Ben Pfaff.
23196
23197 2007-10-07  Bruno Haible  <bruno@clisp.org>
23198
23199         Avoid gcc warnings "declaration of 'exp' shadows a global declaration".
23200         * lib/math.in.h (frexp, frexpl): Change parameter name to 'expptr'.
23201         * lib/frexp.c (FUNC): Likewise.
23202         * lib/printf-frexp.h (printf_frexp): Likewise.
23203         * lib/printf-frexpl.h (printf_frexpl): Likewise.
23204         * lib/printf-frexp.c (FUNC): Likewise.
23205         Suggested by Jim Meyering.
23206
23207 2007-10-07  Jim Meyering  <meyering@redhat.com>
23208
23209         Make xnanosleep's integer overflow test more robust.
23210         * lib/xnanosleep.c (xnanosleep): Declare a temporary to be "volatile",
23211         so that gcc-4.3.0 doesn't optimize away this test for overflow.
23212
23213 2007-10-07  Bruno Haible  <bruno@clisp.org>
23214
23215         * NEWS: Mention the license change.
23216
23217         * doc/gnulib-intro.texi (Copyright): Update the meaning of the license
23218         abbreviations in the modules files.
23219
23220         Change copyright notice from GPLv2+ to GPLv3+.
23221         * README: Change copyright notice.
23222         * MODULES.html.sh: Likewise.
23223         * build-aux/bootstrap.conf: Likewise.
23224         * build-aux/config.libpath: Likewise.
23225         * build-aux/csharpcomp.sh.in: Likewise.
23226         * build-aux/csharpexec.sh.in: Likewise.
23227         * build-aux/install-reloc: Likewise.
23228         * build-aux/javacomp.sh.in: Likewise.
23229         * build-aux/javaexec.sh.in: Likewise.
23230         * build-aux/ldd.sh.in: Likewise.
23231         * build-aux/reloc-ldflags: Likewise.
23232         * build-aux/relocatable.sh.in: Likewise.
23233         * build-aux/x-to-1.in: Likewise.
23234         * check-module: Likewise.
23235         * config/srclistvars.sh: Likewise.
23236         * gnulib-tool: Likewise.
23237         * lib/acl-internal.h: Likewise.
23238         * lib/acl.c: Likewise.
23239         * lib/acl.h: Likewise.
23240         * lib/acl_entries.c: Likewise.
23241         * lib/areadlink-with-size.c: Likewise.
23242         * lib/areadlink.c: Likewise.
23243         * lib/areadlink.h: Likewise.
23244         * lib/argmatch.c: Likewise.
23245         * lib/argmatch.h: Likewise.
23246         * lib/argp-ba.c: Likewise.
23247         * lib/argp-eexst.c: Likewise.
23248         * lib/argp-fmtstream.c: Likewise.
23249         * lib/argp-fmtstream.h: Likewise.
23250         * lib/argp-fs-xinl.c: Likewise.
23251         * lib/argp-help.c: Likewise.
23252         * lib/argp-namefrob.h: Likewise.
23253         * lib/argp-parse.c: Likewise.
23254         * lib/argp-pin.c: Likewise.
23255         * lib/argp-pv.c: Likewise.
23256         * lib/argp-pvh.c: Likewise.
23257         * lib/argp-xinl.c: Likewise.
23258         * lib/argp.h: Likewise.
23259         * lib/at-func.c: Likewise.
23260         * lib/atanl.c: Likewise.
23261         * lib/backupfile.c: Likewise.
23262         * lib/backupfile.h: Likewise.
23263         * lib/basename.c: Likewise.
23264         * lib/binary-io.h: Likewise.
23265         * lib/byteswap.in.h: Likewise.
23266         * lib/c-stack.c: Likewise.
23267         * lib/c-stack.h: Likewise.
23268         * lib/c-strcasestr.c: Likewise.
23269         * lib/c-strcasestr.h: Likewise.
23270         * lib/c-strstr.c: Likewise.
23271         * lib/c-strstr.h: Likewise.
23272         * lib/c-strtod.c: Likewise.
23273         * lib/calloc.c: Likewise.
23274         * lib/canon-host.c: Likewise.
23275         * lib/canon-host.h: Likewise.
23276         * lib/canonicalize-lgpl.c: Likewise.
23277         * lib/canonicalize.c: Likewise.
23278         * lib/canonicalize.h: Likewise.
23279         * lib/ceil.c: Likewise.
23280         * lib/ceilf.c: Likewise.
23281         * lib/ceill.c: Likewise.
23282         * lib/chdir-long.c: Likewise.
23283         * lib/chdir-long.h: Likewise.
23284         * lib/chdir-safer.c: Likewise.
23285         * lib/chdir-safer.h: Likewise.
23286         * lib/chown.c: Likewise.
23287         * lib/classpath.c: Likewise.
23288         * lib/classpath.h: Likewise.
23289         * lib/clean-temp.c: Likewise.
23290         * lib/clean-temp.h: Likewise.
23291         * lib/cloexec.c: Likewise.
23292         * lib/close-stream.c: Likewise.
23293         * lib/closein.c: Likewise.
23294         * lib/closein.h: Likewise.
23295         * lib/closeout.c: Likewise.
23296         * lib/closeout.h: Likewise.
23297         * lib/concat-filename.c: Likewise.
23298         * lib/copy-file.c: Likewise.
23299         * lib/copy-file.h: Likewise.
23300         * lib/count-one-bits.h: Likewise.
23301         * lib/crc.c: Likewise.
23302         * lib/crc.h: Likewise.
23303         * lib/creat-safer.c: Likewise.
23304         * lib/csharpcomp.c: Likewise.
23305         * lib/csharpcomp.h: Likewise.
23306         * lib/csharpexec.c: Likewise.
23307         * lib/csharpexec.h: Likewise.
23308         * lib/cycle-check.c: Likewise.
23309         * lib/cycle-check.h: Likewise.
23310         * lib/diacrit.c: Likewise.
23311         * lib/diacrit.h: Likewise.
23312         * lib/diffseq.h: Likewise.
23313         * lib/dirchownmod.c: Likewise.
23314         * lib/dirent.in.h: Likewise.
23315         * lib/dirfd.c: Likewise.
23316         * lib/dirfd.h: Likewise.
23317         * lib/dirname.c: Likewise.
23318         * lib/dirname.h: Likewise.
23319         * lib/dummy.c: Likewise.
23320         * lib/dup-safer.c: Likewise.
23321         * lib/dup2.c: Likewise.
23322         * lib/eealloc.h: Likewise.
23323         * lib/error.c: Likewise.
23324         * lib/error.h: Likewise.
23325         * lib/euidaccess.c: Likewise.
23326         * lib/exclude.c: Likewise.
23327         * lib/exclude.h: Likewise.
23328         * lib/execute.c: Likewise.
23329         * lib/execute.h: Likewise.
23330         * lib/exitfail.c: Likewise.
23331         * lib/exitfail.h: Likewise.
23332         * lib/expl.c: Likewise.
23333         * lib/fatal-signal.c: Likewise.
23334         * lib/fatal-signal.h: Likewise.
23335         * lib/fbufmode.c: Likewise.
23336         * lib/fbufmode.h: Likewise.
23337         * lib/fchdir.c: Likewise.
23338         * lib/fchmodat.c: Likewise.
23339         * lib/fchownat.c: Likewise.
23340         * lib/fcntl--.h: Likewise.
23341         * lib/fcntl-safer.h: Likewise.
23342         * lib/fcntl.in.h: Likewise.
23343         * lib/fd-safer.c: Likewise.
23344         * lib/fflush.c: Likewise.
23345         * lib/file-has-acl.c: Likewise.
23346         * lib/file-set.c: Likewise.
23347         * lib/file-type.c: Likewise.
23348         * lib/file-type.h: Likewise.
23349         * lib/fileblocks.c: Likewise.
23350         * lib/filemode.c: Likewise.
23351         * lib/filemode.h: Likewise.
23352         * lib/filename.h: Likewise.
23353         * lib/filenamecat.c: Likewise.
23354         * lib/filenamecat.h: Likewise.
23355         * lib/findprog.c: Likewise.
23356         * lib/findprog.h: Likewise.
23357         * lib/float.in.h: Likewise.
23358         * lib/floor.c: Likewise.
23359         * lib/floorf.c: Likewise.
23360         * lib/floorl.c: Likewise.
23361         * lib/fopen-safer.c: Likewise.
23362         * lib/fopen.c: Likewise.
23363         * lib/fpending.c: Likewise.
23364         * lib/fpending.h: Likewise.
23365         * lib/fprintf.c: Likewise.
23366         * lib/fprintftime.h: Likewise.
23367         * lib/fpucw.h: Likewise.
23368         * lib/fpurge.c: Likewise.
23369         * lib/fpurge.h: Likewise.
23370         * lib/freadable.c: Likewise.
23371         * lib/freadable.h: Likewise.
23372         * lib/freadahead.c: Likewise.
23373         * lib/freadahead.h: Likewise.
23374         * lib/freading.c: Likewise.
23375         * lib/freading.h: Likewise.
23376         * lib/free.c: Likewise.
23377         * lib/freopen.c: Likewise.
23378         * lib/frexp.c: Likewise.
23379         * lib/frexpl.c: Likewise.
23380         * lib/fseek.c: Likewise.
23381         * lib/fseterr.c: Likewise.
23382         * lib/fseterr.h: Likewise.
23383         * lib/fstatat.c: Likewise.
23384         * lib/fstrcmp.c: Likewise.
23385         * lib/fstrcmp.h: Likewise.
23386         * lib/fsusage.c: Likewise.
23387         * lib/fsusage.h: Likewise.
23388         * lib/ftell.c: Likewise.
23389         * lib/ftello.c: Likewise.
23390         * lib/fts-cycle.c: Likewise.
23391         * lib/fts.c: Likewise.
23392         * lib/fts_.h: Likewise.
23393         * lib/full-read.c: Likewise.
23394         * lib/full-read.h: Likewise.
23395         * lib/full-write.c: Likewise.
23396         * lib/full-write.h: Likewise.
23397         * lib/fwritable.c: Likewise.
23398         * lib/fwritable.h: Likewise.
23399         * lib/fwriteerror.c: Likewise.
23400         * lib/fwriteerror.h: Likewise.
23401         * lib/fwriting.c: Likewise.
23402         * lib/fwriting.h: Likewise.
23403         * lib/gcd.c: Likewise.
23404         * lib/gcd.h: Likewise.
23405         * lib/getcwd.c: Likewise.
23406         * lib/getdate.h: Likewise.
23407         * lib/getdate.y: Likewise.
23408         * lib/getdomainname.c: Likewise.
23409         * lib/getdomainname.h: Likewise.
23410         * lib/getgroups.c: Likewise.
23411         * lib/gethostname.c: Likewise.
23412         * lib/gethrxtime.c: Likewise.
23413         * lib/gethrxtime.h: Likewise.
23414         * lib/getloadavg.c: Likewise.
23415         * lib/getndelim2.c: Likewise.
23416         * lib/getndelim2.h: Likewise.
23417         * lib/getnline.c: Likewise.
23418         * lib/getnline.h: Likewise.
23419         * lib/getopt.c: Likewise.
23420         * lib/getopt.in.h: Likewise.
23421         * lib/getopt1.c: Likewise.
23422         * lib/getopt_int.h: Likewise.
23423         * lib/getpagesize.h: Likewise.
23424         * lib/getsubopt.c: Likewise.
23425         * lib/gettime.c: Likewise.
23426         * lib/getugroups.c: Likewise.
23427         * lib/getugroups.h: Likewise.
23428         * lib/getusershell.c: Likewise.
23429         * lib/gl_anyavltree_list1.h: Likewise.
23430         * lib/gl_anyavltree_list2.h: Likewise.
23431         * lib/gl_anyhash_list1.h: Likewise.
23432         * lib/gl_anyhash_list2.h: Likewise.
23433         * lib/gl_anylinked_list1.h: Likewise.
23434         * lib/gl_anylinked_list2.h: Likewise.
23435         * lib/gl_anyrbtree_list1.h: Likewise.
23436         * lib/gl_anyrbtree_list2.h: Likewise.
23437         * lib/gl_anytree_list1.h: Likewise.
23438         * lib/gl_anytree_list2.h: Likewise.
23439         * lib/gl_anytree_oset.h: Likewise.
23440         * lib/gl_anytreehash_list1.h: Likewise.
23441         * lib/gl_anytreehash_list2.h: Likewise.
23442         * lib/gl_array_list.c: Likewise.
23443         * lib/gl_array_list.h: Likewise.
23444         * lib/gl_array_oset.c: Likewise.
23445         * lib/gl_array_oset.h: Likewise.
23446         * lib/gl_avltree_list.c: Likewise.
23447         * lib/gl_avltree_list.h: Likewise.
23448         * lib/gl_avltree_oset.c: Likewise.
23449         * lib/gl_avltree_oset.h: Likewise.
23450         * lib/gl_avltreehash_list.c: Likewise.
23451         * lib/gl_avltreehash_list.h: Likewise.
23452         * lib/gl_carray_list.c: Likewise.
23453         * lib/gl_carray_list.h: Likewise.
23454         * lib/gl_linked_list.c: Likewise.
23455         * lib/gl_linked_list.h: Likewise.
23456         * lib/gl_linkedhash_list.c: Likewise.
23457         * lib/gl_linkedhash_list.h: Likewise.
23458         * lib/gl_list.c: Likewise.
23459         * lib/gl_list.h: Likewise.
23460         * lib/gl_oset.c: Likewise.
23461         * lib/gl_oset.h: Likewise.
23462         * lib/gl_rbtree_list.c: Likewise.
23463         * lib/gl_rbtree_list.h: Likewise.
23464         * lib/gl_rbtree_oset.c: Likewise.
23465         * lib/gl_rbtree_oset.h: Likewise.
23466         * lib/gl_rbtreehash_list.c: Likewise.
23467         * lib/gl_rbtreehash_list.h: Likewise.
23468         * lib/gl_sublist.c: Likewise.
23469         * lib/gl_sublist.h: Likewise.
23470         * lib/group-member.c: Likewise.
23471         * lib/group-member.h: Likewise.
23472         * lib/hard-locale.c: Likewise.
23473         * lib/hard-locale.h: Likewise.
23474         * lib/hash-pjw.c: Likewise.
23475         * lib/hash-pjw.h: Likewise.
23476         * lib/hash-triple.c: Likewise.
23477         * lib/hash.c: Likewise.
23478         * lib/hash.h: Likewise.
23479         * lib/human.c: Likewise.
23480         * lib/human.h: Likewise.
23481         * lib/i-ring.c: Likewise.
23482         * lib/i-ring.h: Likewise.
23483         * lib/idcache.c: Likewise.
23484         * lib/imaxabs.c: Likewise.
23485         * lib/imaxdiv.c: Likewise.
23486         * lib/inet_pton.c: Likewise.
23487         * lib/inet_pton.h: Likewise.
23488         * lib/intprops.h: Likewise.
23489         * lib/inttostr.c: Likewise.
23490         * lib/inttostr.h: Likewise.
23491         * lib/inttypes.in.h: Likewise.
23492         * lib/isapipe.c: Likewise.
23493         * lib/isdir.c: Likewise.
23494         * lib/isnan.c: Likewise.
23495         * lib/isnan.h: Likewise.
23496         * lib/isnanf.c: Likewise.
23497         * lib/isnanf.h: Likewise.
23498         * lib/isnanl-nolibm.h: Likewise.
23499         * lib/isnanl.c: Likewise.
23500         * lib/isnanl.h: Likewise.
23501         * lib/javacomp.c: Likewise.
23502         * lib/javacomp.h: Likewise.
23503         * lib/javaexec.c: Likewise.
23504         * lib/javaexec.h: Likewise.
23505         * lib/javaversion.c: Likewise.
23506         * lib/javaversion.h: Likewise.
23507         * lib/javaversion.java: Likewise.
23508         * lib/lbrkprop.h: Likewise.
23509         * lib/lchmod.h: Likewise.
23510         * lib/lchown.c: Likewise.
23511         * lib/ldexpl.c: Likewise.
23512         * lib/linebreak.c: Likewise.
23513         * lib/linebreak.h: Likewise.
23514         * lib/linebuffer.c: Likewise.
23515         * lib/linebuffer.h: Likewise.
23516         * lib/locale.in.h: Likewise.
23517         * lib/logl.c: Likewise.
23518         * lib/long-options.c: Likewise.
23519         * lib/long-options.h: Likewise.
23520         * lib/lstat.c: Likewise.
23521         * lib/lstat.h: Likewise.
23522         * lib/math.in.h: Likewise.
23523         * lib/mbchar.c: Likewise.
23524         * lib/mbchar.h: Likewise.
23525         * lib/mbfile.h: Likewise.
23526         * lib/mbiter.h: Likewise.
23527         * lib/mbscasecmp.c: Likewise.
23528         * lib/mbscasestr.c: Likewise.
23529         * lib/mbschr.c: Likewise.
23530         * lib/mbscspn.c: Likewise.
23531         * lib/mbslen.c: Likewise.
23532         * lib/mbsncasecmp.c: Likewise.
23533         * lib/mbsnlen.c: Likewise.
23534         * lib/mbspbrk.c: Likewise.
23535         * lib/mbspcasecmp.c: Likewise.
23536         * lib/mbsrchr.c: Likewise.
23537         * lib/mbssep.c: Likewise.
23538         * lib/mbsspn.c: Likewise.
23539         * lib/mbsstr.c: Likewise.
23540         * lib/mbstok_r.c: Likewise.
23541         * lib/mbswidth.c: Likewise.
23542         * lib/mbswidth.h: Likewise.
23543         * lib/mbuiter.h: Likewise.
23544         * lib/memcasecmp.c: Likewise.
23545         * lib/memcasecmp.h: Likewise.
23546         * lib/memchr.c: Likewise.
23547         * lib/memcmp.c: Likewise.
23548         * lib/memcoll.c: Likewise.
23549         * lib/memcoll.h: Likewise.
23550         * lib/memcpy.c: Likewise.
23551         * lib/memrchr.c: Likewise.
23552         * lib/mkancesdirs.c: Likewise.
23553         * lib/mkdir-p.c: Likewise.
23554         * lib/mkdir-p.h: Likewise.
23555         * lib/mkdir.c: Likewise.
23556         * lib/mkdirat.c: Likewise.
23557         * lib/mkdtemp.c: Likewise.
23558         * lib/mkstemp-safer.c: Likewise.
23559         * lib/mkstemp.c: Likewise.
23560         * lib/modechange.c: Likewise.
23561         * lib/modechange.h: Likewise.
23562         * lib/mountlist.c: Likewise.
23563         * lib/mountlist.h: Likewise.
23564         * lib/mpsort.c: Likewise.
23565         * lib/nanosleep.c: Likewise.
23566         * lib/obstack.c: Likewise.
23567         * lib/obstack.h: Likewise.
23568         * lib/open-safer.c: Likewise.
23569         * lib/open.c: Likewise.
23570         * lib/openat-die.c: Likewise.
23571         * lib/openat-priv.h: Likewise.
23572         * lib/openat-proc.c: Likewise.
23573         * lib/openat.c: Likewise.
23574         * lib/openat.h: Likewise.
23575         * lib/pagealign_alloc.c: Likewise.
23576         * lib/pagealign_alloc.h: Likewise.
23577         * lib/physmem.c: Likewise.
23578         * lib/physmem.h: Likewise.
23579         * lib/pipe-safer.c: Likewise.
23580         * lib/pipe.c: Likewise.
23581         * lib/pipe.h: Likewise.
23582         * lib/posixtm.c: Likewise.
23583         * lib/posixtm.h: Likewise.
23584         * lib/posixver.c: Likewise.
23585         * lib/printf-frexp.c: Likewise.
23586         * lib/printf-frexp.h: Likewise.
23587         * lib/printf-frexpl.c: Likewise.
23588         * lib/printf-frexpl.h: Likewise.
23589         * lib/printf.c: Likewise.
23590         * lib/progname.c: Likewise.
23591         * lib/progname.h: Likewise.
23592         * lib/progreloc.c: Likewise.
23593         * lib/putenv.c: Likewise.
23594         * lib/quote.c: Likewise.
23595         * lib/quote.h: Likewise.
23596         * lib/quotearg.c: Likewise.
23597         * lib/quotearg.h: Likewise.
23598         * lib/raise.c: Likewise.
23599         * lib/readline.c: Likewise.
23600         * lib/readline.h: Likewise.
23601         * lib/readlink.c: Likewise.
23602         * lib/readtokens.c: Likewise.
23603         * lib/readtokens.h: Likewise.
23604         * lib/readtokens0.c: Likewise.
23605         * lib/readtokens0.h: Likewise.
23606         * lib/readutmp.c: Likewise.
23607         * lib/readutmp.h: Likewise.
23608         * lib/realloc.c: Likewise.
23609         * lib/relocwrapper.c: Likewise.
23610         * lib/rename-dest-slash.c: Likewise.
23611         * lib/rename.c: Likewise.
23612         * lib/rmdir.c: Likewise.
23613         * lib/rpmatch.c: Likewise.
23614         * lib/safe-read.c: Likewise.
23615         * lib/safe-read.h: Likewise.
23616         * lib/safe-write.c: Likewise.
23617         * lib/safe-write.h: Likewise.
23618         * lib/same-inode.h: Likewise.
23619         * lib/same.c: Likewise.
23620         * lib/same.h: Likewise.
23621         * lib/save-cwd.c: Likewise.
23622         * lib/save-cwd.h: Likewise.
23623         * lib/savedir.c: Likewise.
23624         * lib/savedir.h: Likewise.
23625         * lib/savewd.c: Likewise.
23626         * lib/savewd.h: Likewise.
23627         * lib/search.in.h: Likewise.
23628         * lib/setenv.c: Likewise.
23629         * lib/setenv.h: Likewise.
23630         * lib/settime.c: Likewise.
23631         * lib/sh-quote.c: Likewise.
23632         * lib/sh-quote.h: Likewise.
23633         * lib/sig2str.c: Likewise.
23634         * lib/sig2str.h: Likewise.
23635         * lib/signal.in.h: Likewise.
23636         * lib/signbitd.c: Likewise.
23637         * lib/signbitf.c: Likewise.
23638         * lib/signbitl.c: Likewise.
23639         * lib/sigprocmask.c: Likewise.
23640         * lib/sincosl.c: Likewise.
23641         * lib/sleep.c: Likewise.
23642         * lib/sprintf.c: Likewise.
23643         * lib/sqrtl.c: Likewise.
23644         * lib/stat-time.h: Likewise.
23645         * lib/stdio--.h: Likewise.
23646         * lib/stdio-safer.h: Likewise.
23647         * lib/stdlib--.h: Likewise.
23648         * lib/stdlib-safer.h: Likewise.
23649         * lib/stdlib.in.h: Likewise.
23650         * lib/stpcpy.c: Likewise.
23651         * lib/stpncpy.c: Likewise.
23652         * lib/strchrnul.c: Likewise.
23653         * lib/strcspn.c: Likewise.
23654         * lib/strerror.c: Likewise.
23655         * lib/strftime.c: Likewise.
23656         * lib/strftime.h: Likewise.
23657         * lib/striconveh.c: Likewise.
23658         * lib/striconveh.h: Likewise.
23659         * lib/striconveha.c: Likewise.
23660         * lib/striconveha.h: Likewise.
23661         * lib/stripslash.c: Likewise.
23662         * lib/strnlen1.c: Likewise.
23663         * lib/strnlen1.h: Likewise.
23664         * lib/strtod.c: Likewise.
23665         * lib/strtoimax.c: Likewise.
23666         * lib/strtok_r.c: Likewise.
23667         * lib/strtol.c: Likewise.
23668         * lib/strtoll.c: Likewise.
23669         * lib/strtoul.c: Likewise.
23670         * lib/strtoull.c: Likewise.
23671         * lib/sysexits.in.h: Likewise.
23672         * lib/tempname.c: Likewise.
23673         * lib/tempname.h: Likewise.
23674         * lib/timespec.h: Likewise.
23675         * lib/tls.c: Likewise.
23676         * lib/tls.h: Likewise.
23677         * lib/tmpdir.c: Likewise.
23678         * lib/tmpdir.h: Likewise.
23679         * lib/tmpfile-safer.c: Likewise.
23680         * lib/tmpfile.c: Likewise.
23681         * lib/trigl.c: Likewise.
23682         * lib/trigl.h: Likewise.
23683         * lib/trim.c: Likewise.
23684         * lib/trim.h: Likewise.
23685         * lib/trunc.c: Likewise.
23686         * lib/truncf.c: Likewise.
23687         * lib/truncl.c: Likewise.
23688         * lib/tsearch.c: Likewise.
23689         * lib/unicodeio.c: Likewise.
23690         * lib/unicodeio.h: Likewise.
23691         * lib/unistd--.h: Likewise.
23692         * lib/unistd-safer.h: Likewise.
23693         * lib/unistdio/ulc-fprintf.c: Likewise.
23694         * lib/unistdio/ulc-vfprintf.c: Likewise.
23695         * lib/unlinkdir.c: Likewise.
23696         * lib/unlinkdir.h: Likewise.
23697         * lib/unlocked-io.h: Likewise.
23698         * lib/unsetenv.c: Likewise.
23699         * lib/userspec.c: Likewise.
23700         * lib/utime.c: Likewise.
23701         * lib/utimecmp.c: Likewise.
23702         * lib/utimecmp.h: Likewise.
23703         * lib/utimens.c: Likewise.
23704         * lib/verify.h: Likewise.
23705         * lib/verror.c: Likewise.
23706         * lib/verror.h: Likewise.
23707         * lib/version-etc-fsf.c: Likewise.
23708         * lib/version-etc.c: Likewise.
23709         * lib/version-etc.h: Likewise.
23710         * lib/vfprintf.c: Likewise.
23711         * lib/vprintf.c: Likewise.
23712         * lib/vsprintf.c: Likewise.
23713         * lib/w32spawn.h: Likewise.
23714         * lib/wait-process.c: Likewise.
23715         * lib/wait-process.h: Likewise.
23716         * lib/wcwidth.c: Likewise.
23717         * lib/write-any-file.c: Likewise.
23718         * lib/xalloc-die.c: Likewise.
23719         * lib/xalloc.h: Likewise.
23720         * lib/xasprintf.c: Likewise.
23721         * lib/xgetcwd.c: Likewise.
23722         * lib/xgetcwd.h: Likewise.
23723         * lib/xgetdomainname.c: Likewise.
23724         * lib/xgetdomainname.h: Likewise.
23725         * lib/xgethostname.c: Likewise.
23726         * lib/xmalloc.c: Likewise.
23727         * lib/xmalloca.c: Likewise.
23728         * lib/xmalloca.h: Likewise.
23729         * lib/xmemcoll.c: Likewise.
23730         * lib/xnanosleep.c: Likewise.
23731         * lib/xreadlink.c: Likewise.
23732         * lib/xreadlink.h: Likewise.
23733         * lib/xsetenv.c: Likewise.
23734         * lib/xsetenv.h: Likewise.
23735         * lib/xstriconv.c: Likewise.
23736         * lib/xstriconv.h: Likewise.
23737         * lib/xstrndup.c: Likewise.
23738         * lib/xstrndup.h: Likewise.
23739         * lib/xstrtod.c: Likewise.
23740         * lib/xstrtod.h: Likewise.
23741         * lib/xstrtol-error.c: Likewise.
23742         * lib/xstrtol.c: Likewise.
23743         * lib/xstrtol.h: Likewise.
23744         * lib/xtime.h: Likewise.
23745         * lib/xvasprintf.c: Likewise.
23746         * lib/xvasprintf.h: Likewise.
23747         * lib/yesno.c: Likewise.
23748         * lib/yesno.h: Likewise.
23749         * posix-modules: Likewise.
23750         * tests/test-alloca-opt.c: Likewise.
23751         * tests/test-arcfour.c: Likewise.
23752         * tests/test-arctwo.c: Likewise.
23753         * tests/test-argmatch.c: Likewise.
23754         * tests/test-argp-2.sh: Likewise.
23755         * tests/test-argp.c: Likewise.
23756         * tests/test-arpa_inet.c: Likewise.
23757         * tests/test-array_list.c: Likewise.
23758         * tests/test-array_oset.c: Likewise.
23759         * tests/test-atexit.c: Likewise.
23760         * tests/test-avltree_list.c: Likewise.
23761         * tests/test-avltree_oset.c: Likewise.
23762         * tests/test-avltreehash_list.c: Likewise.
23763         * tests/test-base64.c: Likewise.
23764         * tests/test-binary-io.c: Likewise.
23765         * tests/test-byteswap.c: Likewise.
23766         * tests/test-c-ctype.c: Likewise.
23767         * tests/test-c-strcasecmp.c: Likewise.
23768         * tests/test-c-strcasestr.c: Likewise.
23769         * tests/test-c-strncasecmp.c: Likewise.
23770         * tests/test-c-strstr.c: Likewise.
23771         * tests/test-canonicalize-lgpl.c: Likewise.
23772         * tests/test-canonicalize.c: Likewise.
23773         * tests/test-carray_list.c: Likewise.
23774         * tests/test-ceilf.c: Likewise.
23775         * tests/test-ceill.c: Likewise.
23776         * tests/test-count-one-bits.c: Likewise.
23777         * tests/test-crc.c: Likewise.
23778         * tests/test-dirname.c: Likewise.
23779         * tests/test-fbufmode.c: Likewise.
23780         * tests/test-fcntl.c: Likewise.
23781         * tests/test-fflush.c: Likewise.
23782         * tests/test-floorf.c: Likewise.
23783         * tests/test-floorl.c: Likewise.
23784         * tests/test-fopen.c: Likewise.
23785         * tests/test-fprintf-posix.c: Likewise.
23786         * tests/test-fprintf-posix.h: Likewise.
23787         * tests/test-fpurge.c: Likewise.
23788         * tests/test-freadable.c: Likewise.
23789         * tests/test-freadahead.c: Likewise.
23790         * tests/test-freading.c: Likewise.
23791         * tests/test-freopen.c: Likewise.
23792         * tests/test-frexp.c: Likewise.
23793         * tests/test-frexpl.c: Likewise.
23794         * tests/test-fseek.c: Likewise.
23795         * tests/test-fseeko.c: Likewise.
23796         * tests/test-fseterr.c: Likewise.
23797         * tests/test-fstrcmp.c: Likewise.
23798         * tests/test-ftell.c: Likewise.
23799         * tests/test-ftello.c: Likewise.
23800         * tests/test-fwritable.c: Likewise.
23801         * tests/test-fwriting.c: Likewise.
23802         * tests/test-getaddrinfo.c: Likewise.
23803         * tests/test-getpass.c: Likewise.
23804         * tests/test-gettimeofday.c: Likewise.
23805         * tests/test-hmac-md5.c: Likewise.
23806         * tests/test-hmac-sha1.c: Likewise.
23807         * tests/test-iconv.c: Likewise.
23808         * tests/test-iconvme.c: Likewise.
23809         * tests/test-inttypes.c: Likewise.
23810         * tests/test-isnan.c: Likewise.
23811         * tests/test-isnanf.c: Likewise.
23812         * tests/test-isnanl-nolibm.c: Likewise.
23813         * tests/test-isnanl.c: Likewise.
23814         * tests/test-isnanl.h: Likewise.
23815         * tests/test-ldexpl.c: Likewise.
23816         * tests/test-linked_list.c: Likewise.
23817         * tests/test-linkedhash_list.c: Likewise.
23818         * tests/test-locale.c: Likewise.
23819         * tests/test-localename.c: Likewise.
23820         * tests/test-lock.c: Likewise.
23821         * tests/test-lseek.c: Likewise.
23822         * tests/test-malloca.c: Likewise.
23823         * tests/test-math.c: Likewise.
23824         * tests/test-mbscasecmp.c: Likewise.
23825         * tests/test-mbscasestr1.c: Likewise.
23826         * tests/test-mbscasestr2.c: Likewise.
23827         * tests/test-mbscasestr3.c: Likewise.
23828         * tests/test-mbscasestr4.c: Likewise.
23829         * tests/test-mbschr.c: Likewise.
23830         * tests/test-mbscspn.c: Likewise.
23831         * tests/test-mbsncasecmp.c: Likewise.
23832         * tests/test-mbspbrk.c: Likewise.
23833         * tests/test-mbspcasecmp.c: Likewise.
23834         * tests/test-mbsrchr.c: Likewise.
23835         * tests/test-mbsspn.c: Likewise.
23836         * tests/test-mbsstr1.c: Likewise.
23837         * tests/test-mbsstr2.c: Likewise.
23838         * tests/test-mbsstr3.c: Likewise.
23839         * tests/test-md5.c: Likewise.
23840         * tests/test-memmem.c: Likewise.
23841         * tests/test-netinet_in.c: Likewise.
23842         * tests/test-open.c: Likewise.
23843         * tests/test-printf-frexp.c: Likewise.
23844         * tests/test-printf-frexpl.c: Likewise.
23845         * tests/test-printf-posix.c: Likewise.
23846         * tests/test-printf-posix.h: Likewise.
23847         * tests/test-rbtree_list.c: Likewise.
23848         * tests/test-rbtree_oset.c: Likewise.
23849         * tests/test-rbtreehash_list.c: Likewise.
23850         * tests/test-read-file.c: Likewise.
23851         * tests/test-rijndael.c: Likewise.
23852         * tests/test-search.c: Likewise.
23853         * tests/test-signbit.c: Likewise.
23854         * tests/test-sleep.c: Likewise.
23855         * tests/test-snprintf-posix.c: Likewise.
23856         * tests/test-snprintf-posix.h: Likewise.
23857         * tests/test-snprintf.c: Likewise.
23858         * tests/test-sprintf-posix.c: Likewise.
23859         * tests/test-sprintf-posix.h: Likewise.
23860         * tests/test-stat-time.c: Likewise.
23861         * tests/test-stdbool.c: Likewise.
23862         * tests/test-stdint.c: Likewise.
23863         * tests/test-stdio.c: Likewise.
23864         * tests/test-stdlib.c: Likewise.
23865         * tests/test-stpncpy.c: Likewise.
23866         * tests/test-strcasestr.c: Likewise.
23867         * tests/test-striconv.c: Likewise.
23868         * tests/test-striconveh.c: Likewise.
23869         * tests/test-striconveha.c: Likewise.
23870         * tests/test-string.c: Likewise.
23871         * tests/test-sys_select.c: Likewise.
23872         * tests/test-sys_socket.c: Likewise.
23873         * tests/test-sys_stat.c: Likewise.
23874         * tests/test-sys_time.c: Likewise.
23875         * tests/test-sysexits.c: Likewise.
23876         * tests/test-time.c: Likewise.
23877         * tests/test-tls.c: Likewise.
23878         * tests/test-trunc.c: Likewise.
23879         * tests/test-truncf.c: Likewise.
23880         * tests/test-truncl.c: Likewise.
23881         * tests/test-unistd.c: Likewise.
23882         * tests/test-vasnprintf-posix.c: Likewise.
23883         * tests/test-vasnprintf-posix2.c: Likewise.
23884         * tests/test-vasnprintf.c: Likewise.
23885         * tests/test-vasprintf-posix.c: Likewise.
23886         * tests/test-vasprintf.c: Likewise.
23887         * tests/test-verify.c: Likewise.
23888         * tests/test-vfprintf-posix.c: Likewise.
23889         * tests/test-vprintf-posix.c: Likewise.
23890         * tests/test-vsnprintf-posix.c: Likewise.
23891         * tests/test-vsnprintf.c: Likewise.
23892         * tests/test-vsprintf-posix.c: Likewise.
23893         * tests/test-wchar.c: Likewise.
23894         * tests/test-wctype.c: Likewise.
23895         * tests/test-wcwidth.c: Likewise.
23896         * tests/test-xstrtol.c: Likewise.
23897         * tests/test-xvasprintf.c: Likewise.
23898         * tests/uniconv/test-u16-conv-from-enc.c: Likewise.
23899         * tests/uniconv/test-u16-conv-to-enc.c: Likewise.
23900         * tests/uniconv/test-u16-strconv-from-enc.c: Likewise.
23901         * tests/uniconv/test-u16-strconv-to-enc.c: Likewise.
23902         * tests/uniconv/test-u32-conv-from-enc.c: Likewise.
23903         * tests/uniconv/test-u32-conv-to-enc.c: Likewise.
23904         * tests/uniconv/test-u32-strconv-from-enc.c: Likewise.
23905         * tests/uniconv/test-u32-strconv-to-enc.c: Likewise.
23906         * tests/uniconv/test-u8-conv-from-enc.c: Likewise.
23907         * tests/uniconv/test-u8-conv-to-enc.c: Likewise.
23908         * tests/uniconv/test-u8-strconv-from-enc.c: Likewise.
23909         * tests/uniconv/test-u8-strconv-to-enc.c: Likewise.
23910         * tests/uniname/test-uninames.c: Likewise.
23911         * tests/unistdio/test-u16-asnprintf1.c: Likewise.
23912         * tests/unistdio/test-u16-asnprintf1.h: Likewise.
23913         * tests/unistdio/test-u16-printf1.h: Likewise.
23914         * tests/unistdio/test-u16-vasnprintf1.c: Likewise.
23915         * tests/unistdio/test-u16-vasnprintf2.c: Likewise.
23916         * tests/unistdio/test-u16-vasnprintf3.c: Likewise.
23917         * tests/unistdio/test-u16-vasprintf1.c: Likewise.
23918         * tests/unistdio/test-u16-vsnprintf1.c: Likewise.
23919         * tests/unistdio/test-u16-vsprintf1.c: Likewise.
23920         * tests/unistdio/test-u32-asnprintf1.c: Likewise.
23921         * tests/unistdio/test-u32-asnprintf1.h: Likewise.
23922         * tests/unistdio/test-u32-printf1.h: Likewise.
23923         * tests/unistdio/test-u32-vasnprintf1.c: Likewise.
23924         * tests/unistdio/test-u32-vasnprintf2.c: Likewise.
23925         * tests/unistdio/test-u32-vasnprintf3.c: Likewise.
23926         * tests/unistdio/test-u32-vasprintf1.c: Likewise.
23927         * tests/unistdio/test-u32-vsnprintf1.c: Likewise.
23928         * tests/unistdio/test-u32-vsprintf1.c: Likewise.
23929         * tests/unistdio/test-u8-asnprintf1.c: Likewise.
23930         * tests/unistdio/test-u8-asnprintf1.h: Likewise.
23931         * tests/unistdio/test-u8-printf1.h: Likewise.
23932         * tests/unistdio/test-u8-vasnprintf1.c: Likewise.
23933         * tests/unistdio/test-u8-vasnprintf2.c: Likewise.
23934         * tests/unistdio/test-u8-vasnprintf3.c: Likewise.
23935         * tests/unistdio/test-u8-vasprintf1.c: Likewise.
23936         * tests/unistdio/test-u8-vsnprintf1.c: Likewise.
23937         * tests/unistdio/test-u8-vsprintf1.c: Likewise.
23938         * tests/unistdio/test-ulc-asnprintf1.c: Likewise.
23939         * tests/unistdio/test-ulc-asnprintf1.h: Likewise.
23940         * tests/unistdio/test-ulc-printf1.h: Likewise.
23941         * tests/unistdio/test-ulc-vasnprintf1.c: Likewise.
23942         * tests/unistdio/test-ulc-vasnprintf2.c: Likewise.
23943         * tests/unistdio/test-ulc-vasnprintf3.c: Likewise.
23944         * tests/unistdio/test-ulc-vasprintf1.c: Likewise.
23945         * tests/unistdio/test-ulc-vsnprintf1.c: Likewise.
23946         * tests/unistdio/test-ulc-vsprintf1.c: Likewise.
23947         * tests/uniwidth/test-u16-strwidth.c: Likewise.
23948         * tests/uniwidth/test-u16-width.c: Likewise.
23949         * tests/uniwidth/test-u32-strwidth.c: Likewise.
23950         * tests/uniwidth/test-u32-width.c: Likewise.
23951         * tests/uniwidth/test-u8-strwidth.c: Likewise.
23952         * tests/uniwidth/test-u8-width.c: Likewise.
23953         * tests/uniwidth/test-uc_width.c: Likewise.
23954         * config/srclist-update: Likewise.
23955         (fixlicense): Update to GPLv3+.
23956
23957         Change copyright notice from LGPLv2.1+ to LGPLv3+.
23958         * tests/test-tsearch.c: Change copyright notice.
23959
23960         Change copyright notice from LGPLv2.0+ to LGPLv3+.
23961         * lib/c-strcaseeq.h: Change copyright notice.
23962         * lib/streq.h: Likewise.
23963         * lib/uniconv.h: Likewise.
23964         * lib/uniconv/u-conv-from-enc.h: Likewise.
23965         * lib/uniconv/u-conv-to-enc.h: Likewise.
23966         * lib/uniconv/u-strconv-from-enc.h: Likewise.
23967         * lib/uniconv/u-strconv-to-enc.h: Likewise.
23968         * lib/uniconv/u16-conv-from-enc.c: Likewise.
23969         * lib/uniconv/u16-conv-to-enc.c: Likewise.
23970         * lib/uniconv/u16-strconv-from-enc.c: Likewise.
23971         * lib/uniconv/u16-strconv-from-locale.c: Likewise.
23972         * lib/uniconv/u16-strconv-to-enc.c: Likewise.
23973         * lib/uniconv/u16-strconv-to-locale.c: Likewise.
23974         * lib/uniconv/u32-conv-from-enc.c: Likewise.
23975         * lib/uniconv/u32-conv-to-enc.c: Likewise.
23976         * lib/uniconv/u32-strconv-from-enc.c: Likewise.
23977         * lib/uniconv/u32-strconv-from-locale.c: Likewise.
23978         * lib/uniconv/u32-strconv-to-enc.c: Likewise.
23979         * lib/uniconv/u32-strconv-to-locale.c: Likewise.
23980         * lib/uniconv/u8-conv-from-enc.c: Likewise.
23981         * lib/uniconv/u8-conv-to-enc.c: Likewise.
23982         * lib/uniconv/u8-strconv-from-enc.c: Likewise.
23983         * lib/uniconv/u8-strconv-from-locale.c: Likewise.
23984         * lib/uniconv/u8-strconv-to-enc.c: Likewise.
23985         * lib/uniconv/u8-strconv-to-locale.c: Likewise.
23986         * lib/uniname.h: Likewise.
23987         * lib/uniname/uniname.c: Likewise.
23988         * lib/unistdio.h: Likewise.
23989         * lib/unistdio/u-asnprintf.h: Likewise.
23990         * lib/unistdio/u-asprintf.h: Likewise.
23991         * lib/unistdio/u-printf-args.c: Likewise.
23992         * lib/unistdio/u-printf-args.h: Likewise.
23993         * lib/unistdio/u-printf-parse.h: Likewise.
23994         * lib/unistdio/u-snprintf.h: Likewise.
23995         * lib/unistdio/u-sprintf.h: Likewise.
23996         * lib/unistdio/u-vasprintf.h: Likewise.
23997         * lib/unistdio/u-vsnprintf.h: Likewise.
23998         * lib/unistdio/u-vsprintf.h: Likewise.
23999         * lib/unistdio/u16-asnprintf.c: Likewise.
24000         * lib/unistdio/u16-asprintf.c: Likewise.
24001         * lib/unistdio/u16-printf-parse.c: Likewise.
24002         * lib/unistdio/u16-snprintf.c: Likewise.
24003         * lib/unistdio/u16-sprintf.c: Likewise.
24004         * lib/unistdio/u16-u16-asnprintf.c: Likewise.
24005         * lib/unistdio/u16-u16-asprintf.c: Likewise.
24006         * lib/unistdio/u16-u16-snprintf.c: Likewise.
24007         * lib/unistdio/u16-u16-sprintf.c: Likewise.
24008         * lib/unistdio/u16-u16-vasnprintf.c: Likewise.
24009         * lib/unistdio/u16-u16-vasprintf.c: Likewise.
24010         * lib/unistdio/u16-u16-vsnprintf.c: Likewise.
24011         * lib/unistdio/u16-u16-vsprintf.c: Likewise.
24012         * lib/unistdio/u16-vasnprintf.c: Likewise.
24013         * lib/unistdio/u16-vasprintf.c: Likewise.
24014         * lib/unistdio/u16-vsnprintf.c: Likewise.
24015         * lib/unistdio/u16-vsprintf.c: Likewise.
24016         * lib/unistdio/u32-asnprintf.c: Likewise.
24017         * lib/unistdio/u32-asprintf.c: Likewise.
24018         * lib/unistdio/u32-printf-parse.c: Likewise.
24019         * lib/unistdio/u32-snprintf.c: Likewise.
24020         * lib/unistdio/u32-sprintf.c: Likewise.
24021         * lib/unistdio/u32-u32-asnprintf.c: Likewise.
24022         * lib/unistdio/u32-u32-asprintf.c: Likewise.
24023         * lib/unistdio/u32-u32-snprintf.c: Likewise.
24024         * lib/unistdio/u32-u32-sprintf.c: Likewise.
24025         * lib/unistdio/u32-u32-vasnprintf.c: Likewise.
24026         * lib/unistdio/u32-u32-vasprintf.c: Likewise.
24027         * lib/unistdio/u32-u32-vsnprintf.c: Likewise.
24028         * lib/unistdio/u32-u32-vsprintf.c: Likewise.
24029         * lib/unistdio/u32-vasnprintf.c: Likewise.
24030         * lib/unistdio/u32-vasprintf.c: Likewise.
24031         * lib/unistdio/u32-vsnprintf.c: Likewise.
24032         * lib/unistdio/u32-vsprintf.c: Likewise.
24033         * lib/unistdio/u8-asnprintf.c: Likewise.
24034         * lib/unistdio/u8-asprintf.c: Likewise.
24035         * lib/unistdio/u8-printf-parse.c: Likewise.
24036         * lib/unistdio/u8-snprintf.c: Likewise.
24037         * lib/unistdio/u8-sprintf.c: Likewise.
24038         * lib/unistdio/u8-u8-asnprintf.c: Likewise.
24039         * lib/unistdio/u8-u8-asprintf.c: Likewise.
24040         * lib/unistdio/u8-u8-snprintf.c: Likewise.
24041         * lib/unistdio/u8-u8-sprintf.c: Likewise.
24042         * lib/unistdio/u8-u8-vasnprintf.c: Likewise.
24043         * lib/unistdio/u8-u8-vasprintf.c: Likewise.
24044         * lib/unistdio/u8-u8-vsnprintf.c: Likewise.
24045         * lib/unistdio/u8-u8-vsprintf.c: Likewise.
24046         * lib/unistdio/u8-vasnprintf.c: Likewise.
24047         * lib/unistdio/u8-vasprintf.c: Likewise.
24048         * lib/unistdio/u8-vsnprintf.c: Likewise.
24049         * lib/unistdio/u8-vsprintf.c: Likewise.
24050         * lib/unistdio/ulc-asnprintf.c: Likewise.
24051         * lib/unistdio/ulc-asprintf.c: Likewise.
24052         * lib/unistdio/ulc-printf-parse.c: Likewise.
24053         * lib/unistdio/ulc-snprintf.c: Likewise.
24054         * lib/unistdio/ulc-sprintf.c: Likewise.
24055         * lib/unistdio/ulc-vasnprintf.c: Likewise.
24056         * lib/unistdio/ulc-vasprintf.c: Likewise.
24057         * lib/unistdio/ulc-vsnprintf.c: Likewise.
24058         * lib/unistdio/ulc-vsprintf.c: Likewise.
24059         * lib/unistr.h: Likewise.
24060         * lib/unistr/u-cpy-alloc.h: Likewise.
24061         * lib/unistr/u-cpy.h: Likewise.
24062         * lib/unistr/u-endswith.h: Likewise.
24063         * lib/unistr/u-move.h: Likewise.
24064         * lib/unistr/u-set.h: Likewise.
24065         * lib/unistr/u-startswith.h: Likewise.
24066         * lib/unistr/u-stpcpy.h: Likewise.
24067         * lib/unistr/u-stpncpy.h: Likewise.
24068         * lib/unistr/u-strcat.h: Likewise.
24069         * lib/unistr/u-strcpy.h: Likewise.
24070         * lib/unistr/u-strcspn.h: Likewise.
24071         * lib/unistr/u-strdup.h: Likewise.
24072         * lib/unistr/u-strlen.h: Likewise.
24073         * lib/unistr/u-strncat.h: Likewise.
24074         * lib/unistr/u-strncpy.h: Likewise.
24075         * lib/unistr/u-strnlen.h: Likewise.
24076         * lib/unistr/u-strpbrk.h: Likewise.
24077         * lib/unistr/u-strspn.h: Likewise.
24078         * lib/unistr/u-strstr.h: Likewise.
24079         * lib/unistr/u-strtok.h: Likewise.
24080         * lib/unistr/u16-check.c: Likewise.
24081         * lib/unistr/u16-chr.c: Likewise.
24082         * lib/unistr/u16-cmp.c: Likewise.
24083         * lib/unistr/u16-cpy-alloc.c: Likewise.
24084         * lib/unistr/u16-cpy.c: Likewise.
24085         * lib/unistr/u16-endswith.c: Likewise.
24086         * lib/unistr/u16-mblen.c: Likewise.
24087         * lib/unistr/u16-mbsnlen.c: Likewise.
24088         * lib/unistr/u16-mbtouc-aux.c: Likewise.
24089         * lib/unistr/u16-mbtouc-unsafe-aux.c: Likewise.
24090         * lib/unistr/u16-mbtouc-unsafe.c: Likewise.
24091         * lib/unistr/u16-mbtouc.c: Likewise.
24092         * lib/unistr/u16-mbtoucr.c: Likewise.
24093         * lib/unistr/u16-move.c: Likewise.
24094         * lib/unistr/u16-next.c: Likewise.
24095         * lib/unistr/u16-prev.c: Likewise.
24096         * lib/unistr/u16-set.c: Likewise.
24097         * lib/unistr/u16-startswith.c: Likewise.
24098         * lib/unistr/u16-stpcpy.c: Likewise.
24099         * lib/unistr/u16-stpncpy.c: Likewise.
24100         * lib/unistr/u16-strcat.c: Likewise.
24101         * lib/unistr/u16-strchr.c: Likewise.
24102         * lib/unistr/u16-strcmp.c: Likewise.
24103         * lib/unistr/u16-strcpy.c: Likewise.
24104         * lib/unistr/u16-strcspn.c: Likewise.
24105         * lib/unistr/u16-strdup.c: Likewise.
24106         * lib/unistr/u16-strlen.c: Likewise.
24107         * lib/unistr/u16-strmblen.c: Likewise.
24108         * lib/unistr/u16-strmbtouc.c: Likewise.
24109         * lib/unistr/u16-strncat.c: Likewise.
24110         * lib/unistr/u16-strncmp.c: Likewise.
24111         * lib/unistr/u16-strncpy.c: Likewise.
24112         * lib/unistr/u16-strnlen.c: Likewise.
24113         * lib/unistr/u16-strpbrk.c: Likewise.
24114         * lib/unistr/u16-strrchr.c: Likewise.
24115         * lib/unistr/u16-strspn.c: Likewise.
24116         * lib/unistr/u16-strstr.c: Likewise.
24117         * lib/unistr/u16-strtok.c: Likewise.
24118         * lib/unistr/u16-to-u32.c: Likewise.
24119         * lib/unistr/u16-to-u8.c: Likewise.
24120         * lib/unistr/u16-uctomb-aux.c: Likewise.
24121         * lib/unistr/u16-uctomb.c: Likewise.
24122         * lib/unistr/u32-check.c: Likewise.
24123         * lib/unistr/u32-chr.c: Likewise.
24124         * lib/unistr/u32-cmp.c: Likewise.
24125         * lib/unistr/u32-cpy-alloc.c: Likewise.
24126         * lib/unistr/u32-cpy.c: Likewise.
24127         * lib/unistr/u32-endswith.c: Likewise.
24128         * lib/unistr/u32-mblen.c: Likewise.
24129         * lib/unistr/u32-mbsnlen.c: Likewise.
24130         * lib/unistr/u32-mbtouc-unsafe.c: Likewise.
24131         * lib/unistr/u32-mbtouc.c: Likewise.
24132         * lib/unistr/u32-mbtoucr.c: Likewise.
24133         * lib/unistr/u32-move.c: Likewise.
24134         * lib/unistr/u32-next.c: Likewise.
24135         * lib/unistr/u32-prev.c: Likewise.
24136         * lib/unistr/u32-set.c: Likewise.
24137         * lib/unistr/u32-startswith.c: Likewise.
24138         * lib/unistr/u32-stpcpy.c: Likewise.
24139         * lib/unistr/u32-stpncpy.c: Likewise.
24140         * lib/unistr/u32-strcat.c: Likewise.
24141         * lib/unistr/u32-strchr.c: Likewise.
24142         * lib/unistr/u32-strcmp.c: Likewise.
24143         * lib/unistr/u32-strcpy.c: Likewise.
24144         * lib/unistr/u32-strcspn.c: Likewise.
24145         * lib/unistr/u32-strdup.c: Likewise.
24146         * lib/unistr/u32-strlen.c: Likewise.
24147         * lib/unistr/u32-strmblen.c: Likewise.
24148         * lib/unistr/u32-strmbtouc.c: Likewise.
24149         * lib/unistr/u32-strncat.c: Likewise.
24150         * lib/unistr/u32-strncmp.c: Likewise.
24151         * lib/unistr/u32-strncpy.c: Likewise.
24152         * lib/unistr/u32-strnlen.c: Likewise.
24153         * lib/unistr/u32-strpbrk.c: Likewise.
24154         * lib/unistr/u32-strrchr.c: Likewise.
24155         * lib/unistr/u32-strspn.c: Likewise.
24156         * lib/unistr/u32-strstr.c: Likewise.
24157         * lib/unistr/u32-strtok.c: Likewise.
24158         * lib/unistr/u32-to-u16.c: Likewise.
24159         * lib/unistr/u32-to-u8.c: Likewise.
24160         * lib/unistr/u32-uctomb.c: Likewise.
24161         * lib/unistr/u8-check.c: Likewise.
24162         * lib/unistr/u8-chr.c: Likewise.
24163         * lib/unistr/u8-cmp.c: Likewise.
24164         * lib/unistr/u8-cpy-alloc.c: Likewise.
24165         * lib/unistr/u8-cpy.c: Likewise.
24166         * lib/unistr/u8-endswith.c: Likewise.
24167         * lib/unistr/u8-mblen.c: Likewise.
24168         * lib/unistr/u8-mbsnlen.c: Likewise.
24169         * lib/unistr/u8-mbtouc-aux.c: Likewise.
24170         * lib/unistr/u8-mbtouc-unsafe-aux.c: Likewise.
24171         * lib/unistr/u8-mbtouc-unsafe.c: Likewise.
24172         * lib/unistr/u8-mbtouc.c: Likewise.
24173         * lib/unistr/u8-mbtoucr.c: Likewise.
24174         * lib/unistr/u8-move.c: Likewise.
24175         * lib/unistr/u8-next.c: Likewise.
24176         * lib/unistr/u8-prev.c: Likewise.
24177         * lib/unistr/u8-set.c: Likewise.
24178         * lib/unistr/u8-startswith.c: Likewise.
24179         * lib/unistr/u8-stpcpy.c: Likewise.
24180         * lib/unistr/u8-stpncpy.c: Likewise.
24181         * lib/unistr/u8-strcat.c: Likewise.
24182         * lib/unistr/u8-strchr.c: Likewise.
24183         * lib/unistr/u8-strcmp.c: Likewise.
24184         * lib/unistr/u8-strcpy.c: Likewise.
24185         * lib/unistr/u8-strcspn.c: Likewise.
24186         * lib/unistr/u8-strdup.c: Likewise.
24187         * lib/unistr/u8-strlen.c: Likewise.
24188         * lib/unistr/u8-strmblen.c: Likewise.
24189         * lib/unistr/u8-strmbtouc.c: Likewise.
24190         * lib/unistr/u8-strncat.c: Likewise.
24191         * lib/unistr/u8-strncmp.c: Likewise.
24192         * lib/unistr/u8-strncpy.c: Likewise.
24193         * lib/unistr/u8-strnlen.c: Likewise.
24194         * lib/unistr/u8-strpbrk.c: Likewise.
24195         * lib/unistr/u8-strrchr.c: Likewise.
24196         * lib/unistr/u8-strspn.c: Likewise.
24197         * lib/unistr/u8-strstr.c: Likewise.
24198         * lib/unistr/u8-strtok.c: Likewise.
24199         * lib/unistr/u8-to-u16.c: Likewise.
24200         * lib/unistr/u8-to-u32.c: Likewise.
24201         * lib/unistr/u8-uctomb-aux.c: Likewise.
24202         * lib/unistr/u8-uctomb.c: Likewise.
24203         * lib/unitypes.h: Likewise.
24204         * lib/uniwidth.h: Likewise.
24205         * lib/uniwidth/cjk.h: Likewise.
24206         * lib/uniwidth/u16-strwidth.c: Likewise.
24207         * lib/uniwidth/u16-width.c: Likewise.
24208         * lib/uniwidth/u32-strwidth.c: Likewise.
24209         * lib/uniwidth/u32-width.c: Likewise.
24210         * lib/uniwidth/u8-strwidth.c: Likewise.
24211         * lib/uniwidth/u8-width.c: Likewise.
24212         * lib/uniwidth/width.c: Likewise.
24213
24214 2007-10-07  Bruno Haible  <bruno@clisp.org>
24215
24216         * lib/inttypes.in.h: Change copyright notice from LGPL to GPL.
24217         The file is still under LGPL (see modules/inttypes).
24218
24219 2007-10-06  Bruno Haible  <bruno@clisp.org>
24220
24221         * modules/trunc (Dependencies): Add 'extensions'.
24222         * m4/trunc.m4 (gl_FUNC_TRUNC): Require gl_USE_SYSTEM_EXTENSIONS.
24223         Reported by Ben Pfaff <blp@gnu.org>.
24224
24225 2007-10-06  Bruno Haible  <bruno@clisp.org>
24226
24227         * modules/freopen-tests: New file.
24228         * tests/test-freopen.c: New file.
24229
24230         * modules/fopen-tests: New file.
24231         * tests/test-fopen.c: New file.
24232
24233         * modules/fopen: New file.
24234         * lib/fopen.c: New file.
24235         * m4/fopen.m4: New file.
24236         * modules/freopen: New file.
24237         * lib/freopen.c: New file.
24238         * m4/freopen.m4: New file.
24239         * lib/stdio.in.h (fopen, freopen): New declarations.
24240         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Initialize also GNULIB_FOPEN,
24241         GNULIB_FREOPEN, REPLACE_FOPEN, REPLACE_FREOPEN.
24242         * modules/stdio (Makefile.am): Substitute also GNULIB_FOPEN,
24243         GNULIB_FREOPEN, REPLACE_FOPEN, REPLACE_FREOPEN.
24244         * doc/functions/fopen.texi: Mention the 'fopen' module.
24245         * doc/functions/freopen.texi: Mention the 'freopen' module.
24246
24247 2007-10-06  Bruno Haible  <bruno@clisp.org>
24248
24249         * modules/open-tests: New file.
24250         * tests/test-open.c: New file.
24251
24252         * modules/open: New file.
24253         * lib/open.c: New file.
24254         * m4/open.m4: New file.
24255         * lib/fchdir.c (open): If the gnulib module 'open' is used, do what
24256         lib/open.c does.
24257         * lib/fcntl.in.h (open): Declare also if replaced by the 'open' module.
24258         * m4/fcntl_h.m4 (gl_FCNTL_MODULE_INDICATOR, gl_FCNTL_H_DEFAULTS): New
24259         macros.
24260         (gl_FCNTL_H): Require gl_FCNTL_H_DEFAULTS.
24261         * modules/fcntl (Makefile.am): Also substitute GNULIB_OPEN and
24262         REPLACE_OPEN.
24263         * doc/functions/open.texi: Mention the 'open' module.
24264
24265 2007-10-04  Bruno Haible  <bruno@clisp.org>
24266
24267         * modules/ceill-tests: New file.
24268         * tests/test-ceill.c: New file.
24269
24270         * modules/ceill: New file.
24271         * lib/ceill.c: Replace entire file.
24272         * m4/ceill.m4: New file.
24273         * lib/math.in.h (ceill): Replace declaration.
24274         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_CEILL.
24275         * modules/math (Makefile.am): Substitute also GNULIB_CEILL.
24276         * doc/functions/ceill.texi: Mention the 'ceill' module.
24277         * modules/mathl (Files): Remove lib/ceill.c.
24278         (Depends-on): Add ceill.
24279
24280 2007-10-04  Bruno Haible  <bruno@clisp.org>
24281
24282         * modules/ceilf-tests: New file.
24283         * tests/test-ceilf.c: New file.
24284
24285         * modules/ceilf: New file.
24286         * lib/ceil.c: New file.
24287         * lib/ceilf.c: New file.
24288         * m4/ceilf.m4: New file.
24289         * lib/math.in.h (ceilf): New declaration.
24290         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_CEILF and
24291         HAVE_DECL_CEILF.
24292         * modules/math (Makefile.am): Substitute also GNULIB_CEILF and
24293         HAVE_DECL_CEILF.
24294         * doc/functions/ceilf.texi: Mention the 'ceilf' module.
24295
24296 2007-10-04  Bruno Haible  <bruno@clisp.org>
24297
24298         * modules/floorl-tests: New file.
24299         * tests/test-floorl.c: New file.
24300
24301         * modules/floorl: New file.
24302         * lib/floorl.c: Replace entire file.
24303         * m4/floorl.m4: New file.
24304         * lib/math.in.h (floorl): Replace declaration.
24305         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_FLOORL.
24306         * modules/math (Makefile.am): Substitute also GNULIB_FLOORL.
24307         * doc/functions/floorl.texi: Mention the 'floorl' module.
24308         * modules/mathl (Files): Remove lib/floorl.c.
24309         (Depends-on): Add floorl.
24310
24311 2007-10-04  Bruno Haible  <bruno@clisp.org>
24312
24313         * modules/floorf-tests: New file.
24314         * tests/test-floorf.c: New file.
24315
24316         * modules/floorf: New file.
24317         * lib/floor.c: New file.
24318         * lib/floorf.c: New file.
24319         * m4/floorf.m4: New file.
24320         * lib/math.in.h (floorf): New declaration.
24321         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_FLOORF and
24322         HAVE_DECL_FLOORF.
24323         * modules/math (Makefile.am): Substitute also GNULIB_FLOORF and
24324         HAVE_DECL_FLOORF.
24325         * doc/functions/floorf.texi: Mention the 'floorf' module.
24326
24327 2007-10-04  Benoit Sigoure  <tsuna@lrde.epita.fr>
24328             Bruno Haible  <bruno@clisp.org>
24329
24330         Advertise for the Git server instead of the CVS server.
24331         * doc/gnulib-intro.texi (Steady Development): Mention the Git
24332         repository instead of the CVS one.
24333         * doc/gnulib-tool.texi (VCS Issues): Renamed from "CVS Issues". Talk
24334         about all VCS systems generically.
24335         * doc/gnulib.texi (Introduction): Capitalize `Git'.
24336
24337 2007-10-04  Bruno Haible  <bruno@clisp.org>
24338
24339         * doc/gnulib.texi (Function Substitutes): Explain what an absent module
24340         means.
24341         Reported by Benoît Sigoure <tsuna@lrde.epita.fr>.
24342
24343 2007-10-04  Bruno Haible  <bruno@clisp.org>
24344
24345         * modules/truncl-tests: New file.
24346         * tests/test-truncl.c: New file.
24347
24348         * modules/truncl: New file.
24349         * lib/truncl.c: New file.
24350         * m4/truncl.m4: New file.
24351         * lib/math.in.h (truncl): New declaration.
24352         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_TRUNCL and
24353         HAVE_DECL_TRUNCL.
24354         * modules/math (Makefile.am): Substitute also GNULIB_TRUNCL and
24355         HAVE_DECL_TRUNCL.
24356         * doc/functions/truncl.texi: Mention the 'truncl' module.
24357
24358 2007-10-04  Bruno Haible  <bruno@clisp.org>
24359
24360         * modules/truncf-tests: New file.
24361         * tests/test-truncf.c: New file.
24362
24363         * modules/truncf: New file.
24364         * lib/trunc.c: Make paramerizable through USE_* macros.
24365         * lib/truncf.c: New file.
24366         * m4/truncf.m4: New file.
24367         * lib/math.in.h (truncf): New declaration.
24368         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_TRUNCF and
24369         HAVE_DECL_TRUNCF.
24370         * modules/math (Makefile.am): Substitute also GNULIB_TRUNCF and
24371         HAVE_DECL_TRUNCF.
24372         * doc/functions/truncf.texi: Mention the 'truncf' module.
24373
24374 2007-10-03  Bruno Haible  <bruno@clisp.org>
24375
24376         * gnulib-tool (func_get_automake_snippet): Synthesize an EXTRA_DIST
24377         augmentation also for tests modules.
24378         * modules/argp-tests (Makefile.am): Remove EXTRA_DIST augmentation.
24379         * modules/atexit-tests (Makefile.am): Likewise.
24380         * modules/binary-io-tests (Makefile.am): Likewise.
24381         * modules/c-strcase-tests (Makefile.am): Likewise.
24382         * modules/canonicalize-lgpl-tests (Makefile.am): Likewise.
24383         * modules/canonicalize-tests (Makefile.am): Likewise.
24384         * modules/closein-tests (Makefile.am): Likewise.
24385         * modules/fprintf-posix-tests (Makefile.am): Likewise.
24386         * modules/freadahead-tests (Makefile.am): Likewise.
24387         * modules/fseek-tests (Makefile.am): Likewise.
24388         * modules/fseeko-tests (Makefile.am): Likewise.
24389         * modules/ftell-tests (Makefile.am): Likewise.
24390         * modules/ftello-tests (Makefile.am): Likewise.
24391         * modules/isnanl-nolibm-tests (Makefile.am): Likewise.
24392         * modules/isnanl-tests (Makefile.am): Likewise.
24393         * modules/lseek-tests (Makefile.am): Likewise.
24394         * modules/mbscasecmp-tests (Makefile.am): Likewise.
24395         * modules/mbscasestr-tests (Makefile.am): Likewise.
24396         * modules/mbschr-tests (Makefile.am): Likewise.
24397         * modules/mbscspn-tests (Makefile.am): Likewise.
24398         * modules/mbsncasecmp-tests (Makefile.am): Likewise.
24399         * modules/mbspbrk-tests (Makefile.am): Likewise.
24400         * modules/mbspcasecmp-tests (Makefile.am): Likewise.
24401         * modules/mbsrchr-tests (Makefile.am): Likewise.
24402         * modules/mbsspn-tests (Makefile.am): Likewise.
24403         * modules/mbsstr-tests (Makefile.am): Likewise.
24404         * modules/printf-posix-tests (Makefile.am): Likewise.
24405         * modules/snprintf-posix-tests (Makefile.am): Likewise.
24406         * modules/sprintf-posix-tests (Makefile.am): Likewise.
24407         * modules/tsearch-tests (Makefile.am): Likewise.
24408         * modules/uniname/uniname-tests (Makefile.am): Likewise.
24409         * modules/unistdio/u16-vasnprintf-tests (Makefile.am): Likewise.
24410         * modules/unistdio/u32-vasnprintf-tests (Makefile.am): Likewise.
24411         * modules/unistdio/u8-vasnprintf-tests (Makefile.am): Likewise.
24412         * modules/unistdio/ulc-vasnprintf-tests (Makefile.am): Likewise.
24413         * modules/vasnprintf-posix-tests (Makefile.am): Likewise.
24414         * modules/vfprintf-posix-tests (Makefile.am): Likewise.
24415         * modules/vprintf-posix-tests (Makefile.am): Likewise.
24416         * modules/vsnprintf-posix-tests (Makefile.am): Likewise.
24417         * modules/vsprintf-posix-tests (Makefile.am): Likewise.
24418         * modules/xstrtoimax-tests (Makefile.am): Likewise.
24419         * modules/xstrtol-tests (Makefile.am): Likewise.
24420         * modules/xstrtoumax-tests (Makefile.am): Likewise.
24421         * modules/yesno-tests (Makefile.am): Likewise.
24422
24423 2007-10-03  Bruno Haible  <bruno@clisp.org>
24424
24425         * modules/trunc-tests: New file.
24426         * tests/test-trunc.c: New file.
24427
24428         * modules/trunc: New file.
24429         * lib/trunc.c: New file.
24430         * m4/trunc.m4: New file.
24431         * lib/math.in.h (trunc): New declaration.
24432         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_TRUNC and
24433         HAVE_DECL_TRUNC.
24434         * modules/math (Makefile.am): Substitute also GNULIB_TRUNC and
24435         HAVE_DECL_TRUNC.
24436         * doc/functions/trunc.texi: Mention the 'trunc' module.
24437
24438 2007-10-03  Bruno Haible  <bruno@clisp.org>
24439
24440         * tests/test-fpending.c: New file, mostly copied
24441         from coreutils/lib/t-fpending.c.
24442         * modules/fpending-tests: New file.
24443
24444 2007-10-03  Bruno Haible  <bruno@clisp.org>
24445
24446         Port the stdio extensions to QNX (untested).
24447         * lib/fseterr.c (fseterr): Add support for QNX.
24448         * lib/fbufmode.c (fbufmode): Likewise.
24449         * lib/freadable.c (freadable): Likewise.
24450         * lib/fwritable.c (fwritable): Likewise.
24451         * lib/freading.c (freading): Likewise.
24452         * lib/fwriting.c (fwriting): Likewise.
24453         * lib/freadahead.c (freadahed): Likewise.
24454         * lib/fpurge.c (fpurge): Likewise.
24455         * lib/fseeko.c (rpl_fseeko): Likewise.
24456
24457 2007-10-03  Bruno Haible  <bruno@clisp.org>
24458             Jim Meyering  <jim@meyering.net>
24459             Eric Blake  <ebb9@byu.net>
24460
24461         * doc/relocatable.texi: Use @command instead of @program.
24462
24463 2007-10-02  Jim Meyering  <jim@meyering.net>
24464
24465         Perform one more "_.h" -> ".in.h" substitution.
24466         * modules/unistd (Makefile.am) [unistd.h]: Use unistd.h.in
24467         instead of unistd_.h here, too.
24468
24469 2007-10-01  Bruno Haible  <bruno@clisp.org>
24470
24471         * gnulib-tool (func_emit_initmacro_done): Special case for alloca.c.
24472         Needed for the alloca-opt module.
24473
24474 2007-09-30  Bruno Haible  <bruno@clisp.org>
24475
24476         * lib/alloca.in.h: Renamed from lib/alloca_.h.
24477         * modules/alloca-opt (Files, Makefile.am): Use alloca.in.h instead of
24478         alloca_.h.
24479         * lib/argz.in.h: Renamed from lib/argz_.h.
24480         * modules/argz (Files, Makefile.am): Use argz.in.h instead of argz_.h.
24481         * lib/byteswap.in.h: Renamed from lib/byteswap_.h.
24482         * modules/byteswap (Files, Makefile.am): Use byteswap.in.h instead of
24483         byteswap_.h.
24484         * lib/dirent.in.h: Renamed from lib/dirent_.h.
24485         * modules/fchdir (Files, Makefile.am): Use dirent.in.h instead of
24486         dirent_.h.
24487         * lib/fcntl.in.h: Renamed from lib/fcntl_.h.
24488         * modules/fcntl (Files, Makefile.am): Use fcntl.in.h instead of
24489         fcntl_.h.
24490         * lib/float.in.h: Renamed from lib/float_.h.
24491         * modules/float (Files, Makefile.am): Use float.in.h instead of
24492         float_.h.
24493         * lib/fnmatch.in.h: Renamed from lib/fnmatch_.h.
24494         * modules/fnmatch (Files, Makefile.am): Use fnmatch.in.h instead of
24495         fnmatch_.h.
24496         * lib/getopt.in.h: Renamed from lib/getopt_.h.
24497         * modules/getopt (Files, Makefile.am): Use getopt.in.h instead of
24498         getopt_.h.
24499         * lib/glob.in.h: Renamed from lib/glob_.h.
24500         * modules/glob (Files, Makefile.am): Use glob.in.h instead of glob_.h.
24501         * lib/iconv.in.h: Renamed from lib/iconv_.h.
24502         * modules/iconv_open (Files, Makefile.am): Use iconv.in.h instead of
24503         iconv_.h.
24504         * lib/inttypes.in.h: Renamed from lib/inttypes_.h.
24505         * modules/inttypes (Files, Makefile.am): Use inttypes.in.h instead of
24506         inttypes_.h.
24507         * lib/locale.in.h: Renamed from lib/locale_.h.
24508         * modules/locale (Files, Makefile.am): Use locale.in.h instead of
24509         locale_.h.
24510         * lib/math.in.h: Renamed from lib/math_.h.
24511         * modules/math (Files, Makefile.am): Use math.in.h instead of math_.h.
24512         * lib/netinet_in.in.h: Renamed from lib/netinet_in_.h.
24513         * modules/netinet_in (Files, Makefile.am): Use netinet_in.in.h instead
24514         of netinet_in_.h. Add dependency.
24515         * lib/poll.in.h: Renamed from lib/poll_.h.
24516         * modules/poll (Files, Makefile.am): Use poll.in.h instead of poll_.h.
24517         * lib/search.in.h: Renamed from lib/search_.h.
24518         * modules/search (Files, Makefile.am): Use search.in.h instead of
24519         search_.h.
24520         * lib/signal.in.h: Renamed from lib/signal_.h.
24521         * modules/signal (Files, Makefile.am): Use signal.in.h instead of
24522         _signal.h.
24523         * lib/stdbool.in.h: Renamed from lib/stdbool_.h.
24524         * modules/stdbool (Files, Makefile.am): Use stdbool.in.h instead of
24525         stdbool_.h.
24526         * lib/stdint.in.h: Renamed from lib/stdint_.h.
24527         * modules/stdint (Files, Makefile.am): Use stdint.in.h instead of
24528         stdint_.h.
24529         * lib/stdio.in.h: Renamed from lib/stdio_.h.
24530         * modules/stdio (Files, Makefile.am): Use stdio.in.h instead of
24531         stdio_.h.
24532         * lib/stdlib.in.h: Renamed from lib/stdlib_.h.
24533         * modules/stdlib (Files, Makefile.am): Use stdlib.in.h instead of
24534         stdlib_.h.
24535         * lib/string.in.h: Renamed from lib/string_.h.
24536         * modules/string (Files, Makefile.am): Use string.in.h instead of
24537         string_.h.
24538         * doc/gnulib-tool.texi (Initial import): Update.
24539         * lib/sys_select.in.h: Renamed from lib/sys_select_.h.
24540         * modules/sys_select (Files, Makefile.am): Use sys_select.in.h instead
24541         of sys_select_.h. Add dependency.
24542         * lib/sys_socket.in.h: Renamed from lib/sys_socket_.h.
24543         * modules/sys_socket (Files, Makefile.am): Use sys_socket.in.h instead
24544         of sys_socket_.h.
24545         * lib/sys_stat.in.h: Renamed from lib/sys_stat_.h.
24546         * modules/sys_stat (Files, Makefile.am): Use sys_stat.in.h instead of
24547         sys_stat_.h.
24548         * lib/sys_time.in.h: Renamed from lib/sys_time_.h.
24549         * modules/sys_time (Files, Makefile.am): Use sys_time.in.h instead of
24550         sys_time_.h.
24551         * lib/sysexits.in.h: Renamed from lib/sysexits_.h.
24552         * modules/sysexits (Files, Makefile.am): Use sysexits.in.h instead of
24553         sysexits_.h.
24554         * lib/time.in.h: Renamed from lib/time_.h.
24555         * modules/time (Files, Makefile.am): Use time.in.h instead of time_.h.
24556         * lib/unistd.in.h: Renamed from lib/unistd_.h.
24557         * modules/unistd (Files, Makefile.am): Use unistd.in.h instead of
24558         unistd_.h.
24559         * lib/wchar.in.h: Renamed from lib/wchar_.h.
24560         * modules/wchar (Files, Makefile.am): Use wchar.in.h instead of
24561         wchar_.h.
24562         * lib/wctype.in.h: Renamed from lib/wctype_.h.
24563         * modules/wctype (Files, Makefile.am): Use wctype.in.h instead of
24564         wctype_.h.
24565         * build-aux/bootstrap (slurp): Update.
24566         * lib/.cppi-disable: Update.
24567
24568 2007-09-30  Bruno Haible  <bruno@clisp.org>
24569
24570         * tests/test-getaddrinfo.c (AF_UNSPEC): Provide a fallback definition.
24571         Needed on BeOS.
24572
24573 2007-09-30  Bruno Haible  <bruno@clisp.org>
24574
24575         * modules/dirname-tests (check_PROGRAMS): Renamed from noinst_PROGRAMS.
24576
24577 2007-09-29  Bruno Haible  <bruno@clisp.org>
24578
24579         * lib/stdio_.h (getdelim, getline): Add identifiers. Doc tweak.
24580
24581 2007-09-29  Bruno Haible  <bruno@clisp.org>
24582
24583         * lib/xreadlink.c (xreadlink): Simplify to a wrapper around areadlink.
24584         * modules/xreadlink (Depends-on): Add areadlink, remove readlink etc.
24585         * build-aux/install-reloc: Compile also areadlink.c.
24586         * modules/relocatable-prog-wrapper (Files): Add lib/areadlink.[hc].
24587
24588 2007-09-29  Bruno Haible  <bruno@clisp.org>
24589
24590         * gnulib-tool (func_emit_initmacro_done): Indentation.
24591
24592 2007-09-29  Bruno Haible  <bruno@clisp.org>
24593
24594         * README: Add CVS checkout update instructions.
24595         Info from Bob Proulx <bob@proulx.com>.
24596
24597 2007-09-28  Eric Blake  <ebb9@byu.net>
24598
24599         Provide move-if-change.
24600         * build-aux/move-if-change: New file, based on best practice
24601         rather than any canonical upstream location.
24602
24603 2007-09-28  Jim Meyering  <jim@meyering.net>
24604
24605         Fix canonicalize loop-detection corner case.
24606         Do not attempt to stat the symlink values stored via seen_triple.
24607         Without this, coreutils' tests/misc/readlink-fp-loop test would fail
24608         on linux-2.6.18, (but not 2.6.22).
24609         * lib/canonicalize.c (seen_triple): Use triple_compare_ino_str, not
24610         triple_compare.  The former compares dev,ino,filename, while the latter
24611         would actually stat dirname(filename) when dev and ino were equal.
24612         * lib/hash-triple.c: Install <string.h>.
24613         (STREQ): Define.
24614         (triple_compare_ino_str): New function.
24615         * lib/hash-triple.h (triple_compare_ino_str): Declare it.
24616
24617 2007-09-28  Eric Blake  <ebb9@byu.net>
24618
24619         Enforce that AC_REPLACE_FUNCS files exist.
24620         * gnulib-tool (func_emit_initmacro_done): Make AC_LIBSOURCES
24621         override check for typos.
24622
24623         Fix test-closein on Solaris 10.
24624         * tests/test-closein.c (main): Don't assume stdin can be inherited
24625         closed on all systems.
24626         * tests/test-closein.sh: Likewise.
24627         Reported by Piotr Tarnowski.
24628
24629 2007-09-28  Jim Meyering  <jim@meyering.net>
24630
24631         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Fix typo in comment.
24632
24633 2007-09-27  Jim Meyering  <jim@meyering.net>
24634
24635         canonicalize: Avoid a false-positive cycle failure.
24636         * modules/canonicalize (Depends-on): Add file-set and hash-triple.
24637         Sort.  Remove cycle-check.
24638         * lib/canonicalize.c: Include file-set.h and hash-triple.h,
24639         not cycle-check.h.
24640         (seen_triple): New function.
24641         (canonicalize_filename_mode): Use it instead of cycle-check.
24642         * tests/test-canonicalize.c: Add a test for this bug.
24643         * tests/test-canonicalize.sh: Set up and run the test.
24644
24645         New module, file-set, from coreutils.
24646         * modules/file-set: Define it.
24647         * lib/file-set.c, lib/file-set.h: Implement.
24648
24649         New module, hash-triple, from coreutils.
24650         * modules/hash-triple: Define it.
24651         * lib/hash-triple.c, lib/hash-triple.h: Implement.
24652
24653 2007-09-25  Eric Blake  <ebb9@byu.net>
24654
24655         Fix strerror on Interix.
24656         * lib/string_.h (strerror): Declare replacement.
24657         * doc/functions/strerror.texi (strerror): Document the Interix
24658         shortcoming.
24659         * modules/string (Makefile.am): Support new hooks.
24660         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Add new hooks.
24661         * m4/strerror.m4 (gl_FUNC_STRERROR): Defer to
24662         gl_FUNC_STRERROR_SEPARATE.
24663         (gl_FUNC_STRERROR_SEPARATE): Check for Interix bug.
24664         * lib/strerror.c (rpl_strerror): Provide replacement.
24665         * modules/strerror (Depends-on): Add string.
24666         (configure.ac): Detect use of module.
24667         * tests/test-strerror.c: New file.
24668         * modules/strerror-tests: New test module.
24669         * modules/argp (Depends-on): Add strerror.
24670         * modules/error (Depends-on): Likewise.
24671         Reported by Martin Koeppe.
24672
24673 2007-09-24  Bruno Haible  <bruno@clisp.org>
24674
24675         * README: Update git instructions.
24676
24677 2007-09-24  Eric Blake  <ebb9@byu.net>
24678
24679         Revert fpending breakage from 2007-09-08.
24680         * m4/fpending.m4 (gl_FUNC_FPENDING): Don't require existence of
24681         __fpending.c.
24682
24683 2007-09-24  Jim Meyering  <jim@meyering.net>
24684
24685         filenamecat.c: Add a test.
24686         * lib/filenamecat.c (main) [TEST_FILE_NAME_CONCAT]: Add a test
24687         showing how the function works when DIR is the empty string.
24688
24689 2007-09-21  Simon Josefsson  <simon@josefsson.org>
24690
24691         * tests/test-canonicalize.sh: Turn on executable bit.
24692
24693 2007-09-19  Eric Blake  <ebb9@byu.net>
24694
24695         * README: Update CVS instructions.
24696
24697 2007-09-18  Bruno Haible  <bruno@clisp.org>
24698
24699         * modules/areadlink: New file.
24700         * lib/areadlink.h (areadlink): New declaration.
24701         * lib/areadlink.c: New file, based on lib/xreadlink.c.
24702
24703 2007-09-17  Jim Meyering  <jim@meyering.net>
24704
24705         * lib/savewd.c (ESTALE) [!defined]: Define.
24706         Reported to be required on Interix by Martin Koeppe.
24707
24708 2007-09-17  Bruno Haible  <bruno@clisp.org>
24709
24710         * gnulib-tool (func_version): Use $version.
24711
24712 2007-09-16  Bruno Haible  <bruno@clisp.org>
24713
24714         * m4/printf.m4 (gl_PRINTF_LONG_DOUBLE, gl_PRINTF_INFINITE,
24715         gl_PRINTF_INFINITE_LONG_DOUBLE): Increase buf's size from 100 to 10000.
24716         Needed on glibc-2.6.1 with -fstack-protector -D_FORTIFY_SOURCE=2.
24717         Reported by Greg Schafer <gschafer@zip.com.au>.
24718
24719 2007-09-15  Bruno Haible  <bruno@clisp.org>
24720
24721         * gnulib-tool (sed): Try a little harder to make bash understand the
24722         alias.
24723         Reported by Bruce Korb <bruce.korb@gmail.com>.
24724
24725 2007-09-13  Eric Blake  <ebb9@byu.net>
24726
24727         * ChangeLog: Remove conflict markers.
24728
24729 2007-09-13  Simon Josefsson  <simon@josefsson.org>
24730
24731         * lib/gc-gnulib.c (gc_hash_open): Catch NULL calloc return value.
24732         Reported by Bruno Haible <bruno@clisp.org>.
24733
24734 2007-09-12  Bruno Haible  <bruno@clisp.org>
24735
24736         * m4/lock.m4: Don't provide an AC_USE_SYSTEM_EXTENSIONS definition.
24737         (gl_LOCK_EARLY_BODY): Use AC_GNU_SOURCE when AC_USE_SYSTEM_EXTENSIONS
24738         is not defined.
24739
24740 2007-09-12  Eric Blake  <ebb9@byu.net>
24741
24742         Track CVS Autoconf on AC_USE_SYSTEM_EXTENSIONS.
24743         * m4/extensions.m4 (AC_USE_SYSTEM_EXTENSIONS): Update to CVS
24744         Autoconf definition.
24745         * modules/euidaccess (Depends-on): Add extensions, for
24746         AC_USE_SYSTEM_EXTENSIONS with autoconf <= 2.59.
24747         * modules/fnmatch (Depends-on): Likewise.
24748         * modules/getaddrinfo (Depends-on): Likewise.
24749         * modules/getdelim (Depends-on): Likewise.
24750         * modules/getline (Depends-on): Likewise.
24751         * modules/getsubopt (Depends-on): Likewise.
24752         * modules/gettext (Depends-on): Likewise.
24753         * modules/group-member (Depends-on): Likewise.
24754         * modules/mbchar (Depends-on): Likewise.
24755         * modules/memmem (Depends-on): Likewise.
24756         * modules/mempcpy (Depends-on): Likewise.
24757         * modules/memrchr (Depends-on): Likewise.
24758         * modules/pagealign_alloc (Depends-on): Likewise.
24759         * modules/readutmp (Depends-on): Likewise.
24760         * modules/stpcpy (Depends-on): Likewise.
24761         * modules/stpncpy (Depends-on): Likewise.
24762         * modules/strchrnul (Depends-on): Likewise.
24763         * modules/strndup (Depends-on): Likewise.
24764         * modules/strsep (Depends-on): Likewise.
24765         * modules/strverscmp (Depends-on): Likewise.
24766         * modules/vasprintf (Depends-on): Likewise.
24767         * modules/wcwidth (Depends-on): Likewise.
24768         * m4/euidaccess.m4 (gl_FUNC_EUIDACCESS): AC_GNU_SOURCE will be
24769         obsolete in Autoconf 2.62; use AC_USE_SYSTEM_EXTENSIONS instead.
24770         * m4/fnmatch.m4 (gl_FUNC_FNMATCH_GNU): Likewise.
24771         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDR_INFO): Likewise.
24772         * m4/getdelim.m4 (gl_FUNC_GETDELIM): Likewise.
24773         * m4/getline.m4 (gl_FUNC_GETLINE): Likewise.
24774         * m4/getsubopt.m4 (gl_FUNC_GETSUBOPT): Likewise.
24775         * m4/glob.m4 (gl_PREREQ_GLOB): Likewise.
24776         * m4/group-member.m4 (gl_FUNC_GROUP_MEMBER): Likewise.
24777         * m4/mbchar.m4 (gl_MBCHAR): Likewise.
24778         * m4/memmem.m4 (gl_FUNC_MEMMEM): Likewise.
24779         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY): Likewise.
24780         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Likewise.
24781         * m4/mmap-anon.m4 (gl_FUNC_MMAP_ANON): Likewise.
24782         * m4/pagealign_alloc.m4 (gl_PAGEALIGN_ALLOC): Likewise.
24783         * m4/readutmp.m4 (gl_READUTMP): Likewise.
24784         * m4/regex.m4 (gl_PREREQ_REGEX): Likewise.
24785         * m4/stpcpy.m4 (gl_FUNC_STPCPY): Likewise.
24786         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Likewise.
24787         * m4/strchrnul.m4 (gl_FUNC_STRCHRNUL): Likewise.
24788         * m4/strndup.m4 (gl_FUNC_STRNDUP): Likewise.
24789         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Likewise.
24790         * m4/strsep.m4 (gl_FUNC_STRSEP): Likewise.
24791         * m4/strverscmp.m4 (gl_FUNC_STRVERSCMP): Likewise.
24792         * m4/vasprintf.m4 (gl_PREREQ_VASPRINTF_H): Likewise.
24793         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Likewise.
24794         * m4/lock.m4 (gl_LOCK_EARLY_BODY): Likewise, but provide fallback,
24795         so that lock.m4 can be used in gettext without extensions module.
24796
24797 2007-09-11  Bruno Haible  <bruno@clisp.org>
24798
24799         * m4/isc-posix.m4: Remove file.
24800         Suggested by Eric Blake.
24801
24802 2007-09-11  Eric Blake  <ebb9@byu.net>
24803
24804         * ChangeLog: Restore lines accidentally truncated 2007-04-06.
24805
24806 2007-09-10  Bruno Haible  <bruno@clisp.org>
24807
24808         * posix-modules: Fix typo in error message.
24809         Reported by Matt <mkraai@beckman.com>.
24810
24811 2007-09-09  Bruno Haible  <bruno@clisp.org>
24812
24813         * doc/functions/getdelim.texi: Update list of platforms lacking the
24814         function.
24815         * doc/functions/getline.texi: Likewise.
24816
24817 2007-09-09  Jim Meyering  <jim@meyering.net>
24818
24819         * lib/hash.c (hash_initialize): Detect calloc failure.
24820         Reported by Bruno Haible.
24821
24822 2007-09-09  Bruno Haible  <bruno@clisp.org>
24823
24824         * lib/canonicalize-lgpl.c (__realpath): Set errno to ENOMEM when
24825         malloc or realloc fails.
24826
24827 2007-09-09  Bruno Haible  <bruno@clisp.org>
24828
24829         * modules/getcwd (Depends-on): Add malloc-posix.
24830         * modules/glob (Depends-on): Likewise.
24831         * modules/putenv (Depends-on): Likewise.
24832         * modules/strdup (Depends-on): Likewise.
24833         * modules/getdelim (Depends-on): Add realloc-posix.
24834         * modules/read-file (Depends-on): Likewise.
24835
24836 2007-09-09  Bruno Haible  <bruno@clisp.org>
24837
24838         * m4/malloc.m4 (gl_CHECK_MALLOC_POSIX): New macro.
24839         (gl_FUNC_MALLOC_POSIX): Require it.
24840         * m4/realloc.m4 (gl_FUNC_REALLOC_POSIX): Likewise.
24841         * m4/calloc.m4 (gl_FUNC_CALLOC_POSIX): Likewise.
24842         * modules/realloc (Files): Add m4/malloc.m4.
24843         * modules/calloc (Files): Likewise.
24844
24845 2007-09-09  Bruno Haible  <bruno@clisp.org>
24846
24847         * modules/malloc-posix: New file.
24848         * modules/malloc (Depends-on): Add malloc-posix.
24849         * lib/malloc.c: Include errno.h.
24850         (rpl_malloc): Merge the requirements of a glibc-compatible malloc
24851         and a POSIX-compatible malloc into a single function. Set ENOMEM
24852         when returning NULL.
24853         * m4/malloc.m4: New file.
24854         * doc/functions/malloc.texi: Mention the malloc-posix module.
24855         * lib/stdlib_.h (malloc): New declaration.
24856         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize
24857         GNULIB_MALLOC_POSIX and HAVE_MALLOC_POSIX.
24858         * modules/stdlib (stdlib.h): Substitute also GNULIB_MALLOC_POSIX
24859         and HAVE_MALLOC_POSIX.
24860
24861 2007-09-09  Bruno Haible  <bruno@clisp.org>
24862
24863         * modules/realloc-posix: New file.
24864         * modules/realloc (Depends-on): Add realloc-posix.
24865         * lib/realloc.c: Include errno.h.
24866         (rpl_realloc): Merge the requirements of a glibc-compatible realloc
24867         and a POSIX-compatible realloc into a single function. Set ENOMEM
24868         when returning NULL.
24869         * m4/realloc.m4: New file.
24870         * doc/functions/realloc.texi: Mention the realloc-posix module.
24871         * lib/stdlib_.h (realloc): New declaration.
24872         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize
24873         GNULIB_REALLOC_POSIX and HAVE_REALLOC_POSIX.
24874         * modules/stdlib (stdlib.h): Substitute also GNULIB_REALLOC_POSIX
24875         and HAVE_REALLOC_POSIX.
24876
24877 2007-09-09  Bruno Haible  <bruno@clisp.org>
24878
24879         * modules/calloc-posix: New file.
24880         * modules/calloc (Depends-on): Add calloc-posix.
24881         * lib/calloc.c: Include errno.h.
24882         (rpl_calloc): Merge the requirements of a glibc-compatible calloc
24883         and a POSIX-compatible calloc into a single function. Set ENOMEM
24884         when returning NULL.
24885         * m4/calloc.m4 (gl_FUNC_CALLOC_POSIX): New macro.
24886         * doc/functions/calloc.texi: Mention the calloc-posix module.
24887         * lib/stdlib_.h (calloc): New declaration.
24888         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize
24889         GNULIB_CALLOC_POSIX and HAVE_CALLOC_POSIX.
24890         * modules/stdlib (stdlib.h): Substitute also GNULIB_CALLOC_POSIX
24891         and HAVE_CALLOC_POSIX.
24892
24893 2007-09-09  Bruno Haible  <bruno@clisp.org>
24894
24895         Allow for modules to show an arbitrary notice.
24896         * modules/TEMPLATE-EXTENDED: Add 'Notice' field.
24897         * gnulib-tool: New option --extract-notice.
24898         (func_usage): Document it.
24899         (sed_extract_prog): Update.
24900         (func_get_notice): New function.
24901         (func_modules_notice): New function.
24902         (func_import, func_create_testdir): Invoke it.
24903         Suggested by Jim Meyering.
24904
24905 2007-09-09  Bruno Haible  <bruno@clisp.org>
24906
24907         * gnulib-tool: New options --verbose, --quiet.
24908         (func_usage): Document them.
24909         (verbose): New variable.
24910         (func_execute_command): New function.
24911         (func_import): Don't show the module list and the file list if
24912         $verbose < 0.
24913         (func_create_testdir): Likewise. Use func_execute_command.
24914         (func_create_megatestdir): Use func_execute_command.
24915
24916 2007-09-08  Bruno Haible  <bruno@clisp.org>
24917
24918         * gnulib-tool (func_import): Prefer rsync over wget when available,
24919         for fetching the PO files.
24920
24921 2007-09-08  Bruno Haible  <bruno@clisp.org>
24922
24923         * posix-modules: New file. Portions copied from gnulib-tool.
24924         * doc/gnulib.texi (POSIX Substitutes Library): New chapter.
24925
24926 2007-09-08  Jim Meyering  <jim@meyering.net>
24927
24928         Rename __fpending.c -> fpending.c and __fpending.h -> fpending.h
24929         * lib/fpending.h: Rename from __fpending.h.
24930         * lib/fpending.c: Rename from __fpending.c.
24931         Include "fpending.h", not "__fpending.h".
24932         * lib/__fpending.h, lib/__fpending.c: Remove files.
24933         * modules/fpending (Files): Reflect new file names.
24934         * lib/close-stream.c: Include "fpending.h", not "__fpending.h".
24935
24936 2007-09-08  Bruno Haible  <bruno@clisp.org>
24937
24938         * m4/inttypes-h.m4: Remove stub file.
24939
24940 2007-09-07  Simon Josefsson  <simon@josefsson.org>
24941
24942         * doc/headers/stdint.texi: Discuss #include_next issue.
24943
24944 2007-09-06  Paul Eggert  <eggert@cs.ucla.edu>
24945
24946         * build-aux/bootstrap: Remove obsolete comment about wget --help.
24947
24948 2007-09-06  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
24949
24950         * m4/time_h.m4 (gl_CHECK_TYPE_STRUCT_TIMESPEC): Fix misspelling
24951         in variable name.
24952
24953 2007-09-03  Jim Meyering  <jim@meyering.net>
24954
24955         New module: git-version-gen.
24956         * modules/git-version-gen: New file.
24957
24958         Import changes from coreutils for bootstrap script.
24959
24960         * build-aux/bootstrap (WGET_COMMAND): Remove code to set this variable.
24961
24962         bootstrap: uses rsync to download the .po files
24963         * build-aux/bootstrap (po_download_command_format): New global.
24964         (download_po_files): Use rsync.
24965         (update_po_files): Don't remove .po files after download,
24966         so future rsync runs can take advantage of the copies.
24967
24968         * build-aux/bootstrap (gnulib_tool): Make sha1sum check quietly.
24969
24970         Solve the unnecessary-.po-file-regeneration problem once and for all.
24971         * build-aux/bootstrap (download_po_files): New function, renamed from
24972         get_translations.  Now, downloads, but doesn't update LINGUAS.
24973         (update_po_files): New function.
24974
24975         bootstrap: Ignore more.
24976         * build-aux/bootstrap (symlink_to_dir): Add a directory name like
24977         uniwidth to e.g., lib/.gitignore.
24978         (slurp): Handle the sys_stat_.h -> sys mapping, too.
24979
24980         * build-aux/bootstrap: New setting: vc_ignore.
24981         (insert_sorted_if_absent): Create $file if absent.
24982         Adapt to new, possibly empty, list: $vc_ignore.
24983
24984         bootstrap: generate more ignorable names
24985         * build-aux/bootstrap (slurp): When generating ignorable names,
24986         also map .sin to .sed, .gperf to .c, and .y to .c.
24987
24988 2007-09-03  Jim Meyering  <jim@meyering.net>
24989
24990         * build-aux/git-version-gen: New file, from coreutils.  For details, see
24991         http://git.sv.gnu.org/gitweb/?p=coreutils.git;a=commitdiff;h=bfe49f506
24992
24993 2007-09-02  Bruno Haible  <bruno@clisp.org>
24994
24995         Fix mis-recognition of 'mcs' on QNX 6.
24996         * m4/csharpcomp.m4 (gt_CSHARPCOMP): Test whether the "mcs --version"
24997         output contains the string "Mono".
24998         * lib/csharpcomp.c (compile_csharp_using_mono): Likewise.
24999         Reported by <kraai@ftbfs.org> at <https://savannah.gnu.org/bugs/?18337>.
25000
25001 2007-09-01  Bruno Haible  <bruno@clisp.org>
25002
25003         Fix collision between uniwidth/* and linebreak modules.
25004         * lib/linebreak.h (locale_charset, uc_width, u8_width, u16_width,
25005         u32_width): Remove declarations.
25006         * lib/linebreak.c: Include uniwidth.h, uniwidth/cjk.h, streq.h.
25007         (u32_mbtouc_unsafe, streq9, streq8, streq7, streq6, streq5, streq4,
25008         streq3, streq2, streq1, streq0): Remove functions.
25009         (STREQ): Remove macro.
25010         (is_cjk_encoding): Remove function.
25011         (nonspacing_table_data, nonspacing_table_ind): Remove constants.
25012         (uc_width, u8_width, u16_width, u32_width): Remove functions.
25013         * modules/linebreak (Depends-on): Add streq, uniwidth/width.
25014         * NEWS: Document the change.
25015
25016 2007-09-01  Bruno Haible  <bruno@clisp.org>
25017
25018         * lib/streq.h: Add double-inclusion guard.
25019
25020 2007-09-01  Karl Berry  <karl@gnu.org>
25021
25022         * MODULES.html.sh: Rename mreadlink_with_size to areadlink_with_size.
25023
25024 2007-08-28  Jim Meyering  <jim@meyering.net>
25025
25026         Rename mreadlink_with_size to areadlink_with_size.
25027         * NEWS: Document the change.
25028         * lib/mreadlink-with-size.c (mreadlink_with_size): Rename this to...
25029         * lib/areadlink-with-size.c (areadlink_with_size): ...this.
25030         * lib/mreadlink.h: Rename this to...
25031         * lib/areadlink.h: ...this.
25032         * modules/mreadlink-with-size: Rename this to...
25033         * modules/areadlink-with-size: ...this.
25034         * lib/canonicalize.c: Reflect the renaming.
25035         * modules/canonicalize: Likewise.
25036
25037 2007-08-26  Bruno Haible  <bruno@clisp.org>
25038
25039         * gnulib-tool (func_import): When deciding which files to remove,
25040         consider also dangling symbolic links.
25041         Reported by Eric Blake.
25042
25043 2007-08-26  Bruno Haible  <bruno@clisp.org>
25044
25045         * gnulib-tool (func_ln_if_changed): Use "test -h", not "test -L".
25046
25047 2007-08-23  Simon Josefsson  <simon@josefsson.org>
25048
25049         * lib/readline.c: Don't include getline.h, the prototype is now
25050         found in stdio.h.
25051
25052 2007-08-23  Jim Meyering  <jim@meyering.net>
25053
25054         Getdelim touchup.
25055         * lib/getdelim.c (getdelim): Don't bother to save/restore errno
25056         around the funlockfile call, since funlockfile never sets errno.
25057         Don't set errno upon failed realloc.
25058
25059 2007-08-22  Eric Blake  <ebb9@byu.net>
25060
25061         Getline touchups.
25062         * lib/getdelim.c (getdelim): Revert regression that required *n to
25063         be 0 when *lineptr is NULL.  Preserve errno across funlockfile.
25064         * m4/getdelim.m4 (gl_FUNC_GETDELIM): Check for declaration of
25065         getdelim, rather than whether implementation is missing.
25066         * m4/getline.m4 (gl_FUNC_GETLINE): Likewise for getline.
25067         * lib/stdio_.h (getline): Also declare if replacement is
25068         required.
25069         * doc/functions/getdelim.texi: New file.
25070         * doc/functions/getline.texi: Likewise.
25071         * doc/gnulib.texi (Function Substitutes): Add new files.
25072         Reported by Bruno Haible.
25073
25074 2007-08-22  Ludovic Courtès  <ludo@gnu.org>
25075
25076         * users.txt: Add Guile.
25077
25078 2007-08-22  Eric Blake  <ebb9@byu.net>
25079
25080         * tests/test-getdelim.c (main): Use remove, not unlink.
25081         * tests/test-getline.c (main): Likewise.
25082
25083         Move getline and getdelim into stdio.h, per POSIX 200x.
25084         * modules/getline (Files): Remove getline.h.
25085         (Depends-on): Add stdio.
25086         (configure.ac): Add module indicator.
25087         * modules/getdelim (Files): Remove getdelim.h.
25088         (Depends-on): Add stdio.
25089         (configure.ac): Add module indicator.
25090         * modules/stdio (Makefile.am): Work with new indicators.
25091         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Add new defaults.
25092         * m4/getdelim.m4 (gl_FUNC_GETDELIM): Work with stdio needs.
25093         * m4/getline.m4 (gl_FUNC_GETLINE): Likewise.
25094         * lib/getdelim.h: Delete.
25095         * lib/getline.h: Delete.
25096         * lib/stdio_.h (getdelim, getline): Declare.
25097         * modules/getdelim-tests: New module.
25098         * modules/getline-tests: Likewise.
25099         * tests/test-getdelim.c: New file.
25100         * tests/test-getline.c: Likewise.
25101         * NEWS: Document the change.
25102         * lib/getline.c: Update choice of header.
25103         * lib/csharpcomp.c: Likewise.
25104         * lib/getpass.c: Likewise.
25105         * lib/javacomp.c: Likewise.
25106         * lib/javaversion.c: Likewise.
25107         * lib/yesno.c: Likewise.
25108         * lib/getdelim.c: Likewise.
25109         (getdelim): Set errno on failure, and avoid memory leak.
25110
25111 2007-08-19  Bruno Haible  <bruno@clisp.org>
25112
25113         * modules/closein (Depends-on): Add freadahead.
25114         * lib/closein.c: Include freadahead.h.
25115         (close_stdin): Skip the fseeko and fflush calls if freadahead(stdin)
25116         is zero.
25117
25118 2007-08-19  Bruno Haible  <bruno@clisp.org>
25119
25120         * modules/freadahead-tests: New file.
25121         * tests/test-freadahead.sh: New file.
25122         * tests/test-freadahead.c: New file.
25123
25124         * modules/freadahead: New file.
25125         * lib/freadahead.h: New file.
25126         * lib/freadahead.c: New file.
25127         * MODULES.html.sh (File stream based Input/Output): Add freadahead,
25128         fbufmode, fpurge, freadable, fwritable.
25129
25130 2007-08-19  Eric Blake  <ebb9@byu.net>
25131
25132         Test yesno in combination with closein.
25133         * lib/yesno.c (yesno): Document use of stdin.
25134         * modules/yesno-tests (Files): New module.
25135         * tests/test-yesno.c (main): New file.
25136         * tests/test-yesno.sh: Likewise.
25137
25138 2007-08-19  Bruno Haible  <bruno@clisp.org>
25139
25140         * lib/fbufmode.c (fbufmode): Add tentative support for Solaris/AMD64.
25141         * lib/fseeko.c (rpl_fseeko): Likewise.
25142         * lib/fseterr.c (fseterr): Likewise.
25143
25144 2007-08-19  Bruno Haible  <bruno@clisp.org>
25145
25146         * tests/test-lseek.c (main): Disable a test for BeOS.
25147         * doc/functions/lseek.texi: Document the BeOS bug.
25148
25149 2007-08-19  Bruno Haible  <bruno@clisp.org>
25150             Eric Blake  <ebb9@byu.net>
25151
25152         * lib/lseek.c: Include <sys/stat.h>.
25153         (rpl_lseek): Add workaround code also for Unix platforms.
25154         Needed for BeOS.
25155         * m4/lseek.m4 (gl_FUNC_LSEEK): When cross-compiling, fail on BeOS.
25156         * doc/functions/lseek.texi: Document BeOS definiency.
25157
25158 2007-08-18  Bruno Haible  <bruno@clisp.org>
25159
25160         * modules/fstrcmp-tests: New file.
25161         * tests/test-fstrcmp.c: New file.
25162
25163 2007-08-18  Bruno Haible  <bruno@clisp.org>
25164
25165         * modules/fstrcmp: New file, from GNU gettext with modifications.
25166         * lib/fstrcmp.h: New file, from GNU gettext.
25167         * lib/fstrcmp.c: New file, from GNU gettext.
25168         * MODULES.html.sh (String handling): Add fstrcmp.
25169
25170 2007-08-18  Bruno Haible  <bruno@clisp.org>
25171
25172         * lib/diffseq.h (struct context): Change type of 'heuristic' field to
25173         'bool'.
25174         (diag, compareseq): Remove const from the ctxt argument.
25175         (USE_HEURISTIC): Undefine at the end.
25176
25177 2007-08-18  Jim Meyering  <jim@meyering.net>
25178
25179         New file: lib/idcache.h
25180         * NEWS: Mention the addition.
25181         * modules/idcache (Files): Add lib/idcache.h
25182         * lib/idcache.c: Include "idcache.h".
25183         Don't include <sys/types.h>.
25184         Add a FIXME comment.
25185         Move file-scoped "static" declarations to the top.
25186         * lib/idcache.h: New file.  Include <sys/types.h> here, instead.
25187
25188 2007-08-17  Bruno Haible  <bruno@clisp.org>
25189         and Paul Eggert  <eggert@cs.ucla.edu>
25190
25191         * MODULES.html.sh: Add diffseq.
25192         * modules/diffseq: New file.
25193         * lib/diffseq.h: New file, from GNU gettext with a few minor changes,
25194         extracted from GNU gettext's fstrcmp.c and GNU diff's analyze.c.
25195
25196 2007-08-15  Paul Eggert  <eggert@cs.ucla.edu>
25197
25198         Import changes from coreutils for bootstrap script.
25199
25200         2007-07-21  Paul Eggert  <eggert@cs.ucla.edu>
25201
25202         * build-aux/bootstrap (slurp): Work even in environments where
25203         "ls" defaults to "ls -A".  Put in a FIXME, though, since the
25204         current code does not slurp files whose names start with ".", and
25205         this looks like it might be a troublesome area.
25206
25207         2007-07-11  Jim Meyering  <jim@meyering.net>
25208
25209         If there's a GPL vN copyright comment, require that N == 3.
25210
25211         2007-07-08  Jim Meyering  <jim@meyering.net>
25212
25213         Run the coreutils-specific code only if tests/Makefile.am.in exists.
25214         * build-aux/bootstrap (mam_template): Move definition out of loop.
25215
25216         Create symlinks for gl/{lib,m4}/*, just as for gnulib/{lib,m4}/*.
25217
25218         * build-aux/bootstrap (symlink_to_dir): Rename function from
25219         symlink_to_gnulib.  Add a directory parameter.  Update all
25220         callers.
25221         (cp_mark_as_generated): Also check for -- and link to -- files in
25222         gl/.
25223
25224         2007-07-08  Jim Meyering  <jim@meyering.net>
25225
25226         Adapt to deeper hierarchy in gnulib.
25227         * build-aux/bootstrap (symlink_to_dir): If the destination
25228         directory doesn't exist, create it. This is required at least for
25229         "lib/uniwidth/cjk.h".
25230
25231         2007-05-15  Jim Meyering  <jim@meyering.net>
25232
25233         * build-aux/bootstrap: Now that generated Makefile.am files
25234         are no longer under version control, they must be created at
25235         bootstrap time.
25236
25237 2007-08-14  Ben Pfaff  <blp@gnu.org>
25238
25239         * lib/count-one-bits.h: Add comments.  From Bruno Haible.
25240
25241 2007-08-14  Paul Eggert  <eggert@cs.ucla.edu>
25242
25243         * lib/count-one-bits.h: Don't include <limits.h>; no longer needed
25244         given the changes below.
25245         (COUNT_ONE_BITS): Use 'verify' rather than 'verify_true'.  Work
25246         even on hosts that have padding bits beyond the supported 64.
25247
25248 2007-08-10  Paul Eggert  <eggert@cs.ucla.edu>
25249
25250         * NEWS: In xstrtol, remove STRTOL_FATAL_ERROR and add xstrtol_fatal.
25251         * lib/xstrtol.h: Don't include exitfail.h; that's now internal to
25252         xstrtol.c.  Include getopt.h, since xstrtol_fatal's signature
25253         depends on it.
25254         (xstrtol_error): Remove.
25255         (xstrtol_fatal): New decl, replacing the functionality of xstrtol_error
25256         but with a different signature.
25257         (ATTRIBUTE_NORETURN, __attribute__): New macros.
25258         * lib/xstrtol-error.c: Include exitfail.h.
25259         (xstrtol_fatal): New function, with a different signature from the
25260         old xstrtol_error, so that the caller need not worry about passing
25261         in an exit status, or about storage management of the option argument.
25262         (xstrtol_error): Now a static function.  Redo signature to
25263         implement xstrtol_fatal.  Output the correct number of hyphens in
25264         front of the option so that the caller need not worry about
25265         storage management.
25266         (N_): New macro.
25267         (_): Remove; not used now.
25268         * modules/xstrtol: Depend on getopt.
25269         * tests/test-xstrtol.c (main): Use new xstrtol_error function instead
25270         of old STRTOL_FATAL_ERROR macro.
25271         * tests/test-xstrtol.sh (t-xstrtol.xo): Adjust to match new behavior
25272         of test program.
25273         * tests/test-xstrtoimax.sh (t-xstrtoimax.xo): Likewise.
25274         * tests/test-xstrtoumax.sh (t-xstrtoumax.xo): Likewise.
25275
25276 2007-08-08  Eric Blake  <ebb9@byu.net>
25277
25278         * lib/xstrtol-error.c: Add missing include.
25279
25280         Move xstrtol messages into gnulib domain, when --pobase is used.
25281         * lib/xstrtol.h (_STRTOL_ERROR): Move messages out of macro...
25282         * lib/xstrtol-error.c (xstrtol_error): ...into new file.
25283         * modules/xstrtol (Files): Distribute new file.
25284         * m4/xstrtol.m4 (gl_XSTRTOL): Build new file.
25285         * lib/xstrtol.c (TESTING_XSTRTO): Move tests...
25286         * tests/test-xstrtol.c: ...into new file.
25287         * tests/test-xstrtoul.c: Also test xstrtoul.
25288         * tests/test-xstrtoimax.c: Also test xstrtoimax.
25289         * tests/test-xstrtoumax.c: Also test xstrtoumax.
25290         * tests/test-xstrtol.sh: Drive the tests.
25291         * tests/test-xstrtoimax.sh: Likewise.
25292         * tests/test-xstrtoumax.sh: Likewise.
25293         * modules/xstrtol-tests: New module.
25294         * modules/xstrtoimax-tests: Likewise.
25295         * modules/xstrtoumax-tests: Likewise.
25296
25297 2007-08-08  Jim Meyering  <jim@meyering.net>
25298
25299         New function: mfile_name_concat.
25300         * lib/filenamecat.c (mfile_name_concat): New function, just like
25301         file_name_concat, but return NULL upon failure rather than exiting
25302         with a diagnostic.
25303         * lib/filenamecat.h: Declare it.
25304
25305 2007-08-07  Bruno Haible  <bruno@clisp.org>
25306
25307         * m4/inttypes.m4 (gl_INTTYPES_H): Use GL_TRIGGER_STDC_LIMIT_MACROS
25308         instead of __STDC_LIMIT_MACROS_TRIGGER. This avoids a redefinition
25309         warning from gcc.
25310         Reported by Eric Blake.
25311
25312 2007-08-07  Simon Josefsson  <simon@josefsson.org>
25313
25314         * modules/crypto/arctwo (License): Use the synonymous term "LGPLv2+".
25315         * modules/crypto/arcfour (License): Likewise.
25316         * modules/crypto/des-tests (License): Likewise.
25317         * modules/crypto/gc-arctwo-tests (License): Likewise.
25318         * modules/crypto/gc-des-tests (License): Likewise.
25319         * modules/crypto/gc-hmac-md5-tests (License): Likewise.
25320         * modules/crypto/gc-hmac-sha1-tests (License): Likewise.
25321         * modules/crypto/gc-md2-tests (License): Likewise.
25322         * modules/crypto/gc-md4-tests (License): Likewise.
25323         * modules/crypto/gc-md5-tests (License): Likewise.
25324         * modules/crypto/gc-pbkdf2-sha1-tests (License): Likewise.
25325         * modules/crypto/gc-rijndael-tests (License): Likewise.
25326         * modules/crypto/gc-sha1-tests (License): Likewise.
25327         * modules/crypto/gc-tests (License): Likewise.
25328         * modules/crypto/hmac-md5 (License): Likewise.
25329         * modules/crypto/hmac-sha1 (License): Likewise.
25330         * modules/crypto/md2-tests (License): Likewise.
25331         * modules/crypto/md4-tests (License): Likewise.
25332         * modules/crypto/md5 (License): Likewise.
25333         * modules/crypto/rijndael (License): Likewise.
25334         * modules/crypto/sha1 (License): Likewise.
25335         * modules/memxor (License): Likewise.
25336
25337 2007-08-06  Paul Eggert  <eggert@cs.ucla.edu>
25338         and Bruno Haible  <bruno@clisp.org>
25339
25340         * NEWS: Describe interface changes to human, xstrtol.
25341         * lib/human.h: Include <xstrtol.h>.
25342         (human_options): Return enum strtol_error, not int.  Remove
25343         bool arg; take int * instead.
25344         * lib/human.c: Don't include "gettext.h".
25345         (_): Remove; no longer used.
25346         Don't include <xstrtol.h>, since human.h does it.
25347         (human_options): Adjust to abovementioned interface changes.
25348         Do not report error to stderr; that's now the caller's
25349         responsibility.
25350         * lib/xstrtol.c (main) [defined TESTING_XSTRTO]: Adjust to
25351         interface change.
25352         * lib/xstrtol.h (_STRTOL_ERROR): Take Option, Arg rather than
25353         Str, Argument_type_string.  All uses changed.  Put " argument"
25354         in diagnostics to make them clearer.  Change wording of suffix
25355         message for clarity.
25356         (STRTOL_FATAL_ERROR): Take Option, Arg rather than Str,
25357         Argument_type_string.
25358         (STRTOL_FATAL_WARN): Remove; no longer used.
25359         * modules/human (Depends-on): Remove gettext-h.
25360
25361 2007-08-06  Simon Josefsson  <simon@josefsson.org>
25362
25363         * build-aux/maint.mk, build-aux/GNUmakefile: Relicense to GPLv3+.
25364
25365 2007-07-31  Bruno Haible  <bruno@clisp.org>
25366
25367         * m4/stdint.m4 (gl_STDINT_H): Test whether WCHAR_MIN and WCHAR_MAX
25368         are defined by <stdint.h> (as opposed to <wchar.h>, as on Dragonfly).
25369         Reported by Joerg Sonnenberger <joerg@britannica.bec.de>.
25370
25371 2007-07-31  Bruno Haible  <bruno@clisp.org>
25372
25373         * lib/fflush.c (rpl_fflush): On BSD systems, use the __SNPT flag.
25374         Suggested by Joerg Sonnenberger <joerg@britannica.bec.de>.
25375
25376 2007-07-30  Bruno Haible  <bruno@clisp.org>
25377
25378         * modules/base64 (License): Use the synonymous term "LGPLv2+".
25379         * modules/c-ctype (License): Likewise.
25380         * modules/c-strcase (License): Likewise.
25381         * modules/check-version (License): Likewise.
25382         * modules/iconv (License): Likewise.
25383         * modules/iconv_open (License): Likewise.
25384         * modules/read-file (License): Likewise.
25385         * modules/striconv (License): Likewise.
25386         * modules/strverscmp (License): Likewise.
25387         * modules/vasprintf (License): Likewise.
25388         * modules/crypto/des (License): Likewise.
25389         * modules/crypto/gc (License): Likewise.
25390         * modules/crypto/gc-arcfour (License): Likewise.
25391         * modules/crypto/gc-arctwo (License): Likewise.
25392         * modules/crypto/gc-des (License): Likewise.
25393         * modules/crypto/gc-hmac-md5 (License): Likewise.
25394         * modules/crypto/gc-hmac-sha1 (License): Likewise.
25395         * modules/crypto/gc-md2 (License): Likewise.
25396         * modules/crypto/gc-md4 (License): Likewise.
25397         * modules/crypto/gc-md5 (License): Likewise.
25398         * modules/crypto/gc-pbkdf2-sha1 (License): Likewise.
25399         * modules/crypto/gc-random (License): Likewise.
25400         * modules/crypto/gc-rijndael (License): Likewise.
25401         * modules/crypto/gc-sha1 (License): Likewise.
25402         * modules/crypto/md2 (License): Likewise.
25403         * modules/crypto/md4 (License): Likewise.
25404
25405 2007-07-30  Jim Meyering  <jim@meyering.net>
25406
25407         * lib/fts.c (fts_read): Upon failure to chdir into a subdirectory,
25408         set fts_info to FTS_DNR, not to FTS_ERR, so that the caller knows
25409         it has valid stat data.  This bug would cause du not to count the
25410         sizes of inaccessible directories.
25411         Patch by Bryan Mason <bmason@redhat.com>, via Jose Maria Plans
25412         in <http://bugzilla.redhat.com/250077>.
25413
25414 2007-07-25  Peter O'Gorman  <peter@pogma.com>
25415             Bruno Haible  <bruno@clisp.org>
25416
25417         * m4/include_next.m4 (gl_INCLUDE_NEXT): Test whether #include_next
25418         really works. Needed because AIX 4.3 "xlc -E" doesn't understand
25419         #include_next, gives a diagnostic about it, but reports no error in
25420         the exit code.
25421         Reported by Gary V. Vaughan <gary@thewrittenword.com>.
25422
25423 2007-07-24  Ben Pfaff  <blp@gnu.org>
25424
25425         Improve name: "count-one-bits" is better than "popcount".
25426         * MODULES.html.sh: Update name.
25427         * lib/popcount.h: Renamed lib/count-one-bits.h.
25428         (popcount): Renamed count_one_bits.
25429         (popcountl): Renamed count_one_bits_l.
25430         (popcountll): Renamed count_one_bits_ll.
25431         * m4/popcount.m4: Renamed m4/count-one-bits.m4.
25432         * modules/popcount: Renamed module/count-one-bits.
25433         * modules/popcount-tests: Renamed module/count-one-bits-tests.
25434         * tests/test-popcount.c: Renamed tests/test-count-one-bits.c.
25435
25436 2007-07-23  Ben Pfaff  <blp@gnu.org>
25437
25438         * lib/popcount.h (popcount32): Reduce size of constants, to allow
25439         better code generation, and add U to large constants to avoid
25440         warnings, in non-GCC case.
25441         Suggested by Bruno Haible.
25442
25443 2007-07-23  Ben Pfaff  <blp@gnu.org>
25444
25445         * lib/popcount.h: Use verify_true instead of if...abort.
25446         * modules/popcount: Depend on verify module.
25447         Suggested by Jim Meyering.
25448
25449 2007-07-23  Bruno Haible  <bruno@clisp.org>
25450
25451         * gnulib-tool (func_import): Create a .cvsignore file also when the
25452         directory is not yet in CVS but the toplevel directory is. When
25453         creating a .cvsignore file, add ".deps" and ".dirstamp" to it.
25454         Reported by Karl Berry.
25455
25456 2007-07-22  Ben Pfaff  <blp@gnu.org>
25457
25458         * lib/popcount.h: Use faster, branchless algorithm for non-GCC
25459         case.
25460         Suggested by Eric Blake.
25461
25462 2007-07-22  Ben Pfaff  <blp@gnu.org>
25463
25464         New module: popcount.
25465         * MODULES.html.sh: Add popcount.
25466         * modules/popcount: New file.
25467         * modules/popcount-tests: New file.
25468         * tests/test-popcount.c: New file.
25469         * lib/popcount.h: New file.
25470         * m4/popcount.m4: New file.
25471
25472 2007-07-22  Paul Eggert  <eggert@cs.ucla.edu>
25473
25474         * build-aux/announce-gen: Update to GPLv3.
25475
25476         * build-aux/config.guess: Update from config.
25477
25478 2007-07-21  Bruno Haible  <bruno@clisp.org>
25479
25480         * lib/error.c (_) [ENABLE_NLS]: Define to gettext.
25481         * lib/verror.c (_) [ENABLE_NLS]: Likewise.
25482
25483 2007-07-20  Jim Meyering  <jim@meyering.net>
25484
25485         * check-module: Diagnose a self-dependency.
25486
25487 2007-07-19  Bruno Haible  <bruno@clisp.org>
25488
25489         * gnulib-tool (func_import): Don't abort if pobase or po_domain is
25490         empty.
25491         Reported by Eric Blake.
25492
25493 2007-07-18  Bruno Haible  <bruno@clisp.org>
25494
25495         * gnulib-tool: New options --po-base, --po-domain.
25496         (func_usage): Document them.
25497         (pobase, po_domain): New variables.
25498         (func_emit_lib_Makefile_am): Augment AM_CPPFLAGS, defining
25499         DEFAULT_TEXT_DOMAIN.
25500         (func_emit_po_Makevars, func_emit_po_POTFILES_in): New functions.
25501         (func_import): Consider pobase and po_domain. Create a po/ directory.
25502         (func_create_testdir): Set pobase and po_domain to empty.
25503         * build-aux/po/Makefile.in.in: New file, from GNU gettext 0.16.1.
25504         * build-aux/po/remove-potcdate.sin: New file, from GNU gettext 0.16.1.
25505
25506 2007-07-18  Bruno Haible  <bruno@clisp.org>
25507
25508         * gnulib-tool (func_get_automake_snippet): Synthesize also an
25509         EXTRA_DIST augmentation for files in build-aux/.
25510
25511 2007-07-16  Bruno Haible  <bruno@clisp.org>
25512
25513         * modules/lseek (License): Use the synonymous term "LGPLv2+".
25514         * modules/getdelim (License): Likewise.
25515
25516 2007-07-16  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
25517
25518         * modules/arpa_inet (License): Use the synonymous term LGPLv2+.
25519         * modules/d-type (License): Likewise.
25520         * modules/extensions (License): Likewise.
25521         * modules/fnmatch (License): Likewise.
25522         * modules/fseeko (License): Likewise.
25523         * modules/getaddrinfo (License): Likewise.
25524         * modules/getline (License): Likewise.
25525         * modules/getlogin_r (License): Likewise.
25526         * modules/getpass (License): Likewise.
25527         * modules/gettimeofday (License): Likewise.
25528         * modules/glob (License): Likewise.
25529         * modules/inet_ntop (License): Likewise.
25530         * modules/malloc (License): Likewise.
25531         * modules/malloca (License): Likewise.
25532         * modules/memmem (License): Likewise.
25533         * modules/mempcpy (License): Likewise.
25534         * modules/memset (License): Likewise.
25535         * modules/minmax (License): Likewise.
25536         * modules/mktime (License): Likewise.
25537         * modules/netinet_in (License): Likewise.
25538         * modules/pathmax (License): Likewise.
25539         * modules/poll (License): Likewise.
25540         * modules/regex (License): Likewise.
25541         * modules/snprintf (License): Likewise.
25542         * modules/stdbool (License): Likewise.
25543         * modules/stdint (License): Likewise.
25544         * modules/stdio (License): Likewise.
25545         * modules/strcase (License): Likewise.
25546         * modules/strcasestr (License): Likewise.
25547         * modules/strdup (License): Likewise.
25548         * modules/string (License): Likewise.
25549         * modules/strndup (License): Likewise.
25550         * modules/strnlen (License): Likewise.
25551         * modules/strpbrk (License): Likewise.
25552         * modules/strptime (License): Likewise.
25553         * modules/strsep (License): Likewise.
25554         * modules/sys_select (License): Likewise.
25555         * modules/sys_socket (License): Likewise.
25556         * modules/sys_stat (License): Likewise.
25557         * modules/sys_time (License): Likewise.
25558         * modules/time (License): Likewise.
25559         * modules/time_r (License): Likewise.
25560         * modules/timegm (License): Likewise.
25561         * modules/unistd (License): Likewise.
25562         * modules/vsnprintf (License): Likewise.
25563         * modules/wctype (License): Likewise.
25564
25565 2007-07-16  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
25566
25567         * modules/argz (License): LGPLv2+.
25568
25569 2007-07-15  Karl Berry  <karl@gnu.org>
25570
25571         * doc/gnulib.texi: revise node structure per new fdl.texi.
25572
25573 2007-07-14  Bruno Haible  <bruno@clisp.org>
25574
25575         * lib/uniname/gen-uninames.lisp (main): Emit a "do not edit" line to
25576         the output file.
25577         * lib/uniname/uninames.h: Regenerated.
25578
25579 2007-07-14  Karl Berry  <karl@gnu.org>
25580
25581         * doc/*gpl*.texi, doc/fdl.texi: new versions, consistently
25582         omitting sectioning and index commands.
25583
25584 2007-07-13  Bruno Haible  <bruno@clisp.org>
25585
25586         New gnulib-tool option --more-symlinks.
25587         * gnulib-tool (func_usage): Document --more-symlinks.
25588         (do_copyrights): New variable.
25589         Recognize option --more-symlinks.
25590         (func_import): Don't add a copyright notice transform to
25591         sed_transform_lib_file if do_copyrights is empty.
25592
25593 2007-07-13  Bruno Haible  <bruno@clisp.org>
25594
25595         * lib/vasnprintf.c (decimal_point_char): Define also if
25596         (NEED_PRINTF_LONG_DOUBLE || NEED_PRINTF_INFINITE_DOUBLE)
25597         && !NEED_PRINTF_DIRECTIVE_A.
25598         Reported by Clemens Koller <clemens.koller@anagramm.de> via
25599         Gary V. Vaughan <gary@gnu.org>.
25600
25601 2007-07-13  Paul Eggert  <eggert@cs.ucla.edu>
25602
25603         * lib/inttypes_.h: Undo previous change, since it was fixed
25604         in a different way in the 2007-07-02 fix to m4/inttypes.m4.
25605
25606 2007-07-13  Bruno Haible  <bruno@clisp.org>
25607
25608         * lib/stdint_.h: Fix typo: _GL_JUST_INCLUDE_SYSTEM_INTTYPES_H was
25609         misspelled as _GL_JUST_INCLUDE_ABSOLUTE_INTTYPES_H.
25610
25611 2007-07-13  Jim Meyering  <jim@meyering.net>
25612
25613         df: Don't fail for Tru64's "file-on-file mount".
25614         * m4/fsusage.m4 (gl_FSUSAGE): Reject Tru64's buggy statvfs,
25615         so we fall through and use statfs instead.  Details here:
25616         <http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/10878>
25617         Reported by Albert Chin.
25618
25619 2007-07-13  Bruno Haible  <bruno@clisp.org>
25620
25621         * modules/alloca-opt (License): Use the synonymous term "LGPLv2+".
25622         * modules/configmake (License): Likewise.
25623         * modules/gettext (License): Likewise.
25624         * modules/gettext-h (License): Likewise.
25625         * modules/include_next (License): Likewise.
25626         * modules/link-warning (License): Likewise.
25627         * modules/localcharset (License): Likewise.
25628         * modules/localename (License): Likewise.
25629         * modules/lock (License): Likewise.
25630         * modules/relocatable-lib-lgpl (License): Likewise.
25631         * modules/size_max (License): Likewise.
25632         * modules/vasnprintf (License): Likewise.
25633         * modules/wchar (License): Likewise.
25634         * modules/xsize (License): Likewise.
25635
25636 2007-07-13  Bruno Haible  <bruno@clisp.org>
25637
25638         * gnulib-tool (func_import): Treat LGPLv2 as synonymous to LGPL.
25639         (func_create_testdir): Handle copying terms "GPLv2+" and "LGPLv2+".
25640
25641 2007-07-12  Bruno Haible  <bruno@clisp.org>
25642
25643         * doc/gnulib-intro.texi (Copyright): Clarify the license abbreviations
25644         in the modules files.
25645
25646 2007-07-11  Karl Berry  <karl@gnu.org>
25647
25648         * MODULES.html.sh (func_module): use
25649          sed -e '\|^'"${includefile}"'$|d'
25650          instead of /.../d, to avoid errors on $includefile's containing /.
25651
25652 2007-07-10  Sergey Poznyakoff  <gray@gnu.org.ua>
25653
25654         * gnulib-tool (func_import): Avoid duplication of --avoid
25655         statements
25656         (func_dest_tmpfilename,func_create_testdir): Translate `-' in file
25657         names to `_' in variable names.
25658
25659 2007-07-10  Eric Blake  <ebb9@byu.net>
25660
25661         * lib/version-etc.c (version_etc_va): Default to GPLv3+.
25662         * NEWS: Document this change.
25663
25664 2007-07-08  Bruno Haible  <bruno@clisp.org>
25665
25666         Update to Unicode 5.0.
25667         * lib/uniwidth/width.c (nonspacing_table_data): Add U+00AD,
25668         U+0350..U+035F, U+05A2, U+05BA, U+05C5, U+05C7, U+0600..U+0603,
25669         U+0610..U+0615, U+0656..U+065E, U+07EB..U+07F3, U+0A01, U+0AE2..U+0AE3,
25670         U+0CBC. Remove U+0CBF, U+0CC6. Add U+0CE2..U+0CE3, U+135F,
25671         U+17B4..U+17B5, U+17DD. Remove U+180E. Add U+1920..U+1922,
25672         U+1927..U+192B, U+1932, U+1939..U+193B, U+1A17..U+1A18, U+1B00..U+1B03,
25673         U+1B34, U+1B36..U+1B3A, U+1B3C, U+1B42, U+1B6B..U+1B73, U+1DC0..U+1DCA,
25674         U+1DFE..U+1DFF, U+20EB..U+20EF, U+A802, U+A806, U+A80B, U+A825..U+A826,
25675         U+10A01..U+10A03, U+10A05..U+10A06, U+10A0C..U+10A0F, U+10A38..U+10A3A,
25676         U+10A3F, U+1D242..U+1D244.
25677         (nonspacing_table_ind): Update.
25678         (uc_width): Assign width 0 to U+E0100..U+E01EF. Assign width 1 to
25679         U+4DC0..U+4DFF. Assign width 2 to U+2329..U+232A, U+FE10..U+FE1F.
25680
25681 2007-07-08  Bruno Haible  <bruno@clisp.org>
25682
25683         Update to Unicode 5.0.
25684         * lib/uniname/gen-uninames.lisp (main): Add the range 0x12xxx to the
25685         code transform. Extend the name index field of unicode_name_to_code and
25686         unicode_code_to_name from 16 to 24 bits.
25687         * lib/uniname/uniname.c (unicode_character_name,
25688         unicode_name_character): Add the range 0x12xxx to the code transform.
25689         * lib/uniname/uninames.h: Regenerated.
25690         * tests/uniname/UnicodeDataNames.txt: Update to Unicode 5.0.
25691
25692 2007-07-07  Bruno Haible  <bruno@clisp.org>
25693
25694         * modules/wcwidth-tests: New file.
25695         * tests/test-wcwidth.c: New file.
25696
25697         Work around MacOS X wcwidth() bug.
25698         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Test against MacOS X 10.3 bug.
25699         * lib/wcwidth.c: Include localcharset.h, streq.h, uniwidth.h.
25700         (rpl_wcwidth): Special-case the UTF-8 locales. Fall back to the
25701         original wcwidth in non-UTF-8 locales.
25702         * modules/wcwidth (Depends-on): Add localcharset, streq,
25703         uniwidth/width.
25704         * doc/functions/wcwidth.texi: Update.
25705
25706 2007-07-07  Bruno Haible  <bruno@clisp.org>
25707
25708         * lib/wchar_.h: Include the GL_LINK_WARNING macro.
25709         (wcwidth): New declaration.
25710         * m4/wchar.m4 (gl_WCHAR_MODULE_INDICATOR, gl_WCHAR_H_DEFAULTS): New
25711         macros.
25712         (gl_WCHAR_H): Require gl_WCHAR_H_DEFAULTS. Don't set WCHAR_H to empty
25713         here. Prepare for creating <wchar.h> unconditionally.
25714         * modules/wchar (Depends-on): Add link-warning.
25715         (Makefile.am): Substitute also GNULIB_WCWIDTH, HAVE_DECL_WCWIDTH,
25716         REPLACE_WCWIDTH, and GL_LINK_WARNING.
25717         * lib/wcwidth.h: Remove file.
25718         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Require gl_WCHAR_H_DEFAULTS. Set
25719         HAVE_DECL_WCWIDTH, REPLACE_WCWIDTH, WCHAR_H.
25720         * modules/wcwidth (Files): Remove lib/wcwidth.h.
25721         (configure.ac): Invoke gl_WCHAR_MODULE_INDICATOR.
25722         (Include): Replace wcwidth.h with <wchar.h>.
25723         * lib/wcwidth.c: Include <wchar.h> instead of wcwidth.h.
25724         * lib/mbchar.h: Don't include wcwidth.h.
25725         * lib/mbswidth.c: Likewise.
25726         * NEWS: Mention the change.
25727
25728 2007-07-07  Bruno Haible  <bruno@clisp.org>
25729
25730         * lib/wcwidth.c: New file, extracted from lib/wcwidth.h.
25731         * lib/wcwidth.h: Don't include wctype.h. Replace inline function
25732         definition with an external declaration.
25733         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Use wcwidth.c when wcwidth is not
25734         defined as a function. Remove AC_C_INLINE requirement.
25735         * modules/wcwidth (Files): Add lib/wcwidth.c.
25736         (Makefile.am): Remove redundant statement.
25737
25738 2007-07-07  Bruno Haible  <bruno@clisp.org>
25739
25740         * MODULES.html.sh (Unicode string functions): Add the new modules.
25741
25742         * tests/uniwidth/test-u32-strwidth.c: New file.
25743         * modules/uniwidth/u32-strwidth-tests: New file.
25744
25745         * lib/uniwidth/u32-strwidth.c: New file.
25746         * modules/uniwidth/u32-strwidth: New file.
25747
25748         * tests/uniwidth/test-u16-strwidth.c: New file.
25749         * modules/uniwidth/u16-strwidth-tests: New file.
25750
25751         * lib/uniwidth/u16-strwidth.c: New file.
25752         * modules/uniwidth/u16-strwidth: New file.
25753
25754         * tests/uniwidth/test-u8-strwidth.c: New file.
25755         * modules/uniwidth/u8-strwidth-tests: New file.
25756
25757         * lib/uniwidth/u8-strwidth.c: New file.
25758         * modules/uniwidth/u8-strwidth: New file.
25759
25760         * tests/uniwidth/test-u32-width.c: New file.
25761         * modules/uniwidth/u32-width-tests: New file.
25762
25763         * lib/uniwidth/u32-width.c: New file.
25764         * modules/uniwidth/u32-width: New file.
25765
25766         * tests/uniwidth/test-u16-width.c: New file.
25767         * modules/uniwidth/u16-width-tests: New file.
25768
25769         * lib/uniwidth/u16-width.c: New file.
25770         * modules/uniwidth/u16-width: New file.
25771
25772         * tests/uniwidth/test-u8-width.c: New file.
25773         * modules/uniwidth/u8-width-tests: New file.
25774
25775         * lib/uniwidth/u8-width.c: New file.
25776         * modules/uniwidth/u8-width: New file.
25777
25778         * tests/uniwidth/test-uc_width.c: New file.
25779         * modules/uniwidth/width-tests: New file.
25780
25781         * lib/uniwidth/width.c: New file, from GNU libiconv.
25782         * lib/uniwidth/cjk.h: New file, from GNU libiconv.
25783         * modules/uniwidth/width: New file.
25784
25785         * lib/uniwidth.h: New file, from GNU libiconv.
25786         * modules/uniwidth/base: New file.
25787
25788 2007-07-07  Bruno Haible  <bruno@clisp.org>
25789
25790         * lib/uniname.h: New file, from GNU gettext.
25791         * lib/uniname/gen-uninames.lisp: New file, from GNU gettext.
25792         * lib/uniname/uninames.h: New file, from GNU gettext.
25793         * lib/uniname/uniname.c: New file, from GNU gettext.
25794         * tests/uniname/test-uninames.sh: New file.
25795         * tests/uniname/test-uninames.c: New file, from GNU gettext.
25796         * tests/uniname/UnicodeDataNames.txt: New file, from GNU gettext.
25797         * modules/uniname/base: New file.
25798         * modules/uniname/uniname: New file.
25799         * modules/uniname/uniname-tests: New file.
25800         * MODULES.html.sh (Unicode string functions): Add the new modules.
25801
25802 2007-07-06  Bruno Haible  <bruno@clisp.org>
25803
25804         * doc/Makefile (TEXI2HTML): Specify a --reference-limit.
25805
25806 2007-07-06  Bruno Haible  <bruno@clisp.org>
25807
25808         * lib/sys_time_.h: Use a recursion-safe inclusion guard rather than
25809         a split double-inclusion guard. Needed for cygwin, where <sys/time.h>
25810         includes <cygwin/sys_time.h> which includes <sys/select.h> which
25811         include <sys/time.h>.
25812         Reported by Eric Blake.
25813
25814 2007-07-06  Eric Blake  <ebb9@byu.net>
25815
25816         Fix testing canonicalize on cygwin.
25817         * modules/canonicalize-lgpl-tests (test_canonicalize_lgpl_LDADD):
25818         Revert patch from 2007-06-19.
25819         * tests/test-canonicalize-lgpl.c (main): Instead, skip test when
25820         canonicalize module is also in use.
25821         * tests/test-canonicalize.c: New file.
25822         * tests/test-canonicalize.sh: Likewise.
25823         * modules/canonicalize-tests: Likewise.
25824
25825 2007-07-06  Jim Meyering  <jim@meyering.net>
25826
25827         * lib/getugroups.c (getugroups): Detect getgrent failure.
25828         Adjust comment to reflect reality: this function may return -1.
25829
25830 2007-07-05  Sergey Poznyakoff  <gray@gnu.org.ua>
25831
25832         * build-aux/bootstrap (TP_URL,get_translations): Update to use
25833         the new TP address.
25834         (usage): Fix typo
25835         (gnulib_mk): New variable.
25836
25837 2007-07-05  Jim Meyering  <jim@meyering.net>
25838
25839         Don't let endgrent clobber errno, no matter how improbable.
25840         * lib/getugroups.c (getugroups): Save and restore errno around
25841         endgrent call.
25842
25843         Close the group DB even when failing with 2^31 or more members.
25844         * lib/getugroups.c (getugroups): Don't return without calling endgrent.
25845
25846 2007-07-04  Jim Meyering  <jim@meyering.net>
25847
25848         * lib/getugroups.h: New file.
25849         * lib/getugroups.c: Include "getugroups.h".
25850         Remove uses of "register" keyword.
25851         Move local variable, "cp", down into scope where used.
25852         Give "username" parameter the "const" attribute.
25853         * modules/getugroups (Files): Add lib/getugroups.h
25854
25855 2007-07-04  Karl Berry  <karl@gnu.org>
25856
25857         * MODULES.html.sh (func_all_modules): Complete rename of
25858         gpl/lgpl to gpl-2.0 and lgpl-2.1, and add gpl-3.0.
25859
25860 2007-07-02  Bruno Haible  <bruno@clisp.org>
25861
25862         * m4/inttypes.m4 (gl_INTTYPES_H): Define __STDC_LIMIT_MACROS in C++
25863         mode, when inttypes.h comes from gnulib.
25864         Reported by Joel E. Denny <jdenny@ces.clemson.edu>.
25865
25866 2007-07-02  Simon Josefsson  <simon@josefsson.org>
25867
25868         * NEWS: Mention lgpl module name change.
25869
25870         * modules/lgpl-2.1: Renamed from lgpl.
25871
25872         * NEWS: Mention gpl module name change.
25873
25874         * modules/gpl-3.0: New file, based on gpl-2.0.
25875
25876         * modules/gpl-2.0: Renamed from gpl.
25877
25878         * modules/gpl: Fix filename, doc/gpl.texi is now found at
25879         doc/gpl-2.0.texi.
25880
25881 2007-07-02  Paul Eggert  <eggert@cs.ucla.edu>
25882
25883         * lib/inttypes_.h [defined __cplusplus&&!defined __STDC_LIMIT_MACROS]:
25884         #define __STDC_LIMIT_MACROS temporarily while including
25885         <stdint.h>, so that __STDC_LIMIT_MACROS is defined.
25886         Problem reported by Joel E. Denny in
25887         <http://lists.gnu.org/archive/html/bug-gnulib/2007-07/msg00008.html>.
25888
25889 2007-07-01  Bruno Haible  <bruno@clisp.org>
25890
25891         * lib/unistdio.h: New file.
25892         * lib/unistdio/u-asnprintf.h: New file.
25893         * lib/unistdio/u-asprintf.h: New file.
25894         * lib/unistdio/u-printf-args.c: New file.
25895         * lib/unistdio/u-printf-args.h: New file.
25896         * lib/unistdio/u-printf-parse.h: New file.
25897         * lib/unistdio/u-snprintf.h: New file.
25898         * lib/unistdio/u-sprintf.h: New file.
25899         * lib/unistdio/u-vasprintf.h: New file.
25900         * lib/unistdio/u-vsnprintf.h: New file.
25901         * lib/unistdio/u-vsprintf.h: New file.
25902         * lib/unistdio/ulc-asnprintf.c: New file.
25903         * lib/unistdio/ulc-asprintf.c: New file.
25904         * lib/unistdio/ulc-fprintf.c: New file, based on lib/fprintf.c.
25905         * lib/unistdio/ulc-printf-parse.c: New file.
25906         * lib/unistdio/ulc-snprintf.c: New file.
25907         * lib/unistdio/ulc-sprintf.c: New file.
25908         * lib/unistdio/ulc-vasnprintf.c: New file.
25909         * lib/unistdio/ulc-vasprintf.c: New file.
25910         * lib/unistdio/ulc-vfprintf.c: New file, based on lib/vfprintf.c.
25911         * lib/unistdio/ulc-vsnprintf.c: New file.
25912         * lib/unistdio/ulc-vsprintf.c: New file.
25913         * lib/unistdio/u8-asnprintf.c: New file.
25914         * lib/unistdio/u8-asprintf.c: New file.
25915         * lib/unistdio/u8-printf-parse.c: New file.
25916         * lib/unistdio/u8-snprintf.c: New file.
25917         * lib/unistdio/u8-sprintf.c: New file.
25918         * lib/unistdio/u8-vasnprintf.c: New file.
25919         * lib/unistdio/u8-vasprintf.c: New file.
25920         * lib/unistdio/u8-vsnprintf.c: New file.
25921         * lib/unistdio/u8-vsprintf.c: New file.
25922         * lib/unistdio/u8-u8-asnprintf.c: New file.
25923         * lib/unistdio/u8-u8-asprintf.c: New file.
25924         * lib/unistdio/u8-u8-snprintf.c: New file.
25925         * lib/unistdio/u8-u8-sprintf.c: New file.
25926         * lib/unistdio/u8-u8-vasnprintf.c: New file.
25927         * lib/unistdio/u8-u8-vasprintf.c: New file.
25928         * lib/unistdio/u8-u8-vsnprintf.c: New file.
25929         * lib/unistdio/u8-u8-vsprintf.c: New file.
25930         * lib/unistdio/u16-asnprintf.c: New file.
25931         * lib/unistdio/u16-asprintf.c: New file.
25932         * lib/unistdio/u16-printf-parse.c: New file.
25933         * lib/unistdio/u16-snprintf.c: New file.
25934         * lib/unistdio/u16-sprintf.c: New file.
25935         * lib/unistdio/u16-vasnprintf.c: New file.
25936         * lib/unistdio/u16-vasprintf.c: New file.
25937         * lib/unistdio/u16-vsnprintf.c: New file.
25938         * lib/unistdio/u16-vsprintf.c: New file.
25939         * lib/unistdio/u16-u16-asnprintf.c: New file.
25940         * lib/unistdio/u16-u16-asprintf.c: New file.
25941         * lib/unistdio/u16-u16-snprintf.c: New file.
25942         * lib/unistdio/u16-u16-sprintf.c: New file.
25943         * lib/unistdio/u16-u16-vasnprintf.c: New file.
25944         * lib/unistdio/u16-u16-vasprintf.c: New file.
25945         * lib/unistdio/u16-u16-vsnprintf.c: New file.
25946         * lib/unistdio/u16-u16-vsprintf.c: New file.
25947         * lib/unistdio/u32-asnprintf.c: New file.
25948         * lib/unistdio/u32-asprintf.c: New file.
25949         * lib/unistdio/u32-printf-parse.c: New file.
25950         * lib/unistdio/u32-snprintf.c: New file.
25951         * lib/unistdio/u32-sprintf.c: New file.
25952         * lib/unistdio/u32-vasnprintf.c: New file.
25953         * lib/unistdio/u32-vasprintf.c: New file.
25954         * lib/unistdio/u32-vsnprintf.c: New file.
25955         * lib/unistdio/u32-vsprintf.c: New file.
25956         * lib/unistdio/u32-u32-asnprintf.c: New file.
25957         * lib/unistdio/u32-u32-asprintf.c: New file.
25958         * lib/unistdio/u32-u32-snprintf.c: New file.
25959         * lib/unistdio/u32-u32-sprintf.c: New file.
25960         * lib/unistdio/u32-u32-vasnprintf.c: New file.
25961         * lib/unistdio/u32-u32-vasprintf.c: New file.
25962         * lib/unistdio/u32-u32-vsnprintf.c: New file.
25963         * lib/unistdio/u32-u32-vsprintf.c: New file.
25964         * tests/unistdio/test-ulc-asnprintf1.c: New file.
25965         * tests/unistdio/test-ulc-asnprintf1.h: New file.
25966         * tests/unistdio/test-ulc-printf1.h: New file.
25967         * tests/unistdio/test-ulc-vasnprintf1.c: New file.
25968         * tests/unistdio/test-ulc-vasnprintf2.c: New file.
25969         * tests/unistdio/test-ulc-vasnprintf2.sh: New file.
25970         * tests/unistdio/test-ulc-vasnprintf3.c: New file.
25971         * tests/unistdio/test-ulc-vasnprintf3.sh: New file.
25972         * tests/unistdio/test-ulc-vasprintf1.c: New file.
25973         * tests/unistdio/test-ulc-vsnprintf1.c: New file.
25974         * tests/unistdio/test-ulc-vsprintf1.c: New file.
25975         * tests/unistdio/test-u8-asnprintf1.c: New file.
25976         * tests/unistdio/test-u8-asnprintf1.h: New file.
25977         * tests/unistdio/test-u8-printf1.h: New file.
25978         * tests/unistdio/test-u8-vasnprintf1.c: New file.
25979         * tests/unistdio/test-u8-vasnprintf2.c: New file.
25980         * tests/unistdio/test-u8-vasnprintf2.sh: New file.
25981         * tests/unistdio/test-u8-vasnprintf3.c: New file.
25982         * tests/unistdio/test-u8-vasnprintf3.sh: New file.
25983         * tests/unistdio/test-u8-vasprintf1.c: New file.
25984         * tests/unistdio/test-u8-vsnprintf1.c: New file.
25985         * tests/unistdio/test-u8-vsprintf1.c: New file.
25986         * tests/unistdio/test-u16-asnprintf1.c: New file.
25987         * tests/unistdio/test-u16-asnprintf1.h: New file.
25988         * tests/unistdio/test-u16-printf1.h: New file.
25989         * tests/unistdio/test-u16-vasnprintf1.c: New file.
25990         * tests/unistdio/test-u16-vasnprintf2.c: New file.
25991         * tests/unistdio/test-u16-vasnprintf2.sh: New file.
25992         * tests/unistdio/test-u16-vasnprintf3.c: New file.
25993         * tests/unistdio/test-u16-vasnprintf3.sh: New file.
25994         * tests/unistdio/test-u16-vasprintf1.c: New file.
25995         * tests/unistdio/test-u16-vsnprintf1.c: New file.
25996         * tests/unistdio/test-u16-vsprintf1.c: New file.
25997         * tests/unistdio/test-u32-asnprintf1.c: New file.
25998         * tests/unistdio/test-u32-asnprintf1.h: New file.
25999         * tests/unistdio/test-u32-printf1.h: New file.
26000         * tests/unistdio/test-u32-vasnprintf1.c: New file.
26001         * tests/unistdio/test-u32-vasnprintf2.c: New file.
26002         * tests/unistdio/test-u32-vasnprintf2.sh: New file.
26003         * tests/unistdio/test-u32-vasnprintf3.c: New file.
26004         * tests/unistdio/test-u32-vasnprintf3.sh: New file.
26005         * tests/unistdio/test-u32-vasprintf1.c: New file.
26006         * tests/unistdio/test-u32-vsnprintf1.c: New file.
26007         * tests/unistdio/test-u32-vsprintf1.c: New file.
26008         * modules/unistdio/base: New file.
26009         * modules/unistdio/u-printf-args: New file.
26010         * modules/unistdio/ulc-asnprintf: New file.
26011         * modules/unistdio/ulc-asprintf: New file.
26012         * modules/unistdio/ulc-fprintf: New file.
26013         * modules/unistdio/ulc-printf-parse: New file.
26014         * modules/unistdio/ulc-snprintf: New file.
26015         * modules/unistdio/ulc-sprintf: New file.
26016         * modules/unistdio/ulc-vasnprintf: New file.
26017         * modules/unistdio/ulc-vasprintf: New file.
26018         * modules/unistdio/ulc-vfprintf: New file.
26019         * modules/unistdio/ulc-vsnprintf: New file.
26020         * modules/unistdio/ulc-vsprintf: New file.
26021         * modules/unistdio/u8-asnprintf: New file.
26022         * modules/unistdio/u8-asprintf: New file.
26023         * modules/unistdio/u8-printf-parse: New file.
26024         * modules/unistdio/u8-snprintf: New file.
26025         * modules/unistdio/u8-sprintf: New file.
26026         * modules/unistdio/u8-vasnprintf: New file.
26027         * modules/unistdio/u8-vasprintf: New file.
26028         * modules/unistdio/u8-vsnprintf: New file.
26029         * modules/unistdio/u8-vsprintf: New file.
26030         * modules/unistdio/u8-u8-asnprintf: New file.
26031         * modules/unistdio/u8-u8-asprintf: New file.
26032         * modules/unistdio/u8-u8-snprintf: New file.
26033         * modules/unistdio/u8-u8-sprintf: New file.
26034         * modules/unistdio/u8-u8-vasnprintf: New file.
26035         * modules/unistdio/u8-u8-vasprintf: New file.
26036         * modules/unistdio/u8-u8-vsnprintf: New file.
26037         * modules/unistdio/u8-u8-vsprintf: New file.
26038         * modules/unistdio/u16-asnprintf: New file.
26039         * modules/unistdio/u16-asprintf: New file.
26040         * modules/unistdio/u16-printf-parse: New file.
26041         * modules/unistdio/u16-snprintf: New file.
26042         * modules/unistdio/u16-sprintf: New file.
26043         * modules/unistdio/u16-vasnprintf: New file.
26044         * modules/unistdio/u16-vasprintf: New file.
26045         * modules/unistdio/u16-vsnprintf: New file.
26046         * modules/unistdio/u16-vsprintf: New file.
26047         * modules/unistdio/u16-u16-asnprintf: New file.
26048         * modules/unistdio/u16-u16-asprintf: New file.
26049         * modules/unistdio/u16-u16-snprintf: New file.
26050         * modules/unistdio/u16-u16-sprintf: New file.
26051         * modules/unistdio/u16-u16-vasnprintf: New file.
26052         * modules/unistdio/u16-u16-vasprintf: New file.
26053         * modules/unistdio/u16-u16-vsnprintf: New file.
26054         * modules/unistdio/u16-u16-vsprintf: New file.
26055         * modules/unistdio/u32-asnprintf: New file.
26056         * modules/unistdio/u32-asprintf: New file.
26057         * modules/unistdio/u32-printf-parse: New file.
26058         * modules/unistdio/u32-snprintf: New file.
26059         * modules/unistdio/u32-sprintf: New file.
26060         * modules/unistdio/u32-vasnprintf: New file.
26061         * modules/unistdio/u32-vasprintf: New file.
26062         * modules/unistdio/u32-vsnprintf: New file.
26063         * modules/unistdio/u32-vsprintf: New file.
26064         * modules/unistdio/u32-u32-asnprintf: New file.
26065         * modules/unistdio/u32-u32-asprintf: New file.
26066         * modules/unistdio/u32-u32-snprintf: New file.
26067         * modules/unistdio/u32-u32-sprintf: New file.
26068         * modules/unistdio/u32-u32-vasnprintf: New file.
26069         * modules/unistdio/u32-u32-vasprintf: New file.
26070         * modules/unistdio/u32-u32-vsnprintf: New file.
26071         * modules/unistdio/u32-u32-vsprintf: New file.
26072         * modules/unistdio/ulc-asnprintf-tests: New file.
26073         * modules/unistdio/ulc-vasnprintf-tests: New file.
26074         * modules/unistdio/ulc-vasprintf-tests: New file.
26075         * modules/unistdio/ulc-vsnprintf-tests: New file.
26076         * modules/unistdio/ulc-vsprintf-tests: New file.
26077         * modules/unistdio/u8-asnprintf-tests: New file.
26078         * modules/unistdio/u8-vasnprintf-tests: New file.
26079         * modules/unistdio/u8-vasprintf-tests: New file.
26080         * modules/unistdio/u8-vsnprintf-tests: New file.
26081         * modules/unistdio/u8-vsprintf-tests: New file.
26082         * modules/unistdio/u16-asnprintf-tests: New file.
26083         * modules/unistdio/u16-vasnprintf-tests: New file.
26084         * modules/unistdio/u16-vasprintf-tests: New file.
26085         * modules/unistdio/u16-vsnprintf-tests: New file.
26086         * modules/unistdio/u16-vsprintf-tests: New file.
26087         * modules/unistdio/u32-asnprintf-tests: New file.
26088         * modules/unistdio/u32-vasnprintf-tests: New file.
26089         * modules/unistdio/u32-vasprintf-tests: New file.
26090         * modules/unistdio/u32-vsnprintf-tests: New file.
26091         * modules/unistdio/u32-vsprintf-tests: New file.
26092         * MODULES.html.sh (Unicode string functions): Add the new modules.
26093
26094 2007-07-01  Bruno Haible  <bruno@clisp.org>
26095
26096         * lib/sprintf.c (sprintf): Limit the available length estimation,
26097         to avoid address wraparound.
26098         * lib/vsprintf.c (vsprintf): Likewise.
26099         * modules/sprintf-posix (Dependencies): Add stdint.
26100         * modules/vsprintf-posix (Dependencies): Likewise.
26101
26102 2007-07-01  Bruno Haible  <bruno@clisp.org>
26103
26104         * gnulib-tool (self_abspathname): Determine PATH_SEPARATOR and handle
26105         Windows PATH as well. Conservative double-quoting. Comments.
26106
26107 2007-07-01  Bruno Haible  <bruno@clisp.org>
26108             Eric Blake  <ebb9@byu.net>
26109             Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
26110
26111         * gnulib-tool (self_abspathname): Fix algorithm to cope with
26112         empty components in $PATH, denoting '.'.
26113
26114 2007-07-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
26115
26116         * gnulib-tool: Fix indentation.
26117         (func_create_megatestdir): Likewise.
26118         Report by Bruno Haible.
26119
26120 2007-06-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
26121
26122         Sync from Automake.
26123         * build-aux/gnupload: Fix shell portability issues with for loops.
26124         Report by Karl Berry.
26125
26126 2007-06-29  Simon Josefsson  <simon@josefsson.org>
26127
26128         * build-aux/maint.mk (POURL): Use translationproject.org.
26129
26130 2007-06-27  Simon Josefsson  <simon@josefsson.org>
26131             Bruno Haible  <bruno@clisp.org>
26132
26133         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Require gl_HEADER_SYS_SOCKET
26134         before using HAVE_WS2TCPIP_H. Check for gai_strerror through an
26135         explicit link test, rather than AC_REPLACE_FUNCS - for mingw.
26136         (gl_PREREQ_GETADDRINFO): Require gl_HEADER_SYS_SOCKET before using
26137         HAVE_SYS_SOCKET_H and HAVE_WS2TCPIP_H.
26138
26139 2007-06-27  Bruno Haible  <bruno@clisp.org>
26140
26141         * build-aux/config.rpath: Upgrade to libtool-1.5.24.
26142         * build-aux/config.libpath: Upgrade to libtool-1.5.24.
26143
26144 2007-06-26  Karl Berry  <karl@gnu.org>
26145
26146         * MODULES.html.sh: remove xreadlink-with-size.
26147
26148 2007-06-23  Paul Eggert  <eggert@cs.ucla.edu>
26149
26150         * lib/time_.h: Port to Solaris 8 with Sun Studio 11, using a
26151         method that I hope also handles the double-include problem noted
26152         by Bruno Haible in
26153         <http://lists.gnu.org/archive/html/bug-gnulib/2007-05/msg00186.html>.
26154
26155 2007-06-23  Bruno Haible  <bruno@clisp.org>
26156
26157         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
26158         Don't let the 'mostlyclean' target fail if the last subdirectory could
26159         not be removed.
26160         Reported by Karl Berry.
26161
26162 2007-06-23  Bruno Haible  <bruno@clisp.org>
26163
26164         * gnulib-tool (echo): Add a speedier workaround for ksh.
26165         * tests/test-echo.sh: Likewise.
26166
26167 2007-06-23  Bruno Haible  <bruno@clisp.org>
26168
26169         * gnulib-tool (echo): Add workarounds also for bash versions < 2.04.
26170         * tests/test-echo.sh: Likewise.
26171
26172 2007-06-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
26173
26174         * gnulib-tool (IFS): Initialize early, so we don't set it to
26175         empty later.
26176         (self_abspathname): Rewrite algorithm to set it, reindent.
26177         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am)
26178         (func_create_megatestdir): Merge some sed scripts.
26179
26180 2007-06-23  Paul Eggert  <eggert@cs.ucla.edu>
26181
26182         * m4/include_next.m4 (gl_CHECK_NEXT_HEADERS): Check some typos
26183         exposed by Sun Studio 11 cc on Solaris 8.
26184
26185 2007-06-22  Bruno Haible  <bruno@clisp.org>
26186
26187         * gnulib-tool (echo): Ensure the echo primitive does not interpret
26188         backslashes.
26189         * tests/test-echo.sh: New file.
26190
26191 2007-06-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
26192
26193         * gnulib-tool (func_add_or_update, func_create_testdir): Do not
26194         simplify `sed_replace_build_aux' scripts, they are portable but
26195         echoing them with `echo' is not.
26196         Report and analysis by Fernando Ferreira <fernando.prog@netcabo.pt>.
26197
26198 2007-06-21  Karl Berry  <karl@gnu.org>
26199
26200         * config/srclist.txt: guess we can't handle the licenses via
26201         srclist at the moment.
26202
26203 2007-06-21  Paul Eggert  <eggert@cs.ucla.edu>
26204
26205         * MODULES.html.sh: Add include_next.
26206         * modules/include_next: New file.
26207
26208 2007-06-20  Paul Eggert  <eggert@cs.ucla.edu>
26209
26210         * m4/include_next.m4 (gl_INCLUDE_NEXT): Define and AC_SUBST
26211         INCLUDE_NEXT.
26212         (gl_CHECK_NEXT_HEADERS): New macro.
26213         * m4/fcntl_h.m4 (gl_FCNTL_H): use gl_CHECK_NEXT_HEADERS instead of
26214         the obsolescent gl_ABSOLUTE_HEADER.
26215         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Likewise.
26216         * m4/float_h.m4 (gl_FLOAT_H): Likewise.
26217         * m4/iconv_h.m4 (gl_ICONV_H): Likewise.
26218         * m4/inttypes.m4 (gl_INTTYPES_H): Likewise.
26219         * m4/locale_h.m4 (gl_LOCALE_H): Likewise.
26220         * m4/math_h.m4 (gl_MATH_H): Likewise.
26221         * m4/netinet_in_h.m4 (gl_HEADER_NETINET_IN): Likewise.
26222         * m4/search_h.m4 (gl_SEARCH_H): Likewise.
26223         * m4/signal_h.m4 (gl_SIGNAL_H): Likewise.
26224         * m4/stdint.m4 (gl_STDINT_H): Likewise.
26225         * m4/stdio_h.m4 (gl_STDIO_H): Likewise.
26226         * m4/stdlib_h.m4 (gl_STDLIB_H): Likewise.
26227         * m4/string_h.m4 (gl_HEADER_STRING_H_BODY): Likewise.
26228         * m4/sys_select_h.m4 (gl_HEADER_SYS_SELECT): Likewise.
26229         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Likewise.
26230         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Likewise.
26231         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H_BODY): Likewise.
26232         * m4/sysexits.m4 (gl_SYSEXITS): Likewise.
26233         * m4/time_h.m4 (gl_HEADER_TIME_H_BODY): Likewise.
26234         * m4/unistd_h.m4 (gl_UNISTD_H): Likewise.
26235         * m4/wchar.m4 (gl_WCHAR_H): Likewise.
26236         * m4/wctype.m4 (gl_WCTYPE_H): Likewise.
26237         * m4/inttypes.m4 (gl_INTTYPES_H): Define
26238         _GL_JUST_INCLUDE_SYSTEM_INTTYPES_H to avoid the problem of unclean
26239         builds, since ABSOLUTE_INTTYPES_H is no longer being defined.
26240         * m4/stdint.m4 (gl_STDINT_H): Likewise, for
26241         _GL_JUST_INCLUDE_SYSTEM_STDINT_H.
26242         * lib/fcntl_.h: Use @INCLUDE_NEXT@ @NEXT_foo_H@
26243         rather than @HAVE_INCLUDE_NEXT@ and @ABSOLUTE_foo_H@.
26244         * lib/float_.h: Likewise.
26245         * lib/inttypes_.h: Likewise.
26246         * lib/math_.h: Likewise.
26247         * lib/search_.h: Likewise.
26248         * lib/signal_.h: Likewise.
26249         * lib/stdint_.h: Likewise.
26250         * lib/stdio_.h: Likewise.
26251         * lib/stdlib_.h: Likewise.
26252         * lib/string_.h: Likewise.
26253         * lib/sys_stat_.h: Likewise.
26254         * lib/sys_time_.h: Likewise.
26255         * lib/time_.h: Likewise.
26256         * lib/unistd_.h: Likewise.
26257         * lib/wchar_.h: Likewise.
26258         * lib/wctype_.h: Likewise.
26259         * lib/dirent_.h: Likewise.
26260         * lib/iconv_.h: Likewise.
26261         * lib/locale_.h: Likewise.
26262         * lib/netinet_in_.h: Likewise.
26263         * lib/sys_select_.h: Likewise.
26264         * lib/sys_socket_.h: Likewise.
26265         * lib/sysexits_.h: Likewise.
26266         * modules/fcntl (Depends-on): Depend on include_next, not
26267         absolute_header.
26268         (Makefile): Substitute INCLUDE_NEXT and NEXT_foo_H, not
26269         HAVE_INCLUDE_NEXT and ABSOLUTE_foo_H.
26270         * modules/fchdir: Likewise.
26271         * modules/float: Likewise.
26272         * modules/iconv_open: Likewise.
26273         * modules/inttypes: Likewise.
26274         * modules/locale: Likewise.
26275         * modules/math: Likewise.
26276         * modules/netinet_in: Likewise.
26277         * modules/search: Likewise.
26278         * modules/signal: Likewise.
26279         * modules/stdint: Likewise.
26280         * modules/stdio: Likewise.
26281         * modules/stdlib: Likewise.
26282         * modules/string: Likewise.
26283         * modules/sys_select: Likewise.
26284         * modules/sys_socket: Likewise.
26285         * modules/sys_stat: Likewise.
26286         * modules/sys_time: Likewise.
26287         * modules/sysexits: Likewise.
26288         * modules/time: Likewise.
26289         * modules/unistd: Likewise.
26290         * modules/wchar: Likewise.
26291         * modules/wctype: Likewise.
26292         * modules/sys_stat: Change maintainer to "all".
26293         * modules/unistd: Likewise.
26294
26295 2007-06-20  Karl Berry  <karl@gnu.org>
26296
26297         * config/srclist.txt: track www changes in license files.
26298
26299 2007-06-20  Sergey Poznyakoff  <gray@gnu.org.ua>
26300
26301         * build-aux/bootstrap: Remove stray dot.
26302         Make sure build_aux settings are honored when linking
26303         gnulib_extra_files.
26304
26305 2007-06-19  Eric Blake  <ebb9@byu.net>
26306
26307         * modules/canonicalize-lgpl-tests (test_canonicalize_lgpl_LDADD):
26308         Allow compilation on cygwin.
26309
26310 2007-06-19  Jim Meyering  <jim@meyering.net>
26311
26312         xreadlink-with-size: Remove module.  No longer used.
26313         Ex-callers now use xreadlink or mreadlink-with-size.
26314         * modules/xreadlink-with-size: Remove module.
26315         * lib/xreadlink-with-size.c: Remove file.
26316         * lib/xreadlink.h (xreadlink_with_size): Remove prototype.
26317         (xreadlink): Remove inaccurate comment.  The one in xreadlink.c,
26318         just before the function definition *is* accurate.
26319
26320         Eliminate one way canonicalize_filename_mode could exit.
26321         * lib/canonicalize.c (canonicalize_filename_mode):
26322         Use mreadlink_with_size, not xreadlink_with_size.
26323
26324 2007-06-18  Paul Eggert  <eggert@cs.ucla.edu>
26325
26326         Detect porting problems to FreeBSD/arm, which has time_t wider than
26327         long int.  Original problem reported for GNU diff by Xin Li in
26328         <http://lists.gnu.org/archive/html/bug-gnu-utils/2007-06/msg00091.html>.
26329         * modules/getdate (Depends-on): Add intprops, verify.
26330         * lib/getdate.y: Include intprops.h, verify.h.  Verify that time_t
26331         is an integer type no wider than long int.
26332
26333 2007-06-18  Jim Meyering  <jim@meyering.net>
26334
26335         New module: mreadlink-with-size.
26336         * MODULES.html.sh: Add mreadlink-with-size.
26337         * modules/mreadlink-with-size: New module
26338         * modules/canonicalize (Depends-on): Depend on mreadlink-with-size,
26339         not xreadlink-with-size.
26340         * lib/mreadlink-with-size.c, lib/mreadlink.h: New files.
26341
26342 2007-06-16  Bruno Haible  <bruno@clisp.org>
26343
26344         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Catch the MacOS X 10.4 bug.
26345         * doc/functions/frexpl.texi: Document the MacOS X 10.4 bug.
26346         Reported by Gary V. Vaughan <gary@gnu.org>.
26347
26348 2007-06-15  Paul Eggert  <eggert@cs.ucla.edu>
26349
26350         Revamp lchown so that it lives in unistd.h where it belongs.
26351         * lib/lchown.h: Remove.
26352         * lib/dirchownmod.c: Don't include lib/lchown.h.
26353         * lib/fchownat.c: Likewise.
26354         * lib/openat.c: Likewise.
26355         * lib/lchown.c (REPLACE_CHOWN): Define to 0 if the system chown
26356         does not follow symlinks.
26357         (EOPNOTSUPP): Define if not defined.
26358         * lib/unistd_.h (chown): Do not replace if REPLADE_CHOWN
26359         is defined to 0.
26360         (lchown): New decl.
26361         * m4/lchown.m4 (gl_FUNC_LCHOWN): Require gl_UNISTD_H_DEFAULTS.
26362         Do not check for lchown decl.
26363         Set REPLACE_LCHOWN.
26364         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Set GNULIB_LCHOWN,
26365         REPLACE_LCHOWN.
26366         * modules/chown: Make it clear it follows symlinks.
26367         * modules/lchown: Make it clear it doesn't follow symlinks.
26368         (Files): Remove lib/lchown.h
26369         (Depends-on): Add unistd.
26370         (configure.ac): Add gl_UNISTD_MODULE_INDICATOR([lchown]).
26371         (Include): Include <unistd.h>, not "lchown.h".
26372         * modules/unistd (unistd.h): Substitude GNULIB_LCHOWN and
26373         REPLACE_LCHOWN.
26374
26375 2007-06-15  Jim Meyering  <jim@meyering.net>
26376
26377         Change license (GPL to LGPL) of fsusage and dependents.
26378         * modules/fsusage (License): Change to LGPL.
26379         * modules/full-read (License): Likewise.
26380         * modules/full-write (License): Likewise.
26381         * modules/safe-read (License): Likewise.
26382         * modules/safe-write (License): Likewise.
26383
26384 2007-06-14  Ben Pfaff  <blp@gnu.org>
26385
26386         Missing part of allocsa -> malloca transition.
26387         * modules/relocatable-prog-wrapper: gl_ALLOCSA should be
26388         gl_MALLOCA.
26389
26390 2007-06-12  Bruno Haible  <bruno@clisp.org>
26391
26392         * m4/isnanl.m4 (gl_FUNC_ISNANL_WORKS): Guess no when cross-compiling
26393         to ia64, x86_64, i386.
26394         Reported by Eric Blake.
26395
26396 2007-06-12  Bruno Haible  <bruno@clisp.org>
26397
26398         * m4/printf.m4 (gl_PRINTF_INFINITE_LONG_DOUBLE): Guess no also when
26399         cross-compiling to x86_64.
26400
26401 2007-06-12  Paul Eggert  <eggert@cs.ucla.edu>
26402
26403         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Fix POSIX sed portability
26404         glitch reported by Ralf Wildenhues in
26405         <http://lists.gnu.org/archive/html/bug-gnulib/2007-06/msg00114.html>.
26406
26407         * m4/regex.m4 (gl_REGEX): Catch a bug with [[:alnum:]_-] reported by
26408         Vin Shelton.
26409
26410 2007-06-11  Bruno Haible  <bruno@clisp.org>
26411
26412         * lib/printf-args.c (PRINTF_FETCHARGS) [ENABLE_UNISTDIO]: Fix NULL
26413         replacement string.
26414         Reported by Eric Blake.
26415
26416 2007-06-10  Bruno Haible  <bruno@clisp.org>
26417
26418         Prepare vasnprintf code for use with Unicode strings.
26419         * lib/printf-args.h (PRINTF_FETCHARGS): New macro.
26420         (arg_type) [ENABLE_UNISTDIO]: Define TYPE_U8_STRING, TYPE_U16_STRING,
26421         TYPE_U32_STRING.
26422         (argument) [ENABLE_UNISTDIO]: Add a_u8_string, a_u16_string,
26423         a_u32_string variants.
26424         (PRINTF_FETCHARGS): Renamed from printf_fetchargs.
26425         * lib/printf-args.c: Don't include config.h and the specification
26426         header if PRINTF_FETCHARGS is already defined.
26427         (PRINTF_FETCHARGS): Renamed from printf_fetchargs.
26428         (PRINTF_FETCHARGS) [ENABLE_UNISTDIO]: Add code for TYPE_U8_STRING,
26429         TYPE_U16_STRING, TYPE_U32_STRING.
26430         * lib/printf-parse.h [ENABLE_UNISTDIO] (u8_directive, u8_directives,
26431         u16_directive, u16_directives, u32_directive, u32_directives): New
26432         types.
26433         (ulc_printf_parse, u8_printf_parse, u16_printf_parse, u32_printf_parse):
26434         New declarations.
26435         * lib/printf-parse.c: Don't include config.h and the specification
26436         header if PRINTF_PARSE is already defined. Eliminate the set of
26437         parameters for WIDE_CHAR_VERSION; the user of this file must provide
26438         them now. Include c-ctype.h.
26439         (PRINTF_PARSE) [ENABLE_UNISTDIO]: Add code implementing the 'U'
26440         directive and CHAR_T_ONLY_ASCII.
26441         * lib/vasnprintf.c: Don't include config.h and the specification header
26442         if VASNPRINTF is already defined.
26443         (DCHAR_IS_TCHAR, DCHAR_CPY): New macros.
26444         (VASNPRINTF): Use PRINTF_FETCHARGS instead of printf_fetchargs. Use
26445         DCHAR_CPY. Handle the case that DCHAR_T and FCHAR_T are not the same
26446         type. Handle the case that TCHAR_T and FCHAR_T are not of the same
26447         size. Handle the case that DCHAR_T and TCHAR_T are not the same type,
26448         add a conversion from TCHAR_T[] to DCHAR_T[], and rework the padding
26449         code accordingly.
26450         (VASNPRINTF) [ENABLE_UNISTDIO]: Implement the 'U' directive. Enable
26451         pad_ourselves also in this case, with the 'c' and 's' directives, and
26452         with a different notion of "width".
26453         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_WITH_EXTRAS): New macros.
26454
26455 2007-06-10  Bruno Haible  <bruno@clisp.org>
26456
26457         * modules/unistr/u32-mbsnlen: New file.
26458         * lib/unistr/u32-mbsnlen.c: New file.
26459
26460         * modules/unistr/u16-mbsnlen: New file.
26461         * lib/unistr/u16-mbsnlen.c: New file.
26462
26463         * modules/unistr/u8-mbsnlen: New file.
26464         * lib/unistr/u8-mbsnlen.c: New file.
26465
26466         * lib/unistr.h (u8_mbsnlen, u16_mbsnlen, u32_mbsnlen): New
26467         declarations.
26468
26469 2007-06-10  Bruno Haible  <bruno@clisp.org>
26470
26471         * lib/string_.h (mbsnlen): New declaration.
26472         * lib/mbsnlen.c: New file.
26473         * m4/mbsnlen.m4: New file.
26474         * modules/mbsnlen: New file.
26475         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Set GNULIB_MBSNLEN.
26476         * modules/string (string.h): Substitute GNULIB_MBSNLEN.
26477         * MODULES.html.sh (Internationalization functions): Add mbsnlen.
26478
26479 2007-06-10  Bruno Haible  <bruno@clisp.org>
26480
26481         * lib/mbslen.c: Include <stdlib.h>, needed for MB_CUR_MAX.
26482
26483 2007-06-10  Bruno Haible  <bruno@clisp.org>
26484
26485         * lib/mbiter.h: Include <stddef.h>, needed for ptrdiff_t.
26486         * lib/mbuiter.h: Likewise.
26487
26488 2007-06-10  Bruno Haible  <bruno@clisp.org>
26489
26490         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF): Check for _snprintf
26491         declaration.
26492
26493 2007-06-10  Karl Berry  <karl@gnu.org>
26494
26495         * config/srclist.txt: remove gettext entries, Bruno prefers
26496         to update individually.
26497
26498 2007-06-10  Bruno Haible  <bruno@clisp.org>
26499
26500         * lib/vasnprintf.c (VASNPRINTF) [!USE_SNPRINTF]: Remove variable
26501         'maxlen'. Ensure only length + width bytes are allocated, not
26502         length + 1 + width.
26503
26504 2007-06-09  Bruno Haible  <bruno@clisp.org>
26505
26506         * lib/vasnprintf.c (FCHAR_T, DCHAR_T, TCHAR_T): New macros.
26507         (CHAR_T): Remove macro.
26508         (VASNPRINTF): Update.
26509
26510 2007-06-09  Bruno Haible  <bruno@clisp.org>
26511
26512         * MODULES.html.sh (Unicode string functions): Add the new modules.
26513
26514         * modules/uniconv/u32-conv-to-enc: New file.
26515         * lib/uniconv/u32-conv-to-enc.c: New file.
26516         * modules/uniconv/u32-conv-to-enc-tests: New file.
26517         * tests/uniconv/test-u32-conv-to-enc.c: New file.
26518
26519         * modules/uniconv/u16-conv-to-enc: New file.
26520         * lib/uniconv/u16-conv-to-enc.c: New file.
26521         * lib/uniconv/u-conv-to-enc.h: New file.
26522         * modules/uniconv/u16-conv-to-enc-tests: New file.
26523         * tests/uniconv/test-u16-conv-to-enc.c: New file.
26524
26525         * modules/uniconv/u8-conv-to-enc: New file.
26526         * lib/uniconv/u8-conv-to-enc.c: New file.
26527         * modules/uniconv/u8-conv-to-enc-tests: New file.
26528         * tests/uniconv/test-u8-conv-to-enc.c: New file.
26529
26530         * lib/uniconv.h (u8_conv_to_encoding, u16_conv_to_encoding,
26531         u32_conv_to_encoding): New declarations.
26532
26533 2007-06-09  Bruno Haible  <bruno@clisp.org>
26534
26535         * tests/uniconv/test-u32-strconv-to-enc.c (main): Remove unused code.
26536
26537 2007-06-09  Bruno Haible  <bruno@clisp.org>
26538
26539         Rename 'allocsa' -> 'malloca', 'freesa' -> 'freea'.
26540         * modules/malloca: Renamed from modules/allocsa, updated.
26541         * lib/malloca.h: Renamed from lib/allocsa.h, updated.
26542         * lib/malloca.c: Renamed from lib/allocsa.c, updated.
26543         * lib/malloca.valgrind: Renamed from lib/allocsa.valgrind, updated.
26544         * m4/malloca.m4: Renamed from m4/allocsa.m4, updated.
26545         * modules/malloca-tests: Renamed from modules/allocsa-tests, updated.
26546         * tests/test-malloca.c: Renamed from tests/test-allocsa.c, updated.
26547         * modules/xmalloca: Renamed from modules/xallocsa, updated.
26548         * lib/xmalloca.h: Renamed from lib/xallocsa.h, updated.
26549         * lib/xmalloca.c: Renamed from lib/xallocsa.c, updated.
26550         * modules/c-strcasestr (Depends-on): Update.
26551         * lib/c-strcasestr.c: Update.
26552         * modules/c-strstr (Depends-on): Update.
26553         * lib/c-strstr.c: Update.
26554         * modules/canonicalize-lgpl (Depends-on): Update.
26555         * lib/canonicalize-lgpl.c: Update.
26556         * modules/clean-temp (Depends-on): Update.
26557         * lib/clean-temp.c: Update.
26558         * modules/csharpcomp (Depends-on): Update.
26559         * lib/csharpcomp.c: Update.
26560         * modules/csharpexec (Depends-on): Update.
26561         * lib/csharpexec.c: Update.
26562         * modules/javacomp (Depends-on): Update.
26563         * lib/javacomp.c: Update.
26564         * modules/javaexec (Depends-on): Update.
26565         * lib/javaexec.c: Update.
26566         * modules/mbscasestr (Depends-on): Update.
26567         * lib/mbscasestr.c: Update.
26568         * modules/mbsstr (Depends-on): Update.
26569         * lib/mbsstr.c: Update.
26570         * modules/setenv (Depends-on): Update.
26571         * lib/setenv.c: Update.
26572         * modules/strcasestr (Depends-on): Update.
26573         * lib/strcasestr.c: Update.
26574         * modules/striconveha (Depends-on): Update.
26575         * lib/striconveha.c: Update.
26576         * modules/relocatable-prog-wrapper (Files): Update.
26577         * lib/relocwrapper.c: Update.
26578         * build-aux/install-reloc: Update.
26579         * MODULES.html.sh (Memory management functions <stdlib.h>): Update.
26580
26581 2007-06-08  Bruno Haible  <bruno@clisp.org>
26582
26583         Port to uClibc.
26584         * lib/fbufmode.c (fbufmode): Add special code for uClibc.
26585         * lib/fpurge.c (fpurge): Likewise.
26586         * lib/freading.c (freading): Likewise.
26587         * lib/fseeko.c (rpl_fseeko): Likewise.
26588         * lib/fseterr.c (fseterr): Likewise.
26589         * lib/fwriting.c (fwriting): Likewise.
26590         * tests/test-fflush.c (main): Avoid a failure on uClibc.
26591
26592 2007-06-08  Bruno Haible  <bruno@clisp.org>
26593
26594         * m4/intlmacosx.m4: New file, extracted from gettext.m4.
26595         * m4/gettext.m4 (gt_INTL_MACOSX): Remove macro, moved to intlmacosx.m4.
26596         * modules/gettext (Files): Add m4/intlmacosx.m4.
26597
26598 2007-06-07  Bruno Haible  <bruno@clisp.org>
26599
26600         * modules/localename-tests: New file.
26601         * tests/test-localename.c: New file.
26602
26603         New module 'localename'.
26604         * lib/localename.h: New file.
26605         * lib/localename.c: New file, from GNU gettext.
26606         * m4/localename.m4: New file.
26607         * modules/localename: New file.
26608
26609 2007-06-07  Bruno Haible  <bruno@clisp.org>
26610
26611         Work around the lack of <wchar.h> on some builds of uClibc.
26612         * doc/headers/wchar.texi: Update.
26613         * lib/wchar_.h: Include <wchar.h> only if it exists.
26614         * m4/wchar.m4 (gl_WCHAR_H): Check for <wchar.h>. Set HAVE_WCHAR_H.
26615         * m4/stdint.m4 (gl_STDINT_H): Check for <wchar.h>.
26616         (gl_STDINT_TYPE_PROPERTIES): Don't try to include <wchar.h> if it
26617         doesn't exist.
26618         * modules/wchar (wchar.h): Substitute HAVE_WCHAR_H.
26619         * modules/mbfile (Depends-on): Add wchar.
26620         * modules/mbiter (Depends-on): Likewise.
26621         * modules/mbuiter (Depends-on): Likewise.
26622         Reported by Simon Josefsson.
26623
26624 2007-06-06  Paul Eggert  <eggert@cs.ucla.edu>
26625
26626         Work around problem reported by Steven M. Schweda in
26627         <http://lists.gnu.org/archive/html/bug-tar/2007-06/msg00002.html>:
26628         Tru64 5.1B with the Compaq compiler environment installed declares
26629         an 'isblank' function but does not define it in the C library.
26630         * lib/fnmatch.c (isblank): Check for HAVE_ISBLANK, too.
26631         * lib/regex_internal.h (isblank): Likewise.
26632         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for isblank existence.
26633         * m4/regex.m4 (gl_PREREQ_REGEX): Likewise.
26634
26635 2007-06-05  Bruno Haible  <bruno@clisp.org>
26636
26637         Fix *printf so that it recognizes non-IEEE numbers on i386, x86_64,
26638         ia64.
26639         * modules/printf-safe: New file.
26640         * modules/fprintf-posix (Depends-on): Add printf-safe.
26641         * modules/printf-posix (Depends-on): Likewise.
26642         * modules/snprintf-posix (Depends-on): Likewise.
26643         * modules/sprintf-posix (Depends-on): Likewise.
26644         * modules/vasnprintf-posix (Depends-on): Likewise.
26645         * modules/vasprintf-posix (Depends-on): Likewise.
26646         * modules/vfprintf-posix (Depends-on): Likewise.
26647         * modules/vprintf-posix (Depends-on): Likewise.
26648         * modules/vsnprintf-posix (Depends-on): Likewise.
26649         * modules/vsprintf-posix (Depends-on): Likewise.
26650         * m4/printf.m4 (gl_PRINTF_INFINITE_LONG_DOUBLE): Require
26651         AC_C_BIGENDIAN. Define CHECK_PRINTF_SAFE if printf-safe is used. Test
26652         non-IEEE numbers on i386, x86_64, ia64. When cross-compiling, guess
26653         "no" on i386, x86_64, ia64.
26654         * tests/test-snprintf-posix.h (LDBL80_WORDS): New macro.
26655         (test_function): Check result of %La, %Lf, %Le, %Lg on non-IEEE numbers
26656         on i386, x86_64, ia64.
26657         * tests/test-sprintf-posix.h (LDBL80_WORDS): New macro.
26658         (test_function): Check result of %La, %Lf, %Le, %Lg on non-IEEE numbers
26659         on i386, x86_64, ia64.
26660         * tests/test-vasnprintf-posix.c: Include float.h.
26661         (LDBL80_WORDS): New macro.
26662         (test_function): Check result of %La, %Lf, %Le, %Lg on non-IEEE numbers
26663         on i386, x86_64, ia64.
26664         * tests/test-vasprintf-posix.c: Include float.h.
26665         (LDBL80_WORDS): New macro.
26666         (test_function): Check result of %La, %Lf, %Le, %Lg on non-IEEE numbers
26667         on i386, x86_64, ia64.
26668         * tests/test-snprintf-posix.c: Include float.h.
26669         * tests/test-sprintf-posix.c: Likewise.
26670         * tests/test-vsnprintf-posix.c: Likewise.
26671         * tests/test-vsprintf-posix.c: Likewise.
26672
26673 2007-06-05  Bruno Haible  <bruno@clisp.org>
26674
26675         Fix isnanl so that it recognizes non-IEEE numbers on i386, x86_64, ia64.
26676         * m4/isnanl.m4 (gl_FUNC_ISNANL_WORKS): Require AC_C_BIGENDIAN. Test
26677         non-IEEE numbers on i386, x86_64, ia64.
26678         (gl_LONG_DOUBLE_EXPONENT_LOCATION): Require AC_C_BIGENDIAN.
26679         * lib/isnan.c (FUNC): Add special code for i386, x86_64, ia64.
26680         * tests/test-isnanl.h: Include float.h.
26681         (main): Check also non-IEEE numbers on i386, x86_64, ia64.
26682
26683 2007-06-05  Bruno Haible  <bruno@clisp.org>
26684
26685         * lib/vasnprintf.c (VASNPRINTF): Do the extra handling of NaN and Inf
26686         also the %a / %A. Handle the %a / %A code before this extra handling.
26687
26688 2007-06-05  Bruno Haible  <bruno@clisp.org>
26689
26690         * lib/vasnprintf.c [NEED_PRINTF_LONG_DOUBLE ||
26691         NEED_PRINTF_INFINITE_LONG_DOUBLE]: Include fpucw.h.
26692
26693 2007-06-05  Bruno Haible  <bruno@clisp.org>
26694
26695         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_INFINITE_LONG_DOUBLE): Fix
26696         typo in variable name.
26697
26698 2007-06-05  Eric Blake  <ebb9@byu.net>
26699
26700         * m4/lseek.m4 (gl_FUNC_LSEEK): Work when cross-compiling.
26701         Reported by Simon Josefsson.
26702
26703 2007-06-04  Bruno Haible  <bruno@clisp.org>
26704
26705         Avoid test failures on some PowerPC platforms.
26706         * tests/test-printf-frexpl.c (MIN_NORMAL_EXP, MIN_SUBNORMAL_EXP):
26707         Define differently for PowerPC.
26708         * tests/test-frexpl.c (MIN_NORMAL_EXP): Likewise.
26709         Reported by Gary V. Vaughan <gary@gnu.org>.
26710
26711 2007-06-02  Bruno Haible  <bruno@clisp.org>
26712
26713         Fix test-stdint failure on FreeBSD/ia64.
26714         * m4/stdint.m4 (gl_STDINT_H): Check the values of PTRDIFF_MIN,
26715         PTRDIFF_MAX, SIG_ATOMIC_MIN, SIG_ATOMIC_MAX, SIZE_MAX, WCHAR_MIN,
26716         WCHAR_MAX, WINT_MIN, WINT_MAX entirely, not only for plausibility.
26717         * doc/headers/stdint.texi: Update.
26718
26719 2007-06-01  Bruno Haible  <bruno@clisp.org>
26720
26721         * tests/test-binary-io.c (main): Pass a third argument to open().
26722         Reported by Gary V. Vaughan <gary@gnu.org>.
26723
26724 2007-06-01  Bruno Haible  <bruno@clisp.org>
26725
26726         * doc/functions/frexpl.texi: Update for mingw.
26727
26728 2007-06-01  Bruno Haible  <bruno@clisp.org>
26729
26730         * tests/test-lseek.c (main): Disable test of errno for invalid third
26731         argument.
26732         * doc/functions/lseek.texi: Update.
26733         Reported by Gary V. Vaughan <gary@gnu.org>.
26734
26735 2007-05-28  Bruno Haible  <bruno@clisp.org>
26736
26737         * m4/intl.m4 (AM_INTL_SUBDIR): Substitute variables WOE32, WINDRES.
26738
26739 2007-05-31  Eric Blake  <ebb9@byu.net>
26740
26741         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Guess no on mingw when
26742         cross compiling.
26743
26744 2007-05-30  Eric Blake  <ebb9@byu.net>
26745         and Bruno Haible  <bruno@clisp.org>
26746
26747         Work around mingw test failures exposed by m4-1.4.9b.
26748         * m4/stdint.m4 (gl_STDINT_H): Detect mingw bug.
26749         * tests/test-unistd.c: Disable uid_t and git_t tests for the
26750         moment.
26751
26752 2007-05-30  Bruno Haible  <bruno@clisp.org>
26753
26754         * tests/test-lseek.c: Explicitly close file descriptors 0 and 1 before
26755         assuming that they are closed. Needed on HP-UX 11.
26756
26757 2007-05-29  Bruno Haible  <bruno@clisp.org>
26758
26759         Fix a problem with #include_next.
26760         * lib/dirent_.h: Split the double-inclusion guard.
26761         * lib/fcntl_.h: Likewise.
26762         * lib/float_.h: Likewise.
26763         * lib/iconv_.h: Likewise.
26764         * lib/inttypes_.h: Likewise.
26765         * lib/locale_.h: Likewise.
26766         * lib/math_.h: Likewise.
26767         * lib/netinet_in_.h: Likewise.
26768         * lib/search_.h: Likewise.
26769         * lib/signal_.h: Likewise.
26770         * lib/stdint_.h: Likewise.
26771         * lib/stdio_.h: Likewise.
26772         * lib/stdlib_.h: Likewise.
26773         * lib/string_.h: Likewise.
26774         * lib/sys_select_.h: Likewise.
26775         * lib/sys_socket_.h: Likewise.
26776         * lib/sys_stat_.h: Likewise.
26777         * lib/sys_time_.h: Likewise.
26778         * lib/sysexits_.h: Likewise.
26779         * lib/time_.h: Likewise.
26780         * lib/unistd_.h: Likewise.
26781         * lib/wchar_.h: Likewise.
26782         * lib/wctype_.h: Likewise.
26783
26784 2007-05-29  Bruno Haible  <bruno@clisp.org>
26785
26786         * tests/test-unistd.c: Disable the tests for useconds_t and intptr_t
26787         for the moment.
26788
26789 2007-05-29  Bruno Haible  <bruno@clisp.org>
26790
26791         * m4/isnan.m4 (gl_DOUBLE_EXPONENT_LOCATION): Silence the AC_C_BIGENDIAN
26792         invocation.
26793         Reported by Eric Blake.
26794
26795 2007-05-29  Bruno Haible  <bruno@clisp.org>
26796
26797         * m4/isnanf.m4 (gl_FLOAT_EXPONENT_LOCATION): Fix typo in cross-
26798         compiling case.
26799
26800 2007-05-29  Eric Blake  <ebb9@byu.net>
26801             Bruno Haible  <bruno@clisp.org>
26802
26803         * m4/isnanf.m4 (gl_FUNC_ISNANF_NO_LIBM): Avoid syntax error on
26804         cross compiles.
26805
26806 2007-05-28  Eric Blake  <ebb9@byu.net>
26807
26808         * modules/closein-tests (test_closein_LDADD): Support test on
26809         cygwin with libtool.
26810
26811 2007-05-28  Bruno Haible  <bruno@clisp.org>
26812
26813         * tests/uniconv/test-u16-conv-from-enc.c: Remove #ifdef HAVE_CONFIG_H.
26814         * tests/uniconv/test-u16-strconv-from-enc.c: Likewise.
26815         * tests/uniconv/test-u16-strconv-to-enc.c: Likewise.
26816         * tests/uniconv/test-u32-conv-from-enc.c: Likewise.
26817         * tests/uniconv/test-u32-strconv-from-enc.c: Likewise.
26818         * tests/uniconv/test-u32-strconv-to-enc.c: Likewise.
26819         * tests/uniconv/test-u8-conv-from-enc.c: Likewise.
26820         * tests/uniconv/test-u8-strconv-from-enc.c: Likewise.
26821         * tests/uniconv/test-u8-strconv-to-enc.c: Likewise.
26822
26823 2007-05-28  Eric Blake  <ebb9@byu.net>
26824
26825         Unconditionally include <config.h> in unit tests.
26826         * tests/test-alloca-opt.c: Remove #ifdef HAVE_CONFIG_H.
26827         * tests/test-allocsa.c, tests/test-arcfour.c,
26828         tests/test-arctwo.c, tests/test-argmatch.c, tests/test-argp.c,
26829         tests/test-array_list.c, tests/test-array_oset.c,
26830         tests/test-atexit.c, test-avltree_list.c, test-avltree_oset.c,
26831         test-avltreehash_list.c, test-base64.c, test-binary-io.c,
26832         test-c-ctype.c, test-c-strcasecmp.c, test-c-strcasestr.c,
26833         test-c-strncasecmp.c, test-c-strstr.c, test-canonicalize-lgpl.c,
26834         test-carray_list.c, test-crc.c, test-des.c, test-dirname.c,
26835         test-fflush.c, test-fprintf-posix.c, test-gc-arcfour.c,
26836         test-gc-arctwo.c, test-gc-des.c, test-gc-hmac-md5.c,
26837         test-gc-hmac-sha1.c, test-gc-md2.c, test-gc-md4.c, test-gc-md5.c,
26838         test-gc-pbkdf2-sha1.c, test-gc-rijndael.c, test-gc-sha1.c,
26839         test-gc.c, test-getpass.c, test-hmac-md5.c, test-hmac-sha1.c,
26840         test-iconv.c, test-linked_list.c, test-linkedhash_list.c,
26841         test-lock.c, test-mbscasecmp.c, test-mbscasestr1.c,
26842         test-mbscasestr2.c, test-mbscasestr3.c, test-mbscasestr4.c,
26843         test-mbschr.c, test-mbscspn.c, test-mbsncasecmp.c, test-mbspbrk.c,
26844         test-mbspcasecmp.c, test-mbsrchr.c, test-mbsspn.c, test-mbsstr1.c,
26845         test-mbsstr2.c, test-mbsstr3.c, test-md2.c, test-md4.c,
26846         test-md5.c, test-memmem.c, test-printf-posix.c,
26847         test-rbtree_list.c, test-rbtree_oset.c, test-rbtreehash_list.c,
26848         test-read-file.c, test-rijndael.c, test-snprintf-posix.c,
26849         test-snprintf.c, test-sprintf-posix.c, test-stdint.c,
26850         test-strcasestr.c, test-striconv.c, test-striconveh.c,
26851         test-striconveha.c, test-tls.c, test-vasnprintf-posix.c,
26852         test-vasnprintf-posix2.c, test-vasnprintf.c,
26853         test-vasprintf-posix.c, test-vasprintf.c, test-verify.c,
26854         test-vfprintf-posix.c, test-vprintf-posix.c,
26855         test-vsnprintf-posix.c, test-vsnprintf.c, test-vsprintf-posix.c,
26856         test-xvasprintf.c: Likewise.
26857
26858 2007-05-28  Bruno Haible  <bruno@clisp.org>
26859
26860         * gnulib-tool (func_import): Remember the --with-tests command-line
26861         option through the macro gl_WITH_TESTS in the gnulib-cache.m4.
26862         Reported by Eric Blake.
26863
26864 2007-05-28  Bruno Haible  <bruno@clisp.org>
26865
26866         * modules/ftell-tests: New file.
26867         * tests/test-ftell.c: New file, based on tests/test-ftello.c.
26868         * tests/test-ftell.sh: New file, based on tests/test-ftello.sh.
26869
26870         * lib/ftell.c: New file.
26871         * modules/ftell: New file.
26872         * m4/ftell.m4: New file.
26873         * doc/functions/ftell.texi: Update.
26874         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FTELL,
26875         REPLACE_FTELL.
26876         * lib/stdio_.h (rpl_ftell): New declaration.
26877         * modules/stdio (Makefile.am): Substitute also GNULIB_FTELL,
26878         REPLACE_FTELL.
26879
26880 2007-05-28  Eric Blake  <ebb9@byu.net>
26881
26882         * lib/allocsa.h (safe_alloca): Avoid compiler warning.
26883
26884 2007-05-28  Bruno Haible  <bruno@clisp.org>
26885
26886         * modules/fseek-tests: New file.
26887         * tests/test-fseek.c: New file, based on tests/test-fseeko.c.
26888         * tests/test-fseek.sh: New file, based on tests/test-fseeko.sh.
26889
26890         * lib/fseek.c: New file.
26891         * modules/fseek: New file.
26892         * m4/fseek.m4: New file.
26893         * doc/functions/fseek.texi: Update.
26894         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FSEEK,
26895         REPLACE_FSEEK.
26896         * lib/stdio_.h (rpl_fseek): New declaration.
26897         * modules/stdio (Makefile.am): Substitute also GNULIB_FSEEK,
26898         REPLACE_FSEEK.
26899
26900 2007-05-28  Bruno Haible  <bruno@clisp.org>
26901
26902         * lib/stdio_.h (fflush): More comments.
26903
26904 2007-05-28  Bruno Haible  <bruno@clisp.org>
26905
26906         * m4/lseek.m4 (gl_FUNC_LSEEK): When not cross-compiling, perform a real
26907         runtime test.
26908
26909 2007-05-28  Eric Blake  <ebb9@byu.net>
26910
26911         Improve lseek module.
26912         * lib/lseek.c (rpl_lseek): Detect EBADF on mingw.
26913         * lib/unistd_.h (lseek): Scale back link warning message.
26914         * tests/test-lseek.c: Beef up test.
26915         * tests/test-lseek.sh: Exercise more facets of lseek.
26916         Reported by Bruno Haible.
26917
26918 2007-05-28  Bruno Haible  <bruno@clisp.org>
26919
26920         * tests/test-unistd.c: Test all the types that <unistd.h> is expected
26921         to define.
26922
26923 2007-05-27  Bruno Haible  <bruno@clisp.org>
26924
26925         * m4/iconv.m4 (AM_ICONV_LINK): Fix 2007-03-31 patch.
26926
26927 2007-05-27  Bruno Haible  <bruno@clisp.org>
26928
26929         * modules/openmp: New file.
26930         * m4/openmp.m4: New file, taken from autoconf's CVS with changes by
26931         Noah Misch.
26932
26933 2007-05-26  Bruno Haible  <bruno@clisp.org>
26934
26935         * modules/chdir-long (Depends-on): Add fchdir.
26936         * modules/chdir-safer (Depends-on): Likewise.
26937         * modules/fts (Depends-on): Likewise.
26938         * modules/fts-lgpl (Depends-on): Likewise.
26939         * modules/openat (Depends-on): Likewise.
26940         * modules/savewd (Depends-on): Likewise.
26941
26942 2007-05-24  Eric Blake  <ebb9@byu.net>
26943
26944         Fix lseek on mingw.
26945         * modules/lseek: New module.
26946         * m4/lseek.m4: New file.
26947         * lib/lseek.c: New file.
26948         * modules/lseek-tests: New file.
26949         * tests/test-lseek.c: New file.
26950         * tests/test-lseek.sh: New file.
26951         * MODULES.html.sh: Document lseek module.
26952         * modules/fflush (Depends-on): Add lseek, fseeko.
26953         * modules/fseeko (Depends-on): Likewise.
26954         * modules/ftello (Depends-on): Likewise.
26955         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Replace fseek[o] if lseek is
26956         broken.
26957         * m4/ftello.m4 (gl_FUNC_FTELLO): Replace ftell[o] if lseek is
26958         broken.
26959         * m4/fflush.m4 (gl_REPLACE_FFLUSH): Trigger fseeko module.
26960         * lib/fseeko.c (rpl_fseeko): Quit early on non-seekable files.
26961         * lib/ftello.c (rpl_ftello): Likewise.
26962         * tests/test-fseeko.c (main): Test this.
26963         * tests/test-fseeko.sh: Likewise.
26964         * tests/test-ftello.c (main): Likewise.
26965         * tests/test-ftello.sh: Likewise.
26966         * lib/stdio_.h (fseek, ftell): Simplify, since missing fseeko now
26967         implies replacing fseek.
26968         * modules/stdio (Makefile.am): No longer need HAVE_FSEEKO,
26969         HAVE_FTELLO.
26970         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add lseek info.
26971         * modules/unistd (Makefile.am): Likewise.
26972         * lib/unistd_.h (lseek): Declare a replacement.
26973         * doc/functions/lseek.texi (lseek): Document this fix.
26974         * doc/functions/fseek.texi (fseek): Likewise.
26975         * doc/functions/ftell.texi (ftell): Likewise.
26976
26977 2007-05-24  Bruno Haible  <bruno@clisp.org>
26978
26979         * tests/test-vasnprintf-posix.c (test_function): Allow up to 50 bytes
26980         in the printed representation of a NaN.
26981         * tests/test-vasprintf-posix.c (test_function): Likewise.
26982         * tests/test-snprintf-posix.h (test_function): Likewise.
26983         * tests/test-sprintf-posix.h (test_function): Likewise.
26984         Reported by Eric Blake.
26985
26986 2007-05-23  Eric Blake  <ebb9@byu.net>
26987
26988         Fix fseeko/ftello on cygwin 1.5.24.
26989         * doc/functions/fseeko.texi (fseeko): Document the fix.
26990         * doc/functions/ftello.texi (ftello): Document the fix.
26991         * doc/functions/stdin.texi (stdin): Document the cygwin bug.
26992         * doc/functions/stdout.text (stdout): New file.
26993         * doc/functions/stderr.text (stderr): New file.
26994         * doc/gnulib.texi (Function Substitutes): Use new files.
26995         * tests/test-fseeko.c (main): Check for broken fseeko on cygwin
26996         prior to 1.7.0.
26997         * tests/test-ftello.c (main): Likewise for ftello.
26998         * tests/test-fseeko.sh: New file.
26999         * tests/test-ftello.sh: New file.
27000         * modules/fseeko-tests (Makefile.am): Ensure test-fseeko is run
27001         with seekable stdin.
27002         * modules/ftello-tests (Makefile.am): Likewise for test-ftello.
27003         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Detect the cygwin bug.
27004         (gl_REPLACE_FSEEKO): New macro.
27005         * m4/ftello.m4 (gl_FUNC_FTELLO, gl_REPLACE_FTELLO): Likewise.
27006         * modules/fseeko (Files): Distribute fseeko.c.
27007         * modules/ftello (Files): Distribute ftello.c.
27008         * lib/fseeko.c (rpl_fseeko) [__CYGWIN__]: Convert stdin to 64-bit
27009         mode.
27010         * lib/ftello.c (rpl_ftello): New file.
27011         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Allow replacement of
27012         fseeko, ftello.
27013         (gl_STDIN_LARGE_OFFSET): New macro.
27014         * modules/stdio (Makefile.am): Perform the replacement.
27015         * lib/stdio_.h (rpl_fseeko, rpl_ftello): Define when needed.
27016
27017 2007-05-23  Bruno Haible  <bruno@clisp.org>
27018
27019         * lib/stdio_.h (fseeko, ftello): Provide a link warning only if
27020         GNULIB_POSIXCHECK is defined.
27021
27022 2007-05-21  Bruno Haible  <bruno@clisp.org>
27023
27024         * m4/printf.m4 (gl_PRINTF_INFINITE, gl_PRINTF_INFINITE_LONG_DOUBLE):
27025         Check also the output for NaN arguments. When cross-compiling, guess
27026         no on IRIX.
27027         * lib/vasnprintf.c: Update comments.
27028         * tests/test-vasnprintf-posix.c (strisnan): New function.
27029         (test_function): Use it.
27030         * tests/test-vasprintf-posix.c (strisnan): New function.
27031         (test_function): Use it.
27032         * tests/test-snprintf-posix.h (strisnan): New function.
27033         (test_function): Use it.
27034         * tests/test-sprintf-posix.h (strisnan): New function.
27035         (test_function): Use it.
27036         Reported by Eric Blake.
27037
27038 2007-05-20  Bruno Haible  <bruno@clisp.org>
27039
27040         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Add test for large finite
27041         numbers that fails on BeOS.
27042         * doc/functions/frexpl.texi: Update.
27043
27044 2007-05-20  Jim Meyering  <jim@meyering.net>
27045
27046         * NEWS: Mention the incompatible change (s/futimens/gl_futimens/)
27047         forced upon us by glibc-2.6.
27048
27049 2007-05-20  Bruno Haible  <bruno@clisp.org>
27050
27051         Fix *printf result for NaN, Inf on AIX, Solaris, OSF/1.
27052         * m4/printf.m4 (gl_PRINTF_INFINITE): Update cross-compiling guesses.
27053         (gl_PRINTF_INFINITE_LONG_DOUBLE): New macro.
27054         * lib/vasnprintf.c: Use NEED_PRINTF_INFINITE_DOUBLE instead of
27055         NEED_PRINTF_INFINITE.
27056         (is_infinitel): New function.
27057         (VASNPRINTF): Handle NEED_PRINTF_INFINITE_LONG_DOUBLE case.
27058         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_INFINITE_DOUBLE): Renamed from
27059         gl_PREREQ_VASNPRINTF_INFINITE.
27060         (gl_PREREQ_VASNPRINTF_INFINITE_LONG_DOUBLE): New macro.
27061         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
27062         gl_PRINTF_INFINITE_LONG_DOUBLE and test its result. Invoke
27063         gl_PREREQ_VASNPRINTF_INFINITE_DOUBLE and
27064         gl_PREREQ_VASNPRINTF_INFINITE_LONG_DOUBLE instead of
27065         gl_PREREQ_VASNPRINTF_INFINITE.
27066         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
27067         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
27068         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
27069         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
27070         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
27071         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
27072         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
27073         * doc/functions/fprintf.texi: Update.
27074         * doc/functions/printf.texi: Update.
27075         * doc/functions/snprintf.texi: Update.
27076         * doc/functions/sprintf.texi: Update.
27077         * doc/functions/vfprintf.texi: Update.
27078         * doc/functions/vprintf.texi: Update.
27079         * doc/functions/vsnprintf.texi: Update.
27080         * doc/functions/vsprintf.texi: Update.
27081
27082 2007-05-20  Bruno Haible  <bruno@clisp.org>
27083
27084         * m4/frexpl.m4 (gl_FUNC_FREXPL_NO_LIBM): Set REPLACE_FREXPL if frexpl
27085         was not found in libc.
27086         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Likewise.
27087
27088 2007-05-20  Bruno Haible  <bruno@clisp.org>
27089
27090         * tests/test-vasnprintf-posix.c (test_function): Allow NaN to be
27091         printed as "-nan" instead of "nan".
27092         * tests/test-vasprintf-posix.c (test_function): Likewise.
27093         * tests/test-snprintf-posix.h (test_function): Likewise.
27094         * tests/test-sprintf-posix.h (test_function): Likewise.
27095         Needed for HP-UX 11.
27096
27097 2007-05-20  Jim Meyering  <jim@meyering.net>
27098
27099         Fix buggy test for the fchownat-deref bug.
27100         * m4/openat.m4 (gl_FUNC_FCHOWNAT_DEREF_BUG): Create the dangling
27101         symlink required for the run-test.  Without it, this test would
27102         always declare that fchownat doesn't work, and client code would
27103         unnecessarily use the replacement function with fixed libc.
27104         (gl_FUNC_FCHOWNAT): Eliminate a variable that wasn't initialized.
27105         Reported by Greg Schafer.
27106
27107 2007-05-19  Bruno Haible  <bruno@clisp.org>
27108
27109         * m4/isnanf.m4 (gl_ISNANF_WORKS): New macro.
27110         (gl_FUNC_ISNANF_NO_LIBM): Invoke it.
27111         * lib/isnan.c (FUNC): Use run-time expressions for SGI compiler.
27112         Needed for IRIX 6.5 and Solaris 2.5.1.
27113
27114 2007-05-19  Bruno Haible  <bruno@clisp.org>
27115
27116         * tests/test-vasnprintf-posix.c (have_minus_zero): New function.
27117         (test_function): Skip tests involving -0.0 on platforms where
27118         -0.0 = 0.0.
27119         * tests/test-vasprintf-posix.c (have_minus_zero): New function.
27120         (test_function): Skip tests involving -0.0 on platforms where
27121         -0.0 = 0.0.
27122         * tests/test-snprintf-posix.h (have_minus_zero): New function.
27123         (test_function): Skip tests involving -0.0 on platforms where
27124         -0.0 = 0.0.
27125         * tests/test-sprintf-posix.h (have_minus_zero): New function.
27126         (test_function): Skip tests involving -0.0 on platforms where
27127         -0.0 = 0.0.
27128         * tests/test-fprintf-posix.h (test_function): Remove all -0.0 related
27129         tests.
27130         * tests/test-printf-posix.h (test_function): Likewise.
27131         * tests/test-printf-posix.output: Remove all -0.0 related results.
27132         Needed for IRIX 6.5.
27133
27134 2007-05-19  Bruno Haible  <bruno@clisp.org>
27135
27136         * tests/test-vasnprintf-posix.c (test_function): Allow NaN to be
27137         printed as "nan0x7fffffff" instead of "nan".
27138         * tests/test-vasprintf-posix.c (test_function): Likewise.
27139         * tests/test-snprintf-posix.h (test_function): Likewise.
27140         * tests/test-sprintf-posix.h (test_function): Likewise.
27141         * tests/test-fprintf-posix.h (NaN): Remove macro.
27142         (test_function): Remove all NaN related tests.
27143         * tests/test-printf-posix.h (NaN): Remove macro.
27144         (test_function): Remove all NaN related tests.
27145         * tests/test-printf-posix.output: Remove all NaN related results.
27146         Needed for IRIX 6.5.
27147
27148 2007-05-19  Bruno Haible  <bruno@clisp.org>
27149
27150         * m4/frexp.m4 (gl_FUNC_FREXP_WORKS): Fix C89 syntax error in test code.
27151         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Likewise.
27152
27153 2007-05-19  Bruno Haible  <bruno@clisp.org>
27154
27155         * lib/float_.h: New file.
27156         * m4/float_h.m4: New file.
27157         * modules/float: New file.
27158         * modules/isnanl (Dependencies): Add float.
27159         * modules/isnanl-nolibm (Dependencies): Likewise.
27160         * modules/mathl (Dependencies): Likewise.
27161         * modules/printf-frexpl (Dependencies): Likewise.
27162         * modules/signbit (Dependencies): Likewise.
27163         * modules/vasnprintf (Dependencies): Likewise.
27164         * doc/headers/float.texi: Update.
27165
27166 2007-05-19  Jim Meyering  <jim@meyering.net>
27167
27168         * lib/utimens.c (gl_futimens): Rename from futimens,
27169         now that glibc-2.6 declares futimens.
27170         * lib/utimens.h: Likewise.
27171
27172 2007-05-19  Bruno Haible  <bruno@clisp.org>
27173
27174         Avoid test failures on mingw.
27175         * tests/test-fprintf-posix.sh: Convert CR/LF to LF in output.
27176         * tests/test-printf-posix.sh: Likewise.
27177         * tests/test-vfprintf-posix.sh: Likewise.
27178         * tests/test-vprintf-posix.sh: Likewise.
27179
27180 2007-05-19  Bruno Haible  <bruno@clisp.org>
27181
27182         Fix *printf result for NaN, Inf, -0.0 on mingw.
27183         * m4/printf.m4 (gl_PRINTF_INFINITE): New macro.
27184         * lib/vasnprintf.c: Include math.h and isnan.h.
27185         (is_infinite_or_zero): New function.
27186         (VASNPRINTF): Fix also the handling of infinite or zero 'double'
27187         values in the %f, %F, %e, %E, %g, %G directives.
27188         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_INFINITE): New macro.
27189         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
27190         gl_PRINTF_INFINITE and test its result. Invoke
27191         gl_PREREQ_VASNPRINTF_INFINITE.
27192         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
27193         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
27194         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
27195         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
27196         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
27197         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
27198         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
27199         * doc/functions/fprintf.texi: Update.
27200         * doc/functions/printf.texi: Update.
27201         * doc/functions/snprintf.texi: Update.
27202         * doc/functions/sprintf.texi: Update.
27203         * doc/functions/vfprintf.texi: Update.
27204         * doc/functions/vprintf.texi: Update.
27205         * doc/functions/vsnprintf.texi: Update.
27206         * doc/functions/vsprintf.texi: Update.
27207
27208 2007-05-19  Bruno Haible  <bruno@clisp.org>
27209
27210         * lib/vasnprintf.c (convert_to_decimal): Add an extra_zeroes argument.
27211         (scale10_round_decimal_long_double): Inline scale10_round_long_double.
27212         Instead of multiplying with 10^k, set extra_zeroes to k.
27213         (scale10_round_long_double): Remove function.
27214
27215 2007-05-18  Bruno Haible  <bruno@clisp.org>
27216
27217         * lib/vasnprintf.c (VASNPRINTF) [NEED_PRINTF_FLAG_ZERO]: Fix logic bug
27218         introduced on 2007-05-06.
27219
27220 2007-05-18  Bruno Haible  <bruno@clisp.org>
27221
27222         * tests/test-vasnprintf-posix.c (test_function): Also test the %e and
27223         %g directives.
27224         * tests/test-vasprintf-posix.c (test_function): Likewise.
27225         * tests/test-snprintf-posix.h (test_function): Likewise.
27226         * tests/test-sprintf-posix.h (test_function): Likewise.
27227
27228 2007-05-18  Bruno Haible  <bruno@clisp.org>
27229
27230         * tests/test-vasnprintf-posix.c (SIZEOF): New macro.
27231         (strmatch): New function.
27232         (test_function): Test the %f directive on numbers of various exponents.
27233         * tests/test-vasprintf-posix.c (SIZEOF): New macro.
27234         (strmatch): New function.
27235         (test_function): Test the %f directive on numbers of various exponents.
27236         * tests/test-snprintf-posix.h (strmatch): New function.
27237         (test_function): Test the %f directive on numbers of various exponents.
27238         * tests/test-sprintf-posix.h (strmatch): New function.
27239         (test_function): Test the %f directive on numbers of various exponents.
27240         * tests/test-snprintf-posix.c (SIZEOF): New macro.
27241         * tests/test-sprintf-posix.c (SIZEOF): New macro.
27242         * tests/test-vsnprintf-posix.c (SIZEOF): New macro.
27243         * tests/test-vsprintf-posix.c (SIZEOF): New macro.
27244
27245 2007-05-18  Bruno Haible  <bruno@clisp.org>
27246
27247         Add support for 'long double' number output.
27248         * m4/printf.m4 (gl_PRINTF_LONG_DOUBLE): New macro.
27249         * lib/vasnprintf.c: Include math.h and float+.h.
27250         (mp_limb_t): New type.
27251         (GMP_LIMB_BITS): New macro.
27252         (mp_twolimb_t): New type.
27253         (GMP_TWOLIMB_BITS): New macro.
27254         (mpn_t): New type.
27255         (multiply, divide, convert_to_decimal, decode_long_double,
27256         scale10_round_long_double, scale10_round_decimal_long_double,
27257         floorlog10l): New functions.
27258         (VASNPRINTF) [NEED_PRINTF_LONG_DOUBLE]: Implement 'long double' support
27259         for the %f, %F, %e, %E, %g, %G directives.
27260         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_LONG_DOUBLE): New macro.
27261         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
27262         gl_PRINTF_LONG_DOUBLE and test its result. Invoke
27263         gl_PREREQ_VASNPRINTF_LONG_DOUBLE.
27264         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
27265         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
27266         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
27267         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
27268         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
27269         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
27270         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
27271         * modules/fprintf-posix (Depends-on): Add frexpl-nolibm.
27272         * modules/snprintf-posix (Depends-on): Likewise.
27273         * modules/sprintf-posix (Depends-on): Likewise.
27274         * modules/vasnprintf-posix (Depends-on): Likewise.
27275         * modules/vasprintf-posix (Depends-on): Likewise.
27276         * modules/vfprintf-posix (Depends-on): Likewise.
27277         * modules/vsnprintf-posix (Depends-on): Likewise.
27278         * modules/vsprintf-posix (Depends-on): Likewise.
27279         * modules/vasnprintf (Files): Add lib/float+.h.
27280         * doc/functions/fprintf.texi: Update.
27281         * doc/functions/printf.texi: Update.
27282         * doc/functions/snprintf.texi: Update.
27283         * doc/functions/sprintf.texi: Update.
27284         * doc/functions/vfprintf.texi: Update.
27285         * doc/functions/vprintf.texi: Update.
27286         * doc/functions/vsnprintf.texi: Update.
27287         * doc/functions/vsprintf.texi: Update.
27288
27289 2007-05-18  Bruno Haible  <bruno@clisp.org>
27290
27291         * lib/vasnprintf.c (USE_SNPRINTF): Define to 0 on BeOS.
27292
27293 2007-05-18  Bruno Haible  <bruno@clisp.org>
27294
27295         * lib/vasnprintf.c (VASNPRINTF) [WIN32]: Use %I64d instead of %lld
27296         for printing 64-bit integers. Needed for mingw.
27297
27298 2007-05-18  Bruno Haible  <bruno@clisp.org>
27299
27300         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Invoke
27301         gl_FUNC_FREXPL_WORKS.
27302         * modules/printf-frexpl (Files): Add m4/frexpl.m4.
27303
27304 2007-05-18  Bruno Haible  <bruno@clisp.org>
27305
27306         * modules/frexpl-nolibm-tests: New file.
27307
27308         * modules/frexpl-nolibm: New file.
27309         * m4/frexpl.m4 (gl_FUNC_FREXPL_NO_LIBM): New macro.
27310
27311 2007-05-17  Paul Eggert  <eggert@cs.ucla.edu>
27312
27313         * lib/dirent_.h: Prefer #include_next <foo.h> to #include
27314         @ABSOLUTE_FOO_H@ if @HAVE_INCLUDE_NEXT@.  This works better with
27315         GCC 4.2, which otherwise issues a lot of warnings.
27316         * lib/iconv_.h, lib/locale_.h, lib/netinet_in_.h, lib/sys_select_.h:
27317         * lib/sys_socket_.h, lib/sys_stat_.h, lib/sysexits_.h, lib/unistd_.h:
27318         Likewise.
27319         * modules/fchdir (dirent.h): Substitute @HAVE_INCLUDE_NEXT@.
27320         * modules/iconv_open (iconv.h): Likewise.
27321         * modules/locale (locale.h): Likewise.
27322         * modules/netinet_in (netinet/in.h): Likewise.
27323         * modules/sys_select (sys_select.h): Likewise.
27324         * modules/sys_socket (sys/socket.h): Likewise.
27325         * modules/sys_stat (sys/stat.h): Likewise.
27326         * modules/sysexits (sysexits.h): Likewise.
27327         * modules/unistd (unistd.h): Likewise.
27328
27329 2007-05-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
27330
27331         * modules/closein-tests (Makefile.am): Distribute
27332         `test-closein.sh'.
27333
27334 2007-05-17  Bruno Haible  <bruno@clisp.org>
27335
27336         * tests/test-printf-posix.output: Renamed from
27337         tests/test-fprintf-posix.out.
27338         * modules/fprintf-posix-tests: Update.
27339         * modules/printf-posix-tests: Update.
27340         * modules/vfprintf-posix-tests: Update.
27341         * modules/vprintf-posix-tests: Update.
27342         * tests/test-fprintf-posix.sh: Update.
27343         * tests/test-printf-posix.sh: Update.
27344         * tests/test-vfprintf-posix.sh: Update.
27345         * tests/test-vprintf-posix.sh: Update.
27346         Reported by Ralf Wildenhues.
27347
27348 2007-05-16  Paul Eggert  <eggert@cs.ucla.edu>
27349
27350         * lib/fcntl_.h: Prefer #include_next <foo.h> to #include
27351         @ABSOLUTE_FOO_H@ if @HAVE_INCLUDE_NEXT@.  This works better with
27352         GCC 4.2, which otherwise issues a lot of warnings.
27353         * lib/inttypes_.h, lib/math_.h, lib/search_.h, lib/signal_.h:
27354         * lib/stdint_.h, lib/stdio_.h, lib/stdlib_.h, lib/string_.h:
27355         * lib/sys_time_.h, lib/time_.h, lib/wchar_.h, lib/wctype_.h: Likewise.
27356         * lib/stdlib_.h: Don't bother with #pragma GCC system_header, as
27357         it should no longer be needed.
27358         * lib/string_.h: Likewise.
27359         * modules/absolute-header (HAVE_INCLUDE_NEXT): New 'make' define.
27360         * modules/fcntl (fcntl.h): Substitute @HAVE_INCLUDE_NEXT@.
27361         * modules/inttypes (inttypes.h): Likewise.
27362         * modules/math (math.h): Likewise.
27363         * modules/search (search.h): Likewise.
27364         * modules/signal (signal.h): Likewise.
27365         * modules/stdint (stdint.h): Likewise.
27366         * modules/stdio (stdio.h): Likewise.
27367         * modules/stdlib (stdlib.h): Likewise.
27368         * modules/string (string.h): Likewise.
27369         * modules/sys_time (sys/time.h): Likewise.
27370         * modules/time (time.h): Likewise.
27371         * modules/wchar (wchar.h): Likewise.
27372         * modules/wctype (wtype.h): Likewise.
27373
27374 2007-05-16  Thien-Thi Nguyen  <ttn@gnuvola.org>  (tiny change)
27375
27376         * doc/gnulib-tool.texi (CVS Issues): Fix typo.
27377
27378 2007-05-13  Bruno Haible  <bruno@clisp.org>
27379
27380         * stpcpy.m4 (gl_FUNC_STPCPY): Require AC_C_RESTRICT.
27381         * stpncpy.m4 (gl_FUNC_STPNCPY): Likewise.
27382         * strsep.m4 (gl_FUNC_STRSEP): Likewise.
27383         * strtok_r.m4 (gl_FUNC_STRTOK_R): Likewise.
27384         (gl_PREREQ_STRTOK_R): Don't require it here.
27385
27386 2007-05-13  Bruno Haible  <bruno@clisp.org>
27387
27388         * lib/stdlib_.h (mkdtemp, mkstemp): Comment out argument name. Needed
27389         when used in C++ mode.
27390
27391 2007-05-12  Bruno Haible  <bruno@clisp.org>
27392
27393         * lib/linebuffer.h: Tweak doc.
27394         * lib/linebuffer.c: Likewise.
27395
27396 2007-05-12  James Youngman  <jay@gnu.org>
27397
27398         * lib/linebuffer.c (readlinebuffer_delim): New function,
27399         like readlinebuffer, but use a caller-specified delimiter.
27400         (readlinebuffer): Just call readlinebuffer_delim with '\n'
27401         as the delimiter.
27402         * lib/linebuffer.h (readlinebuffer_delim): Declare it.
27403
27404 2007-05-12  Sergey Poznyakoff  <gray@gnu.org.ua>
27405
27406         * m4/openat.m4 (gl_FUNC_OPENAT): Do not require openat-die.
27407         * modules/openat (Files): Remove openat-die.c.
27408         (Depends-on): Add openat-die.
27409         * modules/openat-die: New module.
27410
27411 2007-05-06  Bruno Haible  <bruno@clisp.org>
27412
27413         * m4/printf.m4 (gl_PRINTF_FLAG_GROUPING, gl_VSNPRINTF_ZEROSIZE_C99):
27414         Update with info about Cygwin.
27415         * doc/functions/fprintf.texi: Update.
27416         * doc/functions/printf.texi: Update.
27417         * doc/functions/snprintf.texi: Update.
27418         * doc/functions/sprintf.texi: Update.
27419         * doc/functions/vfprintf.texi: Update.
27420         * doc/functions/vprintf.texi: Update.
27421         * doc/functions/vsnprintf.texi: Update.
27422         * doc/functions/vsprintf.texi: Update.
27423         Reported by Eric Blake.
27424
27425 2007-05-06  Bruno Haible  <bruno@clisp.org>
27426
27427         * lib/vasnprintf.c (VASNPRINTF) [NEED_PRINTF_FLAG_ZERO]: Perform the
27428         padding ourselves for the floating-point directives.
27429         * m4/printf.m4 (gl_PRINTF_FLAG_ZERO): New macro.
27430         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_FLAG_ZERO): New macro.
27431         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
27432         gl_PRINTF_FLAG_ZERO and test its result. Invoke
27433         gl_PREREQ_VASNPRINTF_FLAG_ZERO.
27434         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
27435         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Likewise.
27436         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
27437         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
27438         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
27439         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
27440         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
27441         * tests/test-snprintf-posix.h (test_function): Also check the width
27442         and some flags in the %f directive.
27443         * tests/test-sprintf-posix.h (test_function): Likewise.
27444         * tests/test-vasnprintf-posix.c (test_function): Likewise.
27445         * tests/test-vasprintf-posix.c (test_function): Likewise.
27446         * doc/functions/fprintf.texi: Update.
27447         * doc/functions/printf.texi: Update.
27448         * doc/functions/snprintf.texi: Update.
27449         * doc/functions/sprintf.texi: Update.
27450         * doc/functions/vfprintf.texi: Update.
27451         * doc/functions/vprintf.texi: Update.
27452         * doc/functions/vsnprintf.texi: Update.
27453         * doc/functions/vsprintf.texi: Update.
27454
27455 2007-05-06  Bruno Haible  <bruno@clisp.org>
27456
27457         * lib/vasnprintf.c (VASNPRINTF) [NEED_PRINTF_FLAG_GROUPING]: Don't
27458         pass the ' flag character to sprintf or snprintf.
27459         * m4/printf.m4 (gl_PRINTF_FLAG_GROUPING): New macro.
27460         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_FLAG_GROUPING): New macro.
27461         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
27462         gl_PRINTF_FLAG_GROUPING and test its result. Invoke
27463         gl_PREREQ_VASNPRINTF_FLAG_GROUPING.
27464         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
27465         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Likewise.
27466         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
27467         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
27468         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
27469         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
27470         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
27471         * tests/test-snprintf-posix.h (test_function): Also check the grouping
27472         flag.
27473         * tests/test-sprintf-posix.h (test_function): Likewise.
27474         * tests/test-vasnprintf-posix.c (test_function): Likewise.
27475         * tests/test-vasprintf-posix.c (test_function): Likewise.
27476         * doc/functions/fprintf.texi: Update.
27477         * doc/functions/printf.texi: Update.
27478         * doc/functions/snprintf.texi: Update.
27479         * doc/functions/sprintf.texi: Update.
27480         * doc/functions/vfprintf.texi: Update.
27481         * doc/functions/vprintf.texi: Update.
27482         * doc/functions/vsnprintf.texi: Update.
27483         * doc/functions/vsprintf.texi: Update.
27484
27485 2007-05-01  Bruno Haible  <bruno@clisp.org>
27486
27487         * tests/test-argp-2.sh (func_compare): Drop .exe suffix.
27488
27489 2007-05-03  Paul Eggert  <eggert@cs.ucla.edu>
27490
27491         * m4/d-ino.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_INO): Use better
27492         comment for D_INO_IN_DIRENT.  Problem reported by James Youngman.
27493
27494 2007-05-02  Paul Eggert  <eggert@cs.ucla.edu>
27495
27496         * m4/d-ino.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_INO): Test whether
27497         readdir returns garbage in d_ino.  Problem reported by Kaz Sasayama in
27498         <http://lists.gnu.org/archive/html/bug-gnulib/2007-05/msg00021.html>.
27499
27500 2007-05-02  Sergey Poznyakoff  <gray@gnu.org.ua>
27501
27502         * lib/argp-help.c (struct hol_entry): New member `ord'.
27503         (HOL_ENTRY_PTRCMP): Use ord for comparison
27504         (hol_sort): Initialize ord.
27505
27506 2007-05-01  Bruno Haible  <bruno@clisp.org>
27507
27508         * doc/functions/_Exit_C99.texi: Renamed from doc/functions/_Exit.texi.
27509         Reported by Eric Blake.
27510         * doc/gnulib.texi (Function Substitutes): Update.
27511
27512 2007-05-01  Bruno Haible  <bruno@clisp.org>
27513
27514         * doc/functions.texi: Remove file, now redundant through
27515         doc/functions/*.texi.
27516
27517 2007-05-01  Bruno Haible  <bruno@clisp.org>
27518
27519         * modules/argp (Depends-on): Add sleep.
27520
27521 2007-05-01  Bruno Haible  <bruno@clisp.org>
27522
27523         * modules/sleep-tests: New file.
27524         * tests/test-sleep.c: New file.
27525
27526         * modules/sleep: New file.
27527         * lib/sleep.c: New file.
27528         * m4/sleep.m4: New file.
27529         * lib/unistd_.h (sleep): New declaration.
27530         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_SLEEP,
27531         HAVE_SLEEP.
27532         * modules/unistd (Makefile.am): Substitute GNULIB_SLEEP, HAVE_SLEEP.
27533         * doc/functions/sleep.texi: Document the sleep module.
27534
27535 2007-05-01  Bruno Haible  <bruno@clisp.org>
27536
27537         * lib/sigprocmask.h: Remove file.
27538         * lib/signal_.h: Incorporate the previous contents of sigprocmask.h.
27539         * lib/sigprocmask.c: Include <signal.h> instead of sigprocmask.h.
27540         * m4/signal_h.m4 (gl_SIGNAL_H_DEFAULTS): Substitute GNULIB_SIGPROCMASK,
27541         HAVE_POSIX_SIGNALBLOCKING, HAVE_SIGSET_T.
27542         * m4/signalblocking.m4 (gl_SIGNALBLOCKING): Require
27543         gl_SIGNAL_H_DEFAULTS. Set HAVE_POSIX_SIGNALBLOCKING as a shell variable.
27544         (gl_PREREQ_SIGPROCMASK): Require gl_SIGNAL_H_DEFAULTS. Set
27545         HAVE_SIGSET_T as a shell variable.
27546         * modules/signal (Makefile.am): Substitute GNULIB_SIGPROCMASK,
27547         HAVE_POSIX_SIGNALBLOCKING, HAVE_SIGSET_T into signal.h.
27548         * modules/sigprocmask (Files): Remove lib/sigprocmask.h.
27549         (Depends-on): Add signal. Remove verify.
27550         (configure.ac): Invoke gl_SIGNAL_MODULE_INDICATOR.
27551         (Include): Mention <signal.h> instead of sigprocmask.h.
27552         * NEWS: Mention the change.
27553         * lib/fatal-signal.c: Don't include sigprocmask.h.
27554
27555 2007-05-01  Bruno Haible  <bruno@clisp.org>
27556
27557         * modules/signal: New file.
27558         * lib/signal_.h: New file.
27559         * m4/signal_h.m4: New file.
27560
27561 2007-05-01  Bruno Haible  <bruno@clisp.org>
27562
27563         * lib/wctype_.h: Test HAVE_ISWCNTRL at configure time.
27564         * m4/wctype.m4 (gl_WCTYPE_H): Substitute HAVE_ISWCNTRL.
27565         * modules/wctype (Makefile.am): Substitute HAVE_ISWCNTRL instead of
27566         HAVE_WCTYPE_CTMP_BUG into wctype.h.
27567
27568 2007-05-01  Bruno Haible  <bruno@clisp.org>
27569
27570         * lib/sys_stat_.h: Test HAVE_LSTAT, HAVE_DECL_MKDIR, HAVE_IO_H at
27571         configure time.
27572         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Substitute HAVE_LSTAT,
27573         HAVE_DECL_MKDIR, HAVE_IO_H via AC_SUBST.
27574         * modules/sys_stat (Makefile.am): Substitute their values into
27575         sys/stat.h.
27576
27577 2007-05-01  Bruno Haible  <bruno@clisp.org>
27578
27579         * lib/glob_.h: Test HAVE_SYS_CDEFS_H at configure time.
27580         * m4/glob.m4 (gl_PREREQ_GLOB): Substitute HAVE_SYS_CDEFS_H via AC_SUBST.
27581         * modules/glob (Makefile.am): Put HAVE_SYS_CDEFS_H value into glob.h.
27582
27583 2007-05-01  Bruno Haible  <bruno@clisp.org>
27584
27585         * doc/header/assert.texi: Undo last change: don't mention the gnulib
27586         'assert' module here.
27587
27588 2007-05-01  Bruno Haible  <bruno@clisp.org>
27589
27590         * doc/functions/*.texi: New files.
27591         * doc/functions/google-ranking.txt: New file.
27592         * doc/gnulib.texi (Function Substitutes): New chapter.
27593         (ctime, inet_ntoa): Remove sections.
27594         * doc/ctime.texi: Remove file.
27595         * doc/inet_ntoa.texi: Remove file.
27596         * doc/Makefile (gnulib.info, gnulib.html, gnulib.dvi): Update
27597         dependencies.
27598         (%.info): New rule, specifying a --reference-limit.
27599
27600 2007-05-01  Bruno Haible  <bruno@clisp.org>
27601
27602         * MODULES.html.sh (posix_functions): Remove 'exec', 'toc'.
27603
27604 2007-05-01  Bruno Haible  <bruno@clisp.org>
27605
27606         * modules/mkdir (Depends-on): Add sys_stat, because sys_stat provides
27607         the portability of 'mkdir' to mingw systems.
27608
27609 2007-05-01  Bruno Haible  <bruno@clisp.org>
27610
27611         * doc/headers/google-ranking.txt: New file.
27612
27613 2007-04-30  Eric Blake  <ebb9@byu.net>
27614
27615         Prefer fseeko to fseek.
27616         * modules/getpass (Depends-on): Add fseeko.
27617         * lib/getpass.c (getpass): Use fseeko, not fseek.
27618
27619 2007-04-30  Sergey Poznyakoff  <gray@gnu.org.ua>
27620
27621         * lib/argp-help.c (hol_entry_cmp): Option sorting algorithm
27622         assumes the sorting is stable, while most qsort implementations
27623         are not.  Use argument addresses to ensure they never compare as
27624         equal.
27625
27626         * tests/test-argp-2.sh (usage-indent test): Fix output
27627         (func_compare): Restore diff options
27628         * tests/test-argp.c: Restore #include "progname.h"
27629
27630 2007-04-29  Bruno Haible  <bruno@clisp.org>
27631
27632         * m4/printf.m4 (gl_VSNPRINTF_ZEROSIZE_C99): New macro.
27633         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
27634         gl_VSNPRINTF_ZEROSIZE_C99. Test gl_cv_func_vsnprintf_zerosize_c99.
27635         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
27636         * modules/snprintf-posix-tests (Files): Add tests/test-snprintf.c.
27637         (configure.ac): Define CHECK_SNPRINTF_POSIX.
27638         (TESTS, check_PROGRAMS): Add test-snprintf.
27639         * modules/vsnprintf-posix-tests (Files): Add tests/test-vsnprintf.c.
27640         (configure.ac): Define CHECK_VSNPRINTF_POSIX.
27641         (TESTS, check_PROGRAMS): Add test-vsnprintf.
27642         * tests/test-snprintf.c (main) [!CHECK_SNPRINTF_POSIX]: Disable
27643         assertions that fail on HP-UX, OSF/1, or IRIX.
27644         * tests/test-vsnprintf.c (main) [!CHECK_VSNPRINTF_POSIX]: Likewise.
27645
27646 2007-04-29  Bruno Haible  <bruno@clisp.org>
27647
27648         * MODULES.html.sh (posix_functions): Remove 'contents'.
27649
27650 2007-04-29  Karl Berry  <karl@gnu.org>
27651
27652         * config/srclist.txt (gendocs_template_min): new entry.
27653
27654 2007-04-29  Bruno Haible  <bruno@clisp.org>
27655
27656         Work around fpurge bug on BSD systems.
27657         * modules/fpurge (Makefile.am): Compile fpurge.c unconditionally.
27658         * m4/fpurge.m4 (gl_FUNC_FPURGE): Don't invoke AC_LIBOBJ.
27659         * lib/fpurge.h (fpurge): Don't handle __fpurge wrapper here. Define
27660         fpurge to rpl_fpurge if the system already has this function.
27661         * lib/fpurge.c (fpurge): Handle also the __fpurge wrapper case and
27662         the case where the system already has this function. Correct invariants
27663         on BSD systems.
27664         * lib/fseeko.c (rpl_fseeko): Update recognition of preceding fflush on
27665         BSD systems.
27666
27667 2007-04-29  Sergey Poznyakoff  <gray@gnu.org.ua>
27668
27669         * lib/argp-help.c (hol_cluster_cmp): Reverse comparison.  Change
27670         proposed by Sven Verdoolaege.
27671
27672         * tests/test-argp.c: Fix option ordering.  Test deeply clustered
27673         options.
27674         * tests/test-argp-2.sh (func_compare): Use diff instead of cmp.
27675         (usage and help tests): Update
27676
27677 2007-04-29  Bruno Haible  <bruno@clisp.org>
27678
27679         * tests/test-fflush.c (main): Use a file of size 17, not 10.
27680         Print more information in case of failure. Disable a test on BeOS.
27681
27682 2007-04-29  Bruno Haible  <bruno@clisp.org>
27683
27684         * tests/**/test-*.[hc] (ASSERT): Use fprintf to show the line number.
27685         This helps debugging on systems on which no gdb is available.
27686
27687 2007-04-29  Bruno Haible  <bruno@clisp.org>
27688
27689         * lib/freading.h: Improve comments.
27690         * lib/fwriting.h: Likewise.
27691         * tests/test-freading.c (main): Don't check freading immediately after
27692         repositioning. Needed for glibc.
27693
27694 2007-04-29  Bruno Haible  <bruno@clisp.org>
27695
27696         * lib/freading.c (freading): Trivial simplification.
27697
27698 2007-04-28  Bruno Haible  <bruno@clisp.org>
27699
27700         * tests/test-fwriting.c (main): Also test the interaction between
27701         fflush and fwriting.
27702         * modules/fwriting-tests (Depends-on): Add fflush.
27703
27704         * tests/test-freading.c (main): Also test the interaction between
27705         fflush and freading.
27706         * modules/freading-tests (Depends-on): Add fflush.
27707
27708 2007-04-28  Bruno Haible  <bruno@clisp.org>
27709
27710         * lib/stdio_.h (fseek, ftell): Provide link warnings suggesting to use
27711         fseeko and ftello.
27712         Suggested by Eric Blake.
27713
27714 2007-04-28  Jim Meyering  <jim@meyering.net>
27715
27716         Avoid false-negative in gl_STDINT_H's C99 conformance test.
27717         * m4/stdint.m4 (gl_STDINT_H): When checking whether stdint.h conforms
27718         to C99, include all of gl_STDINT_INCLUDES, not just <stddef.h>.
27719
27720 2007-04-27  Eric Blake  <ebb9@byu.net>
27721
27722         * doc/headers/assert.texi (assert.h): Document assert module use.
27723
27724 2007-04-27  Bruno Haible  <bruno@clisp.org>
27725
27726         * doc/headers/*.texi: New files.
27727         * doc/gnulib.texi (Header File Substitutes): New chapter.
27728         * doc/Makefile (gnulib.info, gnulib.html, gnulib.dvi): Specify
27729         dependencies.
27730         (standards.info ,standards.html, standards.dvi): Update dependencies.
27731         (mostlyclean, clean): New targets.
27732
27733 2007-04-27  Bruno Haible  <bruno@clisp.org>
27734
27735         * lib/sysexits_.h: Renamed from lib/sysexit_.h.
27736         * modules/sysexits (Files, Makefile.am): Update.
27737
27738         * lib/sys_socket_.h: Renamed from lib/socket_.h.
27739         * modules/sys_socket (Files, Makefile.am): Update.
27740
27741         * lib/sys_stat_.h: Renamed from lib/stat_.h.
27742         * modules/sys_stat (Files, Makefile.am): Update.
27743
27744 2007-04-27  Eric Blake  <ebb9@byu.net>
27745
27746         * lib/freading.h: Improve comments.
27747         * lib/fwriting.h: Likewise.
27748         * lib/fflush.c: Likewise.
27749
27750         Fix closein for mingw.
27751         * modules/closein-tests: Add tests for closein.
27752         * tests/test-closein.c: New file.
27753         * tests/test-closein.sh: Likewise.
27754         * lib/unistd_.h [!SEEK_CUR]: Mingw also needs stdlib.h for _exit.
27755         * lib/closein.c (close_stdin): Don't fflush non-seekable streams.
27756
27757 2007-04-27  Bruno Haible  <bruno@clisp.org>
27758
27759         * lib/inttypes_.h [_DECC]: Don't use #include_next if the compiler
27760         version is < 6.
27761         * lib/math_.h [__DECC]: Likewise.
27762         * lib/stdio_.h [__DECC]: Likewise.
27763         * lib/stdlib_.h [__DECC]: Likewise.
27764         * lib/string_.h [__DECC]: Likewise.
27765         * lib/time_.h [__DECC]: Likewise.
27766         * lib/wchar_.h [__DECC]: Likewise.
27767         * lib/wctype_.h [__DECC]: Likewise.
27768
27769 2007-04-27  Bruno Haible  <bruno@clisp.org>
27770
27771         * tests/test-fbufmode.c (main): Relax test, to avoid failure on mingw.
27772
27773 2007-04-27  Bruno Haible  <bruno@clisp.org>
27774
27775         * lib/fflush.c: Add comments.
27776         * modules/fpurge-tests (Depends-on): Add fflush.
27777         * modules/freadable-tests (Depends-on): Likewise.
27778         * modules/fwritable-tests (Depends-on): Likewise.
27779
27780 2007-04-27  Charles Wilson  <libtool@cwilson.fastmail.fm>
27781
27782         * m4/argz.m4 (gl_FUNC_ARGZ): Use !HAVE_WORKING_ARGZ instead of
27783         SYSTEM_ARGZ_IS_BROKEN.  Also, minor stylistic improvements.
27784         Report by Bruno Haible <bruno@clisp.org>.
27785
27786 2007-04-26  Eric Blake  <ebb9@byu.net>
27787
27788         Fix fflush on mingw.
27789         * modules/fflush (Depends-on): Add freading.
27790         * lib/fflush.c (rpl_fflush): Use freading to avoid losing buffered
27791         but unread data.
27792
27793 2007-04-26  Eric Blake  <ebb9@byu.net>
27794         and Bruno Haible  <bruno@clisp.org>
27795
27796         Implement freading and fwriting.
27797         * lib/freading.c: New file.
27798         * lib/freading.h: Likewise.
27799         * m4/freading.m4: Likewise.
27800         * modules/freading: Likewise.
27801         * modules/freading-tests: Likewise.
27802         * tests/test-freading.c: Likewise.
27803         * lib/fwriting.c: New file.
27804         * lib/fwriting.h: Likewise.
27805         * m4/fwriting.m4: Likewise.
27806         * modules/fwriting: Likewise.
27807         * modules/fwriting-tests: Likewise.
27808         * tests/test-fwriting.c: Likewise.
27809         * MODULES.html.sh (File stream based Input/Output): Mention them.
27810
27811 2007-04-26  Bruno Haible  <bruno@clisp.org>
27812
27813         * lib/stdio_.h (fseeko, ftello): Check that off_t has the same size as
27814         'long' when we assume it.
27815         Suggested by Eric Blake.
27816
27817 2007-04-26  Bruno Haible  <bruno@clisp.org>
27818
27819         Ensure fseeko, ftello are declared on glibc systems.
27820         * modules/fflush (configure.ac-early): Require AC_FUNC_FSEEKO.
27821         * modules/fseeko (configure.ac-early): Likewise.
27822         * modules/ftello (configure.ac-early): Likewise.
27823         * m4/fflush.m4 (gl_REPLACE_FFLUSH): Don't define HAVE_FSEEKO, rely on
27824         AC_FUNC_FSEEKO for this.
27825         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Inline gl_CHECK_FSEEKO.
27826         (gl_CHECK_FSEEKO): Remove macro.
27827
27828 2007-04-26  Bruno Haible  <bruno@clisp.org>
27829
27830         * tests/test-fflush.c (main): Also check the ftell result after
27831         fflush and fseek/fseeko.
27832         * lib/fflush.c (rpl_fflush): For BSD implementations, update the
27833         file descriptor position cache in the stream.
27834         * lib/fseeko.c (rpl_fseeko): Likewise.
27835
27836 2007-04-26  Bruno Haible  <bruno@clisp.org>
27837
27838         * modules/fflush-tests (Depends-on): Add fseeko.
27839
27840 2007-04-25  Charles Wilson  <libtool@cwilson.fastmail.fm>
27841             Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
27842
27843         * lib/argz_.h: ensure error_t definition is obtained in same
27844         mechanism system argz.h would have.
27845         * m4/argz.m4 (gl_FUNC_ARGZ): add new test to check if $host's
27846         argz facilities are known bad.  Err on the side of caution if
27847         cross-compiling.
27848
27849 2007-04-25  Eric Blake  <ebb9@byu.net>
27850
27851         * lib/fpurge.c (includes): Use stdlib.h for free.
27852         * tests/test-fflush.c (main): Also test fflush-fseeko.
27853
27854 2007-04-25  Bruno Haible  <bruno@clisp.org>
27855
27856         Make fflush+fseek POSIX-compliant on FreeBSD and MacOS X.
27857         * lib/fseeko.c: New file.
27858         * lib/stdio_.h: Include <sys/types.h> when off_t is needed.
27859         (fseeko, fseek): Define to replacements if REPLACE_FFLUSH.
27860         * m4/fseeko.m4 (gl_CHECK_FSEEKO): New macro, extracted from
27861         gl_FUNC_FSEEKO.
27862         (gl_FUNC_FSEEKO): Invoke it.
27863         * m4/fflush.m4 (gl_REPLACE_FFLUSH): Arrange to compile fseeko.c. Invoke
27864         gl_CHECK_FSEEKO. Define HAVE_FSEEKO.
27865         * modules/fflush (Files): Add lib/fseeko.c, m4/fseeko.m4.
27866
27867 2007-04-25  Bruno Haible  <bruno@clisp.org>
27868
27869         * modules/fflush (Depends-on): Add ftello.
27870
27871 2007-04-25  Bruno Haible  <bruno@clisp.org>
27872
27873         * modules/ftello-tests: New file.
27874         * tests/test-ftello.c: New file.
27875
27876         * modules/ftello: New file.
27877         * m4/ftello.m4: New file.
27878         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FTELLO,
27879         HAVE_FTELLO.
27880         * lib/stdio_.h (ftello): New declaration.
27881         * modules/stdio (Makefile.am): Substitute also GNULIB_FTELLO,
27882         HAVE_FTELLO.
27883
27884 2007-04-25  Bruno Haible  <bruno@clisp.org>
27885
27886         * modules/fseeko-tests: New file.
27887         * tests/test-fseeko.c: New file.
27888
27889         * modules/fseeko: New file.
27890         * m4/fseeko.m4: New file.
27891         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FSEEKO,
27892         HAVE_FSEEKO.
27893         * lib/stdio_.h (fseeko): New declaration.
27894         * modules/stdio (Makefile.am): Substitute also GNULIB_FSEEKO,
27895         HAVE_FSEEKO.
27896
27897 2007-04-25  Bruno Haible  <bruno@clisp.org>
27898
27899         * lib/stdio_.h (fflush): Add support for GNULIB_POSIXCHECK.
27900
27901 2007-04-25  Bruno Haible  <bruno@clisp.org>
27902
27903         * lib/unistd_.h: Include <stdio.h> if needed to get the SEEK_* macros.
27904         * tests/test-stdio.c: Check that the various SEEK_* macros are defined.
27905         * tests/test-unistd.c: Likewise.
27906         * tests/test-fcntl.c: Likewise.
27907
27908 2007-04-23  Eric Blake  <ebb9@byu.net>
27909
27910         * lib/fflush.c: Fix missing include.
27911         Reported by Bruno Haible.
27912
27913 2007-04-23  Bruno Haible  <bruno@clisp.org>
27914
27915         * lib/fpurge.c (fpurge) [glibc, BSD]: Free a malloc()ed ungetc buffer.
27916         Reported by Eric Blake.
27917
27918 2007-04-23  Bruno Haible  <bruno@clisp.org>
27919
27920         * lib/fbufmode.c (fbufmode): Port to Solaris/SPARC64.
27921
27922 2007-04-23  Bruno Haible  <bruno@clisp.org>
27923
27924         * lib/fseterr.c (fseterr): Don't hardcode the value of _IOERR.
27925
27926 2007-04-23  Bruno Haible  <bruno@clisp.org>
27927
27928         * tests/test-fbufmode.c (main): Be prepared to a failure of setvbuf.
27929         Needed on HP-UX 11.
27930
27931 2007-04-16  Eric Blake  <ebb9@byu.net>
27932
27933         Make fflush rely on fpurge.
27934         * lib/fflush.c (rpl_fflush): Rely on fpurge module, rather than
27935         open coding all variants.
27936         * modules/fflush (Depends-on): Add fpurge and unistd.
27937         * modules/fflush-tests (Depends-on): Unistd is no longer extra.
27938         * m4/fflush.m4 (gl_REPLACE_FFLUSH): Simplify.
27939
27940         Fix --with-tests compilation on cygwin.
27941         * modules/argmatch-tests (Makefile.am): List gnulib library first
27942         in LDADD.
27943         * modules/argp-tests (Makefile.am): Likewise.
27944         * modules/array-list-tests (Makefile.am): Likewise.
27945         * modules/array-oset-tests (Makefile.am): Likewise.
27946         * modules/avltree-list-tests (Makefile.am): Likewise.
27947         * modules/avltree-oset-tests (Makefile.am): Likewise.
27948         * modules/avltreehash-list-tests (Makefile.am): Likewise.
27949         * modules/carray-list-tests (Makefile.am): Likewise.
27950         * modules/dirname-tests (Makefile.am): Likewise.
27951         * modules/frexp-tests (Makefile.am): Likewise.
27952         * modules/isnanl-tests (Makefile.am): Likewise.
27953         * modules/linked-list-tests (Makefile.am): Likewise.
27954         * modules/linkedhash-list-tests (Makefile.am): Likewise.
27955         * modules/lock-tests (Makefile.am): Likewise.
27956         * modules/rbtree-list-tests (Makefile.am): Likewise.
27957         * modules/rbtree-oset-tests (Makefile.am): Likewise.
27958         * modules/rbtreehash-list-tests (Makefile.am): Likewise.
27959         * modules/tls-tests (Makefile.am): Likewise.
27960         * modules/tsearch-tests (Makefile.am): Likewise.
27961         * modules/xvasprintf-tests (Makefile.am): Likewise.
27962
27963         Fix fpurge for cygwin.
27964         * lib/fpurge.c (fpurge): Fix order of operation flub, and return a
27965         value.
27966         * modules/fpurge-tests (Depends-on): Clean up trash.
27967
27968 2007-04-16  Simon Josefsson  <simon@josefsson.org>
27969
27970         * lib/gc-libgcrypt.c (gc_hash_open): Shut up compiler warnings.
27971
27972         * m4/autobuild.m4: Re-indent.
27973
27974 2007-04-13  Bruno Haible  <bruno@clisp.org>
27975
27976         * modules/fpurge-tests: New file.
27977         * tests/test-fpurge.c: New file.
27978
27979         * modules/fpurge: New file.
27980         * lib/fpurge.h: New file.
27981         * lib/fpurge.c: New file.
27982         * m4/fpurge.m4: New file.
27983
27984 2007-04-13  Bruno Haible  <bruno@clisp.org>
27985
27986         * modules/fbufmode-tests: New file.
27987         * tests/test-fbufmode.c: New file.
27988
27989         * modules/fbufmode: New file.
27990         * lib/fbufmode.h: New file.
27991         * lib/fbufmode.c: New file.
27992         * m4/fbufmode.m4: New file.
27993
27994 2007-04-13  Bruno Haible  <bruno@clisp.org>
27995
27996         * modules/fwritable-tests: New file.
27997         * tests/test-fwritable.c: New file.
27998
27999         * modules/fwritable: New file.
28000         * lib/fwritable.h: New file.
28001         * lib/fwritable.c: New file.
28002         * m4/fwritable.m4: New file.
28003
28004 2007-04-13  Bruno Haible  <bruno@clisp.org>
28005
28006         * modules/freadable-tests: New file.
28007         * tests/test-freadable.c: New file.
28008
28009         * modules/freadable: New file.
28010         * lib/freadable.h: New file.
28011         * lib/freadable.c: New file.
28012         * m4/freadable.m4: New file.
28013
28014 2007-04-13  Bruno Haible  <bruno@clisp.org>
28015
28016         * modules/fflush-tests (Makefile.am): Remove EXTRA_DIST. Augment
28017         MOSTLYCLEANFILES.
28018
28019 2007-04-13  Paul Eggert  <eggert@cs.ucla.edu>
28020
28021         * build-aux/bootstrap (gnulib_tool_option_extras): New var, used by
28022         gzip bootstrap.conf to avoid dragging in i18n machinery.
28023         (gnulib_tool_option): Use it.
28024
28025 2007-04-13  Bruno Haible  <bruno@clisp.org>
28026
28027         * tests/test-vasnprintf-posix.c (test_function): Add tests for %f and
28028         %F directives.
28029         * tests/test-vasprintf-posix.c (test_function): Likewise.
28030         * tests/test-snprintf-posix.h (test_function): Likewise.
28031         * tests/test-sprintf-posix.h (test_function): Likewise.
28032         * tests/test-fprintf-posix.h (test_function): Likewise.
28033         * tests/test-printf-posix.h (test_function): Likewise.
28034         * tests/test-fprintf-posix.out: Likewise.
28035
28036 2007-04-13  Bruno Haible  <bruno@clisp.org>
28037
28038         * modules/lock-tests (configure.ac): For LIBSCHED, try also -lposix4.
28039         * modules/tls-tests (configure.ac): Likewise.
28040         Reported by Arto C. Nirkko <anirkko@insel.ch>.
28041
28042 2007-04-13  Bruno Haible  <bruno@clisp.org>
28043
28044         * lib/tls.c (glthread_tls_get): Fix return type.
28045         Patch by Arto C. Nirkko <anirkko@insel.ch>.
28046
28047 2007-04-12  Eric Blake  <ebb9@byu.net>
28048
28049         * modules/gettime (Depends-on): Remove gettime.
28050         Reported by Dmitry V. Levin.
28051
28052 2007-04-12  Bruno Haible  <bruno@clisp.org>
28053
28054         * modules/fflush (Include): Mention <stdio.h>.
28055         * modules/strtoimax (Include): Mention <inttypes.h>.
28056         * modules/strtoumax (Include): Likewise.
28057
28058 2007-04-12  Eric Blake  <ebb9@byu.net>
28059
28060         * .cvsignore: New file.
28061         * .gitignore: Likewise.
28062
28063 2007-04-12  Bruno Haible  <bruno@clisp.org>
28064
28065         * modules/iconv-tests (test_iconv_LDADD): Mention -liconv after LDADD,
28066         not before, since $(LDADD) often contains libgnu.a.
28067         * modules/striconv-tests (test_striconv_LDADD): Likewise.
28068         * modules/striconveh-tests (test_striconveh_LDADD): Likewise.
28069         * modules/striconveha-tests (test_striconveha_LDADD): Likewise.
28070         Needed on Cygwin.
28071
28072 2007-04-12  Eric Blake  <ebb9@byu.net>
28073
28074         Work around glibc's failure to flush stdin on fclose.
28075         * lib/closein.c (close_stdin): Flush stdin before closing.
28076
28077         Work around glibc's failure to reset seekable stdin on exit.
28078         * modules/closein: New module.
28079         * lib/closein.c: New file.
28080         * lib/closein.h: Likewise.
28081         * m4/closein.m4: Likewise.
28082         * MODULES.html.sh (File stream based Input/Output): Document it.
28083
28084 2007-04-12  Simon Josefsson  <simon@josefsson.org>
28085
28086         * gnulib-tool: Rename generated 'autobuild' script to
28087         'do-autobuild' in --create-megatestdir output.
28088
28089         * doc/gnulib.texi (Build robot for gnulib): Fix.
28090
28091 2007-04-12  Simon Josefsson  <simon@josefsson.org>
28092
28093         * modules/sysexits (Depends-on): Add absolute-header.
28094
28095 2007-04-12  Eric Blake  <ebb9@byu.net>
28096
28097         No need to preserve errno on success.
28098         * lib/fflush.c (rpl_fflush): Simplify errno tracking.
28099         Reported by Bruno Haible.
28100
28101 2007-04-12  Simon Josefsson  <simon@josefsson.org>
28102
28103         * MODULES.html.sh (Support for maintaining and releasing
28104         projects): Add autobuild.  Suggested by Eric Blake <ebb9@byu.net>.
28105
28106 2007-04-12  Simon Josefsson  <simon@josefsson.org>
28107
28108         * gnulib-tool (func_modules_add_dummy): Respect --avoid=dummy.
28109
28110 2007-04-12  Simon Josefsson  <simon@josefsson.org>
28111
28112         * modules/autobuild: New module.
28113
28114         * m4/autobuild.m4: New file.
28115
28116 2007-04-11  Bruno Haible  <bruno@clisp.org>
28117
28118         * lib/vasnprintf.c (VASNPRINTF): Implement the %F directive using the
28119         %f directive, if NEED_PRINTF_DIRECTIVE_F is defined.
28120         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_F): New macro.
28121         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_F): New macro.
28122         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
28123         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
28124         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
28125         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
28126         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
28127         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
28128         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Invoke
28129         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
28130         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
28131         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Invoke
28132         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
28133         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
28134         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Invoke
28135         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
28136         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
28137         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Invoke
28138         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
28139         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
28140         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Invoke
28141         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
28142         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
28143         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Invoke
28144         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
28145         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
28146         Reported by Eric Blake.
28147
28148 2007-04-11  Bruno Haible  <bruno@clisp.org>
28149
28150         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_A): Fix test. It always failed.
28151
28152 2007-04-10  Bruno Haible  <bruno@clisp.org>
28153
28154         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_A): Add a test for correct result
28155         for NaN and Infinity. Needed on FreeBSD 6.1.
28156         * tests/test-vasnprintf-posix.c (test_function): Undo last change
28157         regarding results for "%010a" of Infinity and NaN.
28158         * tests/test-vasprintf-posix.c (test_function): Likewise.
28159         * tests/test-snprintf-posix.h (test_function): Likewise.
28160         * tests/test-sprintf-posix.h (test_function): Likewise.
28161         * tests/test-fprintf-posix.h (test_function): Likewise.
28162         * tests/test-printf-posix.h (test_function): Likewise.
28163         * tests/test-fprintf-posix.out: Likewise.
28164
28165 2007-04-10  Bruno Haible  <bruno@clisp.org>
28166
28167         * modules/locale-tests: New file.
28168         * tests/test-locale.c: New file.
28169
28170         * modules/locale: New file.
28171         * lib/locale_.h: New file.
28172         * m4/locale_h.m4: New file.
28173
28174 2007-04-10  Paul Eggert  <eggert@cs.ucla.edu>
28175             Bruno Haible  <bruno@clisp.org>
28176
28177         * m4/signbit.m4 (gl_SIGNBIT): When the sign bit position could not
28178         be determined, test for availability of the copysignf, copysign,
28179         copysignl functions.
28180         * lib/signbitf.c (gl_signbitf): Use copysignf if available in libc.
28181         * lib/signbitd.c (gl_signbitd): Use copysign if available in libc.
28182         * lib/signbitl.c (gl_signbitl): Use copysignl if available in libc.
28183
28184 2007-04-09  Eric Blake  <ebb9@byu.net>
28185
28186         * lib/stdio_.h [REPLACE_FFLUSH]: Declare rpl_fflush.
28187         * modules/stdio (Makefile.am): Support fflush.
28188         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Likewise.
28189         * modules/fflush: New file.
28190         * lib/fflush.c: Likewise.
28191         * m4/fflush.m4: Likewise.
28192         * modules/fflush-tests: New test.
28193         * tests/test-fflush.c: Likewise.
28194         * MODULES.html.sh (Input/output <stdio.h>): Document new module.
28195
28196 2007-04-06  Bruno Haible  <bruno@clisp.org>
28197
28198         * lib/vasnprintf.c: Include <math.h>. Don't include float+.h.
28199         (VASNPRINTF): Use signbit for faster determination whether to print a
28200         minus sign.
28201         * modules/vasnprintf (Files): Remove lib/float+.h.
28202         * modules/fprintf-posix (Depends-on): Add signbit.
28203         * modules/snprintf-posix (Depends-on): Likewise.
28204         * modules/sprintf-posix (Depends-on): Likewise.
28205         * modules/vasnprintf-posix (Depends-on): Likewise.
28206         * modules/vasprintf-posix (Depends-on): Likewise.
28207         * modules/vfprintf-posix (Depends-on): Likewise.
28208         * modules/vsnprintf-posix (Depends-on): Likewise.
28209         * modules/vsprintf-posix (Depends-on): Likewise.
28210
28211 2007-04-06  Bruno Haible  <bruno@clisp.org>
28212
28213         * tests/test-frexp.c (main): Test also the sign bit of zero results.
28214         * tests/test-frexpl.c (main): Likewise.
28215         * tests/test-ldexpl.c (main): Likewise.
28216         * modules/frexp-tests (Depends-on): Add signbit.
28217         * modules/frexpl-tests (Depdends-on): Likewise.
28218         * modules/ldexpl-tests (Depdends-on): Likewise.
28219
28220 2007-04-06  Bruno Haible  <bruno@clisp.org>
28221
28222         * modules/signbit-tests: New file.
28223         * tests/test-signbit.c: New file.
28224
28225         * modules/signbit: New file.
28226         * lib/signbitf.c: New file.
28227         * lib/signbitd.c: New file.
28228         * lib/signbitl.c: New file.
28229         * m4/signbit.m4: New file.
28230         * lib/math_.h (gl_signbitf, gl_signbitd, gl_signbitl): New declarations.
28231         (signbit): New macro.
28232         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_SIGNBIT and
28233         REPLACE_SIGNBIT.
28234         * modules/math (Makefile.am) Substibute also GNULIB_SIGNBIT and
28235         REPLACE_FREXPL into math.h.
28236
28237 2007-04-06  Bruno Haible  <bruno@clisp.org>
28238
28239         * modules/isnanf-nolibm-tests: New file.
28240         * tests/test-isnanf.c: New file.
28241
28242         * modules/isnanf-nolibm: New file.
28243         * lib/isnanf.h: New file.
28244         * lib/isnanf.c: New file.
28245         * lib/isnan.c: Consider the USE_FLOAT macro.
28246         * m4/isnanf.m4: New file.
28247
28248 2007-04-06  Bruno Haible  <bruno@clisp.org>
28249
28250         * modules/gettext-h (configure.ac): AC_SUBST LIBINTL and LTLIBINTL.
28251         (Link): New section.
28252
28253         * modules/canonicalize-lgpl-tests (Makefile.am): Undo last change.
28254
28255 2007-04-06  Bruno Haible  <bruno@clisp.org>
28256
28257         Assume the 'long double' type.
28258         * m4/longdouble.m4: Remove file.
28259         * config/srclist.txt: Don't mention longdouble.m4.
28260         * lib/allocsa.h: Assume HAVE_LONG_DOUBLE to be true.
28261         * lib/float+.h: Likewise.
28262         * lib/frexp.c: Likewise.
28263         * lib/printf-args.h: Likewise.
28264         * lib/printf-args.c: Likewise.
28265         * lib/printf-frexp.c: Likewise.
28266         * lib/printf-parse.c: Likewise.
28267         * lib/vasnprintf.c: Likewise.
28268         * m4/allocsa.m4: Remove gt_TYPE_LONGDOUBLE invocation.
28269         * m4/intl.m4: Likewise.
28270         * m4/isnanl.m4: Likewise.
28271         * m4/printf.m4: Likewise.
28272         * m4/printf-frexpl.m4: Likewise.
28273         * m4/vasnprintf.m4: Likewise.
28274         * modules/allocsa (Files): Remove m4/longdouble.m4.
28275         * modules/gettext (Files): Likewise.
28276         * modules/relocatable-prog-wrapper (Files): Likewise.
28277         * modules/vasnprintf (Files): Likewise.
28278         * modules/isnanl (Files): Likewise.
28279         (Include): Simplify.
28280         * modules/isnanl-nolibm (Files): Remove m4/longdouble.m4.
28281         (Include): Simplify.
28282         * modules/printf-frexpl (Files): Remove m4/longdouble.m4.
28283         (Include): Simplify.
28284         * modules/snprintf-posix-tests (Files): Remove m4/longdouble.m4.
28285         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
28286         * modules/sprintf-posix-tests (Files): Remove m4/longdouble.m4.
28287         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
28288         * modules/vasnprintf-posix-tests (Files): Remove m4/longdouble.m4.
28289         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
28290         * modules/vasprintf-posix-tests (Files): Remove m4/longdouble.m4.
28291         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
28292         * modules/vsnprintf-posix-tests (Files): Remove m4/longdouble.m4.
28293         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
28294         * modules/vsprintf-posix-tests (Files): Remove m4/longdouble.m4.
28295         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
28296         * tests/test-isnanl-nolibm.c: Assume HAVE_LONG_DOUBLE to be true.
28297         * tests/test-isnanl.c: Likewise.
28298         * tests/test-snprintf-posix.h: Likewise.
28299         * tests/test-sprintf-posix.h: Likewise.
28300         * tests/test-vasnprintf-posix.c: Likewise.
28301         * tests/test-vasnprintf-posix2.c: Likewise.
28302         * tests/test-vasprintf-posix.c: Likewise.
28303
28304 2007-04-06  Bruno Haible  <bruno@clisp.org>
28305
28306         Fix problem with Compaq (ex-DEC) Desktop C compiler on Tru64.
28307         * lib/math_.h [__DECC]: Include the overridden include file through
28308         #include_next, outside the double-inclusion guard.
28309         * lib/stdio_.h [__DECC]: Likewise.
28310         * lib/stdlib_.h [__DECC]: Likewise.
28311         * lib/string_.h [__DECC]: Likewise.
28312         * lib/time_.h [__DECC]: Likewise.
28313         * lib/wchar_.h [__DECC]: Likewise.
28314         * lib/wctype_.h [__DECC]: Likewise.
28315         * lib/inttypes_.h [__DECC]: Likewise.
28316         Reported by Albert Chin <china@thewrittenword.com> in
28317         <http://lists.gnu.org/archive/html/bug-gnulib/2007-04/msg00088.html>.
28318
28319 2007-04-04  Eric Blake  <ebb9@byu.net>
28320
28321         * m4/stdint.m4 (gl_STDINT_H): Detect WINT_MAX bug in cygwin
28322         1.5.x.
28323
28324 2007-04-04  Bruno Haible  <bruno@clisp.org>
28325
28326         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_A): Add a test for correct
28327         rounding. Don't assume that FreeBSD 6 and NetBSD 4 pass this test.
28328
28329 2007-04-04  Bruno Haible  <bruno@clisp.org>
28330
28331         * tests/test-vasnprintf-posix.c (test_function): Allow two possible
28332         results for "%010a" of Infinity and NaN.
28333         * tests/test-vasprintf-posix.c (test_function): Likewise.
28334         * tests/test-snprintf-posix.h (test_function): Likewise.
28335         * tests/test-sprintf-posix.h (test_function): Likewise.
28336         * tests/test-fprintf-posix.h (test_function): Remove these tests.
28337         * tests/test-printf-posix.h (test_function): Likewise.
28338         * tests/test-fprintf-posix.out: Update.
28339         Needed for FreeBSD 6.1.
28340
28341 2007-04-04  Bruno Haible  <bruno@clisp.org>
28342
28343         * DEPENDENCIES: Remove mentions of tar and gzip, since they are not
28344         directly used by the gnulib modules nor by gnulib-tool.
28345
28346 2007-04-04  Paul Eggert  <eggert@cs.ucla.edu>
28347
28348         * DEPENDENCIES: Give overall description of version dependency
28349         desirability.  Use more-typical names for apps.
28350         Add shell, coreutils, diffutils, grep, tar, gzip.
28351
28352 2007-04-04  Simon Josefsson  <simon@josefsson.org>
28353
28354         * MODULES.html.sh: Rename crypto modules.  Remove iconvme.
28355
28356 2007-04-04  Karl Berry  <karl@gnu.org>
28357
28358         * MODULES.html.sh (func_module): missing '.
28359
28360 2007-04-03  Bruno Haible  <bruno@clisp.org>
28361
28362         * modules/argmatch-tests (Makefile.am): New variable
28363         test_argmatch_LDADD.
28364         * modules/argp-tests (Makefile.am): New variable test_argp_LDADD.
28365         * modules/array-list-tests (Makefile.am): New variable
28366         test_array_list_LDADD.
28367         * modules/array-oset-tests (Makefile.am): New variable
28368         test_array_oset_LDADD.
28369         * modules/avltree-list-tests (Makefile.am): New variable
28370         test_avltree_list_LDADD.
28371         * modules/avltree-oset-tests (Makefile.am): New variable
28372         test_avltree_oset_LDADD.
28373         * modules/avltreehash-list-tests (Makefile.am): New variable
28374         test_avltreehash_list_LDADD.
28375         * modules/canonicalize-lgpl-tests (Makefile.am): New variable
28376         test_canonicalize_lgpl_LDADD.
28377         * modules/carray-list-tests (Makefile.am): New variable
28378         test_carray_list_LDADD.
28379         * modules/dirname-tests (Makefile.am): New variable
28380         test_dirname_LDADD.
28381         * modules/linked-list-tests (Makefile.am): New variable
28382         test_linked_list_LDADD.
28383         * modules/linkedhash-list-tests (Makefile.am): New variable
28384         test_linkedhash_list_LDADD.
28385         * modules/rbtree-list-tests (Makefile.am): New variable
28386         test_rbtree_list_LDADD.
28387         * modules/rbtree-oset-tests (Makefile.am): New variable
28388         test_rbtree_oset_LDADD.
28389         * modules/rbtreehash-list-tests (Makefile.am): New variable
28390         test_rbtreehash_list_LDADD.
28391         * modules/xvasprintf-tests (Makefile.am): New variable
28392         test_xvasprintf_LDADD.
28393         Reported by Eric Blake.
28394
28395 2007-04-03  Eric Blake  <ebb9@byu.net>
28396
28397         * DEPENDENCIES: Weaken m4 requirements.
28398
28399 2007-04-03  Bruno Haible  <bruno@clisp.org>
28400
28401         * modules/frexp-tests (configure.ac): Remove AC_SUBST.
28402         * modules/isnanl-tests (configure.ac): Likewise.
28403
28404 2007-04-03  Ben Pfaff  <blp@gnu.org>
28405
28406         * modules/iconv_open: Add $(srcdir)/ to source directory
28407         references in Makefile fragments that call gperf, to fix VPATH
28408         builds.
28409
28410 2007-04-03  Bruno Haible  <bruno@clisp.org>
28411
28412         * modules/ldexpl (Depends-on): Add isnanl, remove isnanl-nolibm.
28413         * lib/ldexpl.c: Undo last change.
28414
28415 2007-04-03  Bruno Haible  <bruno@clisp.org>
28416
28417         * modules/printf-frexpl (Depends-on): Undo last change.
28418         (Files): Add m4/ldexpl.m4.
28419
28420 2007-04-03  Bruno Haible  <bruno@clisp.org>
28421
28422         * m4/isnanl.m4 (gl_FUNC_ISNANL): Substitute ISNANL_LIBM.
28423         * modules/isnanl (Link): New section.
28424
28425         * m4/frexp.m4 (gl_FUNC_FREXP): Substitute FREXP_LIBM.
28426         * modules/frexp (Link): New section.
28427
28428         * m4/frexpl.m4 (gl_FUNC_FREXPL): Substitute FREXPL_LIBM.
28429         * modules/frexpl (Link): New section.
28430
28431         * m4/ldexpl.m4 (gl_FUNC_LDEXPL): Substitute LDEXPL_LIBM.
28432         * modules/ldexpl (Link): New section.
28433
28434 2007-04-03  Bruno Haible  <bruno@clisp.org>
28435
28436         * modules/TEMPLATE-EXTENDED: New file.
28437         * gnulib-tool (func_all_modules, func_verify_module): Exclude it.
28438
28439 2007-04-03  Bruno Haible  <bruno@clisp.org>
28440
28441         * DEPENDENCIES: New file.
28442         Suggested by Simon Josefsson.
28443
28444 2007-04-03  Bruno Haible  <bruno@clisp.org>
28445
28446         * doc/gnulib.texi: Escape @.
28447
28448 2007-04-03  James Youngman  <jay@gnu.org>
28449         and Paul Eggert  <eggert@cs.ucla.edu>
28450
28451         * lib/stat-time.h (get_stat_birthtime): Check for zero-valued
28452         birthtime on all systems that have birthtime, not just those which
28453         use st_birthtimensec rather than st_birthtim.  Putting zero in
28454         st_birthtim.tv_sec is how (for example) FreeBSD/x86 6.1 indicates
28455         that the birth time is not available for files on an NFS mount.
28456
28457 2007-04-03  Simon Josefsson  <simon@josefsson.org>
28458
28459         * modules/memxor: Move back from crypto/, suggested by Bruno.
28460         * modules/crypto/hmac-sha1: Fix memxor dependency.
28461
28462         * modules/crypto/gc: Moved from ../.
28463
28464 2007-04-02  Eric Blake  <ebb9@byu.net>
28465
28466         * lib/ldexpl.c (includes): Avoid libm.
28467
28468         * modules/printf-frexpl (Depends-on): Depend on ldexpl.
28469
28470 2007-04-02  Bruno Haible  <bruno@clisp.org>
28471
28472         * lib/sysexit_.h (EX_OK): Disable the EX_OK definition from <unistd.h>
28473         on IRIX.
28474
28475 2007-04-02  Bruno Haible  <bruno@clisp.org>
28476
28477         * m4/intdiv0.m4 (gt_INTDIV0): Avoid performing the test for real on
28478         x86 or x86_64 platforms running MacOS X.
28479         Reported by Ryan Schmidt <@ryandesign.com>.
28480
28481 2007-04-02  Bruno Haible  <bruno@clisp.org>
28482
28483         * m4/intdiv0.m4 (gt_INTDIV0): When cross-compiling, treat x86_64 like
28484         i386.
28485
28486 2007-04-01  Simon Josefsson  <simon@josefsson.org>
28487
28488         * modules/crypto/arcfour: Moved from ../.
28489         * modules/crypto/arcfour-tests: Moved from ../.
28490         * modules/crypto/arctwo: Moved from ../.
28491         * modules/crypto/arctwo-tests: Moved from ../.
28492         * modules/crypto/des: Moved from ../.
28493         * modules/crypto/des-tests: Moved from ../.
28494         * modules/crypto/gc-arcfour: Moved from ../.
28495         * modules/crypto/gc-arcfour-tests: Moved from ../.
28496         * modules/crypto/gc-arctwo: Moved from ../.
28497         * modules/crypto/gc-arctwo-tests: Moved from ../.
28498         * modules/crypto/gc-des: Moved from ../.
28499         * modules/crypto/gc-des-tests: Moved from ../.
28500         * modules/crypto/gc-hmac-md5: Moved from ../.
28501         * modules/crypto/gc-hmac-md5-tests: Moved from ../.
28502         * modules/crypto/gc-hmac-sha1: Moved from ../.
28503         * modules/crypto/gc-hmac-sha1-tests: Moved from ../.
28504         * modules/crypto/gc-md2: Moved from ../.
28505         * modules/crypto/gc-md2-tests: Moved from ../.
28506         * modules/crypto/gc-md4: Moved from ../.
28507         * modules/crypto/gc-md4-tests: Moved from ../.
28508         * modules/crypto/gc-md5: Moved from ../.
28509         * modules/crypto/gc-md5-tests: Moved from ../.
28510         * modules/crypto/gc-pbkdf2-sha1: Moved from ../.
28511         * modules/crypto/gc-pbkdf2-sha1-tests: Moved from ../.
28512         * modules/crypto/gc-random: Moved from ../.
28513         * modules/crypto/gc-rijndael: Moved from ../.
28514         * modules/crypto/gc-rijndael-tests: Moved from ../.
28515         * modules/crypto/gc-sha1: Moved from ../.
28516         * modules/crypto/gc-sha1-tests: Moved from ../.
28517         * modules/crypto/gc-tests: Moved from ../.
28518         * modules/crypto/hmac-md5: Moved from ../.
28519         * modules/crypto/hmac-md5-tests: Moved from ../.
28520         * modules/crypto/hmac-sha1: Moved from ../.
28521         * modules/crypto/hmac-sha1-tests: Moved from ../.
28522         * modules/crypto/md2: Moved from ../.
28523         * modules/crypto/md2-tests: Moved from ../.
28524         * modules/crypto/md4: Moved from ../.
28525         * modules/crypto/md4-tests: Moved from ../.
28526         * modules/crypto/md5: Moved from ../.
28527         * modules/crypto/md5-tests: Moved from ../.
28528         * modules/crypto/memxor: Moved from ../.
28529         * modules/crypto/rijndael: Moved from ../.
28530         * modules/crypto/rijndael-tests: Moved from ../.
28531         * modules/crypto/sha1: Moved from ../.
28532
28533 2007-03-30  James Youngman  <jay@gnu.org>
28534
28535         * tests/test-stat-time.c (prepare_test): use chmod() rather than
28536         rename() to change the ctime of a file (because ctime is unaffected
28537         by rename on jfs2 on AIX 5.1).
28538         (main): Start by doing cleanup, in case a previous run failed leaving
28539         test files behind.
28540
28541 2007-03-31  Bruno Haible  <bruno@clisp.org>
28542
28543         Support old proprietary implementations of iconv.
28544         * modules/iconv_open: New file.
28545         * lib/iconv_.h: New file.
28546         * m4/iconv_h.m4: New file.
28547         * lib/iconv_open.c: New file.
28548         * lib/iconv_open-aix.gperf: New file.
28549         * lib/iconv_open-hpux.gperf: New file.
28550         * lib/iconv_open-irix.gperf: New file.
28551         * lib/iconv_open-osf.gperf: New file.
28552         * m4/iconv_open.m4: New file.
28553         * modules/linebreak (Depends-on): Add iconv_open.
28554         * modules/striconv (Depends-on): Likewise.
28555         * modules/striconveh (Depends-on): Likewise.
28556         * modules/unicodeio (Depends-on): Likewise.
28557         * lib/striconveh.h (mem_cd_iconveh, str_cd_iconveh): Allow cd to be
28558         (iconv_t)(-1).
28559         * lib/striconveh.c (mem_cd_iconveh_internal): Use an indirect
28560         conversion if cd is (iconv_t)(-1).
28561         (mem_iconveh, str_iconveh): Don't fail just because a direct conversion
28562         is not possible.
28563
28564 2007-03-31  Bruno Haible  <bruno@clisp.org>
28565
28566         * tests/test-striconveha.c (main): Don't expect "autodetect_jp" to
28567         work on Solaris either. Protect also second use of "autodetect_jp".
28568
28569 2007-03-31  Bruno Haible  <bruno@clisp.org>
28570
28571         * m4/frexpl.m4 (gl_FUNC_FREXPL): Set HAVE_DECL_FREXPL to 0 when
28572         the function is not present.
28573
28574 2007-03-31  Bruno Haible  <bruno@clisp.org>
28575
28576         * m4/ldexpl.m4 (gl_FUNC_LDEXPL): Set HAVE_DECL_LDEXPL to 0 when
28577         the function is not present.
28578
28579 2007-03-31  Bruno Haible  <bruno@clisp.org>
28580
28581         * m4/iconv.m4 (AM_ICONV_LINK): Fix 2007-03-29 patch. Test also against
28582         a bug in HP-UX iconv_open().
28583
28584 2007-03-31  Bruno Haible  <bruno@clisp.org>
28585
28586         * MODULES.html.sh (func_module): Don't show gnulib-common.m4.
28587         (Mathematics <math.h>): New section, add fpieee.
28588         (Input/output <stdio.h>): Add fseterr.
28589         (Mathematics <math.h>): New section, add printf-frexp.
28590         (Container data structures): Add sublist.
28591         (Core language properties): Add fpucw, inline.
28592         (Functions for greatest-width integer types <inttypes.h>): Add
28593         imaxabs, imaxdiv, inttypes.
28594         (Mathematics <math.h>): Add frexp, frexpl, isnan-nolibm, isnanl,
28595         isnanl-nolibm, ldexp.
28596         (Mathematics <math.h>): New section, add printf-frexpl.
28597         (Support for systems lacking POSIX:2001): Add fprintf-posix,
28598         printf-posix, snprintf-posix, sprintf-posix, string, search, socklen,
28599         sys_select, sys_socket, vasnprintf-posix, vasprintf-posix,
28600         vfprintf-posix, vprintf-posix, vsnprintf-posix, vsprintf-posix.
28601         (Unicode string functions): Add unistr/u*-mbtoucr.
28602         (Java): Add javacomp-script, javaexec-script.
28603         (C#): Add csharpcomp-script, csharpexec-script.
28604         (Support for building libraries and executables): Add havelib,
28605         relocatable-*.
28606         (Support for maintaining and releasing projects): Renamed from
28607         'Support for maintaining and release projects'. Add announce-gen.
28608
28609 2007-03-31  Bruno Haible  <bruno@clisp.org>
28610
28611         * README: Talk primarily about git.
28612         (git and CVS): Renamed from CVS.
28613         * doc/gnulib.texi (Introduction, Build robot for gnulib): Mention that
28614         gnulib is available through git.
28615         * doc/gnulib-tool.texi (CVS Issues): Mention git and svn as well.
28616
28617 2007-03-30  Bruno Haible  <bruno@clisp.org>
28618
28619         * lib/alloca_.h: Change prefix of double-inclusion guard macro to _GL_.
28620         * lib/poll_.h: Likewise.
28621         * lib/stat_.h: Likewise.
28622         * lib/sys_time_.h: Likewise.
28623         * lib/sysexit_.h: Likewise.
28624         * lib/glob_.h: Prefix double-inclusion guard macro with _GL_.
28625         * lib/stdbool_.h: Likewise.
28626         * lib/byteswap_.h: Add double-inclusion guard.
28627
28628 2007-03-30  Sergey Poznyakoff  <gray@mirddin.farlep.net>
28629
28630         * lib/sysexit_.h: Prefix double-inclusion guard macro with _GNULIB.
28631
28632 2007-03-30  Karl Berry  <karl@gnu.org>
28633
28634         * config/srclist-update: double space after USA in the license
28635         substitution, since that's how it's usually (?) written.
28636
28637 2007-03-30  Paul Eggert  <eggert@cs.ucla.edu>
28638
28639         * lib/write-any-file.c (can_write_any_file): Fix else-else bug
28640         reported by Bruno Haible.
28641
28642 2007-03-29  Bruno Haible  <bruno@clisp.org>
28643
28644         * m4/iconv.m4 (AM_ICONV_LINK): Require AC_CANONICAL_HOST. Test against
28645         a bug in AIX iconv().
28646
28647 2007-03-29  Bruno Haible  <bruno@clisp.org>
28648
28649         * modules/ldexpl-tests: New file.
28650         * tests/test-ldexpl.c: New file.
28651
28652 2007-03-29  Bruno Haible  <bruno@clisp.org>
28653
28654         * lib/ldexpl.c: Include fpucw.h.
28655         (ldexpl): Use BEGIN/END_LONG_DOUBLE_ROUNDING. Skip the last unneeded
28656         multiplication.
28657         * modules/ldexpl (Depends-on): Add fpucw.
28658
28659 2007-03-29  Bruno Haible  <bruno@clisp.org>
28660
28661         * modules/ldexpl: New file.
28662         * m4/ldexpl.m4: New file.
28663         * lib/math_.h (ldexpl): Define to a replacement if REPLACE_LDEXPL is
28664         set.
28665         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize also GNULIB_LDEXPL,
28666         REPLACE_LDEXPL.
28667         * modules/math (Makefile.am): Substitute also GNULIB_LDEXPL,
28668         REPLACE_LDEXPL.
28669         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Invoke
28670         gl_FUNC_LDEXPL_WORKS.
28671         * m4/mathl.m4 (gl_FUNC_LONG_DOUBLE_MATH): Remove test for ldexpl.
28672         * modules/mathl (Files): Remove lib/ldexpl.c.
28673         (Depends-on): Add ldexpl.
28674
28675 2007-03-29  Bruno Haible  <bruno@clisp.org>
28676
28677         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Declare frexpl.
28678
28679 2007-03-29  Bruno Haible  <bruno@clisp.org>
28680
28681         * tests/test-striconveh.c (main): Don't assume that a direct conversion
28682         between ISO-8859-1 and ISO-8859-2 is possible. Needed for OSF/1, IRIX
28683         and possibly also HP-UX.
28684         * tests/test-striconveha.c (main): Don't expect "autodetect_jp" to
28685         work on AIX, IRIX, HP-UX, OSF/1.
28686         * tests/uniconv/test-u16-conv-from-enc.c (main): Likewise.
28687         * tests/uniconv/test-u16-strconv-from-enc.c (main): Likewise.
28688         * tests/uniconv/test-u32-conv-from-enc.c (main): Likewise.
28689         * tests/uniconv/test-u32-strconv-from-enc.c (main): Likewise.
28690         * tests/uniconv/test-u8-conv-from-enc.c (main): Likewise.
28691         * tests/uniconv/test-u8-strconv-from-enc.c (main): Likewise.
28692
28693 2007-03-29  Bruno Haible  <bruno@clisp.org>
28694
28695         * tests/test-stat-time.c: Include <fcntl.h>, not <sys/fcntl.h>.
28696
28697 2007-03-29  Paul Eggert  <eggert@cs.ucla.edu>
28698
28699         * lib/acl-internal.h (acl_get_fd, acl_set_fd): undef before defining,
28700         to work around a problem on OSF/1 5.1 reported by Bruno Haible.
28701
28702 2007-03-29  Eric Blake  <ebb9@byu.net>
28703
28704         * lib/acl-internal.h: Remove redundant include.
28705         (ACL_NOT_WELL_SUPPORTED): Also filter on EBUSY, returned by
28706         Cygwin when a file is locked.
28707
28708 2007-03-29  Bruno Haible  <bruno@clisp.org>
28709
28710         * lib/vasprintf.c [IN_LIBASPRINTF]: Include different specification
28711         file.
28712         * lib/asprintf.c [IN_LIBASPRINTF]: Likewise.
28713
28714 2007-03-29  Paul Eggert  <eggert@cs.ucla.edu>
28715
28716         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Don't bother to
28717         try to remove a parent directory if the child couldn't be removed
28718         (except for the first rmdir, which could fail because the child
28719         doesn't exist).  Problem reported by Jeff Blaine in
28720         <http://lists.gnu.org/archive/html/bug-tar/2007-03/msg00014.html>.
28721
28722 2007-03-28  Bruno Haible  <bruno@clisp.org>
28723
28724         * lib/striconveh.c (utf8conv_carefully): New function.
28725         (mem_cd_iconveh_internal): Invoke it.
28726
28727 2007-03-28  Bruno Haible  <bruno@clisp.org>
28728
28729         * lib/striconveh.c (mem_cd_iconveh_internal): Use u8_mbtoucr instead
28730         of u8_mbtouc in order to distinguish invalid and incomplete UTF-8
28731         input.
28732         * modules/striconveh (Depends-on): Add unistr/u8-mbtoucr. Replace
28733         utf8-ucs4 with unistr/u8-mbtouc. Replace ucs4-utf8 with
28734         unistr/u8-uctomb.
28735
28736 2007-03-28  Bruno Haible  <bruno@clisp.org>
28737
28738         * modules/unistr/u8-mbtoucr: New file.
28739         * lib/unistr/u8-mbtoucr.c: New file.
28740         * modules/unistr/u16-mbtoucr: New file.
28741         * lib/unistr/u16-mbtoucr.c: New file.
28742         * modules/unistr/u16-mbtoucr: New file.
28743         * lib/unistr/u16-mbtoucr.c: New file.
28744         * lib/unistr.h (u8_mbtoucr, u16_mbtoucr, u32_mbtoucr): New declarations.
28745
28746 2007-03-27  Simon Josefsson  <simon@josefsson.org>
28747             Bruno Haible  <bruno@clisp.org>
28748
28749         * m4/vasprintf.m4: Convert AC_SUBST into shell variable for
28750         REPLACE_VASPRINTF.  Set HAVE_VASPRINTF.  Add
28751         AC_REQUIRE([gl_STDIO_H_DEFAULTS]).
28752
28753         * m4/stdio_h.m4: Add stubs for vasprintf too.
28754
28755         * modules/stdio: Support vasprintf in sed command.
28756
28757         * modules/vasprintf: Depend on stdio for prototypes.  Remove
28758         vasprintf.h.  Add stdio module indicator.
28759
28760         * lib/stdio_.h: Declare asprintf and vasprintf, based on
28761         vasprintf.h.
28762
28763         * lib/vasprintf.h: File removed.
28764
28765         * lib/asprintf.c: Use stdio.h instead of vasprintf.h.
28766         * lib/vasprintf.c: Ditto.
28767         * lib/xvasprintf.c: Ditto.
28768         * tests/test-vasprintf-posix.c: Ditto.
28769         * tests/test-vasprintf.c: Ditto.
28770
28771 2007-03-27  Bruno Haible  <bruno@clisp.org>
28772
28773         Make vasnprintf multithread-safe.
28774         * lib/vasnprintf.c (decimal_point_char): New function.
28775         (VASNPRINTF): Use it.
28776         Suggested by Simon Josefsson.
28777
28778 2007-03-27  Eric Blake  <ebb9@byu.net>
28779
28780         Support sub-second birthtime on cygwin.
28781         * m4/stat-time.m4 (gl_STAT_BIRTHTIME): Also check for st_birthtim.
28782         * lib/stat-time.h (STAT_TIMESPEC): Adjust comments.
28783         (get_stat_birthtime): Also work with st_birthtim.
28784
28785 2007-03-27  Paul Eggert  <eggert@cs.ucla.edu>
28786
28787         * lib/stat-time.h (USE_BIRTHTIME): Remove.
28788         (get_stat_atime_ns, get_stat_ctime_ns, get_stat_mtime_ns):
28789         (get_stat_birthtime_ns): Do not try to use "spare" fields.
28790         (get_stat_birthtime_ns): Simplify compile-time tests.
28791         (get_stat_birthtime): Change the API to look like
28792         get_stat_mtime etc., except return a negative tv_nsec on error.
28793         * m4/stat-time.m4 (gl_STAT_TIME, gl_STAT_BIRTHTIME):
28794         Don't check for "spare" fields.
28795         (gl_STAT_BIRTHTIME): Don't check for struct stat.st_birthtimespec.tv_sec
28796         or for struct stat.st_birthtime, as these tests aren't used.
28797         * tests/test-stat-time.c (test_birthtime): Adjust to new API.
28798
28799 2007-03-27  Bruno Haible  <bruno@clisp.org>
28800
28801         * lib/stat-time.h: Include <sys/stat.h>.
28802
28803 2007-03-27  James Youngman  <jay@gnu.org>
28804
28805         * lib/stat-time.h (get_stat_birthtime): New function for
28806           retrieving st_birthtime as provided by UFS2 (hence *BSD).
28807         * m4/stat-time.m4 (gl_STAT_BIRTHTIME): Probe for st_birthtime
28808           and its variants.
28809         * modules/stat-time (configure.ac): call gl_STAT_BIRTHTIME.
28810         * modules/stat-time-test: New file.
28811         * tests/test-stat-time.c: New test, devised by Bruno Haible.
28812
28813 2007-03-26  Bruno Haible  <bruno@clisp.org>
28814
28815         Better support of signalling NaNs.
28816         * lib/atanl.c: Include isnanl.h.
28817         (atanl): Perform test for NaN at the beginning of the function and
28818         through a call to isnanl.
28819         * lib/cosl.c: Include isnanl.h.
28820         (cosl): Perform test for NaN at the beginning of the function and
28821         through a call to isnanl.
28822         * lib/ldexpl.c: Include isnanl.h.
28823         (ldexpl): Perform test for NaN through a call to isnanl.
28824         * lib/logl.c: Include isnanl.h.
28825         (logl): Perform test for NaN at the beginning of the function and
28826         through a call to isnanl.
28827         * lib/sinl.c: Include isnanl.h.
28828         (sinl): Perform test for NaN at the beginning of the function and
28829         through a call to isnanl.
28830         * lib/sqrtl.c: Include isnanl.h.
28831         (sqrtl): Perform test for NaN at the beginning of the function and
28832         through a call to isnanl.
28833         * lib/tanl.c: Include isnanl.h.
28834         (tanl): Perform test for NaN at the beginning of the function and
28835         through a call to isnanl.
28836         * lib/trigl.c (ieee754_rem_pio2l): Remove test for NaN.
28837         * modules/mathl (Depends-on): Add isnanl.
28838
28839 2007-03-26  Eric Blake  <ebb9@byu.net>
28840
28841         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_A): Fix
28842         regression in logic sense of previous patch.
28843
28844 2007-03-26  Bruno Haible  <bruno@clisp.org>
28845
28846         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_A): Don't use
28847         unportable shell command "if ! ...".
28848         Reported by Ralf Wildenhues.
28849
28850 2007-03-25  Bruno Haible  <bruno@clisp.org>
28851
28852         * lib/sysexit_,h: If HAVE_SYSEXITS_H is defined, include the original
28853         <sysexits.h> file, and only add EX_CONFIG.
28854         * m4/sysexits.m4 (gl_SYSEXITS): If <sysexits.h> exists, check its
28855         absolute file name and whether it is sufficient. Substitute also
28856         HAVE_SYSEXITS_H and ABSOLUTE_SYSEXITS_H.
28857         * modules/sysexits (Makefile.am): Substitute HAVE_SYSEXITS_H and
28858         ABSOLUTE_SYSEXITS_H into sysexits.h.
28859
28860 2007-03-25  Bruno Haible  <bruno@clisp.org>
28861
28862         * lib/getaddrinfo.c (getaddrinfo): Don't access hints->ai_flags when
28863         hints is NULL.
28864
28865 2007-03-25  Bruno Haible  <bruno@clisp.org>
28866
28867         * lib/uniconv/u8-conv-from-enc.c (u8_conv_from_encoding): Add a cast.
28868         * lib/uniconv/u8-strconv-to-enc.c (u8_strconv_to_encoding): Likewise.
28869
28870 2007-03-25  Bruno Haible  <bruno@clisp.org>
28871
28872         * lib/vasnprintf.c: Include langinfo.h.
28873         (VASNPRINTF): Prefer nl_langinfo over localeconv, since it's more
28874         multithread-safe.
28875         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_A): New macro.
28876         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke it.
28877         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
28878         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
28879         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
28880         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
28881         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
28882         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX: Likewise.
28883         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
28884         Reported by Simon Josefsson.
28885
28886 2007-03-25  Bruno Haible  <bruno@clisp.org>
28887
28888         * lib/printf-parse.c [!IN_LIBINTL]: Include <stdint.h>, for intmax_t.
28889         (PRINTF_PARSE): Make the support for size specifier 'j' unconditional.
28890         * modules/vasnprintf (Depends-on): Add stdint.
28891
28892 2007-03-25  Bruno Haible  <bruno@clisp.org>
28893
28894         * modules/fpieee: New file.
28895         * m4/fpieee.m4: New file.
28896         * modules/isnan-nolibm (Depends-on): Add fpieee.
28897         * modules/isnanl-nolibm (Depends-on): Add fpieee.
28898         * modules/isnanl (Depends-on): Add fpieee.
28899
28900 2007-03-25  Bruno Haible  <bruno@clisp.org>
28901
28902         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Test also finite numbers.
28903
28904 2007-03-25  Bruno Haible  <bruno@clisp.org>
28905
28906         Avoid test failures on IRIX 6.5.
28907         * tests/test-frexpl.c (MIN_NORMAL_EXP): New macro.
28908         (main): Use it.
28909         * tests/test-printf-frexpl.c (MIN_NORMAL_EXP, MIN_SUBNORMAL_EXP): New
28910         macros.
28911         (main): Use them.
28912
28913 2007-03-25  Bruno Haible  <bruno@clisp.org>
28914
28915         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): New macro.
28916         (gl_FUNC_FREXPL): Invoke it. Set REPLACE_FREXPL to 1 if it frexpl
28917         exists but doesn't work.
28918         * lib/math_.h (frexpl): Define as a replacement macro if REPLACE_FREXPL
28919         is set. Don't provide a prototype if REPLACE_FREXPL is not set.
28920         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize REPLACE_FREXPL.
28921         * modules/math (Makefile.am) Substibute also REPLACE_FREXPL into math.h.
28922
28923 2007-03-25  Bruno Haible  <bruno@clisp.org>
28924
28925         * m4/frexp.m4 (gl_FUNC_FREXP_WORKS): Add check whether frexp(inf)
28926         returns inf. Needed on IRIX 6.5.
28927
28928 2007-03-25  Bruno Haible  <bruno@clisp.org>
28929
28930         * tests/test-frexpl.c: Include isnanl-nolibm.h.
28931         (main): Use isnanl instead of x != x idiom.
28932         * modules/frexpl-tests (Depends-on): Add isnanl-nolibm.
28933
28934         * tests/test-frexp.c: Include isnan.h.
28935         (main): Use isnan instead of x != x idiom.
28936         * modules/frexp-tests (Depends-on): Add isnan-nolibm.
28937
28938 2007-03-25  Bruno Haible  <bruno@clisp.org>
28939
28940         * tests/test-frexp.c (NaN): New function/macro.
28941         (main): Use it instead of 0.0 / 0.0.
28942         * tests/test-isnan.c (NaN): New function/macro.
28943         (main): Use it instead of 0.0 / 0.0.
28944         * tests/test-vasnprintf-posix.c (NaN): New function/macro.
28945         (test_function): Use it instead of 0.0 / 0.0.
28946         * tests/test-vasprintf-posix.c (NaN): New function/macro.
28947         (test_function): Use it instead of 0.0 / 0.0.
28948         * tests/test-snprintf-posix.h (NaN): New function/macro.
28949         (test_function): Use it instead of 0.0 / 0.0.
28950         * tests/test-sprintf-posix.h (NaN): New function/macro.
28951         (test_function): Use it instead of 0.0 / 0.0.
28952         * tests/test-fprintf-posix.h (NaN): New function/macro.
28953         (test_function): Use it instead of 0.0 / 0.0.
28954         * tests/test-printf-posix.h (NaN): New function/macro.
28955         (test_function): Use it instead of 0.0 / 0.0.
28956
28957         * lib/isnan.c (FUNC): Work around a DEC C compiler bug.
28958
28959 2007-03-25  Bruno Haible  <bruno@clisp.org>
28960
28961         * lib/glob_.h: Include <sys/stat.h>. Avoids warnings on AIX 5.1.
28962
28963 2007-03-25  Bruno Haible  <bruno@clisp.org>
28964
28965         * lib/regexec.c (merge_state_with_log): Make static.
28966
28967 2007-03-25  Bruno Haible  <bruno@clisp.org>
28968
28969         * lib/trigl.c (kernel_rem_pio2): Make static.
28970
28971 2007-03-25  Bruno Haible  <bruno@clisp.org>
28972
28973         * lib/sincosl.c (sincosl_table): Make static.
28974
28975 2007-03-25  Bruno Haible  <bruno@clisp.org>
28976
28977         * lib/argp.h (__restrict): Define to empty, rather than to 'restrict',
28978         if the compiler does not support C99.
28979
28980 2007-03-25  Bruno Haible  <bruno@clisp.org>
28981
28982         * modules/time (Makefile.am): Ensure all rule action lines start with a
28983         tab.
28984
28985 2007-03-24  Bruno Haible  <bruno@clisp.org>
28986
28987         * modules/tsearch-tests: New file.
28988         * tests/test-tsearch.sh: New file.
28989         * tests/test-tsearch.c: New file, mostly copied from glibc.
28990
28991         * modules/search-tests: New file.
28992         * tests/test-search.c: New file.
28993
28994         * modules/search: New file.
28995         * lib/search_.h: New file, incorporating lib/tsearch.h.
28996         * m4/search_h.m4: New file.
28997         * lib/tsearch.h: Remove file.
28998         * lib/tsearch.c: Include search.h instead of tsearch.h.
28999         * m4/tsearch.m4 (gl_FUNC_TSEARCH): Require gl_SEARCH_H_DEFAULTS. Set
29000         HAVE_TSEARCH.
29001         * modules/tsearch (Files): Remove lib/tsearch.h.
29002         (Depends-on): Add search.
29003         (configure.ac): Invoke gl_SEARCH_MODULE_INDICATOR.
29004         (Include): Change tsearch.h into search.h.
29005
29006 2007-03-24  Bruno Haible  <bruno@clisp.org>
29007
29008         * modules/fpucw: New file.
29009         * lib/fpucw.h: New file.
29010         * lib/frexp.c: Include fpucw.h.
29011         (DECL_ROUNDING, BEGIN_ROUNDING, END_ROUNDING): New macros.
29012         (FUNC): Use them.
29013         * lib/printf-frexp.c: Include fpucw.h.
29014         (DECL_ROUNDING, BEGIN_ROUNDING, END_ROUNDING): New macros.
29015         (FUNC): Use them.
29016         * lib/vasnprintf.c: Include fpucw.h.
29017         (VASNPRINTF): Invoke BEGIN/END_LONG_DOUBLE_ROUNDING around the
29018         'long double' calculations.
29019         * tests/test-frexpl.c: Include fpucw.h.
29020         (main): Invoke BEGIN_LONG_DOUBLE_ROUNDING.
29021         * tests/test-printf-frexpl.c: Include fpucw.h.
29022         (main): Invoke BEGIN_LONG_DOUBLE_ROUNDING.
29023         * modules/frexpl (Depends-on): Add fpucw.
29024         * modules/printf-frexpl (Depends-on): Likewise.
29025         * modules/fprintf-posix (Depends-on): Likewise.
29026         * modules/snprintf-posix (Depends-on): Likewise.
29027         * modules/sprintf-posix (Depends-on): Likewise.
29028         * modules/vasnprintf-posix (Depends-on): Likewise.
29029         * modules/vasprintf-posix (Depends-on): Likewise.
29030         * modules/vfprintf-posix (Depends-on): Likewise.
29031         * modules/vsnprintf-posix (Depends-on): Likewise.
29032         * modules/vsprintf-posix (Depends-on): Likewise.
29033         * modules/frexpl-tests (Depends-on): Likewise.
29034         * modules/printf-frexpl-tests (Depends-on): Likewise.
29035
29036 2007-03-24  Bruno Haible  <bruno@clisp.org>
29037
29038         * lib/float+.h: New file.
29039         * lib/isnan.c: Include float+.h.
29040         (SIZE): New macro.
29041         (FUNC): Compare only SIZE bytes of the value.
29042         * lib/vasnprintf.c: Include float+.h.
29043         (VASNPRINTF): When comparing agains +0.0L or +0.0, compare only
29044         SIZEOF_LDBL or SIZEOF_DBL bytes.
29045         * modules/isnan-nolibm (Files): Add lib/float+.h.
29046         * modules/isnanl-nolibm (Files): Add lib/float+.h.
29047         * modules/isnanl (Files): Add lib/float+.h.
29048         * modules/vasnprintf (Files): Add lib/float+.h.
29049
29050 2007-03-24  Bruno Haible  <bruno@clisp.org>
29051
29052         * lib/vasnprintf.c [!HAVE_LONG_DOUBLE]: Include printf-frexp.h. Don't
29053         include isnanl-nolibm.h.
29054
29055 2007-03-24  Bruno Haible  <bruno@clisp.org>
29056
29057         * tests/test-read-file.c (main): Don't produce spurious output for
29058         expected situations. Make the test fail if it encountered unexpected
29059         results.
29060
29061 2007-03-24  Bruno Haible  <bruno@clisp.org>
29062
29063         * m4/locale-fr.m4 (gt_LOCALE_FR): Remove the special-casing of NetBSD,
29064         since its fr_FR.ISO8859-1 locale wouldn't pass the tests.
29065
29066 2007-03-24  Bruno Haible  <bruno@clisp.org>
29067
29068         * m4/locale-fr.m4 (gt_LOCALE_FR, gt_LOCALE_FR_UTF8): Fix last change.
29069
29070 2007-03-24  Bruno Haible  <bruno@clisp.org>
29071
29072         * modules/unistr/base (Depends-on): Remove utf8-ucs4-unsafe,
29073         utf16-ucs4-unsafe, utf8-ucs4, utf16-ucs4, ucs4-utf8, ucs4-utf16.
29074
29075         * modules/unistr/u8-mbtouc: Add source files from module utf8-ucs4.
29076         * modules/utf8-ucs4: Turn into a symbolic link to module
29077         unistr/u8-mbtouc.
29078
29079         * modules/unistr/u8-mbtouc-unsafe: Add source files from module
29080         utf8-ucs4-unsafe.
29081         * modules/utf8-ucs4-unsafe: Turn into a symbolic link to module
29082         unistr/u8-mbtouc-unsafe.
29083
29084         * modules/unistr/u16-mbtouc: Add source files from module utf16-ucs4.
29085         * modules/utf16-ucs4: Turn into a symbolic link to module
29086         unistr/u16-mbtouc.
29087
29088         * modules/unistr/u16-mbtouc-unsafe: Add source files from module
29089         utf16-ucs4-unsafe.
29090         * modules/utf16-ucs4-unsafe: Turn into a symbolic link to module
29091         unistr/u16-mbtouc-unsafe.
29092
29093         * modules/unistr/u8-uctomb: Add source files from module utf4-utf8.
29094         * modules/ucs4-utf8: Turn into a symbolic link to module
29095         unistr/u8-ubtomb.
29096
29097         * modules/unistr/u16-uctomb: Add source files from module utf4-utf16.
29098         * modules/ucs4-utf16: Turn into a symbolic link to module
29099         unistr/u16-ubtomb.
29100
29101 2007-03-24  Bruno Haible  <bruno@clisp.org>
29102
29103         * lib/unistr/u8-mbtouc-aux.c: Renamed from lib/unistr/utf8-ucs4.c.
29104         Enable the function only if HAVE_INLINE.
29105         * lib/unistr/u8-mbtouc-unsafe-aux.c: Renamed from
29106         lib/unistr/utf8-ucs4-unsafe.c. Enable the function only if HAVE_INLINE.
29107         * lib/unistr/u16-mbtouc-aux.c: Renamed from lib/unistr/utf16-ucs4.c.
29108         Enable the function only if HAVE_INLINE.
29109         * lib/unistr/u16-mbtouc-unsafe-aux.c: Renamed from
29110         lib/unistr/utf16-ucs4-unsafe.c. Enable the function only if HAVE_INLINE.
29111         * lib/unistr/u8-uctomb-aux.c: Renamed from lib/unistr/ucs4-utf8.c.
29112         Enable the function only if HAVE_INLINE.
29113         * lib/unistr/u16-uctomb-aux.c: Renamed from lib/unistr/ucs4-utf16.c.
29114         Enable the function only if HAVE_INLINE.
29115         * modules/utf8-ucs4: Update.
29116         * modules/utf8-ucs4-unsafe: Update.
29117         * modules/utf16-ucs4: Update.
29118         * modules/utf16-ucs4-unsafe: Update.
29119         * modules/ucs4-utf8: Update.
29120         * modules/ucs4-utf16: Update.
29121
29122 2007-03-24  Bruno Haible  <bruno@clisp.org>
29123
29124         * lib/utf8-ucs4.h: Remove file.
29125         * lib/utf8-ucs4-unsafe.h: Remove file.
29126         * lib/utf16-ucs4.h: Remove file.
29127         * lib/utf16-ucs4-unsafe.h: Remove file.
29128         * lib/ucs4-utf8.h: Remove file.
29129         * lib/ucs4-utf16.h: Remove file.
29130         * lib/unistr.h: Include their previous contents.
29131         * m4/utf-ucs4.m4: Remove file.
29132         * m4/ucs4-utf.m4: Remove file.
29133         * modules/utf8-ucs4 (Files): Remove lib/utf8-ucs4.h.
29134         (Depends-on): Add unistr/base.
29135         (configure.ac): Remove gl_UTF_UCS4.
29136         (Makefile.am): Update.
29137         (Include): Change to unistr.h.
29138         * modules/utf8-ucs4-unsafe (Files): Remove lib/utf8-ucs4-unsafe.h.
29139         (Depends-on): Add unistr/base.
29140         (configure.ac): Remove gl_UTF_UCS4.
29141         (Makefile.am): Update.
29142         (Include): Change to unistr.h.
29143         * modules/utf16-ucs4 (Files): Remove lib/utf16-ucs4.h.
29144         (Depends-on): Add unistr/base.
29145         (configure.ac): Remove gl_UTF_UCS4.
29146         (Makefile.am): Update.
29147         (Include): Change to unistr.h.
29148         * modules/utf16-ucs4-unsafe (Files): Remove lib/utf16-ucs4-unsafe.h.
29149         (Depends-on): Add unistr/base.
29150         (configure.ac): Remove gl_UTF_UCS4.
29151         (Makefile.am): Update.
29152         (Include): Change to unistr.h.
29153         * modules/ucs4-utf8 (Files): Remove lib/ucs4-utf8.h.
29154         (Depends-on): Add unistr/base.
29155         (configure.ac): Remove gl_UCS4_UTF.
29156         (Makefile.am): Update.
29157         (Include): Change to unistr.h.
29158         * modules/ucs4-utf16 (Files): Remove lib/ucs4-utf16.h.
29159         (Depends-on): Add unistr/base.
29160         (configure.ac): Remove gl_UCS4_UTF.
29161         (Makefile.am): Update.
29162         (Include): Change to unistr.h.
29163         * lib/unistr/utf8-ucs4.c: Include unistr.h instead of utf8-ucs4.h.
29164         * lib/unistr/utf8-ucs4-unsafe.c: Include unistr.h instead of
29165         utf8-ucs4-unsafe.h.
29166         * lib/unistr/utf16-ucs4.c: Include unistr.h instead of utf16-ucs4.h.
29167         * lib/unistr/utf16-ucs4-unsafe.c: Include unistr.h instead of
29168         utf16-ucs4-unsafe.h.
29169         * lib/unistr/ucs4-utf8.c: Include unistr.h instead of ucs4-utf8.h.
29170         * lib/unistr/ucs4-utf16.c: Include unistr.h instead of ucs4-utf16.h.
29171         * lib/unistr/u8-chr.c: Don't include ucs4-utf8.h.
29172         * lib/unistr/u8-strchr.c: Likewise.
29173         * lib/unistr/u8-strrchr.c: Likewise.
29174         * lib/unistr/u16-chr.c: Don't include ucs4-utf16.h.
29175         * lib/unistr/u16-strchr.c: Likewise.
29176         * lib/unistr/u16-strrchr.c: Likewise.
29177         * lib/striconveh.c: Update.
29178         * lib/linebreak.c: Update.
29179
29180 2007-03-24  Bruno Haible  <bruno@clisp.org>
29181
29182         * lib/argp-help.c (fill_in_uparams, canon_doc_option): Cast the
29183         arguments of isspace, isalpha, isalnum, isdigit to 'unsigned char'.
29184
29185 2007-03-22  Bruno Haible  <bruno@clisp.org>
29186
29187         * lib/strptime.c (__strptime_internal): Use ANSI C syntax.
29188
29189 2007-03-23  Paul Eggert  <eggert@cs.ucla.edu>
29190
29191         * MODULES.html.sh (File system functions): New module write-any-file.
29192         * modules/write-any-file, lib/write-any-file.c, lib/write-any-file.h:
29193         * m4/write-any-file.m4: New files.
29194
29195 2007-03-23  Eric Blake  <ebb9@byu.net>
29196
29197         * gnulib-tool: Rearrange space-tab sequences, since some editors
29198         like to eat them.
29199
29200 2007-03-23  Eric Blake  <ebb9@byu.net>
29201
29202         * lib/version-etc.c (version_etc_va): Update license wording to
29203         be more concise.  Recommended by Richard Stallman.
29204
29205 2007-03-22  Bruno Haible  <bruno@clisp.org>
29206
29207         * lib/poll.c (MSG_PEEK): New fallback definition.
29208
29209 2007-03-22  Bruno Haible  <bruno@clisp.org>
29210
29211         * modules/sys_socket-tests (configure.ac): Check for shutdown function.
29212         * tests/test-sys_socket.c (a): Test only if shutdown() exists.
29213         (main): Update.
29214         Fixes a compilation error on BeOS.
29215
29216 2007-03-22  Bruno Haible  <bruno@clisp.org>
29217
29218         * modules/frexpl-tests: New file.
29219         * tests/test-frexpl.c: New file.
29220
29221         * modules/frexpl: New file.
29222         * m4/frexpl.m4: New file.
29223         * modules/math (Makefile.am): Also substitute GNULIB_FREXPL into math.h.
29224         * lib/math_.h (frexpl): Test GNULIB_FREXPL instead of GNULIB_MATHL.
29225         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_FREXPL.
29226         * modules/mathl (Files): Remove lib/frexpl.c, lib/frexp.c.
29227         (Depends-on): Add frexpl. Remove isnanl-nolibm.
29228         * m4/mathl.m4 (gl_FUNC_LONG_DOUBLE_MATH): Don't test for frexpl.
29229
29230 2007-03-22  Bruno Haible  <bruno@clisp.org>
29231
29232         * lib/frexpl.c: Share code with lib/frexp.c.
29233         * modules/mathl (Files): Add lib/frexp.c.
29234         (Depends-on): Add isnanl-nolibm.
29235
29236 2007-03-22  Bruno Haible  <bruno@clisp.org>
29237
29238         * modules/printf-frexp (Files): Add m4/frexp.m4.
29239         * m4/printf-frexp.m4 (gl_FUNC_PRINTF_FREXP): Define HAVE_FREXP_IN_LIBC
29240         only if the found frexp function actually works.
29241
29242 2007-03-22  Bruno Haible  <bruno@clisp.org>
29243
29244         * lib/frexp.c: Remove older implementation that uses divisions.
29245
29246 2007-03-21  Bruno Haible  <bruno@clisp.org>
29247
29248         * modules/frexp-tests: New file.
29249         * tests/test-frexp.c: New file.
29250
29251         * modules/frexp: New file.
29252         * lib/frexp.c: New file.
29253         * m4/frexp.m4: New file.
29254         * lib/math_.h (frexp): New declaration.
29255         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Also initialize GNULIB_FREXP and
29256         REPLACE_FREXP.
29257         * modules/math (math.h): Also substitute GNULIB_FREXP, REPLACE_FREXP.
29258
29259 2007-03-21  Bruno Haible  <bruno@clisp.org>
29260
29261         * modules/isnanl-tests: New file.
29262         * tests/test-isnanl.c: New file.
29263
29264         * modules/isnanl: New file.
29265         * lib/isnanl.h: New file.
29266         * m4/isnanl.m4 (gl_FUNC_ISNANL): New macro.
29267         (gl_FUNC_ISNANL_NO_LIBM): Invoke gl_HAVE_ISNANL_NO_LIBM,
29268         gl_FUNC_ISNANL_WORKS.
29269         (gl_HAVE_ISNANL_NO_LIBM, gl_HAVE_ISNANL_IN_LIBM, gl_FUNC_ISNANL_WORKS):
29270         New macros.
29271
29272 2007-03-21  Bruno Haible  <bruno@clisp.org>
29273
29274         * modules/isnanl-nolibm (Files): Add lib/isnanl-nolibm.h, remove
29275         lib/isnanl.h.
29276         (Include): Update.
29277         * lib/isnanl-nolibm.h: Renamed from lib/isnanl.h.
29278         * lib/vasnprintf.c: Update.
29279         * modules/isnanl-nolibm-tests (Files): Add tests/test-isnanl-nolibm.c,
29280         tests/test-isnanl.h, remove tests/test-isnanl.c.
29281         (Makefile.am): Update.
29282         * tests/test-isnanl-nolibm.c: New file.
29283         * tests/test-isnanl.h: New file.
29284         * tests/test-isnanl.c: Remove file.
29285
29286 2007-03-21  Jim Meyering  <jim@meyering.net>
29287
29288         When trying to open ".", treat ESTALE like EACCES.
29289         * lib/savewd.c (savewd_save): Resort to forking not just upon
29290         failure with EACCES, but also when errno is ESTALE.
29291
29292 2007-03-20  Bruno Haible  <bruno@clisp.org>
29293
29294         * lib/string_.h (strndup): Enable declaration also if HAVE_STRNDUP.
29295         Needed on AIX 5.1. Reported by Matthew Woehlke.
29296
29297 2007-03-19  Paul Eggert  <eggert@cs.ucla.edu>
29298
29299         Suggestions by Bruno Haible:
29300         * lib/acl-internal.h: Include "gettext.h" rather than rolling
29301         our own.
29302         (ACL_NOT_WELL_SUPPORTED): Parenthesize arg when used.
29303         * modules/acl (Depends-on): Add gettext.
29304
29305 2007-03-19  Bruno Haible  <bruno@clisp.org>
29306
29307         * modules/iconvme: Remove file.
29308         * lib/iconvme.h: Remove file.
29309         * lib/iconvme.c: Remove file.
29310         * m4/iconvme.m4: Remove file.
29311
29312 2007-03-19  Bruno Haible  <bruno@clisp.org>
29313
29314         * doc/relocatable-maint.texi: Break long shell script line.
29315         Suggested by Thien-Thi Nguyen <ttn@gnuvola.org>.
29316
29317 2007-03-19  Paul Eggert  <eggert@cs.ucla.edu>
29318
29319         Add limited support for Solaris 10 ZFS-style ACLs: just enough to
29320         handle file_has_acl.
29321         * lib/acl-internal.h, lib/acl_entries.c, lib/file-has-acl.c: New files.
29322         * lib/acl.c: Move header inclusions and related macro defns into
29323         lib/acl-internal.h.
29324         (S_ISLNK): Remove defn, since that's now done for us.
29325         (file_has_acl): Move to lib/file-has-acl.c.
29326         Call acl_trivial if available.  This is the crucial part of the fix.
29327         (acl_entries): Move to lib/acl_entries.c.  Now extern, since it's
29328         shared within the library.  Rewrite a bit, partly to make it compatible
29329         with the GNU coding style.
29330         * m4/acl.m4 (AC_FUNC_ACL): Add AC_LIBOBJ([file-has-acl]).
29331         Remove unnecessary double-quotes.
29332         Don't test for acl_to_text; the build will catch that.
29333         Replace acl_entries if it doesn't exist and it is needed.
29334         Check for -lsec and acl_trivial (as used on Solaris 10).
29335         * modules/acl (Files): Add lib/acl-internal.h, lib/acl_entries.c,
29336         lib/file-has-acl.c.
29337         (Depends-on): Add sys_stat, for S_ISLNK.
29338
29339 2007-03-19  Ben Pfaff  <blp@gnu.org>
29340
29341         * doc/gnulib.texi: Fix typos.
29342         Suggested by Thien-Thi Nguyen <ttn@gnuvola.org>.
29343
29344 2007-03-19  Paul Eggert  <eggert@cs.ucla.edu>
29345
29346         * lib/getcwd.c (__getcwd): Remove redundant comparison of buf to NULL.
29347         If size is zero here, buf must be zero.
29348
29349 2007-03-19  Simon Josefsson  <simon@josefsson.org>
29350
29351         * des.c: Remove weak_keys_chksum.  Reported by Bruno Haible
29352         <bruno@clisp.org>.
29353
29354 2007-03-18  Bruno Haible  <bruno@clisp.org>
29355
29356         * lib/vasnprintf.c (VASNPRINTF): Undo first part of last patch.
29357         Suggested by Eric Blake.
29358
29359 2007-03-18  Ben Pfaff  <blp@gnu.org>
29360
29361         * doc/relocatable.texi: Recommend using as prefix a directory
29362         that does not exist and will never be created.  Based on
29363         discussion with Bruno Haible, Ralf Wildenhues, Matthew Woehlke,
29364         and others.
29365
29366 2007-03-17  Bruno Haible  <bruno@clisp.org>
29367
29368         * lib/fchownat.c: Include lchown.h.
29369
29370 2007-03-17  Bruno Haible  <bruno@clisp.org>
29371
29372         Fix endless loop when the given allocated size was > INT_MAX.
29373         * lib/vasnprintf.c (EOVERFLOW): New fallback definition.
29374         (VASNPRINTF): Fail with EOVERFLOW when the given allocated size is
29375         larger than INT_MAX, or when it grow to a value larger than INT_MAX.
29376         * lib/vsprintf.c (vsprintf): Don't pass a size > INT_MAX to vasnprintf.
29377         * lib/sprintf.c (sprintf): Likewise.
29378
29379 2007-03-17  Bruno Haible  <bruno@clisp.org>
29380
29381         * tests/test-argp-2.sh (func_compare): Output a context diff.
29382
29383 2007-03-17  Bruno Haible  <bruno@clisp.org>
29384
29385         * m4/locale-fr.m4 (gt_LOCALE_FR, gt_LOCALE_FR_UTF8): Check also the
29386         locale's decimal-point character.
29387
29388 2007-03-17  Bruno Haible  <bruno@clisp.org>
29389
29390         * lib/vasnprintf.c (VASNPRINTF): Clear out the memory used for arg_mem
29391         before comparing it. Needed because on some platforms (e.g. x86) a
29392         'long double' occupies less bytes than sizeof (long double).
29393
29394 2007-03-17  Bruno Haible  <bruno@clisp.org>
29395
29396         * tests/test-crc.c (main): Make printf statements 64-bit clean.
29397         * tests/test-gc-pbkdf2-sha1.c (main): Likewise.
29398         * tests/test-getaddrinfo.c (simple): Likewise.
29399         * tests/test-read-file.c (main): Likewise.
29400
29401 2007-03-17  Bruno Haible  <bruno@clisp.org>
29402
29403         * tests/test-dirname.c (main): Make printf statements 64-bit clean.
29404
29405 2007-03-17  Bruno Haible  <bruno@clisp.org>
29406
29407         * tests/test-xvasprintf.c (test_xvasprintf, test_xasprintf): Remove
29408         unused variable.
29409
29410 2007-03-17  Bruno Haible  <bruno@clisp.org>
29411
29412         * tests/test-c-strcasecmp.c: Include c-strcase.h.
29413         * tests/test-c-strncasecmp.c: Likewise.
29414
29415 2007-03-17  Bruno Haible  <bruno@clisp.org>
29416
29417         * modules/stdlib (Depends-on): Add unistd.
29418         * lib/stdlib_.h: Include <unistd.h> if mkstemp is desired.
29419         Needed for MacOS X 10.3.
29420
29421 2007-03-17  Bruno Haible  <bruno@clisp.org>
29422
29423         * lib/unistr/u-strdup.h: Include <stdlib.h>.
29424
29425 2007-03-17  Bruno Haible  <bruno@clisp.org>
29426
29427         * lib/unistr/u-cpy-alloc.h: Include <stdlib.h>.
29428
29429 2007-03-17  Bruno Haible  <bruno@clisp.org>
29430
29431         * gnulib-tool (func_import): Update .cvsignore and .gitignore files
29432         to reflect files copied from gnulib (with or without modifications).
29433         Suggested by Jim Meyering.
29434
29435 2007-03-17  Eric Blake  <ebb9@byu.net>
29436
29437         * NEWS: Document stdlib change from 2007-02-18.
29438
29439 2007-03-17  Jim Meyering  <jim@meyering.net>
29440
29441         Detect use of AC_CONFIG_AUX_DIR also when its argument is quoted.
29442         * build-aux/bootstrap: Put ""s around use of $build_aux, in case
29443         someone uses a name containing shell meta-characters.
29444         Reported by Alfred M. Szmidt.
29445
29446         * build-aux/bootstrap: Don't use \> in grep regexp.  For HP-UX.
29447
29448 2007-03-16  Alfred M. Szmidt  <ams@gnu.org>
29449
29450         * build-aux/bootstrap (with_gettext): New variable.  Run autopoint
29451         and copy gettext configuration files only if configure.ac contains
29452         a use of AM_GNU_GETTEXT_VERSION.
29453
29454 2007-03-16  Alfred M. Szmidt  <ams@gnu.org>
29455
29456         * build-aux/bootstrap (gnulib_name): New variable.
29457         (gnulib_tool_options): Use it.
29458
29459 2007-03-13  Simon Josefsson  <simon@josefsson.org>
29460
29461         * tests/test-des.c: Use new namespace.
29462
29463 2007-03-15  Bruno Haible  <bruno@clisp.org>
29464
29465         * lib/dummy.c (gl_dummy_symbol): Renamed from 'dummy'.
29466         Reported by James Youngman <jay@gnu.org>.
29467
29468 2007-03-15  Bruno Haible  <bruno@clisp.org>
29469
29470         * lib/glob.c (glob): Add 'restrict' so that prototype matches the
29471         declared prototype. Needed with cc on OSF/1 5.1.
29472
29473 2007-03-15  Bruno Haible  <bruno@clisp.org>
29474
29475         * lib/gl_list.h (gl_listelement_dispose_fn): New type.
29476         (gl_list_create_empty, gl_list_create): Add dispose_fn argument.
29477         (struct gl_list_implementation): Add dispose_fn argument to the
29478         'create_empty', 'create' methods.
29479         (struct gl_list_impl_base): Add field 'dispose_fn'.
29480         * lib/gl_list.c (gl_list_create_empty, gl_list_create): Add dispose_fn
29481         argument.
29482         * lib/gl_array_list.c (gl_array_create_empty, gl_array_create): Add
29483         dispose_fn argument.
29484         (gl_array_remove_node, gl_array_remove_at, gl_array_list_free): Call
29485         dispose_fn on the dropped values.
29486         * lib/gl_carray_list.c (gl_carray_create_empty, gl_carray_create): Add
29487         dispose_fn argument.
29488         (gl_carray_remove_at, gl_carray_list_free): Call dispose_fn on the
29489         dropped values.
29490         * lib/gl_anyavltree_list2.h (gl_tree_create): Add dispose_fn argument.
29491         (gl_tree_remove_node): Call dispose_fn on the dropped value.
29492         * lib/gl_anyrbtree_list2.h (gl_tree_create): Add dispose_fn argument.
29493         (gl_tree_remove_node): Call dispose_fn on the dropped value.
29494         * lib/gl_anytree_list2.h (gl_tree_create_empty): Add dispose_fn
29495         argument.
29496         (gl_tree_list_free): Call dispose_fn on the dropped values.
29497         * lib/gl_anytreehash_list2.h (gl_tree_list_free): Call dispose_fn on
29498         the dropped values.
29499         * lib/gl_anylinked_list2.h (gl_linked_create_empty, gl_linked_create):
29500         Add dispose_fn argument.
29501         (gl_linked_remove_node, gl_linked_remove_at, gl_linked_list_free):
29502         Call dispose_fn on the dropped values.
29503         * lib/gl_sublist.c (gl_sublist_create_empty, gl_sublist_create_fill):
29504         Add dispose_fn argument.
29505         (gl_sublist_create): Initialize the 'dispose_fn' field.
29506         * lib/clean-temp.c (create_temp_dir, register_fd): Update.
29507         * tests/test-array_list.c (main): Update.
29508         * tests/test-carray_list.c (main): Update.
29509         * tests/test-avltree_list.c (main): Update.
29510         * tests/test-rbtree_list.c (main): Update.
29511         * tests/test-avltreehash_list.c (main): Update.
29512         * tests/test-rbtreehash_list.c (main): Update.
29513         * tests/test-linked_list.c (main): Update.
29514         * tests/test-linkedhash_list.c (main): Update.
29515         * tests/test-array_oset.c (main): Update.
29516
29517 2007-03-15  Bruno Haible  <bruno@clisp.org>
29518
29519         * lib/gl_oset.h (gl_setelement_dispose_fn): New type.
29520         (gl_oset_create_empty): Add dispose_fn argument.
29521         (struct gl_oset_implementation): Add dispose_fn argument to
29522         'create_empty' method.
29523         (struct gl_oset_impl_base): Add dispose_fn field.
29524         * lib/gl_oset.c (gl_oset_create_empty): Add dispose_fn argument.
29525         * lib/gl_array_oset.c (gl_array_create_empty): Add dispose_fn argument.
29526         (gl_array_remove_at, gl_array_free): Call dispose_fn on the dropped
29527         values.
29528         * lib/gl_anytree_oset.h (gl_tree_create_empty): Add dispose_fn argument.
29529         (gl_tree_oset_free): Call dispose_fn on the dropped values.
29530         * lib/gl_avltree_oset.c (gl_tree_remove_node): Call dispose_fn on the
29531         dropped value.
29532         * lib/gl_rbtree_oset.c (gl_tree_remove_node): Call dispose_fn on the
29533         dropped value.
29534         * tests/test-array_oset.c (main): Update.
29535         * tests/test-avltree_oset.c (main): Update.
29536         * tests/test-rbtree_oset.c (main): Update.
29537         * lib/gl_anytreehash_list1.h (add_to_bucket): Update.
29538
29539 2007-03-13  Bruno Haible  <bruno@clisp.org>
29540
29541         * tests/test-stdbool.c (i): Update after last patch.
29542
29543 2007-03-12  Bruno Haible  <bruno@clisp.org>
29544
29545         * lib/quotearg.c: Include <wctype.h> early, before the definition of
29546         the iswprint macro. Needed on Solaris 2.5.1.
29547
29548 2007-03-12  Bruno Haible  <bruno@clisp.org>
29549
29550         * tests/test-printf-frexp.c (main): Declare x as volatile.
29551
29552 2007-03-12  Simon Josefsson  <simon@josefsson.org>
29553
29554         * doc/gnulib.texi (Build robot for gnulib): New section.
29555
29556 2007-03-12  Jim Meyering  <jim@meyering.net>
29557
29558         * build-aux/bootstrap: New file.
29559         * build-aux/bootstrap.conf: New file, from coreutils.
29560
29561 2007-03-11  Bruno Haible  <bruno@clisp.org>
29562
29563         * m4/cycle-check.m4 (gl_CYCLE_CHECK): Require AC_C_INLINE.
29564
29565 2007-03-12  Simon Josefsson  <simon@josefsson.org>
29566
29567         * lib/des.h, lib/des.c, lib/gc-gnulib.c: Use gl_ namespace, to
29568         avoid collisions with 'des_setkey'.  Reported by Bruno Haible
29569         <bruno@clisp.org>.  Also change 'tripledes_' to '3des_'.
29570
29571 2007-03-11  Bruno Haible  <bruno@clisp.org>
29572
29573         * m4/locale-tr.m4 (gt_LOCALE_TR_UTF8): If the test program fails to
29574         compile, set LOCALE_TR_UTF8 to 'none' instead of empty.
29575
29576 2007-03-11  Bruno Haible  <bruno@clisp.org>
29577
29578         * lib/stdint_.h (INT64_MIN, INTMAX_MIN): Avoid using the ~INT..._MAX
29579         formula. Needed for SunPRO C 5.0.
29580
29581 2007-03-11  Bruno Haible  <bruno@clisp.org>
29582
29583         * modules/long-options (Depends-on): Add getopt.
29584
29585 2007-03-11  Bruno Haible  <bruno@clisp.org>
29586
29587         * modules/modechange (Depends-on): Add stdbool.
29588
29589 2007-03-11  Bruno Haible  <bruno@clisp.org>
29590
29591         * modules/i-ring (Depends-on): Add stdbool.
29592
29593 2007-03-11  Bruno Haible  <bruno@clisp.org>
29594
29595         * modules/gc-des (Depends-on): Add stdbool.
29596
29597 2007-03-11  Bruno Haible  <bruno@clisp.org>
29598
29599         * m4/mktime.m4 (gl_PREREQ_MKTIME): Require AC_C_INLINE.
29600
29601 2007-03-11  Bruno Haible  <bruno@clisp.org>
29602
29603         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY): Require AC_C_RESTRICT.
29604
29605 2007-03-11  Bruno Haible  <bruno@clisp.org>
29606
29607         * lib/unistr/u32-mbtouc-unsafe.c (u32_mbtouc_unsafe): Fix syntax error.
29608
29609 2007-03-11  Bruno Haible  <bruno@clisp.org>
29610
29611         * lib/vasnprintf.c (sprintf): Undefine.
29612
29613 2007-03-11  Bruno Haible  <bruno@clisp.org>
29614
29615         * lib/isnan.c (rpl_isnan, rpl_isnanl): Work around bug regarding
29616         initializers in SunPRO C and Compaq C compilers.
29617
29618 2007-03-11  Bruno Haible  <bruno@clisp.org>
29619
29620         * lib/gl_array_oset.c (gl_array_iterator_next): Make pointer
29621         decrementing code ANSI C compliant.
29622
29623 2007-03-11  Bruno Haible  <bruno@clisp.org>
29624
29625         * lib/dummy.c [__sun]: Define a dummy variable, not just a typedef.
29626         Needed for Solaris 2.5.1 ranlib and SunPRO C 5.0.
29627
29628 2007-03-11  Bruno Haible  <bruno@clisp.org>
29629
29630         * tests/test-stdbool.c (s, d, e, xlcbug): Disable checks that gnulib's
29631         <stdbool.h> substitute doesn't pass.
29632
29633 2007-03-11  Bruno Haible  <bruno@clisp.org>
29634
29635         * lib/vasnprintf.c (snprintf): Undefine. Avoids an endless recursion.
29636
29637 2007-03-11  Bruno Haible  <bruno@clisp.org>
29638
29639         * gnulib-tool (func_create_megatestdir): Create also an autobuild
29640         script, for submission to autobuild.josefsson.org.
29641
29642 2007-03-10  Bruno Haible  <bruno@clisp.org>
29643
29644         * modules/canonicalize-lgpl-tests: New file.
29645         * tests/test-canonicalize-lgpl.sh: New file.
29646         * tests/test-canonicalize-lgpl.c: New file.
29647
29648         * modules/c-strcase-tests: New file.
29649         * tests/test-c-strcase.sh: New file.
29650         * tests/test-c-strcasecmp.c: New file.
29651         * tests/test-c-strncasecmp.c: New file.
29652
29653         * modules/atexit-tests: New file.
29654         * tests/test-atexit.sh: New file.
29655         * tests/test-atexit.c: New file.
29656
29657 2007-03-10  Bruno Haible  <bruno@clisp.org>
29658
29659         * tests/test-binary-io.sh: Use temporary filenames that are not so
29660         likely to clash with those of other tests (in a parallel make).
29661         * tests/test-binary-io.c: Likewise.
29662
29663 2007-03-10  Bruno Haible  <bruno@clisp.org>
29664
29665         * lib/fseterr.c (fseterr): Port to Solaris/SPARC64. Deactivate the
29666         fallback; use #error instead.
29667         Suggested by Simon Josefsson.
29668
29669 2007-03-10  Bruno Haible  <bruno@clisp.org>
29670
29671         * gnulib-tool (func_create_testdir): Treat MOSTLYCLEANFILES like
29672         CLEANFILES. Put spaces in each line of $cleaned_files, not only the
29673         first and the last.
29674
29675 2007-03-10  Bruno Haible  <bruno@clisp.org>
29676
29677         * lib/stdint_.h (uint_least64_t): Fix typo in last patch.
29678
29679 2007-03-10  Bruno Haible  <bruno@clisp.org>
29680
29681         * modules/snprintf-posix-tests (EXTRA_DIST): New variable. Needed for
29682         "make distcheck".
29683         * modules/sprintf-posix-tests (EXTRA_DIST): Likewise.
29684         * modules/vsnprintf-posix-tests (EXTRA_DIST): Likewise.
29685         * modules/vsprintf-posix-tests (EXTRA_DIST): Likewise.
29686
29687 2007-03-10  Bruno Haible  <bruno@clisp.org>
29688
29689         * modules/allocsa-tests (test_allocsa_SOURCES): Remove redundant
29690         variable.
29691         * modules/dirname-tests (test_dirname_SOURCES): Remove redundant
29692         variable.
29693
29694 2007-03-09  Eric Blake  <ebb9@byu.net>
29695         and Matthew Woehlke  <mw_triad@users.sourceforge.net>  (tiny change)
29696
29697         * lib/stdint_.h (int64_t, uint64_t): Don't undefine if 64-bit
29698         types are not being provided by gnulib.
29699         (GL_INT64_T, GL_UINT64_T): New witnesses of whether gnulib 64-bit
29700         types are supported.
29701
29702 2007-03-10  Bruno Haible  <bruno@clisp.org>
29703
29704         * lib/stdio_.h (__attribute__): New macro.
29705         (fprintf, vfprintf, printf, vprintf, snprintf, vsnprintf, sprintf,
29706         vsprintf): Specify __attribute__ __format__ for GCC.
29707         Suggested by Eric Blake.
29708
29709 2007-03-09  Bruno Haible  <bruno@clisp.org>
29710
29711         * modules/printf-posix-tests: New file.
29712         * tests/test-printf-posix.sh: New file.
29713         * tests/test-printf-posix.c: New file.
29714
29715         * modules/printf-posix: New file.
29716         * lib/printf.c: New file.
29717         * m4/printf-posix-rpl.m4: New file.
29718         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_PRINTF_POSIX,
29719         REPLACE_PRINTF.
29720         * lib/stdio_.h (printf): New declaration.
29721         (format, __format__, ____printf____, ____scanf____, ____strftime____,
29722         ____strfmon____): New macros.
29723         * modules/stdio (Makefile.am): Substitute also GNULIB_PRINTF_POSIX,
29724         REPLACE_PRINTF.
29725
29726 2007-03-09  Bruno Haible  <bruno@clisp.org>
29727
29728         * tests/test-vasnprintf-posix2.sh: New file.
29729         * tests/test-vasnprintf-posix2.c: New file.
29730         * modules/vasnprintf-posix-tests (Files): Add them and m4/locale-fr.m4.
29731         (configure.ac): Invoke gt_LOCALE_FR and gt_LOCALE_FR_UTF8.
29732         (Makefile.am): Activate test-vasnprintf-posix2.sh.
29733
29734         * lib/vasnprintf.c (VASNPRINTF): For the 'a' and 'A' directives, use
29735         a locale dependent decimal point, rather than always '.'.
29736
29737 2007-03-09  Eric Blake  <ebb9@byu.net>
29738
29739         * lib/stdlib_.h (EXIT_FAILURE): GNU code expects this to be 1, in
29740         spite of platforms like Tandem/NSK that define it to -1.
29741
29742 2007-03-08  Bruno Haible  <bruno@clisp.org>
29743
29744         * modules/vprintf-posix-tests: New file.
29745         * tests/test-vprintf-posix.sh: New file.
29746         * tests/test-vprintf-posix.c: New file.
29747         * tests/test-printf-posix.h: New file.
29748
29749         * modules/vprintf-posix: New file.
29750         * lib/vprintf.c: New file.
29751         * m4/vprintf-posix.m4: New file.
29752         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_VPRINTF_POSIX,
29753         REPLACE_VPRINTF.
29754         * lib/stdio_.h (vprintf): New declaration.
29755         * modules/stdio (Makefile.am): Substitute also GNULIB_VPRINTF_POSIX,
29756         REPLACE_VPRINTF.
29757
29758 2007-03-08  Bruno Haible  <bruno@clisp.org>
29759
29760         * modules/fprintf-posix-tests: New file.
29761         * tests/test-fprintf-posix.sh: New file.
29762         * tests/test-fprintf-posix.c: New file.
29763
29764         * modules/fprintf-posix: New file.
29765         * lib/fprintf.c: New file.
29766         * m4/fprintf-posix.m4: New file.
29767         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FPRINTF_POSIX,
29768         REPLACE_FPRINTF.
29769         * lib/stdio_.h (fprintf): New declaration.
29770         * modules/stdio (Makefile.am): Substitute also GNULIB_FPRINTF_POSIX,
29771         REPLACE_FPRINTF.
29772
29773 2007-03-08  Bruno Haible  <bruno@clisp.org>
29774
29775         * modules/vfprintf-posix-tests: New file.
29776         * tests/test-vfprintf-posix.sh: New file.
29777         * tests/test-vfprintf-posix.c: New file.
29778         * tests/test-fprintf-posix.h: New file.
29779         * tests/test-fprintf-posix.out: New file.
29780
29781         * modules/vfprintf-posix: New file.
29782         * lib/vfprintf.c: New file.
29783         * m4/vfprintf-posix.m4: New file.
29784         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_VFPRINTF_POSIX,
29785         REPLACE_VFPRINTF.
29786         * lib/stdio_.h (vfprintf): New declaration.
29787         * modules/stdio (Makefile.am): Substitute also GNULIB_VFPRINTF_POSIX,
29788         REPLACE_VFPRINTF.
29789
29790 2007-03-08  Bruno Haible  <bruno@clisp.org>
29791
29792         * lib/stdio_.h: Treat __need___FILE like __need_FILE.
29793
29794 2007-03-08  Bruno Haible  <bruno@clisp.org>
29795
29796         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Use 'case' statements
29797         instead of 'expr' invocations.
29798         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
29799         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
29800         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
29801         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
29802         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
29803         Suggested by Paul Eggert.
29804
29805 2007-03-08  Bruno Haible  <bruno@clisp.org>
29806
29807         * modules/fseterr-tests: New file.
29808         * tests/test-fseterr.c: New file.
29809
29810         * modules/fseterr: New file.
29811         * lib/fseterr.h: New file.
29812         * lib/fseterr.c: New file.
29813
29814 2007-03-08  Bruno Haible  <bruno@clisp.org>
29815
29816         * lib/fnmatch_.h: Convert tabs in the middle of lines to spaces.
29817         * lib/getopt_.h: Likewise.
29818         * lib/mbswidth.h: Likewise.
29819         * lib/setenv.h: Likewise.
29820         * lib/vasnprintf.h: Likewise.
29821         * lib/vasprintf.h: Likewise.
29822         * lib/verror.h: Likewise.
29823         * lib/xsetenv.h: Likewise.
29824         * lib/xvasprintf.h: Likewise.
29825
29826 2007-03-08  Jim Meyering  <jim@meyering.net>
29827
29828         * users.txt: Add parted.
29829
29830         * ChangeLog: Restore 1500 lines mistakenly removed from the end.
29831
29832 2007-03-07  Bruno Haible  <bruno@clisp.org>
29833
29834         * m4/printf.m4: Make the shell script snippets copy&pastable.
29835
29836 2007-03-02  Bruno Haible  <bruno@clisp.org>
29837
29838         * lib/netinet_in_.h: New file.
29839         * m4/netinet_in_h.m4 (gl_HEADER_NETINET_IN): Test whether netinet/in.h
29840         is self-contained. Set ABSOLUTE_NETINET_IN_H, HAVE_NETINET_IN_H.
29841         * modules/netinet_in (Files): Add lib/netinet_in_.h.
29842         (Depends-on): Add absolute-header.
29843         (Makefile.am): Substitute ABSOLUTE_NETINET_IN_H, HAVE_NETINET_IN_H
29844         into netinet/in.h.
29845
29846 2007-03-03  Bruno Haible  <bruno@clisp.org>
29847
29848         * lib/sys_select_.h: New file.
29849         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SELECT): Test whether sys/select.h
29850         is self-contained. Set ABSOLUTE_SYS_SELECT_H, HAVE_SYS_SELECT_H.
29851         * modules/sys_select (Files): Add lib/sys_select_.h.
29852         (Depends-on): Add absolute-header.
29853         (Makefile.am): Substitute ABSOLUTE_SYS_SELECT_H, HAVE_SYS_SELECT_H
29854         into sys/select.h.
29855
29856 2007-03-02  Bruno Haible  <bruno@clisp.org>
29857
29858         * lib/socket_.h: If sys/socket.h exists, include that and <sys/types.h>
29859         before it. Turn HAVE_WINSOCK2_H and HAVE_WS2TCPIP_H into configute-time
29860         values.
29861         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Test also whether
29862         <sys/socket.h> is self-contained. Set ABSOLUTE_SYS_SOCKET_H,
29863         HAVE_SYS_SOCKET_H, HAVE_WINSOCK2_H, HAVE_WS2TCPIP_H.
29864         * modules/sys_socket (Depends-on): Add absolute-header.
29865         (Makefile.am): Substitute ABSOLUTE_SYS_SOCKET_H, HAVE_SYS_SOCKET_H,
29866         HAVE_WINSOCK2_H, HAVE_WS2TCPIP_H into sys/socket.h.
29867         (Include): Remove requirement of inclusion of <sys/types.h>.
29868
29869 2007-03-02  Bruno Haible  <bruno@clisp.org>
29870
29871         * lib/byteswap_.h (bswap_32): Fix formula.
29872
29873 2007-03-06  Bruno Haible  <bruno@clisp.org>
29874
29875         * modules/sprintf-posix-tests: New file.
29876         * tests/test-sprintf-posix.c: New file.
29877
29878         * modules/sprintf-posix: New file.
29879         * lib/sprintf.c: New file.
29880         * m4/sprintf-posix.m4: New file.
29881         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_SPRINTF_POSIX,
29882         REPLACE_SPRINTF.
29883         * lib/stdio_.h (sprintf): New declaration.
29884         * modules/stdio (Makefile.am): Substitute also GNULIB_SPRINTF_POSIX,
29885         REPLACE_SPRINTF.
29886
29887 2007-03-06  Bruno Haible  <bruno@clisp.org>
29888
29889         * modules/vsprintf-posix-tests: New file.
29890         * tests/test-vsprintf-posix.c: New file.
29891         * tests/test-sprintf-posix.h: New file.
29892
29893         * modules/vsprintf-posix: New file.
29894         * lib/vsprintf.c: New file.
29895         * m4/vsprintf-posix.m4: New file.
29896         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_VSPRINTF_POSIX,
29897         REPLACE_VSPRINTF.
29898         * lib/stdio_.h (vsprintf): New declaration.
29899         * modules/stdio (Makefile.am): Substitute also GNULIB_VSPRINTF_POSIX,
29900         REPLACE_VSPRINTF.
29901
29902 2007-03-06  Bruno Haible  <bruno@clisp.org>
29903
29904         * modules/vsnprintf (Depend-on): Remove minmax.
29905
29906 2007-03-06  Bruno Haible  <bruno@clisp.org>
29907
29908         * modules/snprintf-posix-tests: New file.
29909         * tests/test-snprintf-posix.c: New file.
29910
29911         * modules/snprintf-posix: New file.
29912         * m4/snprintf-posix.m4: New file.
29913         * m4/snprintf.m4 (gl_REPLACE_SNPRINTF): New macro, extracted from
29914         gl_FUNC_SNPRINTF.
29915         (gl_FUNC_SNPRINTF): Invoke it.
29916         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also REPLACE_SNPRINTF.
29917         * lib/stdio_.h (snprintf): Define as a replacement if REPLACE_SNPRINTF
29918         is set.
29919         * modules/stdio (Makefile.am): Substitute also REPLACE_SNPRINTF.
29920
29921 2007-03-06  Bruno Haible  <bruno@clisp.org>
29922
29923         * modules/vsnprintf-posix-tests: New file.
29924         * tests/test-vsnprintf-posix.c: New file.
29925         * tests/test-snprintf-posix.h: New file.
29926
29927         * modules/vsnprintf-posix: New file.
29928         * m4/vsnprintf-posix.m4: New file.
29929         * m4/vsnprintf.m4 (gl_REPLACE_VSNPRINTF): New macro, extracted from
29930         gl_FUNC_VSNPRINTF.
29931         (gl_FUNC_VSNPRINTF): Invoke it.
29932         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also REPLACE_VSNPRINTF.
29933         * lib/stdio_.h (vsnprintf): Define as a replacement if
29934         REPLACE_VSNPRINTF is set.
29935         * modules/stdio (Makefile.am): Substitute also REPLACE_VSNPRINTF.
29936
29937 2007-03-06  Bruno Haible  <bruno@clisp.org>
29938
29939         * m4/vasnprintf.m4 (gl_REPLACE_VASNPRINTF): Test for vasnprintf here.
29940         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): ... not here.
29941
29942 2007-03-06  Bruno Haible  <bruno@clisp.org>
29943
29944         * lib/math_.h (acosl): Declare also if HAVE_DECL_ACOSL is set.
29945         (asinl): Declare also if HAVE_DECL_ASINL is set.
29946         (atanl): Declare also if HAVE_DECL_ATANL is set.
29947         (ceill): Declare also if HAVE_DECL_CEILL is set.
29948         (cosl): Declare also if HAVE_DECL_COSL is set.
29949         (expl): Declare also if HAVE_DECL_EXPL is set.
29950         (floorl): Declare also if HAVE_DECL_FLOORL is set.
29951         (frexpl): Declare also if HAVE_DECL_FREXPL is set.
29952         (ldexpl): Declare also if HAVE_DECL_LDEXPL is set.
29953         (logl): Declare also if HAVE_DECL_LOGL is set.
29954         (sinl): Declare also if HAVE_DECL_SINL is set.
29955         (sqrtl): Declare also if HAVE_DECL_SQRTL is set.
29956         (tanl): Declare also if HAVE_DECL_TANL is set.
29957         * modules/math (Makefile.am): Substitute the values of HAVE_DECL_*.
29958         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Set HAVE_DECL_* to 1.
29959         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Fix tests for the
29960         declaration of frexpl, ldexpl.
29961         * modules/printf-frexpl (Depends-on): Add math.
29962         * lib/printf-frexp.c (frexpl, ldexpl): Undo last change.
29963
29964 2007-03-05  Bruno Haible  <bruno@clisp.org>
29965
29966         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Also test whether
29967         frexpl and ldexpl are declared.
29968         * lib/printf-frexp.c (frexpl, ldexpl): Provide fallback declarations.
29969
29970 2007-03-05  Bruno Haible  <bruno@clisp.org>
29971
29972         * gnulib-tool (func_get_automake_snippet): Don't synthesize an
29973         EXTRA_lib_SOURCES augmentation for the relocatable-prog-wrapper module.
29974
29975 2007-03-05  Bruno Haible  <bruno@clisp.org>
29976
29977         * lib/stdio_.h: Include <stddef.h>.
29978
29979 2007-03-05  Bruno Haible  <bruno@clisp.org>
29980
29981         * m4/printf.m4 (gl_SNPRINTF_DIRECTIVE_N): New macro.
29982
29983 2007-03-05  Bruno Haible  <bruno@clisp.org>
29984
29985         * m4/printf.m4: Update with info about OpenBSD 3.9, HP-UX 10.20,
29986         NetBSD 4, from Ralf Wildenhues.
29987
29988 2007-03-04  Bruno Haible  <bruno@clisp.org>
29989
29990         * lib/vasprintf.h: Update #if logic for the case when the functions
29991         exist but are overridden.
29992
29993 2007-03-04  Bruno Haible  <bruno@clisp.org>
29994
29995         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_A): Exclude two buggy
29996         implementations: glibc-2.4 and MacOS X 10.3.
29997         * tests/test-vasnprintf-posix.c (test_function): Test also the case
29998         that exhibits the bugs in glibc-2.4 and MacOS X 10.3.
29999         * tests/test-vasprintf-posix.c (test_function): Likewise.
30000
30001 2007-03-04  Bruno Haible  <bruno@clisp.org>
30002
30003         * modules/vasprintf-posix-tests: New file.
30004         * tests/test-vasprintf-posix.c: New file.
30005
30006         * modules/vasprintf-posix: New file.
30007         * lib/vasprintf.h (asprintf, vasprintf): Rename if REPLACE_VASPRINTF is
30008         defined.
30009         * m4/vasprintf-posix.m4: New file.
30010         * m4/vasprintf.m4 (gl_REPLACE_VASPRINTF): New macro, extracted from
30011         gl_FUNC_VASPRINTF.
30012         (gl_FUNC_VASPRINTF): Invoke it.
30013         * m4/vasnprintf.m4 (gl_REPLACE_VASNPRINTF): Define REPLACE_VASNPRINTF
30014         here.
30015         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Not here.
30016
30017 2007-03-04  Bruno Haible  <bruno@clisp.org>
30018
30019         * lib/sys_time_.h: Rename GETTIMEOFDAY_REPLACEMENT to
30020         REPLACE_GETTIMEOFDAY.
30021         * modules/sys_time (Makefile.am): Likewise.
30022         * m4/sys_time_h.m4: Likewise.
30023         * m4/gettimeofday.m4: Likewise.
30024
30025 2007-03-04  Bruno Haible  <bruno@clisp.org>
30026
30027         * modules/vasnprintf-posix-tests: New file.
30028         * tests/test-vasnprintf-posix.c: New file.
30029
30030         * modules/vasnprintf-posix: New file.
30031         * lib/vasnprintf.c: Include isnan.h, isnanl.h, printf-frexp.h,
30032         printf-frexpl.h.
30033         (VASNPRINTF): Handle the 'a' and 'A' directives here, if needed.
30034         * lib/vasnprintf.h (asnprintf, vasnprintf): Rename if
30035         REPLACE_VASNPRINTF is defined.
30036         * m4/vasnprintf.m4 (gl_REPLACE_VASNPRINTF): New macro, extracted from
30037         gl_FUNC_VASNPRINTF.
30038         (gl_FUNC_VASNPRINTF): Invoke it.
30039         * m4/vasnprintf-posix.m4: New file.
30040         * m4/printf.m4: New file.
30041
30042 2007-03-04  Bruno Haible  <bruno@clisp.org>
30043
30044         Compile progreloc.c only if --enable-relocatable is specified.
30045         * m4/relocatable.m4 (gl_RELOCATABLE): Arrange to compile progreloc.c
30046         if --enable-relocatable was specified.
30047         * modules/relocatable-prog (Makefile.am): Remove progreloc.c from
30048         lib_SOURCES.
30049
30050 2007-03-04  Jim Meyering  <jim@meyering.net>
30051
30052         * lib/acl.c (ACL_NOT_WELL_SUPPORTED): New macro.
30053         Use it consistently, rather than enumerating errno constants.
30054
30055 2007-03-04  Bruno Haible  <bruno@clisp.org>
30056
30057         * modules/xvasprintf-tests: New file.
30058         * tests/test-xvasprintf.c: New file.
30059
30060         * modules/vasprintf-tests: New file.
30061         * tests/test-vasprintf.c: New file.
30062
30063         * modules/vasnprintf-tests: New file.
30064         * tests/test-vasnprintf.c: New file.
30065
30066         * modules/vsnprintf-tests: New file.
30067         * tests/test-vsnprintf.c: New file.
30068
30069         * modules/snprintf-tests: New file.
30070         * tests/test-snprintf.c: New file.
30071
30072 2007-03-04  Bruno Haible  <bruno@clisp.org>
30073
30074         Compile relocatable.c only if --enable-relocatable is specified.
30075         * m4/relocatable-lib.m4 (gl_RELOCATABLE_LIBRARY_BODY): Renamed from
30076         gl_RELOCATABLE_LIBRARY.
30077         (gl_RELOCATABLE_LIBRARY, gl_RELOCATABLE_LIBRARY_SEPARATE): New macros.
30078         * m4/relocatable.m4 (gl_RELOCATABLE): Invoke gl_RELOCATABLE_LIBRARY.
30079         (gl_RELOCATABLE_BODY): Require gl_RELOCATABLE_LIBRARY_BODY instead of
30080         gl_RELOCATABLE_LIBRARY.
30081         * modules/relocatable-lib (configure.ac): Invoke gl_RELOCATABLE_LIBRARY.
30082         (Makefile.am): Remove lib_SOURCES.
30083         * modules/relocatable-lib-lgpl (configure.ac): Invoke
30084         gl_RELOCATABLE_LIBRARY.
30085         (Makefile.am): Remove lib_SOURCES.
30086         * modules/relocatable-prog (Makefile.am): Don't compile relocatable.c
30087         always.
30088         * modules/relocatable-prog-wrapper (configure.ac): Invoke
30089         gl_RELOCATABLE_LIBRARY_SEPARATE instead of gl_RELOCATABLE_LIBRARY.
30090
30091 2007-03-04  Bruno Haible  <bruno@clisp.org>
30092
30093         * modules/argmatch-tests: New file.
30094         * tests/test-argmatch.c: New file.
30095
30096         * tests/test-allocsa.c (main): Halve the number of loop runs.
30097
30098         * modules/alloca-opt-tests: New file.
30099         * tests/test-alloca-opt.c: New file.
30100
30101 2007-03-04  Jim Meyering  <jim@meyering.net>
30102
30103         Work around difference between Linux ACLs and Solaris 10 ZFS.
30104         * lib/acl.c (set_acl): Revert to using chmod_or_fchmod also
30105         for EINVAL.
30106
30107 2007-03-03  Bruno Haible  <bruno@clisp.org>
30108
30109         * modules/relocatable-prog (Depends-on): Add back progreloc's
30110         dependencies: canonicalize-lgpl, xalloc, xreadlink, stdbool, unistd.
30111
30112 2007-03-03  Bruno Haible  <bruno@clisp.org>
30113
30114         * modules/relocatable-lib-lgpl: Renamed from modules/relocatable-lib.
30115         * modules/relocatable-lib: New file.
30116
30117 2007-03-03  Bruno Haible  <bruno@clisp.org>
30118
30119         * modules/relocatable-prog: Renamed from modules/relocatable.
30120         * doc/relocatable-maint.texi: Talk about module 'relocatable-prog'.
30121
30122 2007-03-03  Bruno Haible  <bruno@clisp.org>
30123
30124         * modules/relocatable-script (Files): Add doc/relocatable.texi,
30125         m4/relocatable-lib.m4.
30126         (Depends-on): Remove 'relocatable'.
30127         (configure.ac): Add gl_RELOCATABLE_NOP.
30128
30129 2007-03-03  Bruno Haible  <bruno@clisp.org>
30130
30131         * modules/relocatable-prog-wrapper: New file.
30132         * modules/relocatable (Depends-on): Add it. Remove all other
30133         dependencies except progname.
30134         (Files): Remove build-aux/install-reloc, lib/relocwrapper.c.
30135
30136         * m4/strerror.m4 (gl_FUNC_STRERROR_SEPARATE): New macro.
30137         (gl_FUNC_STRERROR): Nop.
30138         * lib/strerror.c: Compile the file only if !HAVE_STRERROR.
30139
30140         * m4/setenv.m4 (gl_FUNC_SETENV_SEPARATE): New macro.
30141         * lib/setenv.c: Compile the file only if _LIBC || !HAVE_SETENV.
30142
30143         * m4/readlink.m4 (gl_FUNC_READLINK_SEPARATE): New macro.
30144         (gl_FUNC_READLINK): Update.
30145
30146         * m4/canonicalize-lgpl.m4 (gl_CANONICALIZE_LGPL_SEPARATE): New macro.
30147
30148 2007-03-03  Bruno Haible  <bruno@clisp.org>
30149
30150         * lib/xreadlink.c: Include <unistd.h> unconditionally.
30151         * modules/xreadlink (Depends-on): Add unistd.
30152         * modules/xreadlink-with-size (Depends-on): Likewise.
30153
30154 2007-03-03  Bruno Haible  <bruno@clisp.org>
30155
30156         * m4/setenv.m4 (gl_FUNC_SETENV, gl_FUNC_UNSETENV): New macros,
30157         extracted from gt_FUNC_SETENV.
30158         (gt_FUNC_SETENV): Remove macro.
30159         * modules/setenv (configure.ac): Add gl_FUNC_SETENV, gl_FUNC_UNSETENV,
30160         remove gt_FUNC_SETENV.
30161
30162 2007-03-03  Bruno Haible  <bruno@clisp.org>
30163
30164         * m4/relocatable-lib.m4 (gl_RELOCATABLE_LIBRARY): Define
30165         ENABLE_RELOCATABLE here.
30166         * m4/relocatable.m4 (gl_RELOCATABLE_BODY): Don't define it here.
30167
30168 2007-03-03  Bruno Haible  <bruno@clisp.org>
30169
30170         * modules/rbtreehash-list-tests (Depends-on): Add progname.
30171         * tests/test-rbtreehash_list.c: Include progname.h.
30172         (main): Call set_program_name.
30173
30174         * modules/rbtree-oset-tests (Depends-on): Add progname.
30175         * tests/test-rbtree_oset.c: Include progname.h.
30176         (main): Call set_program_name.
30177
30178         * modules/rbtree-list-tests (Depends-on): Add progname.
30179         * tests/test-rbtree_list.c: Include progname.h.
30180         (main): Call set_program_name.
30181
30182         * modules/linked-list-tests (Depends-on): Add progname.
30183         * tests/test-linked_list.c: Include progname.h.
30184         (main): Call set_program_name.
30185
30186 2007-03-03  Bruno Haible  <bruno@clisp.org>
30187
30188         * lib/glob-libc.h (_Restrict_): New macro, copied from lib/regex.h.
30189         All uses of __restrict changed to _Restrict_.
30190         * lib/glob_.h (__restrict): Remove macro.
30191
30192 2007-03-02  Bruno Haible  <bruno@clisp.org>
30193
30194         * modules/gettext (configure.ac): Require gettext infrastructure
30195         from version 0.16.1.
30196
30197 2007-03-02  Bruno Haible  <bruno@clisp.org>
30198
30199         * modules/linkedhash-list-tests (Depends-on): Add progname.
30200         * tests/test-linkedhash_list.c: Include progname.h.
30201         (main): Call set_program_name.
30202
30203         * modules/carray-list-tests (Depends-on): Add progname.
30204         * tests/test-carray_list.c: Include progname.h.
30205         (main): Call set_program_name.
30206
30207         * modules/avltreehash-list-tests (Depends-on): Add progname.
30208         * tests/test-avltreehash_list.c: Include progname.h.
30209         (main): Call set_program_name.
30210
30211         * modules/avltree-oset-tests (Depends-on): Add progname.
30212         * tests/test-avltree_oset.c: Include progname.h.
30213         (main): Call set_program_name.
30214
30215         * modules/avltree-list-tests (Depends-on): Add progname.
30216         * tests/test-avltree_list.c: Include progname.h.
30217         (main): Call set_program_name.
30218
30219         * modules/array-oset-tests (Depends-on): Add progname.
30220         * tests/test-array_oset.c: Include progname.h.
30221         (main): Call set_program_name.
30222
30223         * modules/array-list-tests (Depends-on): Add progname.
30224         * tests/test-array_list.c: Include progname.h.
30225         (main): Call set_program_name.
30226
30227         * modules/argp-tests (Depends-on): Add progname.
30228         * tests/test-argp.c: Include argp.h first. Include progname.h.
30229         (main): Call set_program_name.
30230
30231 2007-03-02  Paul Eggert  <eggert@cs.ucla.edu>
30232
30233         * doc/gnulib-tool.texi (Initial import): Reword description of
30234         _FILE_OFFSET_BITS and _GNU_SOURCE, since they sometimes have a
30235         limited effect even if defined after the first system include.
30236
30237 2007-03-01  Bruno Haible  <bruno@clisp.org>
30238
30239         * build-aux/config.libpath: Update to libtool-1.5.22.
30240         Reported by Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
30241
30242 2007-03-01  Bruno Haible  <bruno@clisp.org>
30243
30244         * doc/relocatable-maint.texi: Recommend to set foo_CPPFLAGS, not
30245         foo_CFLAGS.
30246         Reported by Ralf Wildenhues.
30247
30248 2007-03-01  Bruno Haible  <bruno@clisp.org>
30249
30250         * build-aux/install-reloc: Remove object files left over by some
30251         compilers.
30252         Reported by Ralf Wildenhues.
30253
30254 2007-03-01  Bruno Haible  <bruno@clisp.org>
30255
30256         * build-aux/install-reloc: Break long lines.
30257
30258 2007-03-01  Bruno Haible  <bruno@clisp.org>
30259
30260         * doc/relocatable.texi: Document that it may not work on OpenBSD.
30261         Reported by Ralf Wildenhues.
30262
30263 2007-03-01  Bruno Haible  <bruno@clisp.org>
30264
30265         * doc/gnulib-tool.texi (Initial import): Remove paragraph about
30266         include ordering constraints.
30267
30268 2007-03-01  Paul Eggert  <eggert@cs.ucla.edu>
30269
30270         Followup to the 2007-02-12 patch, using suggestions from Bruno Haible in
30271         <http://lists.gnu.org/archive/html/bug-gnulib/2007-02/msg00136.html>.
30272         * doc/gnulib-tool.texi (Initial import): Mention _FILE_OFFSET_BITS
30273         as another example.
30274         * lib/time_.h: Fix misspelling.
30275         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP):
30276         Require gl_HEADER_TIME_H_DEFAULTS.
30277         * m4/strptime.m4 (gl_FUNC_STRPTIME): Likewise.
30278         * m4/time_r.m4 (gl_TIME_R): Likewise.
30279         * m4/timegm.m4 (gl_FUNC_TIMEGM): Likewise.
30280
30281 2007-03-01  Bruno Haible  <bruno@clisp.org>
30282
30283         * m4/utimecmp.m4 (gl_UTIMECMP): Don't require gl_TIMESPEC.
30284         * m4/utimens.m4 (gl_UTIMENS): Likewise.
30285
30286 2007-03-01  Jim Meyering  <jim@meyering.net>
30287
30288         * modules/xreadlink (Maintainer): Add my name.
30289         * modules/xreadlink-with-size (Depends-on): Alphabetize.
30290
30291 2007-02-26  Ben Pfaff  <blp@cs.stanford.edu>
30292             Bruno Haible  <bruno@clisp.org>
30293
30294         * build-aux/install-reloc: Compile also c-ctype.c.
30295         * build-aux/relocatable.sh.in: New file.
30296         * doc/relocatable.texi: New file.
30297         * doc/relocatable-maint.texi: New file.
30298         * doc/gnulib.texi: Include relocatable-maint.texi.
30299         * lib/progreloc.c: Include unistd.h unconditionally.
30300         * lib/relocwrapper.c: Include unistd.h unconditionally.
30301         Include c-ctype.h.
30302         (add_dotbin): Use c_tolower.
30303         * m4/relocatable-lib.m4: New file, extracted from m4/relocatable.m4.
30304         (gl_RELOCATABLE_LIBRARY): Renamed from AC_RELOCATABLE_LIBRARY.
30305         (gl_RELOCATABLE_NOP): Renamed from AC_RELOCATABLE_NOP.
30306         * m4/relocatable.m4 (AC_RELOCATABLE_LIBRARY, AC_RELOCATABLE_NOP): Move
30307         to m4/relocatable-lib.m4.
30308         (gl_RELOCATABLE): Renamed from AC_RELOCATABLE. Set also
30309         RELOCATABLE_CONFIG_H_DIR, RELOCATABLE_SRC_DIR, RELOCATABLE_BUILD_DIR.
30310         (gl_RELOCATABLE_BODY): Renamed from AC_RELOCATABLE_BODY. Don't
30311         require obsolete macro AC_EXEEXT. Don't check for unistd.h. Don't set
30312         SET_RELOCATABLE. Instead set RELOCATABLE_LDFLAGS, INSTALL_PROGRAM_ENV.
30313         * modules/relocatable: New file.
30314         * modules/relocatable-lib: New file.
30315         * modules/relocatable-script: New file.
30316
30317 2007-02-28  Bruno Haible  <bruno@clisp.org>
30318
30319         Import --enable-relocatable infrastructure.
30320         * build-aux/config.libpath: New file, from GNU gettext.
30321         * build-aux/install-reloc: New file, from GNU gettext.
30322         * build-aux/reloc-ldflags: New file, from GNU gettext.
30323         * lib/relocatable.h: New file, from GNU gettext.
30324         * lib/relocatable.c: New file, from GNU gettext.
30325         * lib/relocwrapper.c: New file, from GNU gettext.
30326         * m4/relocatable.m4: New file, from GNU gettext.
30327
30328 2007-02-28  Bruno Haible  <bruno@clisp.org>
30329
30330         * MODULES.html.sh (File system functions): Add xreadlink-with-size.
30331
30332         * modules/xreadlink: New file, from GNU gettext with modifications.
30333         * lib/xreadlink.c: New file, from GNU gettext.
30334         * lib/xreadlink.h: Add comments.
30335         (xreadlink): New declaration.
30336
30337         * modules/xreadlink-with-size: Renamed from modules/xreadlink.
30338         (Files): Remove m4/xreadlink.m4. Replace lib/xreadlink.c with
30339         lib/xreadlink-with-size.c.
30340         (configure.ac): Remove gl_XREADLINK invocation.
30341         (Makefile.am): Augment lib_SOURCES.
30342         * m4/xreadlink.m4: Remove file.
30343         * lib/xreadlink-with-size.c: Renamed from lib/xreadlink.c.
30344         (xreadlink_with_size): Renamed from xreadink.
30345         * lib/xreadlink.h (xreadlink_with_size): Renamed from xreadink.
30346         * modules/canonicalize (Depends-on): Replace xreadlink with
30347         xreadlink-with-size.
30348         * lib/canonicalize.c (canonicalize_filename_mode): Update.
30349
30350 2007-02-25  Jim Meyering  <jim@meyering.net>
30351
30352         * build-aux/announce-gen: When complaining about excess arguments,
30353         list them.
30354
30355 2007-02-25  Paul Eggert  <eggert@cs.ucla.edu>
30356
30357         * README: Document signed integer overflow situation more
30358         accurately.
30359
30360 2007-02-25  Bruno Haible  <bruno@clisp.org>
30361
30362         * lib/vasnprintf.c (VASNPRINTF): Fix estimate of size needed for a
30363         'a' or 'A' conversion.
30364
30365 2007-02-25  Bruno Haible  <bruno@clisp.org>
30366
30367         * modules/filename: Renamed from modules/pathname.
30368         (Files): Replace lib/pathname.h with lib/filename.h. Replace
30369         lib/concatpath.c with lib/concat-filename.c.
30370         (Makefile.am): Update.
30371         (Include): Replace pathname.h with filename.h.
30372         * lib/filename.h: Renamed from lib/pathname.h.
30373         (concatenated_filename): Renamed from concatenated_pathname.
30374         * lib/concat-filename.c: Renamed from lib/concatpath.c.
30375         (concatenated_filename): Renamed from concatenated_pathname.
30376         * lib/findprog.c: Include filename.h instead of pathname.h.
30377         (find_in_path): Update.
30378         * lib/javacomp.c: Include filename.h instead of pathname.h.
30379         (is_envjavac_gcj43_usable, is_envjavac_oldgcj_14_14_usable,
30380         is_envjavac_oldgcj_14_13_usable, is_envjavac_nongcj_usable,
30381         is_gcj_present, is_gcj43_usable, is_oldgcj_14_14_usable,
30382         is_oldgcj_14_13_usable, is_javac_usable): Update.
30383         * lib/javaexec.c: Include filename.h instead of pathname.h.
30384         (execute_java_class): Update.
30385         * modules/findprog: Update.
30386         * modules/javacomp: Update.
30387         * modules/javaexec: Update.
30388         * MODULES.html.sh (File system functions): Add 'filename', remove
30389         'pathname'.
30390
30391 2007-02-25  Bruno Haible  <bruno@clisp.org>
30392
30393         * modules/printf-frexpl-tests: New file.
30394         * tests/test-printf-frexpl.c: New file.
30395
30396         * modules/printf-frexpl: New file.
30397         * lib/printf-frexpl.h: New file.
30398         * lib/printf-frexpl.c: New file.
30399         * m4/printf-frexpl.m4: New file.
30400
30401 2007-02-25  Bruno Haible  <bruno@clisp.org>
30402
30403         * modules/printf-frexp-tests: New file.
30404         * tests/test-printf-frexp.c: New file.
30405
30406         * modules/printf-frexp: New file.
30407         * lib/printf-frexp.h: New file.
30408         * lib/printf-frexp.c: New file.
30409         * m4/printf-frexp.m4: New file.
30410
30411 2007-02-25  Bruno Haible  <bruno@clisp.org>
30412
30413         Assume automake >= 1.10 for the tests.
30414         * modules/arcfour-tests (TESTS): Remove $(EXEEXT) suffix.
30415         * modules/arctwo-tests: Likewise.
30416         * modules/argp-tests: Likewise.
30417         * modules/avltree-list-tests: Likewise.
30418         * modules/avltree-oset-tests: Likewise.
30419         * modules/avltreehash-list-tests: Likewise.
30420         * modules/carray-list-tests: Likewise.
30421         * modules/crc-tests: Likewise.
30422         * modules/des-tests: Likewise.
30423         * modules/gc-arcfour-tests: Likewise.
30424         * modules/gc-arctwo-tests: Likewise.
30425         * modules/gc-des-tests: Likewise.
30426         * modules/gc-hmac-md5-tests: Likewise.
30427         * modules/gc-hmac-sha1-tests: Likewise.
30428         * modules/gc-md2-tests: Likewise.
30429         * modules/gc-md4-tests: Likewise.
30430         * modules/gc-md5-tests: Likewise.
30431         * modules/gc-pbkdf2-sha1-tests: Likewise.
30432         * modules/gc-rijndael-tests: Likewise.
30433         * modules/gc-sha1-tests: Likewise.
30434         * modules/gc-tests: Likewise.
30435         * modules/getaddrinfo-tests: Likewise.
30436         * modules/hmac-md5-tests: Likewise.
30437         * modules/hmac-sha1-tests: Likewise.
30438         * modules/linked-list-tests: Likewise.
30439         * modules/linkedhash-list-tests: Likewise.
30440         * modules/lock-tests: Likewise.
30441         * modules/md2-tests: Likewise.
30442         * modules/md4-tests: Likewise.
30443         * modules/md5-tests: Likewise.
30444         * modules/rbtree-list-tests: Likewise.
30445         * modules/rbtree-oset-tests: Likewise.
30446         * modules/rbtreehash-list-tests: Likewise.
30447         * modules/read-file-tests: Likewise.
30448         * modules/rijndael-tests: Likewise.
30449         * modules/stdint-tests: Likewise.
30450         * modules/tls-tests: Likewise.
30451
30452 2007-02-24  Bruno Haible  <bruno@clisp.org>
30453
30454         * lib/isnanl.h (isnanl): Define through isnan if isnan is a macro.
30455         * m4/isnan.m4 (gl_FUNC_ISNAN_NO_LIBM): Don't check for isnan as a
30456         function; instead check whether isnan with a double argument links.
30457         * m4/isnanl.m4 (gl_FUNC_ISNANL_NO_LIBM): Don't check for isnanl as a
30458         function; instead check whether isnan with a 'long double' argument
30459         links.
30460         Reported by Eric Blake <ebb9@byu.net>.
30461
30462 2007-02-24  Bruno Haible  <bruno@clisp.org>
30463
30464         * lib/isnan.c: Support the 'long double' case if USE_LONG_DOUBLE is
30465         defined.
30466         * lib/isnanl.c: Remove all code. Just include isnan.c.
30467         * modules/isnanl-nolibm (Files): Add lib/isnan.c.
30468
30469 2007-02-25  Jim Meyering  <jim@meyering.net>
30470
30471         Avoid conflicting types for 'unsetenv' on FreeBSD.
30472         * lib/putenv.c (_unsetenv): Rename from "unsetenv", to avoid
30473         conflicting with FreeBSD's (5.0 and 6.1) function declaration
30474         in stdlib.h.
30475
30476 2007-02-24  Bruno Haible  <bruno@clisp.org>
30477
30478         * modules/isnanl-nolibm-tests: New file.
30479         * tests/test-isnanl.c: New file.
30480
30481         * modules/isnanl-nolibm: New file.
30482         * lib/isnanl.h: New file.
30483         * lib/isnanl.c: New file.
30484         * m4/isnanl.m4: New file.
30485
30486 2007-02-24  Bruno Haible  <bruno@clisp.org>
30487
30488         * modules/isnan-nolibm-tests: New file.
30489         * tests/test-isnan.c: New file.
30490
30491         * modules/isnan-nolibm: New file.
30492         * lib/isnan.h: New file.
30493         * lib/isnan.c: New file.
30494         * m4/isnan.m4: New file.
30495
30496 2007-02-24  Bruno Haible  <bruno@clisp.org>
30497
30498         * lib/frexpl.c (frexpl): Correct return values for x = 1.0L. Don't
30499         assume that an exponent fits in 20 bits.
30500
30501 2007-02-24  Jim Meyering  <jim@meyering.net>
30502
30503         * m4/regex.m4: Update the description of the configure-time option,
30504         --without-included-regex, to state accurately what the defaults are,
30505         and perhaps to give people an idea why using this option is risky.
30506
30507 2007-02-24  Paul Eggert  <eggert@cs.ucla.edu>
30508
30509         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Check for a nanosleep that
30510         loops on small arguments.  This attempts to avoid the problem
30511         Bruno Haible reported for AIX 4.3.2 in
30512         <http://lists.gnu.org/archive/html/bug-gnulib/2007-02/msg00309.html>.
30513
30514 2007-02-23  Bruno Haible  <bruno@clisp.org>
30515
30516         * m4/perl.m4 (gl_PERL): Require version 5.005, not 5.003.
30517         Needed for help2man.
30518
30519 2007-02-23  Karl Berry  <karl@gnu.org>
30520
30521         * doc/gnulib-tool.texi (CVS Issues): mention that when foo_.h
30522         exists, foo.h should be cvs-ignored, not committed.
30523
30524 2007-02-23  Eric Blake  <ebb9@byu.net>
30525
30526         * lib/getdate.h (includes):  Include <time.h>, not "timespec.h".
30527         * lib/stat-time.h (includes): Likewise.
30528         * lib/utimecmp.c (includes): Likewise.
30529         * lib/utimens.h (includes): Likewise.
30530         * lib/getdate.y (includes): Also include "timespec.h" for use
30531         internal to the module.
30532         * modules/utimens (Depends-on): Revert yesterday's patch.
30533         * modules/nanosleep (Depends-on): Add missing dependency.
30534
30535 2007-02-22  Bruno Haible  <bruno@clisp.org>
30536
30537         * lib/glob.c: Don't include getlogin_r.h.
30538
30539 2007-02-22  Jim Meyering  <jim@meyering.net>
30540
30541         * modules/utimens (Depends-on): Add timespec, required for
30542         utimens.h's inclusion of timespec.h.
30543
30544 2007-02-21  Paul Eggert  <eggert@cs.ucla.edu>
30545
30546         * lib/getcwd.c (__getcwd): Undo previous change; it mishandled
30547         long unreadable paths in GNU/Linux.  Problem reported by Andreas
30548         Schwab in
30549         <http://lists.gnu.org/archive/html/bug-gnulib/2007-02/msg00261.html>.
30550         I'll try to think of a better way to fix the Solaris problem.
30551
30552         * lib/getcwd.c (__getcwd): Don't assume getcwd (NULL, 0) works
30553         like glibc; on Solaris 10, it fails with errno == EINVAL.
30554         POSIX says the behavior is unspecified if the first argument is NULL,
30555         so play it safe and never pass NULL to the system getcwd.
30556
30557 2007-02-21  Jim Meyering  <jim@meyering.net>
30558
30559         * lib/gettimeofday.c (rpl_gettimeofday): Remove declaration
30560         of gettimeofday.  It would conflict with the one now always
30561         provided via sys_time_.h.  Reported by Matthew Woehlke, as
30562         an IRIX 6.5 build failure.
30563
30564 2007-02-20  Paul Eggert  <eggert@cs.ucla.edu>
30565
30566         Minor fixups to port to Solaris 10 with Sun C 5.8.
30567         * lib/getcwd.c [!_LIBC]: Include dirfd.h, since we use dirfd.
30568         * modules/getcwd (Depends-on): Add dirfd.
30569         * lib/putenv.c (putenv): #undef it.
30570         (rpl_putenv): New decl.
30571         (malloc, free): Include <stdlib.h> rather than prototyping separately.
30572
30573 2007-02-20  Bruno Haible  <bruno@clisp.org>
30574
30575         * modules/stdio-tests: New file.
30576         * tests/test-stdio.c: New file.
30577
30578         * modules/vsnprintf (Files): Remove lib/vsnprintf.h.
30579         (Depends-on): Add stdio.
30580         (configure.ac): Invoke gl_STDIO_MODULE_INDICATOR.
30581         (Include): Use <stdio.h> instead of vsnprintf.h.
30582         * m4/vsnprintf.m4 (gl_FUNC_VSNPRINTF): Require gl_STDIO_H_DEFAULTS. Set
30583         HAVE_DECL_VSNPRINTF.
30584         * lib/vsnprintf.c: Include <stdio.h> instead of vsnprintf.h.
30585
30586         * modules/snprintf (Files): Remove lib/snprintf.h.
30587         (Depends-on): Add stdio.
30588         (configure.ac): Invoke gl_STDIO_MODULE_INDICATOR.
30589         (Include): Use <stdio.h> instead of snprintf.h.
30590         * m4/snprintf.m4 (gl_FUNC_SNPRINTF): Require gl_STDIO_H_DEFAULTS. Set
30591         HAVE_DECL_SNPRINTF.
30592         * lib/snprintf.c: Include <stdio.h> instead of snprintf.h.
30593         * lib/getaddrinfo.c: Likewise.
30594
30595         * modules/stdio: New file.
30596         * lib/stdio_.h: New file, incorporating snprintf.h and vsnprintf.h.
30597         * lib/snprintf.h: Remove file.
30598         * lib/vsnprintf.h: Remove file.
30599         * lib/.cppi-disable: Remove snprintf.h.
30600         * m4/stdio_h.m4: New file.
30601         * MODULES.html.sh (Support for systems lacking ISO C 99): Add stdio.
30602
30603 2007-02-20  Jim Meyering  <jim@meyering.net>
30604
30605         * lib/ftruncate.c [HAVE_CHSIZE]: Document that this code is
30606         used by e.g., mingw.  From Bruno Haible.
30607
30608 2007-02-19  Bruno Haible  <bruno@clisp.org>
30609
30610         * lib/string_.h: Use "#pragma GCC system_header" to suppress some gcc
30611         warnings.
30612         Reported by Ben Pfaff <blp@cs.stanford.edu>.
30613
30614 2007-02-19  Bruno Haible  <bruno@clisp.org>
30615
30616         * m4/ftruncate.m4 (gl_FUNC_FTRUNCATE): Don't request a complaint mail
30617         from mingw users.
30618
30619 2007-02-19  Bruno Haible  <bruno@clisp.org>
30620
30621         * lib/stdlib_.h: Use "#pragma GCC system_header" to suppress some gcc
30622         warnings.
30623         Reported by Joel E. Denny <jdenny@ces.clemson.edu> via Paul Eggert.
30624
30625 2007-02-19  Jim Meyering  <jim@meyering.net>
30626
30627         Don't use FD after a successful "fdopendir (fd)".
30628         * lib/getcwd.c (__getcwd) [AT_FDCWD]: fdopendir (fd) usually closes fd.
30629         Reset it by calling dirfd on the just-obtained DIR*.
30630
30631         * m4/ftruncate.m4: Adjust comment to give this module a 3-year reprieve.
30632         Prompted by a report from Bruno Haible that mingw lacks ftruncate.
30633
30634 2007-02-18  Bruno Haible  <bruno@clisp.org>
30635
30636         * lib/readlink.c: Include <unistd.h>.
30637         * m4/readlink.m4 (gl_FUNC_READLINK): Require gl_UNISTD_H_DEFAULTS. Set
30638         HAVE_READLINK.
30639         * modules/readlink (Depends-on): Add unistd.
30640         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
30641         (Include): Add <unistd.h>.
30642
30643         * lib/getlogin_r.h: Remove file.
30644         * lib/getlogin_r.c: Include <unistd.h> instead of getlogin_r.h.
30645         * m4/getlogin_r.m4 (gl_GETLOGIN_R_SUBSTITUTE): Remove macro.
30646         (gl_GETLOGIN_R): Inline it here. Require gl_UNISTD_H_DEFAULTS. Set
30647         HAVE_DECL_GETLOGIN_R.
30648         * modules/getlogin_r (Files): Remove lib/getlogin_r.h.
30649         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
30650         (Include): Use <unistd.h> instead of getlogin_r.h.
30651
30652         * lib/getcwd.h: Remove file.
30653         * lib/getcwd.c: Include <unistd.h> instead of getcwd.h.
30654         * lib/xgetcwd.c: Likewise.
30655         * m4/getcwd.m4 (gl_FUNC_GETCWD): Require gl_UNISTD_H_DEFAULTS. Set
30656         REPLACE_GETCWD. Don't define __GETCWD_PREFIX.
30657         * modules/getcwd (Files): Remove lib/getcwd.h.
30658         (Depends-on): Add unistd.
30659         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
30660         (Include): Use <unistd.h> instad of getcwd.h.
30661
30662         * lib/ftruncate.c: Include <unistd.h> first.
30663         * m4/ftruncate.m4 (gl_FUNC_FTRUNCATE): Require gl_UNISTD_H_DEFAULTS.
30664         Set HAVE_FTRUNCATE.
30665         * modules/ftruncate (Depends-on): Add unistd.
30666         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
30667
30668         * lib/fchdir.c: Include <unistd.h> first.
30669         * lib/dirent_.h: Test REPLACE_FCHDIR, not FCHDIR_REPLACEMENT.
30670         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Require gl_UNISTD_H_DEFAULTS instead
30671         of gl_HEADER_UNISTD_DEFAULTS. Set REPLACE_FCHDIR. Don't set UNISTD_H.
30672         * modules/fchdir (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
30673         (Makefile.am): Substitute also REPLACE_FCHDIR into dirent.h.
30674
30675         * lib/dup2.c: Include <unistd.h> first.
30676         * m4/dup2.m4 (gl_FUNC_DUP2): Require gl_UNISTD_H_DEFAULTS. Set
30677         HAVE_DUP2.
30678         * modules/dup2 (Depends-on): Add unistd.
30679         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
30680
30681         * lib/chown.c: Include <unistd.h> first. Undefine chown later.
30682         * m4/chown.m4 (gl_FUNC_CHOWN): Require gl_UNISTD_H_DEFAULTS. Set
30683         REPLACE_CHOWN. Don't define chown as a macro here.
30684         * modules/chown (Depends-on): Add unistd.
30685         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
30686
30687         * lib/unistd_.h: Test HAVE_UNISTD_H determined at configure time.
30688         Add definition for GL_LINK_WARNING.
30689         (chown, dup2): New declarations.
30690         (fchdir): Test REPLACE_FCHDIR, not FCHDIR_REPLACEMENT. Provide optional
30691         link warning.
30692         (ftruncate): New declaration.
30693         (getcwd): New declaration, taken from old getcwd.h.
30694         (getlogin_r): New declaration, taken from old getlogin_r.h.
30695         (readlink): New declaration.
30696         * m4/unistd_h.m4 (gl_UNISTD_H): Renamed from gl_HEADER_UNISTD. Don't
30697         set UNISTD_H. Inline gl_PREREQ_UNISTD. Set HAVE_UNISTD_H.
30698         (gl_PREREQ_UNISTD): Remove macro.
30699         (gl_UNISTD_MODULE_INDICATOR): New macro.
30700         (gl_UNISTD_H_DEFAULTS): Renamed from gl_HEADER_UNISTD_DEFAULTS. Set
30701         many new variables. Don't set UNISTD_H.
30702         * modules/unistd (Description): Change.
30703         (Depends-on): Add link-warning.
30704         (configure.ac): Update.
30705         (Makefile.am): Create unistd.h always. Substitute many new variables
30706         into it.
30707
30708 2007-02-18  Bruno Haible  <bruno@clisp.org>
30709
30710         * lib/stdlib_.h (getsubopt): New declaration, copied from getsubopt.h.
30711         * modules/stdlib (stdlib.h): Also substitute GNULIB_GETSUBOPT and
30712         HAVE_GETSUBOPT.
30713         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Also initialize
30714         GNULIB_GETSUBOPT and HAVE_GETSUBOPT.
30715         * lib/getsubopt.h: Remove file.
30716         * modules/getsubopt (Files): Remove lib/getsubopt.h.
30717         (Depends-on): Add stdlib.
30718         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
30719         (Includes): Use <stdlib.h> instead of getsubopt.h.
30720         * m4/getsubopt.m4 (gl_FUNC_GETSUBOPT): Require gl_STDLIB_H_DEFAULTS.
30721         Set HAVE_GETSUBOPT.
30722         * lib/getsubopt.c: Don't include getsubopt.h.
30723
30724 2007-02-18  Bruno Haible  <bruno@clisp.org>
30725
30726         * modules/fchdir (Depends-on): Add dup2.
30727
30728 2007-02-18  Bruno Haible  <bruno@clisp.org>
30729
30730         * lib/stdlib_.h: Handle glibc's special invocation convention
30731         specially.
30732
30733 2007-02-18  Bruno Haible  <bruno@clisp.org>
30734
30735         * modules/stdlib-tests: New file.
30736         * tests/test-stdlib.c: New file.
30737
30738         * modules/mkstemp (Files): Remove lib/mkstemp.h.
30739         (Depends-on): Add stdlib.
30740         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
30741         (Includes): Use <stdlib.h> instead of mkstemp.h.
30742         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Require gl_STDLIB_H_DEFAULTS. Set
30743         REPLACE_MKSTEMP. Remove definition of __MKSTEMP_PREFIX.
30744         * lib/mkstemp.c: Don't include mkstemp.h.
30745         * lib/mkstemp-safer.c: Include <stdlib.h> instead of mkstemp.h.
30746         * lib/stdlib--.h: Don't include mkstemp.h.
30747
30748         * modules/mkdtemp (Files): Remove lib/mkdtemp.h.
30749         (Depends-on): Add stdlib.
30750         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
30751         (Includes): Use <stdlib.h> instead of mkdtemp.h.
30752         * m4/mkdtemp.m4 (gt_FUNC_MKDTEMP): Require gl_STDLIB_H_DEFAULTS. Set
30753         HAVE_MKDTEMP.
30754         * lib/mkdtemp.c: Don't include mkdtemp.h.
30755         * lib/clean-temp.c: Don't include mkdtemp.h.
30756
30757         * modules/exit (Files): Remove lib/exit.h.
30758         (Depends-on): Add stdlib.
30759         (Makefile.am): Remove lib_SOURCES.
30760         (Include): Use <stdlib.h> instead of exit.h.
30761         * lib/argmatch.c: Don't include exit.h.
30762         * lib/execute.c: Likewise.
30763         * lib/pagealign_alloc.c: Likewise.
30764         * lib/pipe.c: Likewise.
30765         * lib/wait-process.c: Likewise.
30766         * lib/copy-file.c: Include <stdlib.h> instead of exit.h.
30767         * lib/exitfail.c: Likewise.
30768         * lib/savewd.c: Likewise.
30769         * lib/xsetenv.c: Likewise.
30770
30771         * modules/stdlib: New file.
30772         * lib/stdlib_.h: New file, incorporating exit.h, mkdtemp.h, mkstemp.h
30773         and extra comments about mkstemp().
30774         * lib/exit.h: Remove file.
30775         * lib/mkdtemp.h: Remove file.
30776         * lib/mkstemp.h: Remove file.
30777         * m4/stdlib_h.m4: New file.
30778         * MODULES.html.sh (Support for systems lacking ANSI C 89): Add stdlib.
30779
30780 2007-02-18  Bruno Haible  <bruno@clisp.org>
30781
30782         * modules/math-tests: New file.
30783         * tests/test-math.c: New file.
30784
30785         * modules/math: New file.
30786         * modules/mathl (Files): Remove lib/mathl.h.
30787         (Depends-on): Add math.
30788         (Makefile.am): Don't mention mathl.h.
30789         (Include): Use <math.h> instead of mathl.h.
30790         * lib/math_.h: New file.
30791         * lib/mathl.h: Remove file.
30792         * lib/acosl.c: Include <config.h> and <math.h> first. Don't include
30793         mathl.h.
30794         * lib/asinl.c: Likewise.
30795         * lib/atanl.c: Likewise.
30796         * lib/ceill.c: Likewise.
30797         * lib/cosl.c: Likewise.
30798         * lib/expl.c: Likewise.
30799         * lib/floorl.c: Likewise.
30800         * lib/frexpl.c: Likewise.
30801         * lib/ldexpl.c: Likewise.
30802         * lib/logl.c: Likewise.
30803         * lib/sincosl.c: Likewise.
30804         * lib/sinl.c: Likewise.
30805         * lib/sqrtl.c: Likewise.
30806         * lib/tanl.c: Likewise.
30807         * lib/trigl.c: Likewise.
30808         * m4/math_h.m4: New file.
30809         * MODULES.html.sh (Mathematics): Add math.
30810
30811 2007-02-17  Bruno Haible  <bruno@clisp.org>
30812
30813         * modules/wctype-tests: New file.
30814         * tests/test-wctype.c: New file.
30815
30816         * modules/wchar-tests: New file.
30817         * tests/test-wchar.c: New file.
30818
30819         * modules/unistd-tests: New file.
30820         * tests/test-unistd.c: New file.
30821
30822         * modules/time-tests: New file.
30823         * tests/test-time.c: New file.
30824
30825         * modules/sysexits-tests: New file.
30826         * tests/test-sysexits.c: New file.
30827
30828         * modules/sys_time-tests: New file.
30829         * tests/test-sys_time.c: New file.
30830
30831         * modules/sys_stat-tests: New file.
30832         * tests/test-sys_stat.c: New file.
30833
30834         * modules/sys_socket-tests: New file.
30835         * tests/test-sys_socket.c: New file.
30836
30837         * modules/sys_select-tests: New file.
30838         * tests/test-sys_select.c: New file.
30839
30840         * modules/string-tests: New file.
30841         * tests/test-string.c: New file.
30842
30843         * modules/stdbool-tests: New file.
30844         * tests/test-stdbool.c: New file.
30845
30846         * modules/netinet_in-tests: New file.
30847         * tests/test-netinet_in.c: New file.
30848
30849         * modules/inttypes-tests: New file.
30850         * tests/test-inttypes.c: New file.
30851
30852         * modules/fcntl-tests: New file.
30853         * tests/test-fcntl.c: New file.
30854
30855         * modules/byteswap-tests: New file.
30856         * tests/test-byteswap.c: New file.
30857
30858         * modules/arpa_inet-tests: New file.
30859         * tests/test-arpa_inet.c: New file.
30860
30861 2007-02-17  Bruno Haible  <bruno@clisp.org>
30862
30863         * lib/inttypes_.h: Add definition for GL_LINK_WARNING.
30864         (imaxabs, imaxdiv, strtoimax, strtoumax): Don't declare the function
30865         if the corresponding module is not enabled. Emit link warnings if
30866         the function is used nevertheless.
30867         * m4/inttypes.m4 (gl_INTTYPES_H): Never use the existing <inttypes.h>.
30868         Don't AC_SUBST HAVE_DECL_IMAXABS, HAVE_DECL_IMAXDIV,
30869         HAVE_DECL_STRTOIMAX, HAVE_DECL_STRTOUMAX.
30870         (gl_INTTYPES_MODULE_INDICATOR, gl_INTTYPES_H_DEFAULTS): New macros.
30871         * modules/inttypes (Depends-on): Add link-warning.
30872         (Makefile.am): Copy the contents of build-aux/link-warning.h into
30873         inttypes.h. Substitute also GNULIB_IMAXABS, GNULIB_IMAXDIV,
30874         GNULIB_STRTOIMAX, GNULIB_STRTOUMAX.
30875         * modules/imaxabs (configure.ac): Invoke gl_INTTYPES_MODULE_INDICATOR.
30876         * modules/imaxdiv (configure.ac): Likewise.
30877         * modules/strtoimax (configure.ac): Likewise.
30878         * modules/strtoumax (configure.ac): Likewise.
30879
30880 2007-02-17  Bruno Haible  <bruno@clisp.org>
30881
30882         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Include the contents of
30883         gl_STRING_MODULE_INDICATOR_DEFAULTS.
30884         (gl_STRING_MODULE_INDICATOR_DEFAULTS): Remove macro.
30885         (gl_HEADER_STRING_H_BODY, gl_STRING_MODULE_INDICATOR): Update.
30886
30887 2007-02-17  Bruno Haible  <bruno@clisp.org>
30888
30889         * modules/link-warning: New file.
30890         * build-aux/link-warning.h: New file, extracted from lib/string_.h.
30891         * lib/string_.h (GL_LINK_WARNING): Remove definition.
30892         * modules/string (Depends-on): Add link-warning.
30893         (Makefile.am): Copy the contents of build-aux/link-warning.h into
30894         string.h.
30895         * MODULES.html.sh (Support for building libraries and executables): Add
30896         link-warning.
30897
30898 2007-02-17  Bruno Haible  <bruno@clisp.org>
30899
30900         * lib/string_.h (memmem, mempcpy, memrchr, stpcpy, stpncpy, strcasecmp,
30901         strncasecmp, strchr, strchrnul, strdup, strndup, strnlen, strcspn,
30902         strpbrk, strspn, strrchr, strsep, strstr, strcasestr, strtok_r): Break
30903         long lines.
30904
30905 2007-02-17  Ben Pfaff  <blp@cs.stanford.edu>
30906             Bruno Haible  <bruno@clisp.org>
30907
30908         * modules/tmpfile: New file.
30909         * lib/tmpfile.c: New file.
30910         * m4/tmpfile.m4: New file.
30911         * MODULES.html.sh (func_all_modules): New section "Input/output".
30912
30913 2007-02-15  Bruno Haible  <bruno@clisp.org>
30914
30915         * lib/clean-temp.c [WIN32 && !CYGWIN]: Include <windows.h>.
30916         (supports_delete_on_close): New function.
30917         (open_temp, fopen_temp): Use _O_TEMPORARY when supported.
30918
30919 2007-02-14  Bruno Haible  <bruno@clisp.org>
30920
30921         * modules/mbspcasecmp-tests: New file.
30922         * tests/test-mbspcasecmp.sh: New file.
30923         * tests/test-mbspcasecmp.c: New file.
30924
30925         New module mbspcasecmp.
30926         * modules/mbspcasecmp: New file.
30927         * lib/mbspcasecmp.c: New file.
30928         * lib/string_.h (strncasecmp): Change warning message.
30929         (mbspcasecmp): New declaration.
30930         * m4/mbspcasecmp.m4: New file.
30931         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
30932         GNULIB_MBSPCASECMP.
30933         * modules/string (string.h): Also substitute GNULIB_MBSPCASECMP.
30934         * MODULES.html.sh (Internationalization functions): Add mbspcasecmp.
30935
30936 2007-02-14  Bruno Haible  <bruno@clisp.org>
30937
30938         * modules/mbsncasecmp-tests: New file.
30939         * tests/test-mbsncasecmp.sh: New file.
30940         * tests/test-mbsncasecmp.c: New file.
30941
30942         New module mbsncasecmp.
30943         * modules/mbsncasecmp: New file.
30944         * lib/mbsncasecmp.c: New file.
30945         * lib/string_.h (mbsncasecmp): New declaration.
30946         * m4/mbsncasecmp.m4: New file.
30947         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
30948         GNULIB_MBSNCASECMP.
30949         * modules/string (string.h): Also substitute GNULIB_MBSNCASECMP.
30950         * MODULES.html.sh (Internationalization functions): Add mbsncasecmp.
30951
30952 2007-02-14  Paul Eggert  <eggert@cs.ucla.edu>
30953
30954         * lib/exclude.c (FNM_EXTMATCH): Define if system does not.
30955         Verify that it doesn't overlap with our flags.
30956         (fnmatch_no_wildcards): Don't use strcasecmp or strncasecmp, which
30957         do not have the desired effect in multibyte locales; instead, use
30958         mbscasecmp.
30959         * modules/exclude (Depends-on): Depend on mbscasecmp, not strcase.
30960         Add dependency on xalloc.  Depend on fnmatch, not fnmatch-gnu, since
30961         we don't require GNU fnmatch ourselves (if our users require it, they
30962         should do so explicitly).
30963
30964         Fix regex code so it doesn't rely on strcasecmp.
30965         * lib/regex_internal.h: Include <langinfo.h> only if _LIBC is defined.
30966         Otherwise, include gnulib's langinfo.h.
30967         * lib/regcomp.c (init_dfa): Don't use strcasecmp, as it can have
30968         undesirable behavior in non-C locales.  Instead, rely on localecharset.
30969         * m4/regex.m4 (gl_PREREQ_REGEX): Don't require AM_LANGINFO_CODESET.
30970         * modules/regex (FILES): Remove m4/codeset.m4.
30971         (Depends-on): Add localcharset.  Remove strcase.
30972
30973 2007-02-13  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
30974
30975         * m4/unlinkdir.m4 (gl_UNLINKDIR): Fix m4 quoting bug.
30976         * m4/unlink-busy.m4 (gl_FUNC_UNLINK_BUSY_TEXT): Likewise.
30977
30978 2007-02-13  Bruno Haible  <bruno@clisp.org>
30979
30980         * m4/intdiv0.m4 (gt_INTDIV0): Assume ANSI C. Fix underquoting bug.
30981         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
30982
30983 2007-02-12  Bruno Haible  <bruno@clisp.org>
30984
30985         * lib/string_.h (memmem, mempcpy, memrchr, stpcpy, stpncpy, strchrnul,
30986         strdup, strndup, strnlen, strpbrk, strsep, strtok_r): If
30987         GNULIB_POSIXCHECK and the gnulib module not enabled, provoke a link-
30988         time warning rather than a link error.
30989
30990 2007-02-12  Bruno Haible  <bruno@clisp.org>
30991
30992         * m4/locale-fr.m4 (gt_LOCALE_FR): Fix m4 quoting bug.
30993         * m4/locale-zh.m4 (gt_LOCALE_ZH_CN): Likewise.
30994         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
30995
30996 2007-02-12  Paul Eggert  <eggert@cs.ucla.edu>
30997
30998         * lib/string_.h (strncasecmp): Fix typo: this macro takes 3
30999         args, not 2.
31000
31001 2007-02-12  Paul Eggert  <eggert@cs.ucla.edu>
31002
31003         New module 'time', so that apps can include <time.h> as per
31004         POSIX and GNU instead of separate include files like time_r.h
31005         and timegm.h.  This implementation tries out a simpler approach
31006         for replacing decls in standard include files (as compared to
31007         the string module), somewhat as an experiment.
31008
31009         * config/srclist.txt: Comment out mktime.c for now.
31010         * doc/gnulib-tool.texi (Initial import): Don't use time_r as an example
31011         since it doesn't apply any more.  Use generic wording instead.
31012         * MODULES.html.sh (Support for systems lacking POSIX:2001): New module
31013         'time'.
31014         * lib/time_.h, m4/time_h.m4, modules/time: New files.
31015         * lib/strptime.h, lib/time_r.h, lib/timegm.h: Remove.
31016         * lib/mktime.c: Include config.h depending on _LIBC, not HAVE_CONFIG_H.
31017         Don't include <sys/types.h>; no longer needed since we assume C89.
31018         * lib/mktime.c: Don't include "time_r.h"; no longer needed.
31019         * lib/strftime.c: Likewise.
31020         * lib/time_r.c: Likewise.
31021         * lib/nanosleep.c (nanosleep): #undef after include files, not before.
31022         * lib/nanosleep.c: Include <time.h> first, to check interface.
31023         * lib/strptime.c: Likewise.
31024         * lib/time_r.c: Likewise.
31025         * lib/timegm.c: Likewise.
31026         * lib/strptime.c: Don't include strptime.h or time_r.h; no longer
31027         needed.
31028         * lib/timegm.c: Don't include timegm.h; no longer needed.
31029         * lib/timespec.h: Don't include <sys/time.h> before <time.h>;
31030         time.h now handles any problems in that area.
31031         (struct timespec, nanosleep): Remove; time.h now arranges for these.
31032         * lib/xnanosleep.c: Don't include timespec.h; no longer needed now
31033         that time.h defines struct timespec.
31034         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Check that nanosleep is declared.
31035         Set REPLACE_NANOSLEEP.  Don't AC_DEFINE nanosleep; the time module now
31036         handles that.
31037         * m4/strptime.m4 (gl_FUNC_STPRTIME): Set REPLACE_STRPTIME.
31038         * m4/time_r.m4 (gl_TIME_R): Don't define HAVE_TIME_R_POSIX; no longer
31039         needed.  Set REPLACE_LOCALTIME.
31040         * m4/timegm.m4 (gl_FUNC_TIMEGM): Set REPLACE_TIMEGM.
31041         * m4/timespec.m4 (gl_CHECK_TYPE_STRUCT_TIMESPEC): Move to time_h.m4.
31042         (gl_TIMESPEC): Don't check for sys/time.h or struct timespec or
31043         nanosleep; time_h.m4 now does that.  Don't require
31044         gl_USE_SYSTEM_EXTENSIONS; no longer needed directly, and the time
31045         module handles this now.
31046         * modules/getdate (Depends-on): Remove timespec.  Add time.
31047         * modules/nanosleep (Depends-on): Likewise.
31048         * modules/stat-time (Depends-on): Likewise.
31049         * modules/nanosleep (Include): Include time.h, not timespec.h.
31050         * modules/strptime (Files): Remove lib/strptime.h.
31051         (Depends-on): Add extensions, time.
31052         (Include): Include time.h, not strptime.h.
31053         * modules/time_r (Files): Remove lib/time_r.h.
31054         (Depends-on): Add time.
31055         (Include): Include time.h, not time_r.h.
31056         * modules/timegm: Likewise.
31057         * modules/timespec (Description): Now does timespec-related decls
31058         of our own, instead of struct timespec itself.
31059         (Depends-on): Add time; remove extensions.
31060         (Maintainer): Add self.
31061         * modules/utimecmp (Depends-on): Add time; remove timespec.
31062         * modules/utimens (Depends-on): Likewise.
31063         * modules/xnanosleep (Depends-on): Likewise.
31064
31065 2007-02-11  Bruno Haible  <bruno@clisp.org>
31066
31067         * lib/c-strstr.c: Include allocsa.h.
31068         (knuth_morris_pratt): Use allocsa/freesa instead of malloc/free.
31069         * lib/c-strcasestr.c: Include allocsa.h.
31070         (knuth_morris_pratt): Use allocsa/freesa instead of malloc/free.
31071         * lib/strcasestr.c: Include allocsa.h.
31072         (knuth_morris_pratt): Use allocsa/freesa instead of malloc/free.
31073         * lib/mbsstr.c: Include allocsa.h.
31074         (knuth_morris_pratt_unibyte, knuth_morris_pratt_multibyte): Use
31075         allocsa/freesa instead of malloc/free.
31076         * lib/mbscasestr.c: Include allocsa.h.
31077         (knuth_morris_pratt_unibyte, knuth_morris_pratt_multibyte): Use
31078         allocsa/freesa instead of malloc/free.
31079         * modules/c-strstr (Depends-on): Add allocsa.
31080         * modules/c-strcasestr (Depends-on): Likewise.
31081         * modules/strcasestr (Depends-on): Likewise.
31082         * modules/mbsstr (Depends-on): Likewise.
31083         * modules/mbscasestr (Depends-on): Likewise.
31084
31085 2007-02-11  Bruno Haible  <bruno@clisp.org>
31086
31087         * lib/mbsspn.c (mbsspn): Fix bug. Remove unnecessary strlen call.
31088
31089         * modules/mbsspn-tests: New file.
31090         * tests/test-mbsspn.sh: New file.
31091         * tests/test-mbsspn.c: New file.
31092
31093 2007-02-11  Bruno Haible  <bruno@clisp.org>
31094
31095         * lib/mbspbrk.c (mbspbrk): Remove unneeded cast.
31096
31097         * modules/mbspbrk-tests: New file.
31098         * tests/test-mbspbrk.sh: New file.
31099         * tests/test-mbspbrk.c: New file.
31100
31101 2007-02-11  Bruno Haible  <bruno@clisp.org>
31102
31103         * lib/mbscspn.c (mbscspn): Remove unnecessary strlen call and
31104         unneeded cast.
31105
31106         * modules/mbscspn-tests: New file.
31107         * tests/test-mbscspn.sh: New file.
31108         * tests/test-mbscspn.c: New file.
31109
31110 2007-02-11  Bruno Haible  <bruno@clisp.org>
31111
31112         * modules/mbscasecmp-tests: New file.
31113         * tests/test-mbscasecmp.sh: New file.
31114         * tests/test-mbscasecmp.c: New file.
31115
31116 2007-02-11  Bruno Haible  <bruno@clisp.org>
31117
31118         Ensure O(n) worst-case complexity of mbscasestr.
31119         * lib/mbscasestr.c: Include stdbool.h.
31120         (knuth_morris_pratt_unibyte, knuth_morris_pratt_multibyte): New
31121         functions.
31122         (mbscasestr): Add some bookkeeping. Invoke knuth_morris_pratt_* when
31123         the bookkeeping indicates that it's worth it.
31124         * modules/mbscasestr (Depends-on): Add stdbool, mbslen, strnlen.
31125
31126         * modules/mbscasestr-tests: New file.
31127         * tests/test-mbscasestr1.c: New file.
31128         * tests/test-mbscasestr2.sh: New file.
31129         * tests/test-mbscasestr2.c: New file.
31130         * tests/test-mbscasestr3.sh: New file.
31131         * tests/test-mbscasestr3.c: New file.
31132         * tests/test-mbscasestr4.sh: New file.
31133         * tests/test-mbscasestr4.c: New file.
31134         * m4/locale-tr.m4: New file.
31135
31136 2007-02-11  Bruno Haible  <bruno@clisp.org>
31137
31138         Ensure O(n) worst-case complexity of mbsstr.
31139         * lib/mbsstr.c: Include stdbool.h.
31140         (knuth_morris_pratt_unibyte, knuth_morris_pratt_multibyte): New
31141         functions.
31142         (mbsstr): Add some bookkeeping. Invoke knuth_morris_pratt_* when the
31143         bookkeeping indicates that it's worth it.
31144         * modules/mbsstr (Depends-on): Add stdbool, mbslen, strnlen.
31145
31146         * modules/mbsstr-tests: New file.
31147         * tests/test-mbsstr1.c: New file.
31148         * tests/test-mbsstr2.sh: New file.
31149         * tests/test-mbsstr2.c: New file.
31150         * tests/test-mbsstr3.sh: New file.
31151         * tests/test-mbsstr3.c: New file.
31152         * m4/locale-fr.m4: New file.
31153
31154 2007-02-11  Bruno Haible  <bruno@clisp.org>
31155
31156         * lib/mbsrchr.c (mbsrchr): Fix bug.
31157
31158         * modules/mbsrchr-tests: New file.
31159         * tests/test-mbsrchr.sh: New file.
31160         * tests/test-mbsrchr.c: New file.
31161
31162 2007-02-11  Bruno Haible  <bruno@clisp.org>
31163
31164         * lib/mbschr.c (mbschr): Fix bug.
31165
31166         * modules/mbschr-tests: New file.
31167         * tests/test-mbschr.sh: New file.
31168         * tests/test-mbschr.c: New file.
31169         * m4/locale-zh.m4: New file.
31170
31171 2007-02-11  Bruno Haible  <bruno@clisp.org>
31172
31173         Support for copying multibyte string iterators.
31174         * lib/mbiter.h: Include <string.h>.
31175         (mbiter_multi_copy): New function.
31176         (mbi_copy): New macro.
31177         * lib/mbuiter.h: Include <string.h>.
31178         (mbuiter_multi_copy): New function.
31179         (mbui_copy): New macro.
31180
31181 2007-02-11  Bruno Haible  <bruno@clisp.org>
31182
31183         New module mbslen.
31184         * modules/mbslen: New file.
31185         * lib/mbslen.c: New file.
31186         * lib/string_.h (mbslen): New declaration.
31187         * m4/mbslen.m4: New file.
31188         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
31189         GNULIB_MBSLEN.
31190         * modules/string (string.h): Also substitute GNULIB_MBSLEN.
31191         * MODULES.html.sh (Internationalization functions): Add mbslen.
31192
31193 2007-02-11  Bruno Haible  <bruno@clisp.org>
31194
31195         Ensure O(n) worst-case complexity of strcasestr substitute.
31196         * lib/strcasestr.c: Include stdbool.h.
31197         (knuth_morris_pratt): New function.
31198         (strcasestr): Add some bookkeeping. Invoke knuth_morris_pratt when the
31199         bookkeeping indicates that it's worth it.
31200         * modules/strcasestr (Depends-on): Add stdbool, strnlen.
31201
31202         * modules/strcasestr-tests: New file.
31203         * tests/test-strcasestr.c: New file.
31204
31205 2007-02-11  Bruno Haible  <bruno@clisp.org>
31206
31207         Ensure O(n) worst-case complexity of c_strcasestr.
31208         * lib/c-strcasestr.c: Include stdbool.h, string.h.
31209         (knuth_morris_pratt): New function.
31210         (c_strcasestr): Add some bookkeeping. Invoke knuth_morris_pratt when
31211         the bookkeeping indicates that it's worth it.
31212         * modules/c-strcasestr (Depends-on): Add stdbool, strnlen.
31213
31214         * modules/c-strcasestr-tests: New file.
31215         * tests/test-c-strcasestr.c: New file.
31216
31217 2007-02-11  Bruno Haible  <bruno@clisp.org>
31218
31219         Ensure O(n) worst-case complexity of c_strstr.
31220         * lib/c-strstr.c: Include stdbool.h, string.h.
31221         (knuth_morris_pratt): New function.
31222         (c_strstr): Add some bookkeeping. Invoke knuth_morris_pratt when the
31223         bookkeeping indicates that it's worth it.
31224         * modules/c-strstr (Depends-on): Add stdbool, strnlen.
31225
31226         * lib/c-strstr.c: Complete rewrite for maintainability.
31227
31228         * modules/c-strstr-tests: New file.
31229         * tests/test-c-strstr.c: New file.
31230
31231 2007-02-11  Bruno Haible  <bruno@clisp.org>
31232
31233         * m4/javacomp.m4 (gt_JAVACOMP): Work around a 'tr' bug in coreutils
31234         5.2.1 and earlier, whereby \055 was treated just like the range
31235         delimiter '-'.
31236         Reported by Joel E. Denny <jdenny@ces.clemson.edu>.
31237
31238 2007-02-08  Bruno Haible  <bruno@clisp.org>
31239
31240         * modules/regex (Depends-on): Add stdbool.
31241         Reported by Dalibor Topic <robilad@kaffe.org>.
31242
31243 2007-02-05  Paul Eggert  <eggert@cs.ucla.edu>
31244
31245         * m4/regex.m4 (gl_REGEX): Check for glibc bug #3957.
31246         Prefer returning from main to exiting from it.
31247         Remove unnecessary parens after sizeof.
31248
31249 2007-02-05  Bruno Haible  <bruno@clisp.org>
31250
31251         New module mbssep.
31252         * modules/mbssep: New file.
31253         * lib/mbssep.c: New file.
31254         * lib/string_.h (strsep): Add a conditional link warning.
31255         (mbssep): New declaration.
31256         * m4/mbssep.m4: New file.
31257         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
31258         GNULIB_MBSSEP.
31259         * modules/string (string.h): Also substitute GNULIB_MBSSEP.
31260         * MODULES.html.sh (Internationalization functions): Add mbssep.
31261
31262 2007-02-05  Bruno Haible  <bruno@clisp.org>
31263
31264         * lib/strsep.c (strsep): Fix actions in case of no delimiters.
31265         Optimize search in case of 1 delimiter.
31266
31267 2007-02-05  Paolo Bonzini  <bonzini@gnu.org>
31268
31269         * lib/acl.h: Include sys/types.h before sys/acl.h.
31270
31271 2007-02-05  Paolo Bonzini  <bonzini@gnu.org>
31272
31273         Merge upstream fix for glibc bugzilla #3957:
31274
31275         2007-02-05  Jakub Jelinek  <jakub@redhat.com>
31276
31277         * lib/regcomp.c (parse_bracket_exp): Set '\n' bit rather than '\0'
31278         bit for RE_HAT_LISTS_NOT_NEWLINE.
31279         (build_charclass_op): Remove bogus comment.
31280
31281 2007-02-05  Simon Josefsson  <simon@josefsson.org>
31282
31283         * lib/gc.h, lib/gc-libgcrypt.c: Support SHA-256/384/512.
31284
31285 2007-02-04  Paul Eggert  <eggert@cs.ucla.edu>
31286
31287         * lib/getsubopt.c [!_LIBC]: Include config.h and getsubopt.h.
31288         * lib/memmem.c [!defined _LIBC]: Include config.h.
31289
31290 2007-02-04  Bruno Haible  <bruno@clisp.org>
31291
31292         * lib/string_.h (GL_LINK_WARNING2): Put the word "warning:" into the
31293         warning message.
31294
31295 2007-02-04  Bruno Haible  <bruno@clisp.org>
31296
31297         New module mbstok_r.
31298         * modules/mbstok_r: New file.
31299         * lib/mbstok_r.c: New file.
31300         * lib/string_.h (strtok_r): Change argument names to match the
31301         comments. Add a conditional link warning.
31302         (mbstok_r): New declaration.
31303         * m4/mbstok_r.m4: New file.
31304         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
31305         GNULIB_MBSTOK_R.
31306         * modules/string (string.h): Also substitute GNULIB_MBSTOK_R.
31307         * MODULES.html.sh (Internationalization functions): Add mbstok_r.
31308
31309 2007-02-04  Bruno Haible  <bruno@clisp.org>
31310
31311         New module mbsspn.
31312         * modules/mbsspn: New file.
31313         * lib/mbsspn.c: New file.
31314         * lib/string_.h (strspn): Add a conditional link warning.
31315         (mbsspn): New declaration.
31316         * m4/mbsspn.m4: New file.
31317         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
31318         GNULIB_MBSSPN.
31319         * modules/string (string.h): Also substitute GNULIB_MBSSPN.
31320         * MODULES.html.sh (Internationalization functions): Add mbsspn.
31321
31322 2007-02-04  Bruno Haible  <bruno@clisp.org>
31323
31324         New module mbspbrk.
31325         * modules/mbspbrk: New file.
31326         * lib/mbspbrk.c: New file.
31327         * lib/string_.h (strpbrk): Add a conditional link warning.
31328         (mbspbrk): New declaration.
31329         * m4/mbspbrk.m4: New file.
31330         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
31331         GNULIB_MBSPBRK.
31332         * modules/string (string.h): Also substitute GNULIB_MBSPBRK.
31333         * MODULES.html.sh (Internationalization functions): Add mbspbrk.
31334
31335 2007-02-04  Bruno Haible  <bruno@clisp.org>
31336
31337         New module mbscspn.
31338         * modules/mbscspn: New file.
31339         * lib/mbscspn.c: New file.
31340         * lib/string_.h (strcspn): Add a conditional link warning.
31341         (mbscspn): New declaration.
31342         * m4/mbscspn.m4: New file.
31343         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
31344         GNULIB_MBSCSPN.
31345         * modules/string (string.h): Also substitute GNULIB_MBSCSPN.
31346         * MODULES.html.sh (Internationalization functions): Add mbscspn.
31347
31348 2007-02-04  Bruno Haible  <bruno@clisp.org>
31349
31350         New module mbscasestr, reduced goal of strcasestr.
31351         * modules/mbscasestr: New file.
31352         * lib/mbscasestr.c: New file, copied from lib/strcasestr.c.
31353         (mbscasestr): Renamed from strcasestr.
31354         * lib/strcasestr.c: Don't include mbuiter.h.
31355         (strcasestr): Remove support for multibyte locales.
31356         * lib/string_.h (strcasestr): Don`t rename. Declare only if missing.
31357         Change the conditional link warning.
31358         (mbscasestr): New declaration.
31359         * m4/mbscasestr.m4: New file.
31360         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Enable the replacement only if
31361         the system does not have strcasestr. Set HAVE_STRCASESTR instead of
31362         REPLACE_STRCASESTR.
31363         (gl_PREREQ_STRCASESTR): Don't require gl_FUNC_MBRTOWC.
31364         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
31365         HAVE_STRCASESTR instead of REPLACE_STRCASESTR.
31366         (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize GNULIB_MBSCASESTR.
31367         * modules/string (string.h): Also substitute GNULIB_MBSCASESTR.
31368         Substitute HAVE_STRCASESTR instead of REPLACE_STRCASESTR.
31369         * modules/strcasestr (Files): Remove m4/mbrtowc.m4.
31370         (Depends-on): Remove mbuiter.
31371         * MODULES.html.sh (Internationalization functions): Add mbscasestr.
31372
31373 2007-02-04  Bruno Haible  <bruno@clisp.org>
31374
31375         Simplify handling of strncasecmp.
31376         * lib/string_.h (strncasecmp): Remove test for GNULIB_STRCASE. Change
31377         the conditional link warning.
31378         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
31379         HAVE_STRCASECMP, not REPLACE_STRCASECMP.
31380         (gl_STRING_MODULE_INDICATOR_DEFAULTS): Don't initialize GNULIB_STRCASE.
31381         * modules/strcase (configure.ac): Don't invoke
31382         gl_STRING_MODULE_INDICATOR.
31383         * modules/string (string.h): Don't substitute GNULIB_STRCASE.
31384
31385 2007-02-04  Bruno Haible  <bruno@clisp.org>
31386
31387         New module mbscasecmp, reduced goal of strcasecmp.
31388         * modules/mbscasecmp: New file.
31389         * lib/mbscasecmp.c: New file, copied from lib/strcasecmp.c.
31390         (mbscasecmp): Renamed from strcasecmp.
31391         * lib/strcasecmp.c: Don't include mbuiter.h.
31392         (strcasecmp): Remove support for multibyte locales.
31393         * lib/string_.h (strcasecmp): Don`t rename. Declare only if missing.
31394         Change the conditional link warning.
31395         (mbscasecmp): New declaration.
31396         * m4/mbscasecmp.m4: New file.
31397         * m4/strcase.m4 (gl_FUNC_STRCASECMP): Enable the replacement only if
31398         the system lacks strcasecmp. Set HAVE_STRCASECMP instead of
31399         REPLACE_STRCASECMP.
31400         (gl_PREREQ_STRCASECMP): Don't require gl_FUNC_MBRTOWC.
31401         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
31402         GNULIB_MBSCASECMP.
31403         * modules/string (string.h): Also substitute GNULIB_MBSCASECMP.
31404         Substitute HAVE_STRCASECMP instead of REPLACE_STRCASECMP.
31405         * modules/strcase (Files): Remove m4/mbrtowc.m4.
31406         (Depends-on): Remove mbuiter.
31407         * MODULES.html.sh (Internationalization functions): Add mbscasecmp.
31408
31409 2007-02-04  Bruno Haible  <bruno@clisp.org>
31410
31411         New module mbsstr. Remove module strstr.
31412         * modules/mbsstr: New file.
31413         * modules/strstr: Remove file.
31414         * lib/mbsstr.c: Renamed from lib/strstr.c.
31415         (mbsstr): Renamed from strstr.
31416         * lib/string_.h (strstr): Remove declaration. Change the conditional
31417         link warning.
31418         (mbsstr): New declaration.
31419         * m4/mbsstr.m4: New file.
31420         * m4/strstr.m4: Remove file.
31421         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Don't initialize
31422         REPLACE_STRSTR.
31423         (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize GNULIB_MBSSTR.
31424         Don't initialize GNULIB_STRSTR.
31425         * modules/string (string.h): Also substitute GNULIB_MBSSTR. Don't
31426         substitute GNULIB_STRSTR and REPLACE_STRSTR.
31427         * MODULES.html.sh (Internationalization functions): Add mbsstr.
31428         (Support for systems lacking ANSI C 89): Remove strstr.
31429
31430 2007-02-04  Bruno Haible  <bruno@clisp.org>
31431
31432         New module mbsrchr.
31433         * modules/mbsrchr: New file.
31434         * lib/mbsrchr.c: New file.
31435         * lib/string_.h (strrchr): Add a conditional link warning.
31436         (mbsrchr): New declaration.
31437         * m4/mbsrchr.m4: New file.
31438         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
31439         GNULIB_MBSRCHR.
31440         * modules/string (string.h): Also substitute GNULIB_MBSRCHR.
31441         * MODULES.html.sh (Internationalization functions): Add mbsrchr.
31442
31443 2007-02-04  Bruno Haible  <bruno@clisp.org>
31444
31445         New module mbschr.
31446         * modules/mbschr: New file.
31447         * lib/mbschr.c: New file.
31448         * lib/string_.h (strchr): Add a conditional link warning.
31449         (mbschr): New declaration.
31450         * m4/mbschr.m4: New file.
31451         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
31452         GNULIB_MBSCHR.
31453         * modules/string (string.h): Also substitute GNULIB_MBSCHR.
31454         * MODULES.html.sh (Internationalization functions): Add mbschr.
31455
31456 2007-02-04  Paul Eggert  <eggert@cs.ucla.edu>
31457
31458         * lib/stdbool_.h: Mention that bool bit-fields aren't supported.
31459
31460         * modules/stdarg (configure.ac-early): Require AC_PROG_CC_STDC.
31461
31462 2007-02-04  Bruno Haible  <bruno@clisp.org>
31463
31464         New module description section 'configure.ac-early'.
31465         * gnulib-tool (sed_extract_prog): Recognize configure.ac-early.
31466         (func_get_autoconf_early_snippet): New function.
31467         (func_import, func_create_testdir): Use it. Remove special cases for
31468         modules 'extensions' and 'lock'.
31469         * modules/extensions (configure.ac-early): Require
31470         gl_USE_SYSTEM_EXTENSIONS.
31471         * modules/lock (configure.ac-early): Require gl_LOCK_EARLY.
31472
31473 2007-02-04  Bruno Haible  <bruno@clisp.org>
31474
31475         Make use of gcj-4.3's -fsource and -ftarget option.
31476         * m4/javacomp.m4 (gt_JAVACOMP): Test whether gcj is in version >= 4.3,
31477         and if so try the options -fsource and -ftarget.
31478         * lib/javacomp.c (compile_using_gcj): Add fsource_option,
31479         source_version, ftarget_option, target_version arguments.
31480         (is_envjavac_gcj43, is_envjavac_gcj43_usable): New functions.
31481         (is_envjavac_oldgcj_14_14_usable): Renamed from
31482         is_envjavac_gcj_14_14_usable.
31483         (is_envjavac_oldgcj_14_13_usable): Renamed from
31484         is_envjavac_gcj_14_13_usable.
31485         (is_gcj_present): Update.
31486         (is_gcj_43, is_gcj43_usable): New functions.
31487         (is_oldgcj_14_14_usable): Renamed from is_gcj_14_14_usable. Update.
31488         (is_oldgcj_14_13_usable): Renamed from is_gcj_14_13_usable. Update.
31489         (compile_java_class): Test whether gcj is in version >= 4.3, and if so
31490         try the options -fsource and -ftarget.
31491
31492 2007-02-03  Paul Eggert  <eggert@cs.ucla.edu>
31493
31494         * lib/xalloc.h (x2nrealloc): Fix an unlikely bug in the overflow
31495         checking code.  Set N = ceil (1.5 * N) rather than to a slightly
31496         larger value.
31497
31498 2007-02-03  Jim Meyering  <jim@meyering.net>
31499
31500         Give tools a better chance to allocate space for very large buffers.
31501         * lib/xalloc.h (x2nrealloc): Use 3/2, not 2, as buffer size factor.
31502
31503         Make pwd and readlink work also when run with an unreadable parent dir
31504         on systems with openat support.
31505         * lib/getcwd.c (__getcwd) [HAVE_PARTLY_WORKING_GETCWD]: Use the system
31506         provided getcwd function, even when we have openat support.
31507         Reported by Dmitry V. Levin in <http://bugzilla.redhat.com/227168>.
31508
31509 2007-02-02  Bruno Haible  <bruno@clisp.org>
31510
31511         * lib/string_.h (memmem, mempcpy, memrchr, stpcpy, stpncpy, strchrnul,
31512         strdup, strndup, strnlen, strpbrk, strsep, strtok_r): Provoke a link
31513         error only if GNULIB_POSIXCHECK is defined. Needed to avoid artificial
31514         portability problems if one of these functions is only used on specific
31515         platforms.
31516         Reported by Paul Eggert.
31517
31518 2007-02-02  Paul Eggert  <eggert@cs.ucla.edu>
31519
31520         Avoid mempcpy in the regex code, as the string.h mempcpy stuff
31521         is causing more trouble than it's curing.
31522         * lib/regex_internal.h (__mempcpy): Remove.
31523         * lib/regcomp.c (regerror): Rewrite to avoid the need for mempcpy
31524         (and make the code a tad smaller to boot).
31525         * m4/regex.m4 (gl_PREREQ_REGEX): Don't check for mempcpy.
31526
31527 2007-02-02  Jim Meyering  <jim@meyering.net>
31528
31529         * modules/arpa_inet: Put AC_PROG_MKDIR_P in the configure.ac:
31530         section, not in the Makefile.am: one.
31531
31532 2007-02-02  Eric Blake  <ebb9@byu.net>
31533
31534         * lib/strchrnul.c: Always include config.h first.
31535
31536         * modules/mountlist (Depends-on): Revert 2007-01-31 change,
31537         gnulib strstr is not necessary here.
31538
31539 2007-02-02  Simon Josefsson  <simon@josefsson.org>
31540
31541         * m4/socklen.m4: Fix typo.
31542
31543 2007-02-02  Eric Blake  <ebb9@byu.net>
31544
31545         * modules/arpa_inet (Makefile.am): Use MKDIR_P to avoid races.
31546         * modules/netinet_in (Makefile.am): Likewise.
31547
31548 2007-02-01  Bruno Haible  <bruno@clisp.org>
31549
31550         * lib/string_.h (GL_LINK_WARNING): New macro.
31551         (strcasecmp, strstr, strcasestr): If provided by the system,
31552         conditionally define as a macro that leads to a warning instead of to
31553         an error.
31554         (strncasecmp): Conditionally define as a macro that leads to a warning.
31555
31556 2007-02-01  Karl Berry  <karl@gnu.org>
31557
31558         * config/srclist.txt (strtok_r.c): lose sync, no more strtok_r.h.
31559
31560 2007-02-01  Bruno Haible  <bruno@clisp.org>
31561
31562         * MODULES.html.sh (Unicode string functions): Update after 2007-01-27
31563         renamings.
31564
31565 2007-02-01  Eric Blake  <ebb9@byu.net>
31566
31567         * modules/regex (Depends-on): Revert dependence on mempcpy.
31568         * lib/regex_internal.h [! _LIBC && !__mempcpy]: Undo string
31569         module's definition of mempcpy.
31570         Reported by Paul Eggert.
31571
31572 2007-02-01  Paul Eggert  <eggert@cs.ucla.edu>
31573
31574         * lib/string_.h: If the gnulib module XYZ is not present, undefine
31575         the symbol XYZ before redefining it.  This fixes a problem with
31576         programs that don't use XYZ, when compiled on systems that define
31577         XYZ to something else.
31578
31579 2007-01-31  Paul Eggert  <eggert@cs.ucla.edu>
31580
31581         * lib/mkdir-p.c (make_dir_parents): Close a race condition that
31582         occurs when "mkdir -m foo" creates a setgid directory that is (1)
31583         writeable to group or other and (2) is intended to have a special
31584         mode bit that is set or cleared.  In such a case, the directory
31585         should be neither group- nor other-writeable until the special
31586         mode bits are right.
31587
31588 2007-01-31  Eric Blake  <ebb9@byu.net>
31589
31590         * modules/mountlist (Depends-on): Add strstr.
31591
31592         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR): Correct m4 usage
31593         bug.
31594         * modules/string (Makefile.am): Remove redundant replacement.
31595         * modules/regex (Depends-on): Add mempcpy.
31596
31597 2007-01-31  Bruno Haible  <bruno@clisp.org>
31598
31599         New module description field 'Link'.
31600         * gnulib-tool (func_usage): Document --extract-link-directive.
31601         (sed_extract_prog): Recognize 'Link' directive.
31602         (func_get_link_directive): New function.
31603         (func_import): Show summary of link directives.
31604         Handle --extract-link-directive option.
31605         * modules/acl (Link): New section.
31606         * modules/clock-time (Link): New section.
31607         * modules/euidaccess (Link): New section.
31608         * modules/gettext (Link): New section.
31609         * modules/iconv (Link): New section.
31610         * modules/lock (Link): New section.
31611         * modules/nanosleep (Link): New section.
31612         * modules/readline (Link): New section.
31613
31614 2007-01-27  Bruno Haible  <bruno@clisp.org>
31615
31616         Enforce the use of gnulib modules for unportable <string.h> functions.
31617         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR): New macro.
31618         (gl_STRING_MODULE_INDICATOR_DEFAULTS): New macro.
31619         (gl_HEADER_STRING_H_BODY): Require it.
31620         * lib/string_.h: If the gnulib module XYZ is not present, redefine
31621         the symbol XYZ to one that gives a link error.
31622         * modules/string (Makefile.am): Also substitute the GNULIB_* variables.
31623         * modules/memmem (configure.ac): Invoke gl_STRING_MODULE_INDICATOR.
31624         * modules/mempcpy (configure.ac): Likewise.
31625         * modules/memrchr (configure.ac): Likewise.
31626         * modules/stpcpy (configure.ac): Likewise.
31627         * modules/stpncpy (configure.ac): Likewise.
31628         * modules/strcase (configure.ac): Likewise.
31629         * modules/strcasestr (configure.ac): Likewise.
31630         * modules/strchrnul (configure.ac): Likewise.
31631         * modules/strdup (configure.ac): Likewise.
31632         * modules/strndup (configure.ac): Likewise.
31633         * modules/strnlen (configure.ac): Likewise.
31634         * modules/strpbrk (configure.ac): Likewise.
31635         * modules/strsep (configure.ac): Likewise.
31636         * modules/strstr (configure.ac): Likewise.
31637         * modules/strtok_r (configure.ac): Likewise.
31638
31639 2007-01-31  Jean-Louis Martineau  <martineau@zmanda.com>  (tiny change)
31640
31641         * lib/gai_strerror.c (values): Add EAI_OVERFLOW.
31642
31643 2007-01-30  Jim Meyering  <jim@meyering.net>
31644
31645         * lib/mpsort.c (mpsort): Remove spurious "return" in void function.
31646
31647 2007-01-29  Bruno Haible  <bruno@clisp.org>
31648
31649         * lib/allocsa.h: Use '#if HAVE_*' instead of '#ifdef HAVE_*'.
31650         * lib/execute.c: Likewise.
31651         * lib/pipe.c: Likewise.
31652         * lib/printf-args.h: Likewise.
31653         * lib/printf-args.c: Likewise.
31654         * lib/printf-parse.c: Likewise.
31655         * lib/vasnprintf.c: Likewise.
31656
31657 2007-01-29  Eric Blake  <ebb9@byu.net>
31658
31659         * lib/memrchr.c: Assume <string.h> unconditionally, to pull in
31660         declaration.
31661
31662 2007-01-29  Paul Eggert  <eggert@cs.ucla.edu>
31663
31664         * lib/strptime.h (strptime): Use 'restrict' for args where
31665         POSIX requires this.
31666         * lib/strptime.c (strptime): Likewise.
31667         Change license notice from LGPL to GPL, since gnulib-tool will
31668         change this as needed.
31669         Include <config.h> if _LIBC is not defined, not if HAVE_CONFIG_H is
31670         defined.
31671         Include "strptime.h" first, to check interface.
31672         Do not #undef _LIBC and _NL_CURRENT.
31673         Do not include <stdlib.h>; no longer needed.
31674         Include "time_r.h" and declare ptime_locale_status
31675         only if _LIBC is not defined.
31676         (__P): Remove unused macro.
31677         (match_string): Bring back glibc version, but use it only if _LIBC
31678         is defined.
31679         (__strptime_internal): Compile tm_gmtoff code if _LIBC is defined, too.
31680         Remove unnecessary assertion and abort() call.
31681         Use #ifdef _NL_CURRENT rather than #if 0, for benefit of glibc.
31682         * m4/strptime.m4: Fix serial number comment.
31683         (gl_FUNC_STRPTIME): Require AC_C_RESTRICT, gl_TM_GMTOFF.
31684         * modules/strptime (Files): Add m4/tm_gmtoff.m4.
31685         (Depends-on): Add time_r.
31686
31687 2007-01-29  Bruno Haible  <bruno@clisp.org>
31688
31689         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
31690         strptime.
31691         * modules/strptime (Depends-on): Add stdbool.
31692         * lib/strptime.h: Include <time.h> always. Add comments.
31693
31694 2007-01-29  Yoann Vandoorselaere  <yoann@prelude-ids.org>
31695
31696         * modules/strptime: New file.
31697         * lib/strptime.h: New file.
31698         * lib/strptime.c: New file.
31699         * m4/strptime.m4: New file.
31700
31701 2007-01-28  Paul Eggert  <eggert@cs.ucla.edu>
31702
31703         * MODULES.html.sh: New module mpsort.
31704         * lib/mpsort.c, lib/mpsort.h, m4/mpsort.m4, modules/mpsort: New files.
31705
31706         * lib/regex.h (_Restrict_): Renamed from __restrict, to avoid
31707         a circularity problem with HP-UX ia64 reported by Bob Proulx in
31708         <http://lists.gnu.org/archive/html/bug-gnulib/2007-01/msg00394.html>.
31709         All uses changed.
31710         (_Restrict_arr_): Renamed from __restrict_arr, for similar reasons.
31711         All uses changed.
31712         * lib/regcomp.c, lib/regexec.c: Change all uses from __restrict
31713         to _Restrict_.
31714         * lib/regexec.c (regexec): Declare pmatch with _Restrict_arr_, so that
31715         the parameter matches the prototype.
31716
31717 2007-01-28  Jim Meyering  <jim@meyering.net>
31718
31719         * modules/sys_time (Makefile.am) [MOSTLYCLEANFILES]: Do use
31720         sys/time.h here, reverting that part of the previous patch:
31721         <http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/8959>.
31722
31723 2007-01-28  Bruno Haible  <bruno@clisp.org>
31724
31725         * modules/sys_time (Makefile.am): Build sys/time.h only when it's the
31726         value of $(SYS_TIME_H).
31727         [MOSTLYCLEANFILES]: Now that sys/time.h is created only when needed,
31728         remove it conditionally, too. [added by Jim Meyering]
31729         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H_BODY): Set SYS_TIME_H.
31730         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY):
31731         (gl_FUNC_GETTIMEOFDAY_CLOBBER): Set SYS_TIME_H when setting
31732         GETTIMEOFDAY_REPLACEMENT to 1.
31733
31734 2007-01-28  Bruno Haible  <bruno@clisp.org>
31735
31736         * m4/unistd_h.m4 (gl_HEADER_UNISTD_DEFAULTS): New macro.
31737         (gl_HEADER_UNISTD): Require it. Don't set UNISTD_H to empty here.
31738         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Require gl_HEADER_UNISTD_DEFAULTS.
31739         Set UNISTD_H instead of UNISTD_H2.
31740         * modules/fchdir (BUILT_SOURCES): Drop $(UNISTD_H2).
31741
31742 2007-01-28  Bruno Haible  <bruno@clisp.org>
31743
31744         * modules/mbchar (Makefile.am): Add mbchar.c to lib_SOURCES.
31745         * m4/mbchar.m4 (gl_MBCHAR): Remove AC_LIBOBJ invocation.
31746
31747 2007-01-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
31748
31749         * gnulib-tool (func_emit_lib_Makefile_am, func_add_or_update)
31750         (func_create_testdir): Ensure C locale for `grep' and `tr'
31751         character ranges.
31752         (func_create_megatestdir): Avoid one `grep'.  Fix bug in
31753         ACLOCAL_AMFLAGS parsing state machine.
31754
31755 2007-01-27  Bruno Haible  <bruno@clisp.org>
31756
31757         * modules/unistr/base: Update.
31758
31759 2007-01-27  Bruno Haible  <bruno@clisp.org>
31760
31761         Rename u32-mbtouc -> u32-mbtouc-unsafe, u32-mbtouc-safe -> u32-mbtouc,
31762         u32_mbtouc -> u32_mbtouc_unsafe, u32_mbtouc_safe -> u32_mbtouc.
31763         * modules/unistr/u32-mbtouc-unsafe: Renamed from
31764         modules/unistr/u32-mbtouc.
31765         * lib/unistr/u32-mbtouc-unsafe.c: Renamed from lib/unistr/u32-mbtouc.c.
31766         * lib/unistr.h: Update.
31767         * lib/linebreak.c: Update.
31768         * modules/unistr/u32-mbtouc: Renamed from
31769         modules/unistr/u32-mbtouc-safe.
31770         * lib/unistr/u32-mbtouc.c: Renamed from lib/unistr/u32-mbtouc-safe.c.
31771         * lib/unistr.h: Update.
31772         * lib/unistr/u32-to-u8.c: Update.
31773         * lib/unistr/u32-to-u16.c: Update.
31774
31775 2007-01-27  Bruno Haible  <bruno@clisp.org>
31776
31777         Rename utf16-ucs4 -> utf16-ucs4-unsafe, utf16-ucs4-safe -> utf16-ucs4,
31778         u16_mbtouc -> u16_mbtouc_unsafe, u16_mbtouc_safe -> u16_mbtouc.
31779         * modules/utf16-ucs4-unsafe: Renamed from modules/utf16-ucs4.
31780         * lib/utf16-ucs4-unsafe.h: Renamed from lib/utf16-ucs4.h.
31781         * lib/unistr/utf16-ucs4-unsafe.c: Renamed from lib/unistr/utf16-ucs4.c.
31782         * modules/unistr/u16-mbtouc-unsafe: Renamed from
31783         modules/unistr/u16-mbtouc.
31784         * lib/unistr/u16-mbtouc-unsafe.c: Renamed from lib/unistr/u16-mbtouc.c.
31785         * lib/unistr.h: Update.
31786         * lib/linebreak.c: Update.
31787         * modules/linebreak: Update.
31788         * modules/utf16-ucs4: Renamed from modules/utf16-ucs4-safe.
31789         * lib/utf16-ucs4.h: Renamed from lib/utf16-ucs4-safe.h.
31790         * lib/unistr/utf16-ucs4.c: Renamed from lib/unistr/utf16-ucs4-safe.c.
31791         * modules/unistr/u16-mbtouc: Renamed from
31792         modules/unistr/u16-mbtouc-safe.
31793         * lib/unistr/u16-mbtouc.c: Renamed from lib/unistr/u16-mbtouc-safe.c.
31794         * lib/unistr.h: Update.
31795         * lib/unistr/u16-to-u8.c: Update.
31796         * modules/unistr/u16-to-u8: Update.
31797         * lib/unistr/u16-to-u32.c: Update.
31798         * modules/unistr/u16-to-u32: Update.
31799
31800 2007-01-27  Bruno Haible  <bruno@clisp.org>
31801
31802         Rename utf8-ucs4 -> utf8-ucs4-unsafe, utf8-ucs4-safe -> utf8-ucs4,
31803         u8_mbtouc -> u8_mbtouc_unsafe, u8_mbtouc_safe -> u8_mbtouc.
31804         * modules/utf8-ucs4-unsafe: Renamed from modules/utf8-ucs4.
31805         * lib/utf8-ucs4-unsafe.h: Renamed from lib/utf8-ucs4.h.
31806         * lib/unistr/utf8-ucs4-unsafe.c: Renamed from lib/unistr/utf8-ucs4.c.
31807         * modules/unistr/u8-mbtouc-unsafe: Renamed from
31808         modules/unistr/u8-mbtouc.
31809         * lib/unistr/u8-mbtouc-unsafe.c: Renamed from lib/unistr/u8-mbtouc.c.
31810         * lib/unistr.h: Update.
31811         * lib/striconveh.c: Update.
31812         * modules/striconveh: Update.
31813         * lib/linebreak.c: Update.
31814         * modules/linebreak: Update.
31815         * modules/utf8-ucs4: Renamed from modules/utf8-ucs4-safe.
31816         * lib/utf8-ucs4.h: Renamed from lib/utf8-ucs4-safe.h.
31817         * lib/unistr/utf8-ucs4.c: Renamed from lib/unistr/utf8-ucs4-safe.c.
31818         * modules/unistr/u8-mbtouc: Renamed from modules/unistr/u8-mbtouc-safe.
31819         * lib/unistr/u8-mbtouc.c: Renamed from lib/unistr/u8-mbtouc-safe.c.
31820         * lib/unistr.h: Update.
31821         * lib/striconveh.c: Update.
31822         * modules/striconveh: Update.
31823         * lib/unistr/u8-to-u16.c: Update.
31824         * modules/unistr/u8-to-u16: Update.
31825         * lib/unistr/u8-to-u32.c: Update.
31826         * modules/unistr/u8-to-u32: Update.
31827
31828 2007-01-27  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
31829
31830         Sync from Libtool.
31831         * lib/argz.c: Do not include strings.h nor memory.h, include
31832         string.h unconditionally.  Patch by Simon Josefsson.
31833
31834 2007-01-27  Bruno Haible  <bruno@clisp.org>
31835
31836         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): New macro, extracted
31837         from gl_HEADER_STRING_H_BODY.
31838         (gl_HEADER_STRING_H_BODY): Require it.
31839         * m4/memmem.m4 (gl_FUNC_MEMMEM): Require gl_HEADER_STRING_H_DEFAULTS.
31840         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY): Likewise.
31841         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Likewise.
31842         * m4/stpcpy.m4 (gl_FUNC_STPCPY): Likewise.
31843         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Likewise.
31844         * m4/strcase.m4 (gl_FUNC_STRCASECMP, gl_FUNC_STRNCASECMP): Likewise.
31845         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Likewise.
31846         * m4/strchrnul.m4 (gl_FUNC_STRCHRNUL): Likewise.
31847         * m4/strdup.m4 (gl_FUNC_STRDUP): Likewise.
31848         * m4/strndup.m4 (gl_FUNC_STRNDUP): Likewise.
31849         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Likewise.
31850         * m4/strpbrk.m4 (gl_FUNC_STRPBRK): Likewise.
31851         * m4/strsep.m4 (gl_FUNC_STRSEP): Likewise.
31852         * m4/strstr.m4 (gl_FUNC_STRSTR): Likewise.
31853         * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Likewise.
31854
31855 2007-01-27  Bruno Haible  <bruno@clisp.org>
31856
31857         * gnulib-tool (func_emit_lib_Makefile_am): If $for_test is true, turn
31858         check_PROGRAMS into noinst_PROGRAMS.
31859         (func_emit_tests_Makefile_am): Likewise. Also don't initialize
31860         check_PROGRAMS in this case.
31861         (func_import): Set for_test to false.
31862         (func_create_testdir): Set for_test to true.
31863
31864 2007-01-27  Yoann Vandoorselaere <yoann.v@prelude-ids.com>
31865             Bruno Haible  <bruno@clisp.org>
31866
31867         * modules/strcasestr (Files): Remove lib/strcasestr.h.
31868         (Depends-on): Add string.
31869         (Includes): Use <string.h> instead of strcasestr.h.
31870         * modules/string (Makefile.am): Also substitute the value of
31871         REPLACE_STRCASESTR.
31872         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Don't define strcasestr here;
31873         assume strcasestr is declared in <string.h> not <strings.h>. Also
31874         set REPLACE_STRCASESTR.
31875         * m4/string_h.m4 (gl_HEADER_STRING_H_BODY): Provide a default value for
31876         REPLACE_STRCASESTR.
31877         * lib/strcasestr.h: Remove file.
31878         * lib/strcasestr.c: Include <string.h> instead of strcasestr.h.
31879         * lib/string_.h (strcasestr): New declaration.
31880
31881 2007-01-27  Bruno Haible  <bruno@clisp.org>
31882
31883         * lib/string_.h: Use 'extern'.
31884
31885 2007-01-27  Jim Meyering  <jim@meyering.net>
31886
31887         * lib/regex_internal.c (re_string_reconstruct): Remove declaration
31888         of set-but-not-used local, "q".
31889
31890         * lib/mempcpy.c: Include <config.h> before <string.h>.
31891         This fixes a compilation error on HP-UX, due to the system's
31892         "restrict"-using mempcpy prototype.
31893
31894 2007-01-26  Bruno Haible  <bruno@clisp.org>
31895
31896         Small optimization.
31897         * lib/javacomp.c: Include c-strstr.h.
31898          (is_envjavac_gcj): Use c_strstr instead of strstr.
31899         * modules/javacomp (Depends-on): Add c-strstr, remove strstr.
31900
31901 2007-01-26  Bruno Haible  <bruno@clisp.org>
31902
31903         * MODULES.html.sh (Unicode string functions): Add the new modules.
31904
31905         * modules/uniconv/u32-strconv-to-locale: New file.
31906         * lib/uniconv/u32-strconv-to-locale.c: New file.
31907
31908         * modules/uniconv/u16-strconv-to-locale: New file.
31909         * lib/uniconv/u16-strconv-to-locale.c: New file.
31910
31911         * modules/uniconv/u8-strconv-to-locale: New file.
31912         * lib/uniconv/u8-strconv-to-locale.c: New file.
31913
31914         * modules/uniconv/u32-strconv-from-locale: New file.
31915         * lib/uniconv/u32-strconv-from-locale.c: New file.
31916
31917         * modules/uniconv/u16-strconv-from-locale: New file.
31918         * lib/uniconv/u16-strconv-from-locale.c: New file.
31919
31920         * modules/uniconv/u8-strconv-from-locale: New file.
31921         * lib/uniconv/u8-strconv-from-locale.c: New file.
31922
31923         * modules/uniconv/u32-strconv-to-enc: New file.
31924         * lib/uniconv/u32-strconv-to-enc.c: New file.
31925         * modules/uniconv/u32-strconv-to-enc-tests: New file.
31926         * tests/uniconv/test-u32-strconv-to-enc.c: New file.
31927
31928         * modules/uniconv/u16-strconv-to-enc: New file.
31929         * lib/uniconv/u16-strconv-to-enc.c: New file.
31930         * lib/uniconv/u-strconv-to-enc.h: New file.
31931         * modules/uniconv/u16-strconv-to-enc-tests: New file.
31932         * tests/uniconv/test-u16-strconv-to-enc.c: New file.
31933
31934         * modules/uniconv/u8-strconv-to-enc: New file.
31935         * lib/uniconv/u8-strconv-to-enc.c: New file.
31936         * modules/uniconv/u8-strconv-to-enc-tests: New file.
31937         * tests/uniconv/test-u8-strconv-to-enc.c: New file.
31938
31939         * modules/uniconv/u32-strconv-from-enc: New file.
31940         * lib/uniconv/u32-strconv-from-enc.c: New file.
31941         * modules/uniconv/u32-strconv-from-enc-tests: New file.
31942         * tests/uniconv/test-u32-strconv-from-enc.c: New file.
31943
31944         * modules/uniconv/u16-strconv-from-enc: New file.
31945         * lib/uniconv/u16-strconv-from-enc.c: New file.
31946         * modules/uniconv/u16-strconv-from-enc-tests: New file.
31947         * tests/uniconv/test-u16-strconv-from-enc.c: New file.
31948
31949         * modules/uniconv/u8-strconv-from-enc: New file.
31950         * lib/uniconv/u8-strconv-from-enc.c: New file.
31951         * lib/uniconv/u-strconv-from-enc.h: New file.
31952         * modules/uniconv/u8-strconv-from-enc-tests: New file.
31953         * tests/uniconv/test-u8-strconv-from-enc.c: New file.
31954
31955         * modules/uniconv/u32-conv-from-enc: New file.
31956         * lib/uniconv/u32-conv-from-enc.c: New file.
31957         * modules/uniconv/u32-conv-from-enc-tests: New file.
31958         * tests/uniconv/test-u32-conv-from-enc.c: New file.
31959
31960         * modules/uniconv/u16-conv-from-enc: New file.
31961         * lib/uniconv/u16-conv-from-enc.c: New file.
31962         * lib/uniconv/u-conv-from-enc.h: New file.
31963         * modules/uniconv/u16-conv-from-enc-tests: New file.
31964         * tests/uniconv/test-u16-conv-from-enc.c: New file.
31965
31966         * modules/uniconv/u8-conv-from-enc: New file.
31967         * lib/uniconv/u8-conv-from-enc.c: New file.
31968         * modules/uniconv/u8-conv-from-enc-tests: New file.
31969         * tests/uniconv/test-u8-conv-from-enc.c: New file.
31970
31971         * modules/uniconv/base: New file.
31972         * lib/uniconv.h: New file.
31973
31974 2007-01-26  Paul Eggert  <eggert@cs.ucla.edu>
31975
31976         * doc/gnulib-tool.texi (Initial import): Update to match current
31977         behavior with strdup module.
31978         * lib/.cppi-disable: Remove strcase.h, strdup.h, strndup.h, strnlen.h.
31979         * lib/memmem.h: Remove; all uses removed.  This is now done
31980         by <string.h>.
31981         * lib/mempcpy.h: Likewise.
31982         * lib/memrchr.h: Likewise.
31983         * lib/stpcpy.h: Likewise.
31984         * lib/stpncpy.h: Likewise.
31985         * lib/strcase.h: Likewise.
31986         * lib/strchrnul.h: Likewise.
31987         * lib/strdup.h: Likewise.
31988         * lib/strndup.h: Likewise.
31989         * lib/strnlen.h: Likewise.
31990         * lib/strpbrk.h: Likewise.
31991         * lib/strsep.h: Likewise.
31992         * lib/strstr.h: Likewise.
31993         * lib/strtok_r.h: Likewise.
31994         * lib/string_.h: New file.
31995         * lib/argp-namefrob.h: Don't include no-longer-existent include files.
31996         Rely on <string.h> instead.
31997         * lib/canon-host.c: Likewise.
31998         * lib/chdir-long.c: Likewise.
31999         * lib/concatpath.c: Likewise.
32000         * lib/exclude.c: Likewise.
32001         * lib/fchdir.c: Likewise.
32002         * lib/getaddrinfo.c: Likewise.
32003         * lib/getcwd.c: Likewise.
32004         * lib/getsubopt.c: Likewise.
32005         * lib/glob.c: Likewise.
32006         * lib/hard-locale.c: Likewise.
32007         * lib/iconvme.c: Likewise.
32008         * lib/javacomp.c: Likewise.
32009         * lib/mempcpy.c: Likewise.
32010         * lib/memrchr.c: Likewise.
32011         * lib/regex_internal.h: Likewise.
32012         * lib/stpncpy.c: Likewise.
32013         * lib/strcasecmp.c: Likewise.
32014         * lib/strchrnul.c: Likewise.
32015         * lib/strdup.c: Likewise.
32016         * lib/striconv.c: Likewise.
32017         * lib/striconveh.c: Likewise.
32018         * lib/striconveha.c: Likewise.
32019         * lib/strncasecmp.c: Likewise.
32020         * lib/strndup.c: Likewise.
32021         * lib/strnlen.c: Likewise.
32022         * lib/strsep.c: Likewise.
32023         * lib/strstr.c: Likewise.
32024         * lib/strtok_r.c: Likewise.
32025         * lib/userspec.c: Likewise.
32026         * lib/w32spawn.h: Likewise.
32027         * lib/xstrndup.c: Likewise.
32028         * lib/mountlist.c (strstr): Remove decl.
32029         * m4/string_h.m4: New file.
32030         * m4/memmem.m4 (gl_FUNC_MEMMEM): Set HAVE_DECL_MEMMEM if necessary.
32031         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY): Set HAVE_MEMPCPY if necessary.
32032         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Set HAVE_MEMRCHR
32033         * m4/stpcpy.m4 (gl_FUNC_STPCPY): Set HAVE_STPCPY if necessary.
32034         * m4/stpncpy.m4 (gl_PREREQ_STPNCPY): Set HAVE_STPNCPY if necessary.
32035         * m4/strcase.m4 (gl_FUNC_STRCASECMP):
32036         Set REPLACE_STRCASECMP if necessary.
32037         (gl_FUNC_STRNCASECMP): Set HAVE_DECL_STRNCASECMP if necessary.
32038         * m4/strchrnul.m4 (gl_FUNC_STRCHRNUL): Set HAVE_STRCHRNUL if necessary.
32039         * m4/strdup.m4 (gl_FUNC_STRDUP): Set HAVE_DECL_STRDUP if necessary.
32040         * m4/strndup.m4 (gl_FUNC_STRNDUP): Set HAVE_DECL_STRNLEN and
32041         HAVE_DECL_STRDUP if necessary.
32042         (gl_PREREQ_STRNLEN): Don't bother to check for strnlen decl,
32043         since gl_FUNC_STRNDUP does that now.
32044         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Set HAVE_DECL_STRNLEN if necessary.
32045         Check for decl here...
32046         (gl_PREREQ_STRNLEN): ... not here.
32047         * m4/strpbrk.m4 (gl_FUNC_STRPBRK): Set HAVE_STRPBRK if necessary.
32048         * m4/strsep.m4 (gl_FUNC_STRSEP): Set HAVE_STRSEP if necessary.
32049         * m4/strstr.m4 (gl_FUNC_STRSTR): Set REPLACE_STRSTR if necessary.
32050         * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Set HAVE_DECL_STRTOK_R if
32051         necessary.
32052         * modules/string: New file.
32053         * modules/memmem (Files): Remove special-purpose include file.
32054         (Depends-on): Add string.
32055         (Include): Include <string.h>, not the removed file.
32056         * modules/mempcpy: Likewise.
32057         * modules/memrchr: Likewise.
32058         * modules/stpcpy: Likewise.
32059         * modules/stpncpy: Likewise.
32060         * modules/strcase: Likewise.
32061         * modules/strchrnul: Likewise.
32062         * modules/strdup: Likewise.
32063         * modules/strndup: Likewise.
32064         * modules/strnlen: Likewise.
32065         * modules/strpbrk: Likewise.
32066         * modules/strsep: Likewise.
32067         * modules/strstr: Likewise.
32068         * modules/strtok_r: Likewise.
32069         * tests/test-dirname.c: Don't include "strdup.h", since
32070         <string.h> now suffices.
32071         * tests/test-memmem.c: Don't include "memmem.h", since
32072         <string.h> now suffices.
32073
32074 2007-01-25  Bruno Haible  <bruno@clisp.org>
32075
32076         * lib/striconveh.c (mem_cd_iconveh_internal): Ignore *lengthp if
32077         *resultp is 0.
32078
32079         * lib/unistr/u16-to-u8.c (u16_to_u8): Fix u8_uctomb invocation.
32080         * lib/unistr/u32-to-u8.c (u32_to_u8): Likewise.
32081         * lib/unistr/u8-to-u16.c (u8_to_u16): Fix u16_uctomb invocation.
32082         * lib/unistr/u32-to-u16.c (u32_to_u16): Likewise.
32083
32084         * modules/unistr/u8-to-u16 (Depends-on): Add missing modules.
32085         * modules/unistr/u8-to-u32 (Depends-on): Add missing modules.
32086         * modules/unistr/u16-to-u8 (Depends-on): Add missing modules.
32087         * modules/unistr/u16-to-u32 (Depends-on): Add missing modules.
32088         * modules/unistr/u32-to-u8 (Depends-on): Add missing modules.
32089         * modules/unistr/u32-to-u16 (Depends-on): Add missing modules.
32090
32091 2007-01-24  Bruno Haible  <bruno@clisp.org>
32092
32093         Don't AC_REQUIRE autoconf macros that invoke AC_LIBOBJ. See
32094         <http://lists.gnu.org/archive/html/bug-gnulib/2006-10/msg00279.html>.
32095         * m4/argp.m4 (gl_ARGP): Invoke, don't require, gl_GETOPT_SUBSTITUTE.
32096         * m4/fts.m4 (gl_FUNC_FTS, gl_FUNC_FTS_LGPL): Invoke, don't require,
32097         gl_FUNC_FTS_CORE.
32098         (gl_FUNC_FTS_CORE): Invoke, don't require, gl_FUNC_OPENAT.
32099         * m4/lstat.m4 (gl_FUNC_LSTAT): Invoke, don't require,
32100         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
32101         * m4/memcmp.m4 (gl_FUNC_MEMCMP): Invoke, don't require, AC_FUNC_MEMCMP.
32102         * m4/mktime.m4 (gl_FUNC_MKTIME): Invoke, don't require, AC_FUNC_MKTIME.
32103         * m4/openat.m4 (gl_FUNC_OPENAT): Invoke, don't require,
32104         gl_FUNC_FCHOWNAT.
32105         * m4/strftime.m4 (gl_FUNC_GNU_STRFTIME): Invoke, don't require,
32106         gl_FUNC_STRFTIME.
32107         * m4/strtod.m4 (gl_FUNC_STRTOD): Invoke, don't require, AC_FUNC_STRTOD.
32108         Reported by Ralf Wildenhues.
32109
32110 2007-01-24  Bruno Haible  <bruno@clisp.org>
32111
32112         Drop AC_REQUIRE calls that are redundant with the module dependencies.
32113         * m4/canon-host.m4 (gl_PREREQ_CANON_HOST): Don't require
32114         gl_GETADDRINFO.
32115         * m4/chdir-long.m4 (gl_PREREQ_CHDIR_LONG): Don't require AM_STDBOOL_H,
32116         gl_FUNC_MEMPCPY, gl_FUNC_OPENAT, gl_FUNC_MEMRCHR.
32117         * m4/openat.m4 (gl_PREREQ_OPENAT): Don't require gl_SAVE_CWD.
32118
32119 2007-01-24  Paul Eggert  <eggert@cs.ucla.edu>
32120
32121         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Add test for glibc bug 361.
32122         Don't use 'exit'; just return from 'main'.
32123         (_AC_LIBOBJ_FNMATCH): Check for headers and functions just once.
32124
32125         * lib/fnmatch_.h: Readjust white space and comments to match
32126         glibc, to avoid spurious diffs.
32127
32128 2007-01-23  Paul Eggert  <eggert@cs.ucla.edu>
32129
32130         * lib/fnmatch_loop.c (internal_fnmatch) [!_LIBC]: #if-out the
32131         2004-12-01 change by Jakub Jelinek, since this code won't compile
32132         if !LIBC.  Problem reported by Bob Proulx.
32133
32134 2007-01-23  Bruno Haible  <bruno@clisp.org>
32135
32136         * lib/striconveh.c: Include c-strcaseeq.h.
32137         (mem_iconveh, str_iconveh): Use STRCASEEQ instead of c_strcasecmp.
32138         * modules/striconveh (Depends-on): Add c-strcaseeq.
32139
32140 2007-01-23  Bruno Haible  <bruno@clisp.org>
32141
32142         * MODULES.html.sh (String handling): Add streq, c-strcaseeq.
32143
32144         * modules/c-strcaseeq: New file.
32145         * lib/c-strcaseeq.h: New file.
32146
32147         * modules/streq: New file.
32148         * lib/streq.h: New file.
32149
32150 2007-01-23  Bruno Haible  <bruno@clisp.org>
32151
32152         * modules/striconveha-tests: New file.
32153         * tests/test-striconveha.c: New file.
32154
32155         * lib/striconveha.h: Include <stdbool.h>.
32156         (mem_iconveha, str_iconveha): Add 'transliterate' argument.
32157         * lib/striconveha.c: Include allocsa.h, strdup.h, c-strcase.h.
32158         (mem_iconveha_notranslit): Renamed from mem_iconveha.
32159         (mem_iconveha): New function.
32160         (str_iconveha_notranslit): Renamed from str_iconveha.
32161         (str_iconveha): New function.
32162         * modules/striconveha (Depends-on): Add stdbool, allocsa, strdup,
32163         c-strcase.
32164
32165 2007-01-23  Bruno Haible  <bruno@clisp.org>
32166
32167         * lib/striconveha.c (mem_iconveha): Fix endless recursion. Try all
32168         encodings without forgiving before trying any encoding with handler.
32169         (str_iconveha): Try all encodings without forgiving before trying any
32170         encoding with handler.
32171
32172 2007-01-23  Paul Eggert  <eggert@cs.ucla.edu>
32173
32174         Import the following changes from libc.
32175
32176         2005-10-14  Ulrich Drepper  <drepper@redhat.com>
32177
32178         * lib/fnmatch_loop.c: Adjust for changed secondary hash function.
32179
32180         2004-12-01  Jakub Jelinek  <jakub@redhat.com>
32181
32182         * lib/fnmatch_loop.c (internal_fnmatch): Clear is_seqval after
32183         normal_bracket label.
32184
32185         2004-09-01  Jakub Jelinek  <jakub@redhat.com>
32186
32187         [BZ #361]
32188         * lib/fnmatch_loop.c (FCT): For backslash between brackets, branch
32189         to normal_bracket after fetching the next character.
32190
32191 2007-01-22  Bruno Haible  <bruno@clisp.org>
32192
32193         * lib/striconveh.h (mem_cd_iconveh, mem_iconveh): Add 'offsets'
32194         argument.
32195         * lib/striconveh.c (iconv_carefully_1): New function.
32196         (mem_cd_iconveh_internal, mem_cd_iconveh, mem_iconveh): Add 'offsets'
32197         argument.
32198         (str_cd_iconveh): Update.
32199         * lib/striconveha.h (mem_iconveha): Add 'offsets' argument.
32200         * lib/striconveha.c (mem_iconveha): Add 'offsets' argument.
32201         * tests/test-striconveh.c (MAGIC): New macro.
32202         (new_offsets): New function.
32203         (main): Test call with and without offsets.
32204
32205 2007-01-22  Bruno Haible  <bruno@clisp.org>
32206
32207         * modules/sys_stat (Makefile.am): Use @MKDIR_P@ instead of $(MKDIR_P).
32208         * modules/sys_select (Makefile.am): Likewise.
32209         * modules/sys_socket (Makefile.am): Likewise.
32210         * modules/sys_time (Makefile.am): Likewise.
32211
32212 2007-01-22  Paul Eggert  <eggert@cs.ucla.edu>
32213
32214         * modules/gettimeofday (License): Change from GPL to LGPL, since
32215         gettimeofday is a library function.
32216
32217 2007-01-22  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
32218
32219         * lib/poll.c (rpl_poll): Don't check against FD_SETSIZE under Win32.
32220
32221 2007-01-21  Bruno Haible  <bruno@clisp.org>
32222
32223         * m4/gnulib-common.m4 (AC_PROG_MKDIR_P): New macro.
32224
32225 2007-01-21  Bruno Haible  <bruno@clisp.org>
32226
32227         * modules/striconveha: New file.
32228         * lib/striconveha.h: New file.
32229         * lib/striconveha.c: New file.
32230         * MODULES.html.sh (Internationalization functions): Add striconveha.
32231         * lib/striconv.c (str_iconv): Optimize the case of an empty input
32232         string.
32233         * lib/striconveh.c (mem_iconveh, str_iconveh): Likewise.
32234
32235 2007-01-21  Bruno Haible  <bruno@clisp.org>
32236
32237         * lib/striconv.c (str_iconv): Guarantee errno is set when strdup fails.
32238         * lib/striconveh.c (str_iconveh): Likewise.
32239
32240 2007-01-21  Bruno Haible  <bruno@clisp.org>
32241
32242         * lib/striconveh.h (mem_iconveh): New declaration.
32243         * lib/striconveh.c (mem_iconveh): New function.
32244         * tests/test-striconveh.c (main): Add tests for mem_iconveh.
32245
32246 2007-01-21  Bruno Haible  <bruno@clisp.org>
32247
32248         * lib/xstriconv.h (xmem_cd_iconv): Change specification.
32249
32250         * lib/striconveh.h (mem_cd_iconveh): Change specification.
32251         * lib/striconveh.c (mem_cd_iconveh): Don't free the user-supplied
32252         original result buffer.
32253         (str_cd_iconveh): Update.
32254         * tests/test-striconveh.c (main): Update.
32255
32256         * lib/striconv.h (mem_cd_iconv): Change specification.
32257         * lib/striconv.c (mem_cd_iconv): Don't free the user-supplied original
32258         result buffer.
32259         (str_cd_iconv): Update.
32260         * tests/test-striconv.c (main): Update.
32261
32262 2007-01-21  Bruno Haible  <bruno@clisp.org>
32263
32264         * gnulib-tool: Fix test whether sed is GNU sed supporting --posix.
32265
32266 2007-01-20  Jim Meyering  <jim@meyering.net>
32267
32268         * lib/userspec.c (parse_with_separator): If a user or group string
32269         starts with "+", skip the corresponding name-to-ID look-up, since
32270         such a look-up must fail: user and group names may not include "+".
32271
32272 2007-01-19  Paul Eggert  <eggert@cs.ucla.edu>
32273
32274         * lib/poll.c: Include sys/time.h and time.h unconditionally,
32275         since we now assume the sys_time module.
32276         * m4/poll.m4 (gl_PREREQ_POLL): Don't require AC_HEADER_TIME or
32277         check for sys/time.h; no longer needed.
32278         * modules/poll (Depends-on): Depend on sys_time.
32279
32280 2007-01-18  Bruno Haible  <bruno@clisp.org>
32281
32282         * m4/mktime.m4 (AC_FUNC_MKTIME): Remove test for <sys/time.h>.
32283         * m4/strftime.m4 (gl_FUNC_STRFTIME): Likewise.
32284
32285         * m4/tempname.m4 (gl_PREREQ_TEMPNAME): Remove tests for sys/time.h and
32286         gettimeofday.
32287
32288         * tests/test-gettimeofday.c: Include <time.h>.
32289         (dummy): Remove variable.
32290
32291         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H_BODY): Renamed from
32292         gl_HEADER_SYS_TIME_H.
32293         (gl_HEADER_SYS_TIME_H): New macro.
32294
32295         * lib/sys_time_.h: Test GETTIMEOFDAY_REPLACEMENT instead of
32296         HAVE_GETTIMEOFDAY_POSIX_SIGNATURE and GETTIMEOFDAY_CLOBBERS_LOCALTIME.
32297         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY,
32298         gl_FUNC_GETTIMEOFDAY_CLOBBER): Set GETTIMEOFDAY_REPLACEMENT instead of
32299         HAVE_GETTIMEOFDAY_POSIX_SIGNATURE and GETTIMEOFDAY_CLOBBERS_LOCALTIME.
32300         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H): Initialize
32301         GETTIMEOFDAY_REPLACEMENT instead of HAVE_GETTIMEOFDAY_POSIX_SIGNATURE
32302         and GETTIMEOFDAY_CLOBBERS_LOCALTIME.
32303         * modules/sys_time (sys/time.h): Substitute GETTIMEOFDAY_REPLACEMENT
32304         instead of HAVE_GETTIMEOFDAY_POSIX_SIGNATURE and
32305         GETTIMEOFDAY_CLOBBERS_LOCALTIME.
32306
32307         * m4/gettimeofday.m4 (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Undo the
32308         last change; it caused a compilation error when cross-compiling to
32309         Cygwin.
32310
32311 2007-01-18  Jim Meyering  <jim@meyering.net>
32312
32313         Use "$(MKDIR_P) sys", not race-prone "test -d sys || mkdir sys".
32314         * modules/sys_stat (Makefile.am): Use "$(MKDIR_P) sys", rather
32315         than the race-prone "test -d sys || mkdir sys".
32316         (configure.ac): Use AC_PROG_MKDIR_P.
32317         * modules/sys_select: Likewise.
32318         * modules/sys_socket: Likewise.
32319         * modules/sys_time: Likewise.
32320
32321 2007-01-18  Eric Blake  <ebb9@byu.net>
32322
32323         * m4/gettimeofday.m4 (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Also
32324         replace gettimeofday.
32325         * lib/gettimeofday.c (rpl_gettimeofday): Declare with replacement
32326         name, to avoid infinite recursion.
32327
32328 2007-01-17  Paul Eggert  <eggert@cs.ucla.edu>
32329
32330         * MODULES.html.sh (Support for systems lacking POSIX:2001): New
32331         module sys_time.
32332         * lib/gethrxtime.c: Include <sys/time.h>, since we can no longer
32333         assume timespec.h defines struct timeval.
32334         * lib/settime.c: Likewise.
32335         * lib/utimens.c: Likewise.
32336         * lib/gettime.c (gettime): Remove test against HAVE_GETTIMEOFDAY,
32337         since we now assume the gettimeofday module.
32338         * lib/tempname.c (__gen_tempname): Likewise.
32339         * lib/gettimeofday.h: Remove.
32340         * lib/gettimeofday.c: Include <sys/time.h> instead of "gettimeofday.h".
32341         Don't include <sys/types.h> and <stdlib.h>; shouldn't be needed.
32342         Include <time.h>, for 'time()'.
32343         (localtime_buffer_addr): Also use this workaround if
32344         TZSET_CLOBBERS_LOCALTIME.  Set to a dummy static variable by default,
32345         to simplify the uses.  All uses changed.
32346         (localtime, gmtime, tzset, gettimeofday): Reformat slightly so
32347         that #undef is inside {}, and 'const' follows type name consistently.
32348         (tzset): Define replacement only if TZSET_CLOBBERS_LOCALTIME.
32349         (gettimeofday): Do not use the maximum possible value for
32350         tv->tv_usec, since that might break usages other than ls.c.
32351         Instead, we'll leave ls.c alone.  This undoes today's patch
32352         by Bruno.  Add a compile-time warning for 1s-clock resolution;
32353         we've never observed the problem but might as well keep the
32354         canary.
32355         * lib/nanosleep.c: Include timespec.h first, for interface check.
32356         * lib/nanosleep.c: Include <sys/time.h> unconditionally, since we
32357         now assume the sys_time module.
32358         * lib/tempname.c: Likewise.
32359         * lib/timespec.h: Likewise.
32360         * lib/nanosleep.c: Don't worry about TIME_WITH_SYS_TIME; no longer
32361         needed.
32362         * lib/strftime.c: Likewise.
32363         * lib/timespec.h: Likewise.
32364         * lib/posixtm.c: Include posixtm.h first, for interface check.
32365         Don't worry about TM_IN_SYS_TIME; that's wayyy obsolete.
32366         * lib/posixtm.h: Include stdbool.h and time.h, for proper interface.
32367         * lib/strftime.c: Don't include <sys/types.h>; shouldn't be needed.
32368         * lib/sys_time_.h: New file.
32369         * lib/timespec.h (struct timespec): Use long int, not long.
32370         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY):
32371         (gl_FUNC_GETTIMEOFDAY_CLOBBER, gl_PREREQ_GETTIMEOFDAY):
32372         Remove obsolescent call to AC_HEADER_TIME.
32373         * m4/mktime.m4 (AC_FUNC_MKTIME): Likewise.
32374         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
32375         * m4/strftime.m4 (gl_FUNC_STRFTIME): Likewise.
32376         * m4/timespec.m4 (gl_TIMESPEC, gl_CHECK_TYPE_STRUCT_TIMESPEC):
32377         Likewise.
32378         * m4/tzset.m4 (gl_FUNC_TZSET_CLOBBER): Likewise.
32379         * m4/utimbuf.m4 (gl_CHECK_TYPE_STRUCT_UTIMBUF): Likewise.
32380         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY): Move sys/time.h tests
32381         into the sys_time module.  Check for gettimeofday just once.
32382         Prefix our variables with gl_, not with ac_ or jm_.  Tighten test
32383         for gettimeofday signature to just check the signature.  Merely
32384         compile it, since linking doesn't test signature.  Improve test for
32385         whether gettimeofday.o is actually needed.
32386         (gl_FUNC_GETTIMEOFDAY_CLOBBER): Renamed from
32387         AC_FUNC_GETTIMEOFDAY_CLOBBER.  All uses changed.  Use
32388         AC_RUN_IFELSE rather than AC_TRY_RUN.  If clobbering, set
32389         and define GETTIMEOFDAY_CLOBBERS_LOCALTIME.
32390         (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Don't define
32391         GETTIMEOFDAY_CLOBBERS_LOCALTIME; that's gl_FUNC_GETTIMEOFDAY_CLOBBER's
32392         job.  Don't define tzset; that's gl_FUNC_TZSET_CLOBBER's job.
32393         * m4/mktime.m4 (AC_FUNC_MKTIME): Just include <time.h> rather
32394         than worrying about sys/time.h.
32395         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP):
32396         Don't bother worrying about TIME_WITH_SYS_TIME.
32397         * m4/stat-time.m4 (gl_STAT_TIME): Likewise.
32398         * m4/posixtm.m4 (gl_POSIXTM): Remove obsolescent call to AC_STRUCT_TM.
32399         * m4/sys_time_h.m4: New file.
32400         * m4/tzset.m4 (gl_FUNC_TZSET_CLOBBER): Require gl_HEADER_SYS_TIME_H.
32401         Don't include sys/time.h.  Return from main rather than exiting.
32402         Define TZSET_CLOBBERS_LOCALTIME, for consistency with other names;
32403         all uses changed.
32404         * modules/gethrxtime (Depends-on): Add sys_time.
32405         * modules/gettime (Depends-on): Likewise.
32406         * modules/gettimeofday (Depends-on): Likewise.
32407         * modules/nanosleep (Depends-on): Likewise.
32408         * modules/settime (Depends-on): Likewise.
32409         * modules/tempname (Depends-on): Likewise.
32410         * modules/utimens (Depends-on): Likewise.
32411         * modules/gettimeofday (Files): Remove lib/gettimeofday.h.
32412         (Include:) Change back to <sys/time.h>.
32413         (Maintainer:) Add self.
32414         * modules/sys_time: New file.
32415         * modules/tempname (Depends-on): Add gettimeofday.
32416         * tests/test-gettimeofday.c: Include <sys/time.h>
32417         rather than gettimeofday.h.
32418
32419 2007-01-17  Bruno Haible  <bruno@clisp.org>
32420
32421         * gnulib-tool (func_get_license): Revert last patch. Instead, let
32422         the license default to GPL.
32423         (func_create_testdir): Don't complain if a module is LGPL and its
32424         tests module depends on GPLed modules.
32425
32426 2007-01-17  Bruno Haible  <bruno@clisp.org>
32427
32428         * lib/gettimeofday.c (gettimeofday): Add code for the case
32429         HAVE_GETTIMEOFDAY && !GETTIMEOFDAY_CLOBBERS_LOCALTIME. Use the
32430         maximum possible value for tv->tv_usec, rather than the minimum one.
32431
32432 2005-10-08  Martin Lambers  <marlam@marlam.de>
32433 2005-10-08  Paul Eggert  <eggert@cs.ucla.edu>
32434 2007-01-16  Bruno Haible  <bruno@clisp.org>
32435
32436         * modules/gettimeofday (Files): Add lib/gettimeofday.h.
32437         (configure.ac): Remove AC_FUNC_GETTIMEOFDAY_CLOBBER. Add
32438         gl_FUNC_GETTIMEOFDAY.
32439         (Include): Add gettimeofday.h.
32440         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY): New macro.
32441         (AC_FUNC_GETTIMEOFDAY_CLOBBER): Don't invoke gl_PREREQ_GETTIMEOFDAY.
32442         (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Define
32443         GETTIMEOFDAY_CLOBBERS_LOCALTIME. Invoke gl_PREREQ_GETTIMEOFDAY here.
32444         (gl_PREREQ_GETTIMEOFDAY): Check for <sys/timeb.h> and _ftime.
32445         * lib/gettimeofday.h: New file.
32446         * lib/gettimeofday.c: Include <sys/timeb.h>.
32447         (localtime_buffer_addr, rpl_localtime, rpl_gmtime, rpl_tzset): Define
32448         only if GETTIMEOFDAY_CLOBBERS_LOCALTIME.
32449         (rpl_gettimeofday) [!HAVE_GETTIMEOFDAY]: Use _ftime() when available;
32450         fall back on time().
32451
32452         * tests/test-gettimeofday.c: New file.
32453         * modules/gettimeofday-tests: New file.
32454
32455 2007-01-16  Eric Blake  <ebb9@byu.net>
32456
32457         * modules/fnmatch (Depends-on): Depend on wchar.
32458         * lib/fnmatch.c (WIDE_CHAR_SUPPORT): Assume <wchar.h>.
32459         * m4/fnmatch.m4: Likewise.
32460         * modules/mbchar (Makefile.am): Assume <wchar.h>.
32461         * m4/mbchar.m4: Likewise.
32462         * modules/mbswidth (Depends-on): Depend on wchar.
32463         * lib/mbswidth.c: Assume <wchar.h>.
32464         * m4/mbswidth.m4: Likewise.
32465         * modules/quotearg (Depends-on): Depend on wchar.
32466         * lib/quotearg.c: Assume <wchar.h>.
32467         * m4/quotearg.m4: Likewise.
32468         * modules/regex (Depends-on): Depend on wchar.
32469         * lib/regex_internal.h: Assume <wchar.h>.
32470         * m4/regex.m4: Likewise.
32471         * modules/stdint (Depends-on): Depend on wchar.
32472         * lib/stdint_.h [!defined WCHAR_MIN]: Assume <wchar.h>.
32473         * m4/stdint.m4: Likewise.
32474         * tests/test-stdint.c [HAVE_WINT_T]: Likewise.
32475         * modules/strftime (Depends-on): Depend on wchar.
32476         * lib/strftime.c (DO_MULTIBYTE): Assume <wchar.h>.
32477         * modules/strtol (Depends-on): Depend on wchar.
32478         * lib/strtol.c: Assume <wchar.h>.
32479         * modules/wcwidth (Depends-on): Depend on wchar.
32480         * lib/wcwidth.h: Assume <wchar.h>.
32481         * m4/wcwidth.m4: Likewise.
32482
32483 2007-01-16  Bruno Haible  <bruno@clisp.org>
32484
32485         * modules/csharpexec-script: New, created from...
32486         * modules/csharpexec: ... this.
32487
32488 2007-01-16  Paolo Bonzini  <bonzini@gnu.org>
32489
32490         * modules/javaexec-script: New, created from...
32491         * modules/javaexec: ... this.
32492
32493 2007-01-16  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
32494
32495         * modules/poll (Dependencies): Add sys_select.
32496
32497 2007-01-15  Jim Meyering  <jim@meyering.net>
32498
32499         * m4/readutmp.m4 (gl_READUTMP): Work around AIX 4.3 struct-
32500         redefinition bug when using both <utmp.h> and <utmpx.h> headers.
32501         * lib/readutmp.h: Likewise.  Reported by Daniel Richard G. in
32502         <http://article.gmane.org/gmane.comp.gnu.core-utils.bugs/9415>.
32503
32504 2007-01-15  Bruno Haible  <bruno@clisp.org>
32505
32506         * modules/striconveh: New file.
32507         * lib/striconveh.h: New file.
32508         * lib/striconveh.c: New file.
32509         * MODULES.html.sh (Internationalization functions): Add striconveh.
32510
32511         * modules/striconveh-tests: New file.
32512         * tests/test-striconveh.c: New file.
32513
32514 2007-01-15  Bruno Haible  <bruno@clisp.org>
32515
32516         * lib/striconv.c (str_cd_iconv): Use the first algorithm if iconv is
32517         not from GNU libiconv or GNU libc.
32518
32519 2007-01-15  Bruno Haible  <bruno@clisp.org>
32520
32521         * doc/gnulib-intro.texi (Copyright): Explain the different license
32522         terms for module descriptions, autoconf macros, tests, documentation.
32523
32524 2007-01-14  Bruno Haible  <bruno@clisp.org>
32525
32526         * modules/striconv-tests: New file.
32527         * tests/test-striconv.c: New file.
32528
32529 2007-01-14  Bruno Haible  <bruno@clisp.org>
32530
32531         * modules/iconv-tests: New file.
32532         * tests/test-iconv.c: New file.
32533
32534 2007-01-14  Bruno Haible  <bruno@clisp.org>
32535
32536         * gnulib-tool (func_get_license): For test modules, use the license of
32537         the main module.
32538
32539 2007-01-14  Bruno Haible  <bruno@clisp.org>
32540
32541         * modules/iconv (Include): Clarify that <iconv.h> can only be included
32542         if iconv is found to exist.
32543
32544 2007-01-14  Bruno Haible  <bruno@clisp.org>
32545
32546         * modules/c-ctype-tests: New file.
32547         * tests/test-c-ctype.c: New file.
32548
32549 2007-01-14  Bruno Haible  <bruno@clisp.org>
32550
32551         * modules/binary-io-tests: New file.
32552         * tests/test-binary-io.sh: New file.
32553         * tests/test-binary-io.c: New file.
32554
32555 2007-01-14  Bruno Haible  <bruno@clisp.org>
32556
32557         * modules/array-oset-tests: New file.
32558         * tests/test-array_oset.c: New file.
32559
32560 2007-01-14  Bruno Haible  <bruno@clisp.org>
32561
32562         * modules/array-list-tests: New file.
32563         * tests/test-array_list.c: New file.
32564
32565 2007-01-14  Bruno Haible  <bruno@clisp.org>
32566
32567         * gnulib-tool (func_create_testdir): Don't unnecessarily run configure
32568         and make.
32569         Reported by Simon Josefsson in
32570         <http://lists.gnu.org/archive/html/bug-gnulib/2007-01/msg00139.html>
32571
32572 2007-01-14  Bruno Haible  <bruno@clisp.org>
32573
32574         * modules/allocsa-tests: New file.
32575         * tests/test-allocsa.c: New file.
32576
32577 2007-01-14  Bruno Haible  <bruno@clisp.org>
32578
32579         * modules/fchdir (Depends-on): Add absolute-header.
32580         * modules/unistd (Depends-on): Likewise.
32581
32582 2006-12-30  Bruno Haible  <bruno@clisp.org>
32583
32584         * modules/fchdir: New file.
32585         * modules/unistd (Files): Add lib/unistd_.h.
32586         (Makefile.am): Generate unistd.h from unistd_.h.
32587         * lib/fchdir.c: New file.
32588         * lib/dirent_.h: New file.
32589         * lib/unistd_.h: New file.
32590         * lib/fcntl_.h (open) [FCHDIR_REPLACEMENT]: New replacement.
32591         * m4/fchdir.m4: New file.
32592         * m4/unistd_h.m4 (gl_PREREQ_UNISTD): New macro.
32593         (gl_HEADER_UNISTD): Invoke it.
32594         * lib/dup-safer.c (dup_safer) [FCHDIR_REPLACEMENT]: Use the dup
32595         function.
32596         * lib/backupfile.c (opendir, closedir): Undefine.
32597         * lib/chown.c (open, close): Undefine.
32598         * lib/clean-temp.c (open, close): Undefine.
32599         * lib/copy-file.c (open, close): Undefine.
32600         * lib/execute.c (open, close): Undefine.
32601         * lib/fsusage.c (open, close): Undefine.
32602         * lib/gc-gnulib.c (open, close): Undefine.
32603         * lib/getcwd.c (opendir, closedir): Undefine.
32604         * lib/glob.c (opendir, closedir): Undefine.
32605         * lib/javacomp.c (open, close): Undefine.
32606         * lib/mountlist.c (open, close, opendir, closedir): Undefine.
32607         * lib/openat-proc.c (open, close): Undefine.
32608         * lib/pagealign_alloc.c (open, close): Undefine.
32609         * lib/pipe.c (open, close): Undefine.
32610         * lib/progreloc.c (open, close): Undefine.
32611         * lib/savedir.c (opendir, closedir): Undefine.
32612         * lib/utime.c (open, close): Undefine.
32613         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add fchdir.
32614
32615 2007-01-10  Bruno Haible  <bruno@clisp.org>
32616
32617         * lib/striconv.c (mem_cd_iconv): Align the temporary buffer.
32618
32619 2007-01-12  Eric Blake  <ebb9@byu.net>
32620
32621         Provide a robust <wchar.h>.  Further simplifications are now
32622         possible in other modules, but not included here.
32623         * modules/wchar: New module.
32624         * m4/wchar.m4: New file.
32625         * lib/wchar_.h: Likewise.
32626         * modules/mbchar (Depends-on): Depend on wchar, as the first use
32627         of the new module.
32628         * MODULES.html.sh (Extended multibyte and wide character utilities):
32629         New section.
32630
32631 2007-01-12  Paul Eggert  <eggert@cs.ucla.edu>
32632
32633         * lib/xreadlink.c (SYMLINK_MAX) [!defined SYMLINK_MAX]: Define
32634         to a reasonable default for memory allocation.
32635         (xreadlink): Don't allocate a huge buffer, to work around a buggy
32636         file system that reports garbage st_size values for symlinks.
32637         Problem reported by Liyang Hu.
32638
32639 2007-01-11  Simon Josefsson  <simon@josefsson.org>
32640
32641         * gnulib-tool (func_all_modules): Exclude all .* files (e.g.,
32642         Emacs .#* auto-save files).
32643
32644 2007-01-11  Bruno Haible  <bruno@clisp.org>
32645
32646         * gnulib-tool (func_all_modules): Exclude all files inside the CVS
32647         directory.
32648
32649 2007-01-10  Paul Eggert  <eggert@cs.ucla.edu>
32650
32651         Use @...@ consistently in lib/wctype_.h.
32652         * lib/wctype_.h [HAVE_WINT_T]: Go back to using @...@, but rely
32653         on it being set to 1 or 0.
32654         * m4/wctype.m4 (gl_WCTYPE_H): Set HAVE_WINT_T to 1 or 0, and
32655         go back to AC_SUBSTing it.
32656         * modules/wctype (Makefile.am): Undo previous change.
32657
32658 2007-01-10  Eric Blake  <ebb9@byu.net>
32659
32660         * lib/wctype_.h [HAVE_WINT_T]: Rely on AC_DEFINE.
32661         * m4/wctype.m4 (gl_WCTYPE_H): No need to AC_SUBST(HAVE_WINT_T).
32662         * modules/wctype (Makefile.am): Likewise.
32663         Reported by Chris McGuire.
32664
32665 2007-01-10  Jim Meyering  <jim@meyering.net>
32666
32667         fts.c: a small readability/maintainability improvement
32668         * lib/fts.c (fts_read): Make this code slightly more readable and
32669         maintainable by hoisting the "sp->fts_cur = p" assignments to
32670         immediately follow the statements that set P.  Derived from
32671         the patch by Miloslav Trmac in http://bugzilla.redhat.com/222089.
32672
32673 2007-01-10  Eric Blake  <ebb9@byu.net>
32674
32675         * lib/wctype_.h [HAVE_WINT_T]: Include <stddef.h> before
32676         <wchar.h>, to work around BSDI bug in BSD/OS 4.0.1.
32677         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Likewise.
32678         * m4/wint_t.m4 (gt_TYPE_WINT_T): Likewise.
32679         Reported by Chris McGuire.
32680
32681 2007-01-09  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
32682
32683         * gnulib-tool (func_all_modules): Use POSIX conforming escaping
32684         in sed script.
32685
32686 2007-01-09  Bruno Haible  <bruno@clisp.org>
32687
32688         * MODULES.html.sh: Accept options --cvs-urls, --git-urls.
32689         (repo_url_prefix, repo_url_suffix, repo_url_suffix_repl): New
32690         variables.
32691         (func_module): Use them.
32692
32693 2007-01-09  Bruno Haible  <bruno@clisp.org>
32694
32695         * modules/unistr/base: New file.
32696         * lib/unistr.h: New file.
32697
32698         * modules/unistr/u8-to-u16: New file.
32699         * lib/unistr/u8-to-u16.c: New file.
32700
32701         * modules/unistr/u8-to-u32: New file.
32702         * lib/unistr/u8-to-u32.c: New file.
32703
32704         * modules/unistr/u16-to-u8: New file.
32705         * lib/unistr/u16-to-u8.c: New file.
32706
32707         * modules/unistr/u16-to-u32: New file.
32708         * lib/unistr/u16-to-u32.c: New file.
32709
32710         * modules/unistr/u32-to-u8: New file.
32711         * lib/unistr/u32-to-u8.c: New file.
32712
32713         * modules/unistr/u32-to-u16: New file.
32714         * lib/unistr/u32-to-u16.c: New file.
32715
32716         * modules/unistr/u8-check: New file.
32717         * modules/unistr/u16-check: New file.
32718         * modules/unistr/u32-check: New file.
32719         * lib/unistr/u8-check.c: New file.
32720         * lib/unistr/u16-check.c: New file.
32721         * lib/unistr/u32-check.c: New file.
32722
32723         * modules/unistr/u8-chr: New file.
32724         * modules/unistr/u16-chr: New file.
32725         * modules/unistr/u32-chr: New file.
32726         * lib/unistr/u8-chr.c: New file.
32727         * lib/unistr/u16-chr.c: New file.
32728         * lib/unistr/u32-chr.c: New file.
32729
32730         * modules/unistr/u8-cmp: New file.
32731         * modules/unistr/u16-cmp: New file.
32732         * modules/unistr/u32-cmp: New file.
32733         * lib/unistr/u8-cmp.c: New file.
32734         * lib/unistr/u16-cmp.c: New file.
32735         * lib/unistr/u32-cmp.c: New file.
32736
32737         * modules/unistr/u8-cpy: New file.
32738         * modules/unistr/u16-cpy: New file.
32739         * modules/unistr/u32-cpy: New file.
32740         * lib/unistr/u8-cpy.c: New file.
32741         * lib/unistr/u16-cpy.c: New file.
32742         * lib/unistr/u32-cpy.c: New file.
32743         * lib/unistr/u-cpy.h: New file.
32744
32745         * modules/unistr/u8-cpy-alloc: New file.
32746         * modules/unistr/u16-cpy-alloc: New file.
32747         * modules/unistr/u32-cpy-alloc: New file.
32748         * lib/unistr/u8-cpy-alloc.c: New file.
32749         * lib/unistr/u16-cpy-alloc.c: New file.
32750         * lib/unistr/u32-cpy-alloc.c: New file.
32751         * lib/unistr/u-cpy-alloc.h: New file.
32752
32753         * modules/unistr/u8-endswith: New file.
32754         * modules/unistr/u16-endswith: New file.
32755         * modules/unistr/u32-endswith: New file.
32756         * lib/unistr/u8-endswith.c: New file.
32757         * lib/unistr/u16-endswith.c: New file.
32758         * lib/unistr/u32-endswith.c: New file.
32759         * lib/unistr/u-endswith.h: New file.
32760
32761         * modules/unistr/u8-mblen: New file.
32762         * modules/unistr/u16-mblen: New file.
32763         * modules/unistr/u32-mblen: New file.
32764         * lib/unistr/u8-mblen.c: New file.
32765         * lib/unistr/u16-mblen.c: New file.
32766         * lib/unistr/u32-mblen.c: New file.
32767
32768         * modules/unistr/u8-mbtouc: New file.
32769         * modules/unistr/u16-mbtouc: New file.
32770         * modules/unistr/u32-mbtouc: New file.
32771         * lib/unistr/u8-mbtouc.c: New file.
32772         * lib/unistr/u16-mbtouc.c: New file.
32773         * lib/unistr/u32-mbtouc.c: New file.
32774
32775         * modules/unistr/u8-mbtouc-safe: New file.
32776         * modules/unistr/u16-mbtouc-safe: New file.
32777         * modules/unistr/u32-mbtouc-safe: New file.
32778         * lib/unistr/u8-mbtouc-safe.c: New file.
32779         * lib/unistr/u16-mbtouc-safe.c: New file.
32780         * lib/unistr/u32-mbtouc-safe.c: New file.
32781
32782         * modules/unistr/u8-move: New file.
32783         * modules/unistr/u16-move: New file.
32784         * modules/unistr/u32-move: New file.
32785         * lib/unistr/u8-move.c: New file.
32786         * lib/unistr/u16-move.c: New file.
32787         * lib/unistr/u32-move.c: New file.
32788         * lib/unistr/u-move.h: New file.
32789
32790         * modules/unistr/u8-next: New file.
32791         * modules/unistr/u16-next: New file.
32792         * modules/unistr/u32-next: New file.
32793         * lib/unistr/u8-next.c: New file.
32794         * lib/unistr/u16-next.c: New file.
32795         * lib/unistr/u32-next.c: New file.
32796
32797         * modules/unistr/u8-prev: New file.
32798         * modules/unistr/u16-prev: New file.
32799         * modules/unistr/u32-prev: New file.
32800         * lib/unistr/u8-prev.c: New file.
32801         * lib/unistr/u16-prev.c: New file.
32802         * lib/unistr/u32-prev.c: New file.
32803
32804         * modules/unistr/u8-set: New file.
32805         * modules/unistr/u16-set: New file.
32806         * modules/unistr/u32-set: New file.
32807         * lib/unistr/u8-set.c: New file.
32808         * lib/unistr/u16-set.c: New file.
32809         * lib/unistr/u32-set.c: New file.
32810         * lib/unistr/u-set.h: New file.
32811
32812         * modules/unistr/u8-startswith: New file.
32813         * modules/unistr/u16-startswith: New file.
32814         * modules/unistr/u32-startswith: New file.
32815         * lib/unistr/u8-startswith.c: New file.
32816         * lib/unistr/u16-startswith.c: New file.
32817         * lib/unistr/u32-startswith.c: New file.
32818         * lib/unistr/u-startswith.h: New file.
32819
32820         * modules/unistr/u8-stpcpy: New file.
32821         * modules/unistr/u16-stpcpy: New file.
32822         * modules/unistr/u32-stpcpy: New file.
32823         * lib/unistr/u8-stpcpy.c: New file.
32824         * lib/unistr/u16-stpcpy.c: New file.
32825         * lib/unistr/u32-stpcpy.c: New file.
32826         * lib/unistr/u-stpcpy.h: New file.
32827
32828         * modules/unistr/u8-stpncpy: New file.
32829         * modules/unistr/u16-stpncpy: New file.
32830         * modules/unistr/u32-stpncpy: New file.
32831         * lib/unistr/u8-stpncpy.c: New file.
32832         * lib/unistr/u16-stpncpy.c: New file.
32833         * lib/unistr/u32-stpncpy.c: New file.
32834         * lib/unistr/u-stpncpy.h: New file.
32835
32836         * modules/unistr/u8-strcat: New file.
32837         * modules/unistr/u16-strcat: New file.
32838         * modules/unistr/u32-strcat: New file.
32839         * lib/unistr/u8-strcat.c: New file.
32840         * lib/unistr/u16-strcat.c: New file.
32841         * lib/unistr/u32-strcat.c: New file.
32842         * lib/unistr/u-strcat.h: New file.
32843
32844         * modules/unistr/u8-strchr: New file.
32845         * modules/unistr/u16-strchr: New file.
32846         * modules/unistr/u32-strchr: New file.
32847         * lib/unistr/u8-strchr.c: New file.
32848         * lib/unistr/u16-strchr.c: New file.
32849         * lib/unistr/u32-strchr.c: New file.
32850
32851         * modules/unistr/u8-strcmp: New file.
32852         * modules/unistr/u16-strcmp: New file.
32853         * modules/unistr/u32-strcmp: New file.
32854         * lib/unistr/u8-strcmp.c: New file.
32855         * lib/unistr/u16-strcmp.c: New file.
32856         * lib/unistr/u32-strcmp.c: New file.
32857
32858         * modules/unistr/u8-strcpy: New file.
32859         * modules/unistr/u16-strcpy: New file.
32860         * modules/unistr/u32-strcpy: New file.
32861         * lib/unistr/u8-strcpy.c: New file.
32862         * lib/unistr/u16-strcpy.c: New file.
32863         * lib/unistr/u32-strcpy.c: New file.
32864         * lib/unistr/u-strcpy.h: New file.
32865
32866         * modules/unistr/u8-strcspn: New file.
32867         * modules/unistr/u16-strcspn: New file.
32868         * modules/unistr/u32-strcspn: New file.
32869         * lib/unistr/u8-strcspn.c: New file.
32870         * lib/unistr/u16-strcspn.c: New file.
32871         * lib/unistr/u32-strcspn.c: New file.
32872         * lib/unistr/u-strcspn.h: New file.
32873
32874         * modules/unistr/u8-strdup: New file.
32875         * modules/unistr/u16-strdup: New file.
32876         * modules/unistr/u32-strdup: New file.
32877         * lib/unistr/u8-strdup.c: New file.
32878         * lib/unistr/u16-strdup.c: New file.
32879         * lib/unistr/u32-strdup.c: New file.
32880         * lib/unistr/u-strdup.h: New file.
32881
32882         * modules/unistr/u8-strlen: New file.
32883         * modules/unistr/u16-strlen: New file.
32884         * modules/unistr/u32-strlen: New file.
32885         * lib/unistr/u8-strlen.c: New file.
32886         * lib/unistr/u16-strlen.c: New file.
32887         * lib/unistr/u32-strlen.c: New file.
32888         * lib/unistr/u-strlen.h: New file.
32889
32890         * modules/unistr/u8-strmblen: New file.
32891         * modules/unistr/u16-strmblen: New file.
32892         * modules/unistr/u32-strmblen: New file.
32893         * lib/unistr/u8-strmblen.c: New file.
32894         * lib/unistr/u16-strmblen.c: New file.
32895         * lib/unistr/u32-strmblen.c: New file.
32896
32897         * modules/unistr/u8-strmbtouc: New file.
32898         * modules/unistr/u16-strmbtouc: New file.
32899         * modules/unistr/u32-strmbtouc: New file.
32900         * lib/unistr/u8-strmbtouc.c: New file.
32901         * lib/unistr/u16-strmbtouc.c: New file.
32902         * lib/unistr/u32-strmbtouc.c: New file.
32903
32904         * modules/unistr/u8-strncat: New file.
32905         * modules/unistr/u16-strncat: New file.
32906         * modules/unistr/u32-strncat: New file.
32907         * lib/unistr/u8-strncat.c: New file.
32908         * lib/unistr/u16-strncat.c: New file.
32909         * lib/unistr/u32-strncat.c: New file.
32910         * lib/unistr/u-strncat.h: New file.
32911
32912         * modules/unistr/u8-strncmp: New file.
32913         * modules/unistr/u16-strncmp: New file.
32914         * modules/unistr/u32-strncmp: New file.
32915         * lib/unistr/u8-strncmp.c: New file.
32916         * lib/unistr/u16-strncmp.c: New file.
32917         * lib/unistr/u32-strncmp.c: New file.
32918
32919         * modules/unistr/u8-strncpy: New file.
32920         * modules/unistr/u16-strncpy: New file.
32921         * modules/unistr/u32-strncpy: New file.
32922         * lib/unistr/u8-strncpy.c: New file.
32923         * lib/unistr/u16-strncpy.c: New file.
32924         * lib/unistr/u32-strncpy.c: New file.
32925         * lib/unistr/u-strncpy.h: New file.
32926
32927         * modules/unistr/u8-strnlen: New file.
32928         * modules/unistr/u16-strnlen: New file.
32929         * modules/unistr/u32-strnlen: New file.
32930         * lib/unistr/u8-strnlen.c: New file.
32931         * lib/unistr/u16-strnlen.c: New file.
32932         * lib/unistr/u32-strnlen.c: New file.
32933         * lib/unistr/u-strnlen.h: New file.
32934
32935         * modules/unistr/u8-strpbrk: New file.
32936         * modules/unistr/u16-strpbrk: New file.
32937         * modules/unistr/u32-strpbrk: New file.
32938         * lib/unistr/u8-strpbrk.c: New file.
32939         * lib/unistr/u16-strpbrk.c: New file.
32940         * lib/unistr/u32-strpbrk.c: New file.
32941         * lib/unistr/u-strpbrk.h: New file.
32942
32943         * modules/unistr/u8-strrchr: New file.
32944         * modules/unistr/u16-strrchr: New file.
32945         * modules/unistr/u32-strrchr: New file.
32946         * lib/unistr/u8-strrchr.c: New file.
32947         * lib/unistr/u16-strrchr.c: New file.
32948         * lib/unistr/u32-strrchr.c: New file.
32949
32950         * modules/unistr/u8-strspn: New file.
32951         * modules/unistr/u16-strspn: New file.
32952         * modules/unistr/u32-strspn: New file.
32953         * lib/unistr/u8-strspn.c: New file.
32954         * lib/unistr/u16-strspn.c: New file.
32955         * lib/unistr/u32-strspn.c: New file.
32956         * lib/unistr/u-strspn.h: New file.
32957
32958         * modules/unistr/u8-strstr: New file.
32959         * modules/unistr/u16-strstr: New file.
32960         * modules/unistr/u32-strstr: New file.
32961         * lib/unistr/u8-strstr.c: New file.
32962         * lib/unistr/u16-strstr.c: New file.
32963         * lib/unistr/u32-strstr.c: New file.
32964         * lib/unistr/u-strstr.h: New file.
32965
32966         * modules/unistr/u8-strtok: New file.
32967         * modules/unistr/u16-strtok: New file.
32968         * modules/unistr/u32-strtok: New file.
32969         * lib/unistr/u8-strtok.c: New file.
32970         * lib/unistr/u16-strtok.c: New file.
32971         * lib/unistr/u32-strtok.c: New file.
32972         * lib/unistr/u-strtok.h: New file.
32973
32974         * modules/unistr/u8-uctomb: New file.
32975         * modules/unistr/u16-uctomb: New file.
32976         * modules/unistr/u32-uctomb: New file.
32977         * lib/unistr/u8-uctomb.c: New file.
32978         * lib/unistr/u16-uctomb.c: New file.
32979         * lib/unistr/u32-uctomb.c: New file.
32980
32981         * MODULES.html.sh (Unicode string functions): Add the new modules.
32982
32983 2007-01-08  Bruno Haible  <bruno@clisp.org>
32984
32985         * gnulib-tool (func_all_modules): Use find, not ls, to traverse the
32986         modules directory. Filter out CVS, ChangeLog, COPYING, README also from
32987         subdirectories.
32988
32989 2007-01-08  Karl Berry  <karl@gnu.org>
32990
32991         * doc/error.texi: mention that main() fns must set program_name
32992         when progname is used.
32993
32994 2007-01-08  Paul Eggert  <eggert@cs.ucla.edu>
32995
32996         * m4/wctype.m4 (gl_WCTYPE_H): Compute ABSOLUTE_WCTYPE_H even if
32997         WCTYPE_H is empty, for the benefit of builds from non-distclean
32998         directories.  Problem reported by Eric Blake in
32999         <http://lists.gnu.org/archive/html/bug-gnulib/2007-01/msg00157.html>.
33000
33001 2007-01-08  Bruno Haible  <bruno@clisp.org>
33002
33003         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME): Remove
33004         PROVIDE_CANONICALIZE_FILENAME_MODE macro definition.
33005         * lib/canonicalize.h: Test GNULIB_CANONICALIZE instead of
33006         PROVIDE_CANONICALIZE_FILENAME_MODE.
33007         * modules/canonicalize (configure.ac): Use gl_MODULE_INDICATOR.
33008
33009 2007-01-08  Bruno Haible  <bruno@clisp.org>
33010
33011         * m4/fts.m4 (gl_FUNC_FTS_LGPL): Remove _LGPL_PACKAGE macro definition.
33012         * lib/fts_.h (_LGPL_PACKAGE): Remove macro.
33013         Use !GNULIB_FTS instead of _LGPL_PACKAGE.
33014         * lib/fts.c: Likewise.
33015         * modules/fts (configure.ac): Use gl_MODULE_INDICATOR.
33016
33017 2006-12-25  Bruno Haible  <bruno@clisp.org>
33018
33019         * modules/utf8-ucs4-safe: New file.
33020         * lib/utf8-ucs4-safe.h: New file.
33021         * lib/unistr/utf8-ucs4-safe.c: New file.
33022
33023         * modules/utf16-ucs4-safe: New file.
33024         * lib/utf16-ucs4-safe.h: New file.
33025         * lib/unistr/utf16-ucs4-safe.c: New file.
33026
33027         * MODULES.html.sh (Unicode string functions): Add the new modules.
33028
33029 2007-01-08  Bruno Haible  <bruno@clisp.org>
33030
33031         * modules/utf8-ucs4 (Files, lib_SOURCES): Add unistr/utf8-ucs4.c.
33032         (Depends-on): Add unitypes.
33033         * lib/utf8-ucs4.h: Add double-inclusion guard. Include unitypes.h.
33034         (u8_mbtouc_aux): Move out to separate file.
33035         (u8_mbtouc): Use ucs4_t, uint8_t types.
33036         * lib/unistr/utf8-ucs4.c: New file.
33037
33038         * modules/utf16-ucs4 (Files, lib_SOURCES): Add unistr/utf16-ucs4.c.
33039         (Depends-on): Add unitypes.
33040         * lib/utf16-ucs4.h: Add double-inclusion guard. Include unitypes.h.
33041         (u16_mbtouc_aux): Move out to separate file.
33042         (u16_mbtouc): Use ucs4_t, uint16_t types.
33043         * lib/unistr/utf16-ucs4.c: New file.
33044
33045         * modules/ucs4-utf8 (Files, lib_SOURCES): Add unistr/ucs4-utf8.c.
33046         (Depends-on): Add unitypes.
33047         * lib/ucs4-utf8.h: Add double-inclusion guard. Include unitypes.h.
33048         (u8_uctomb_aux): Move out to separate file.
33049         (u8_uctomb): Use ucs4_t, uint8_t types.
33050         * lib/unistr/ucs4-utf8.c: New file.
33051
33052         * modules/ucs4-utf16 (Files, lib_SOURCES): Add unistr/ucs4-utf16.c.
33053         (Depends-on): Add unitypes.
33054         * lib/ucs4-utf16.h: Add double-inclusion guard. Include unitypes.h.
33055         (u16_uctomb_aux): Move out to separate file.
33056         (u16_uctomb): Use ucs4_t, uint16_t types.
33057         * lib/unistr/ucs4-utf16.c: New file.
33058
33059 2006-12-25  Bruno Haible  <bruno@clisp.org>
33060
33061         * modules/unitypes: New file.
33062         * lib/unitypes.h: New file.
33063         * MODULES.html.sh (func_all_modules): New section "Unicode string
33064         functions". Move ucs4-utf8, ucs4-utf16, utf8-ucs4, utf16-ucs4 to
33065         this section. Add unitypes.
33066
33067 2007-01-08  Bruno Haible  <bruno@clisp.org>
33068
33069         Avoid variable names that conflict with those from libtool.
33070         * m4/lib-link.m4 (AC_LIB_RPATH, AC_LIB_LINKFLAGS_BODY,
33071         AC_LIB_LINKFLAGS_FROM_LIBS): Rename libext to acl_libext,
33072         shlibext to acl_shlibext, libname_spec to acl_libname_spec,
33073         library_names_spec to acl_library_names_spec, hardcode_* to
33074         acl_hardcode_*.
33075         Reported by Ralf Wildenhues.
33076
33077 2007-01-08  Bruno Haible  <bruno@clisp.org>
33078
33079         * m4/gc-arcfour.m4 (gl_GC_ARCFOUR): Remove GC_USE_ARCFOUR macro
33080         definition.
33081         * m4/gc-arctwo.m4 (gl_GC_ARCTWO): Remove GC_USE_ARCTWO macro
33082         definition.
33083         * m4/gc-des.m4 (gl_GC_DES): Remove GC_USE_DES macro definition.
33084         * m4/gc-hmac-md5.m4 (gl_GC_HMAC_MD5): Remove GC_USE_HMAC_MD5 macro
33085         definition.
33086         * m4/gc-hmac-sha1.m4 (gl_GC_HMAC_SHA1): Remove GC_USE_HMAC_SHA1 macro
33087         definition.
33088         * m4/gc-md2.m4 (gl_GC_MD2): Remove GC_USE_MD2 macro definition.
33089         * m4/gc-md4.m4 (gl_GC_MD4): Remove GC_USE_MD4 macro definition.
33090         * m4/gc-md5.m4 (gl_GC_MD5): Remove GC_USE_MD5 macro definition.
33091         * m4/gc-random.m4 (gl_GC_RANDOM): Remove GC_USE_RANDOM macro
33092         definition.
33093         * m4/gc-rijndael.m4 (gl_GC_RIJNDAEL): Remove GC_USE_RIJNDAEL macro
33094         definition.
33095         * m4/gc-sha1.m4 (gl_GC_SHA1): Remove GC_USE_SHA1 macro definition.
33096         * lib/gc-gnulib.c: Use GNULIB_GC_<algorithm> instead of
33097         GC_USE_<algorithm>.
33098         * lib/gc-libgcrypt.c: Likewise.
33099         * modules/gc-arcfour (configure.ac): Use gl_MODULE_INDICATOR.
33100         * modules/gc-arctwo (configure.ac): Likewise.
33101         * modules/gc-des (configure.ac): Likewise.
33102         * modules/gc-hmac-md5 (configure.ac): Likewise.
33103         * modules/gc-hmac-sha1 (configure.ac): Likewise.
33104         * modules/gc-md2 (configure.ac): Likewise.
33105         * modules/gc-md4 (configure.ac): Likewise.
33106         * modules/gc-md5 (configure.ac): Likewise.
33107         * modules/gc-random (configure.ac): Likewise.
33108         * modules/gc-rijndael (configure.ac): Likewise.
33109         * modules/gc-sha1 (configure.ac): Likewise.
33110
33111 2007-01-08  Bruno Haible  <bruno@clisp.org>
33112
33113         * m4/close-stream.m4 (gl_CLOSE_STREAM): Remove GNULIB_CLOSE_STREAM
33114         macro definition.
33115         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Remove GNULIB_FCNTL_SAFER macro
33116         definition.
33117         * m4/stdio-safer.m4 (gl_FOPEN_SAFER): Remove GNULIB_FOPEN_SAFER macro
33118         definition.
33119         * modules/close-stream (configure.ac): Invoke gl_MODULE_INDICATOR.
33120         * modules/fcntl-safer (configure.ac): Likewise.
33121         * modules/fopen-safer (configure.ac): Likewise.
33122         * modules/fwriteerror (configure.ac): Likewise. Remove explicit
33123         GNULIB_FWRITEERROR macro definition.
33124
33125 2007-01-08  Bruno Haible  <bruno@clisp.org>
33126
33127         * m4/gnulib-common.m4: New file.
33128         * gnulib-tool (func_get_autoconf_snippet): Undo last change.
33129         (func_get_filelist): Add m4/gnulib-common.m4.
33130
33131 2007-01-08  Bruno Haible  <bruno@clisp.org>
33132
33133         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Simplify the sorting
33134         command.
33135
33136 2007-01-08  Jim Meyering  <jim@meyering.net>
33137
33138         Use a more robust test for a "can't happen" condition.
33139         * lib/fts.c (fts_read): Revert the change of 2006-11-22, since it
33140         narrowed the st_size value.  Presuming the "can't happen" condition
33141         is true, that narrowing could conceivably convert an invalid st_size
33142         value into a valid one.  Instead, use a change based on Matthew
33143         Woehlke's original patch.
33144
33145         Slight readability improvement: use an assert-like macro
33146         in place of literal "abort ()" uses.
33147         * lib/fts.c (fts_assert): Define.
33148         (fts_set_stat_required, cwd_advance_fd, fts_read, fd_ring_check):
33149         Use this macro instead of a bare 'abort'.
33150
33151 2007-01-05  Paul Eggert  <eggert@cs.ucla.edu>
33152
33153         Don't worry about using IRIX 5.3's wctype.h broken definitions;
33154         simply work around them.
33155         * lib/wctype_.h: Remove test for HAVE_WCTYPE_CTMP_BUG.
33156         (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit, iswgraph, iswlower):
33157         (iswprint, iswpunct, iswspace, iswupper, iswxdigit): Undef before
33158         declaring.
33159         Don't bother to define as macros, since the standard doesn't require it.
33160         * m4/wctype.m4 (WCTYPE_H, ABSOLUTE_WCTYPE_H): Simplify, since we no
33161         longer worry about IRIX 5.3.
33162         (HAVE_WCTYPE_CTMP_BUG): Remove.
33163
33164 2007-01-04  Paul Eggert  <eggert@cs.ucla.edu>
33165
33166         * lib/wctype_.h (_ctmp_) [HAVE_WCTYPE_CTMP_BUG]: Now of type wchar_t,
33167         not wint_t.  Also, include <ctype.h>, to fix another IRIX bug.
33168         * m4/wctype.m4 (gl_WCTYPE_H): Likewise.
33169         Problems reported by Georg Schwarz for IRIX 5.3.
33170
33171         * gnulib-tool (autoconf_minversion): Take the maximum version number
33172         found, not the minimum.  Problem reported by James Youngman.
33173
33174 2007-01-03  Karl Berry  <karl@gnu.org>
33175
33176         * doc/error.texi: new file, explaining interaction with progname.
33177         * doc/gnulib.texi: include it.  Update copyright.
33178
33179 2007-01-03  Simon Josefsson  <simon@josefsson.org>
33180
33181         * gnulib-tool (func_create_testdir): Run AC_CANONICAL_BUILD and
33182         AC_CANONICAL_HOST, to improve autobuild outputs.
33183
33184 2007-01-03  Paolo Bonzini  <bonzini@gnu.org>
33185             Yoann Vandoorselaere <yoann.v@prelude-ids.com>
33186
33187         * lib/poll.c (poll): Use recv on Mac OS X to distinguish connected
33188         sockets, server sockets, and other file descriptors.  Count errors
33189         to compute the return value.  Reorder the code a bit to be easier
33190         to follow.  Don't set event bits that were not requested (except
33191         POLLERR and POLLHUP).
33192
33193 2007-01-01  Bruno Haible  <bruno@clisp.org>
33194
33195         * modules/lchmod (Include): Require lchmod.h, not lchown.h.
33196
33197 2007-01-03  Jim Meyering  <jim@meyering.net>
33198
33199         * modules/fts-lgpl (Depends-on): Add i-ring.  Reported by Bruno Haible.
33200
33201 2007-01-02  Bruno Haible  <bruno@clisp.org>
33202
33203         * modules/settime (Include): Require timespec.h.
33204         * modules/nanosleep (Include): Likewise.
33205
33206 2007-01-01  Bruno Haible  <bruno@clisp.org>
33207
33208         * gnulib-tool (func_emit_copyright_notice): Bump year.
33209         (func_get_autoconf_snippet): Emit a GNULIB_<modulename> macro.
33210
33211 2007-01-01  Bruno Haible  <bruno@clisp.org>
33212
33213         Improve support for OpenBSD.
33214         * build-aux/config.rpath (libname_spec): Export.
33215         (library_names_spec): New variable. Export.
33216         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Extract libname_spec and
33217         library_names_spec from the config.rpath output. Locate shared library
33218         through the name pattern in library_names_spec.
33219
33220 2007-01-01  Eric Blake  <ebb9@byu.net>
33221
33222         * lib/version-etc.c (COPYRIGHT_YEAR): Bump for new year.
33223
33224 2006-12-30  Paul Eggert  <eggert@cs.ucla.edu>
33225
33226         * gnulib-tool (SORT): Remove, since we no longer assume GNU sort.
33227         Rewrite so as not to assume GNU sort or "tail -1".  Also, don't
33228         assume the C locale, and avoid an "eval" that could cause trouble.
33229         Problem with SORT reported by Bob Proulx.
33230
33231         * lib/getpagesize.h (getpagesize) [defined __amigaos4__]:
33232         Define.  Trivial patch from Henning Nielsen Lund, originally
33233         sent to bug-grep@gnu.org today.
33234
33235 2006-12-29  Paul Eggert  <eggert@cs.ucla.edu>
33236
33237         * lib/acl.h: Include sys/types.h and sys/stat.h, for mode_t and
33238         struct stat.  Problem reported by Henning Nielsen Lund.
33239         * lib/acl.c: Include acl.h first, to check interface.  Don't
33240         bother to include sys/types.h and sys/stat.h again.
33241
33242 2006-12-28  Paul Eggert  <eggert@cs.ucla.edu>
33243
33244         Import the following change from libc; problem reported by
33245         Sven Verdoolaege.
33246
33247         2005-10-13  Ulrich Drepper  <drepper@redhat.com>
33248
33249         [BZ #1373]
33250         * lib/argp.h: Remove __NTH for __argp_usage inline function.
33251
33252 2006-12-28  Jim Meyering  <jim@meyering.net>
33253
33254         * build-aux/announce-gen: Do not assume that the package
33255         builds any of tar.gz, tar.bz2, and .xdelta files.
33256         Suggestion from Simon Josefsson.
33257
33258 2006-12-28  Simon Josefsson  <simon@josefsson.org>
33259
33260         * modules/announce-gen: New file.
33261
33262 2006-12-27  Paul Eggert  <eggert@cs.ucla.edu>
33263
33264         * lib/mbchar.h: Just include <wctype.h>; the wctype module
33265         handles its gotchas now.
33266         * lib/mbswidth.c: Likewise.
33267         * lib/wcwidth.h: Likewise.
33268         * m4/mbchar.m4 (gl_MBCHAR): Don't bother checking for wctype.h
33269         and iswcntrl; the wctype module does this stuff now.
33270         * m4/mbswidth.m4 (gl_MBSWIDTH): Likewise.
33271         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Likewise.
33272         * modules/mbchar (Depends-on): Add wctype.
33273         * modules/mbswidth (Depends-on): Likewise.
33274         * modules/wcwidth (Depends-on): Likewise.
33275
33276 2006-12-27  Eric Blake  <ebb9@byu.net>
33277
33278         * lib/fnmatch.c: Reinstate inclusion of <wchar.h>, since this
33279         module uses more than what <wctype.h> is required to provide.
33280
33281 2006-12-26  Eric Blake  <ebb9@byu.net>
33282
33283         * gnulib-tool (sed_extract_prog): Avoid space-tab.
33284
33285 2006-12-26  Eric Blake  <ebb9@byu.net>
33286
33287         * modules/absolute-header: New module.
33288         * modules/fcntl (Depends-on): Depend on it.
33289         * modules/inttypes (Depends-on): Likewise.
33290         * modules/stdint (Depends-on): Likewise.
33291         * modules/sys_stat (Depends-on): Likewise.
33292         * modules/wctype (Depends-on): Likewise.
33293         * MODULES.html.sh (Support for building libraries and
33294         executables): Document it.
33295
33296 2006-12-25  Paul Eggert  <eggert@cs.ucla.edu>
33297
33298         * gnulib-tool (SED): Remove, undoing previous change.
33299         The problem was that it broke coreutils on Solaris, because
33300         "sed --posix" leaked into a makefile.
33301         (sed): New alias, if 'alias' and GNU sed.
33302
33303 2006-12-24  Jim Meyering  <jim@meyering.net>
33304
33305         Work around an fchownat bug in glibc-2.4:
33306         http://lists.ubuntu.com/archives/ubuntu-users/2006-September/093218.html
33307         This bug would cause "chown -RP ... DIR" to follow symlinks in DIR,
33308         in spite of the -P option.
33309         * m4/openat.m4 (gl_FUNC_FCHOWNAT, gl_FUNC_FCHOWNAT_DEREF_BUG):
33310         New macros.
33311         (gl_PREREQ_OPENAT): Require gl_FUNC_FCHOWNAT.
33312         * modules/openat (Files): Add lib/fchownat.c.
33313         * lib/openat.c (fchownat): Don't define here.  Move to...
33314         * lib/fchownat.c: ...this new file.
33315
33316 2006-12-23  Paul Eggert  <eggert@cs.ucla.edu>
33317
33318         Fix bug reported by Bruno Haible in
33319         <http://lists.gnu.org/archive/html/bug-gnulib/2006-12/msg00228.html>
33320         where quotearg.c didn't compile on Mac OS X 10.2 because it
33321         lacks <wchar.h> and wint_t.
33322         * lib/wctype_.h (__wctype_wint_t): New type.
33323         Include <stdio.h>, <time.h>, <wchar.h> only if HAVE_WINT_T.
33324         (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit, iswgraph):
33325         (iswlower, iswprint, iswpunct, iswspace, iswupper, ixwxdigit):
33326         Arg is now of type __wctype_wint_t, not wint_t.
33327         * m4/wctype.m4 (gl_WCTYPE_H): Require gt_TYPE_WINT_T, and
33328         substitute HAVE_WINT_T.
33329         * modules/wctype (Files): Add m4/wint_t.m4.
33330         (wctype.h): Substitute HAVE_WINT_T.
33331
33332 2006-12-23  Bruno Haible  <bruno@clisp.org>
33333
33334         * lib/safe-read.h [C++]: Wrap declarations in extern "C".
33335
33336 2006-12-23  Bruno Haible  <bruno@clisp.org>
33337
33338         * lib/canonicalize-lgpl.c (__realpath): Test HAVE_READLINK instead of
33339         S_ISLNK.
33340         Needed because gnulib's sys/stat.h replacement defines S_ISLNK on
33341         mingw.
33342
33343 2006-12-22  Bruno Haible  <bruno@clisp.org>
33344
33345         * lib/copy-file.c: Include acl.h.
33346         (copy_file_preserving) [USE_ACL]: Use copy_acl instead of chmod.
33347         Close the file descriptors only after being done with copy_acl.
33348         * modules/copy-file (Depends-on): Add acl.
33349
33350 2006-12-22  Bruno Haible  <bruno@clisp.org>
33351
33352         * gnulib-tool (SED): New variable.
33353         Use $SED instead of sed everywhere.
33354
33355 2006-12-22  Bruno Haible  <bruno@clisp.org>
33356
33357         * modules/no-c++: New file.
33358         * m4/no-c++.m4: New file.
33359         * MODULES.html.sh (Support for building libraries and executables):
33360         Add no-c++.
33361
33362 2006-12-22  Paul Eggert  <eggert@cs.ucla.edu>
33363
33364         * m4/mktime.m4 (AC_FUNC_MKTIME): Sync from Autoconf.
33365         Include <limits.h>, and use its INT_MAX to rewrite the
33366         j loop so that it does not overflow 'int'.  Problem reported by
33367         Ralf Wildenhues in
33368         <http://lists.gnu.org/archive/html/bug-gnulib/2006-12/msg00084.html>.
33369         Play it safe by shifting left by 1 rather than multiplying by 2,
33370         as GCC is less likely to optimize this away when the value
33371         is signed (when it assumes overflow leads to undefined behavior).
33372         Also, don't assume time_t uses two's complement.
33373
33374 2006-12-21  Paul Eggert  <eggert@cs.ucla.edu>
33375
33376         * MODULES.html.sh: New module wctype.
33377         * lib/wctype_.h, m4/wctype.m4, modules/wctype: New files.
33378         * lib/fnmatch.c: Don't bother to include <wchar.h> before
33379         <wctype.h>, since the new wctype module should fix this.
33380         * lib/quotearg.c: Include <wctype.h> unconditionally, since
33381         the wctype module should arrange for it.
33382         * lib/regex_internal.h: Likewise.
33383         * m4/quotearg.m4 (gl_QUOTEARG): Don't check for wctype.h or iswprint,
33384         since the wctype module should handle this now.
33385         * m4/regex.m4 (gl_PREREQ_REGEX): Don't check for wctype.h.
33386         * modules/fnmatch (Depends-on): Add wctype.
33387         * modules/quotearg (Depends-on): Likewise.
33388         * modules/regex (Depends-on): Likewise.
33389
33390 2006-12-19  Bruno Haible  <bruno@clisp.org>
33391
33392         * lib/strdup.h [C++]: Wrap definitions in extern "C".
33393         Suggested by Lorenzo Bettini <bettini@dsi.unifi.it>.
33394
33395 2006-12-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
33396
33397         * modules/savewd (Depends-on): Fix dependency on fcntl.
33398
33399 2006-12-18  Paul Eggert  <eggert@cs.ucla.edu>
33400
33401         * m4/stdint.m4 (gl_STDINT_H): Set STDINT_H to empty if stdint.h
33402         conforms to C99, rather than relying on the user's environment
33403         setting of STDINT_H.
33404
33405 2006-12-18  Paul Eggert  <eggert@cs.ucla.edu>
33406         and Eric Blake  <ebb9@byu.net>
33407
33408         * lib/dirname.h (DOUBLE_SLASH_IS_DISTINCT_ROOT): Default to 0, not 1.
33409         This is more consistent with the other defines here.
33410         * m4/double-slash-root.m4 (gl_DOUBLE_SLASH_ROOT):
33411         Port to z/OS.  Problem reported by Paul Gilmartin.
33412         Change local vars to use gl_ prefix rather than ac_.
33413         Don't define DOUBLE_SLASH_IS_DISTINCT_ROOT to 0, for consistency
33414         with other defines.
33415         * modules/double-slash-root: New module.
33416         * modules/dirname (Files): Remove m4/double-slash-root.m4.
33417         (Depends-on): Add double-slash-root.
33418         * MODULES.html.sh (File system functions): Mention new module.
33419
33420 2006-12-14  Paul Eggert  <eggert@cs.ucla.edu>
33421
33422         * lib/yesno.c [!ENABLE_NLS]: Don't include getline.h.
33423         (yesno) [!ENABLE_NLS]: Don't invoke getline or rpmatch.
33424         This is for the benefit of gzip, which doesn't do i18n.
33425
33426 2006-12-12  Jim Meyering  <jim@meyering.net>
33427
33428         * m4/acl.m4 (gl_ACL_GET_FILE): Fix logic error.
33429         Reported by Andreas Schwab <schwab@suse.de>.
33430
33431 2006-12-12  Bruno Haible  <bruno@clisp.org>
33432
33433         Merge these changes.
33434         2006-09-05  Bruno Haible  <bruno@clisp.org>
33435         * lib/iconvme.c (iconv_string): No need to save and restore errno when
33436         iconv_alloc succeeded.
33437         (iconv_alloc): Don't assume that malloc() or realloc(), when failing,
33438         sets errno to ENOMEM. (malloc on GNU/kFreeBSD doesn't.) No need to
33439         test for " && dest " at the end - dest is always != NULL there. Call
33440         iconv with 4xNULL arguments initially, to reset the state. Call iconv
33441         with 2xNULL arguments, also to flush the state storage. Handle the
33442         IRIX iconv behaviour. Realloc the final result, to throw away unused
33443         memory.
33444
33445 2006-12-11  Paul Eggert  <eggert@cs.ucla.edu>
33446
33447         * m4/openat.m4 (gl_FUNC_OPENAT): Don't compile mkdirat
33448         and fchmodat unconditionally, since glibc 2.4 has them.
33449         Problem reported by Arkadiusz Miskiewicz.
33450
33451 2006-12-10  Bruno Haible  <bruno@clisp.org>
33452
33453         * gnulib-tool (func_import): Show the include files only for those
33454         modules that are copied and specified.
33455         Reported by Karl Berry.
33456
33457 2006-12-08  Jim Meyering  <jim@meyering.net>
33458
33459         * build-aux/announce-gen ($VERSION): Don't use of $Revision...$.
33460         Instead, use Emacs' time-stamp write hook.  Note that the time is UTC.
33461
33462         * build-aux/announce-gen: Add two new options, both optional:
33463         --bootstrap-tools=TOOL_LIST
33464               a comma-separated list of tools, e.g.,
33465               autoconf,automake,bison,gnulib
33466         --gnulib-snapshot-date=DATE
33467               if gnulib is in the bootstrap tool list,
33468               then report this as the snapshot date.
33469               If not specified, use the current date/time.
33470               If you specify a date here, be sure it's UTC.
33471
33472 2006-12-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
33473
33474         * tests/test-argp-2.sh: Fix test to match actual output.
33475         (func_compare): Fix sed script to be portable.
33476
33477 2006-12-05  Paul Eggert  <eggert@cs.ucla.edu>
33478
33479         * lib/utimens.c (futimens) [HAVE_BUGGY_NFS_TIME_STAMPS]: Add a
33480         workaround for this case.  It is not autoconfigured now; offhand
33481         it's hard to see how to autoconfigure it.
33482
33483 2006-12-03  Paul Eggert  <eggert@cs.ucla.edu>
33484
33485         * lib/mkdir-p.c (make_dir_parents): Fix race condition when making
33486         a directory that is about to be chowned.  Such a directory's
33487         initial file permissions should permit the owner only and this
33488         should not be changed until after the chown, since the group and
33489         other bits would be incorrect if they granted permission before
33490         the chown.
33491
33492         Fix porting problem for iswctype reported by Georg Schwarz in:
33493         http://lists.gnu.org/archive/html/bug-coreutils/2006-12/msg00017.html
33494         * lib/fnmatch.c (WIDE_CHAR_SUPPORT): Require HAVE_ISWCTYPE, too.
33495         * lib/regex_internal.h (RE_ENABLE_I18N): Likewise.
33496         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for iswctype, too.
33497         * m4/regex.m4 (gl_PREREQ_REGEX): Likewise.
33498
33499 2006-12-03  Jim Meyering  <jim@meyering.net>
33500
33501         * lib/fts.c (fts_load): Don't set sp->fts_dev here, since
33502         p->fts_statp may not yet be defined.
33503         (fts_read): Instead, set it in the caller, once p->fts_statp is
33504         sure to be defined, and corresponds to a top-level directory.
33505         This bug made du -x fail.  Here's the coreutils test case:
33506         http://git.sv.gnu.org/gitweb/?p=coreutils.git;a=commit;h=ba45154d8e9f
33507         Reported by Mike Frysinger.
33508
33509 2006-12-01  Jim Meyering  <jim@meyering.net>
33510
33511         * modules/savewd (Depends-on): Add fcntl_h to avoid self-test
33512         build failure due to missing definition of HAVE_WORKING_O_NOFOLLOW.
33513         Reported by Simon Josefsson.
33514
33515 2006-11-30  Jim Meyering  <jim@meyering.net>
33516
33517         * m4/warning.m4: Use the all-permissive copyright notice
33518         recommended by RMS (rather than LGPL).
33519         * m4/vararrays.m4: Likewise.
33520         * m4/flexmember.m4: Likewise.
33521
33522 2006-11-29  Bruno Haible  <bruno@clisp.org>
33523
33524         * gnulib-tool (func_emit_lib_Makefile_am): Initialize also
33525         noinst_LIBRARIES. Augment noinst_LIBRARIES and noinst_LTLIBRARIES
33526         using +=.
33527         Reported by Simon Josefsson <simon@josefsson.org>.
33528
33529 2006-11-28  James Youngman <jay@gnu.org>
33530
33531         * README: Advise users that they might find the bug-gnulib@gnu.org
33532         and autotools-announce@gnu.org mailing lists useful.
33533
33534 2006-11-28  Bruno Haible  <bruno@clisp.org>
33535
33536         * m4/ptrdiff_max.m4: Remove file.
33537
33538 2006-11-21  Bruno Haible  <bruno@clisp.org>
33539
33540         * m4/eoverflow.m4 (gl_EOVERFLOW): Use AC_COMPUTE_INT instead of
33541         _AC_COMPUTE_INT.
33542         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
33543         * m4/ptrdiff_max.m4 (gl_PTRDIFF_MAX): Use AC_COMPUTE_INT instead of
33544         _AC_COMPUTE_INT.
33545         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
33546         * m4/size_max.m4 (gl_SIZE_MAX): Use AC_COMPUTE_INT instead of
33547         _AC_COMPUTE_INT.
33548         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
33549
33550 2006-11-28  Jim Meyering  <jim@meyering.net>
33551
33552         * lib/regcomp.c (parse_branch): Rename local, exp->expr, to avoid
33553         warning from "gcc -Wshadow" about shadowing the builtin.
33554
33555 2006-11-27  Bruno Haible  <bruno@clisp.org>
33556
33557         * m4/stdint.m4 (gl_STDINT_BITSIZEOF): Use AC_COMPUTE_INT instead of
33558         _AC_COMPUTE_INT.
33559         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
33560
33561 2006-11-27  Bruno Haible  <bruno@clisp.org>
33562             Paul Eggert  <eggert@cs.ucla.edu>
33563
33564         * lib/regex.h (__restrict_arr): Redo logic of #if, for clarity.
33565
33566 2006-11-26  Bruno Haible  <bruno@clisp.org>
33567
33568         * gnulib-tool (func_emit_lib_Makefile_am): Initialize also
33569         noinst_LTLIBRARIES.
33570
33571 2006-11-27  Paul Eggert  <eggert@cs.ucla.edu>
33572             Bruno Haible  <bruno@clisp.org>
33573
33574         * lib/gettext.h (_LIBGETTEXT_HAVE_VARIABLE_SIZE_ARRAYS): Define to 0
33575         if compiling with "gcc -ansi".
33576
33577 2006-11-26  Paul Eggert  <eggert@cs.ucla.edu>
33578
33579         Fix some incompatibilities with gcc -ansi -pedantic.
33580         * lib/regex.h (__restrict_arr): Don't use the [restrict] syntax
33581         if compiling pedantically with GCC, unless it's C99 or later.
33582         Don't trust sys/cdefs.h's definition of __restrict_arr, either, as
33583         it mishandles gcc -ansi -pedantic as well.
33584         * lib/regex_internal.h (re_token_t): Don't use enum bitfields
33585         if gcc -pedantic.
33586         * lib/regexec.c (check_node_accept_bytes): Don't use auto
33587         initializers for struct if -pedantic, unless it's C99 or later.
33588
33589 2006-11-25  Nix  <nix@esperi.org.uk>  (tiny change)
33590
33591         * m4/fcntl_h.m4 (gl_FCNTL_H): Test the atime, not the mtime.
33592         Don't close an fd more than once. Identical atimes indicate
33593         success, not failure.
33594
33595 2006-11-22  Robinson Mittmann <bob@hoplon.com>  (tiny change)
33596
33597         * lib/sincosl.c (kernel_sinl): Fix typo in threshold.
33598
33599 2006-11-23  Jim Meyering  <jim@meyering.net>
33600
33601         * build-aux/announce-gen: New file.  From coreutils.
33602
33603 2006-11-22  Jim Meyering  <jim@meyering.net>
33604
33605         Work around a compile-time error from the HP-UX 11.00 /bin/cc.
33606         * lib/fts.c (enum Fts_stat): Give this previously-anon enum a name.
33607         (fts_read): Use a temporary to narrow the overused st_size member
33608         before using it in a switch statement.  Reported by Matthew Woehlke.
33609
33610         * m4/clock_time.m4 (gl_CLOCK_TIME): Quote AC_SUBST argument.
33611         * m4/euidaccess.m4 (gl_PREREQ_EUIDACCESS): Likewise.
33612
33613 2006-11-20  Bruno Haible  <bruno@clisp.org>
33614
33615         * gettext.m4 (AM_GNU_GETTEXT): Revert 2005-07-28 patch: Use
33616         changequote instead of pairs of brackets.
33617         Reported by Andreas Schwab <schwab@suse.de>.
33618
33619 2006-11-21  Jim Meyering  <jim@meyering.net>
33620
33621         * lib/fts.c (fts_safe_changedir): Move a declaration "up",
33622         so as to remain compatible with older compilers.
33623         Patch from Michael Deutschmann.
33624
33625 2006-11-20  Paul Eggert  <eggert@cs.ucla.edu>
33626
33627         * MODULES.html.sh (File system functions): Add openat.
33628
33629         * lib/openat.h (rpl_fstatat): New macro, if
33630         [HAVE_OPENAT && ! LSTAT_FOLLOWS_SLASHED_SYMLINK.
33631         (fstatat): Define to rpl_fstatat under the same conditions,
33632         unless COMPILING_FSTATAT.
33633         * m4/openat.m4 (gl_FUNC_OPENAT): Compile fstatat.c too, if fstatat
33634         seems to have the bug.
33635         * lib/fstatat.c: New file.
33636         * modules/openat (Files): Add it.
33637
33638 2006-11-20  Bruno Haible  <bruno@clisp.org>
33639
33640         * Makefile: New file.
33641
33642 2006-11-20  Jim Meyering  <jim@meyering.net>
33643
33644         The beginnings of syntax-related checks for gnulib.
33645         * lib/Makefile: New file.
33646         * lib/t-idcache: New script.  Ensure that the two halves of
33647         idcache.c stay in sync.
33648
33649         * lib/idcache.c: Adjust comments in user- and group- portions to
33650         be more accurate, and to be consistent with one another.
33651
33652 2006-11-20  Jim Meyering  <jim@meyering.net>
33653
33654         * lib/idcache.c: Restore most of the 2006-11-06 patch, so as to
33655         continue using the flexible array member (thus, this module performs
33656         half as many malloc calls), with the addition that...
33657         (getgroup, getuser): Consistently record a non-match via an empty
33658         "name" string, and map an empty string match to a NULL return value.
33659         * modules/idcache (Depends-on): Re-add flexmember.
33660
33661         * lib/idcache.c (getuser): Remove all uses of the register keyword.
33662         (getuidbyname, getgroup, getgidbyname): Likewise.
33663
33664         Use cleaner syntax: NULL rather than 0.
33665         * lib/idcache.c (getuidbyname, getgidbyname): Return NULL, not 0.
33666
33667 2006-11-20  Paul Eggert  <eggert@cs.ucla.edu>
33668
33669         * lib/idcache.c: Undo most recent patch, dated 2006-11-06.
33670         It mishandled the case where the group was missing.
33671         Problem reported by Greg Schafer.
33672         * modules/idcache: Likewise.
33673
33674 2006-11-18  Jim Meyering  <jim@meyering.net>
33675
33676         * check-module (%exempt_header): Add exception for some
33677         conditionally-included headers.
33678
33679         * modules/i-ring (Depends-on): Add verify.
33680         (License): Change to LGPL.
33681
33682 2006-11-16  Paul Eggert  <eggert@cs.ucla.edu>
33683
33684         * modules/getaddinfo (Depends-on): Remove inttostr; add snprintf.
33685         * lib/getaddrinfo.c: Include snprintf.h rather than intprops.h
33686         and inttostr.h.  Use snprintf rather than uinttostr, so that
33687         LGPLed code doesn't depend on GPLed.
33688
33689 2006-11-17  Paul Eggert  <eggert@cs.ucla.edu>
33690
33691         * modules/inline (License): Change from GPL to LGPL.
33692
33693 2006-11-17  Jim Meyering  <jim@meyering.net>
33694
33695         * modules/d-type (License): Switch to LGPL.
33696
33697 2006-11-15  Bruno Haible  <bruno@clisp.org>
33698
33699         * m4/alloca.m4 (gl_FUNC_ALLOCA): Fix the AC_CACHE_CHECK message.
33700
33701 2006-11-15  Eric Blake  <ebb9@byu.net>
33702
33703         * m4/allocsa.m4 (gl_ALLOCSA): Don't invoke macro already picked up by
33704         the module dependency.
33705
33706 2006-11-15  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
33707             Bruno Haible  <bruno@clisp.org>
33708
33709         * gnulib-tool (func_create_testdir): Add license consistency check.
33710
33711 2006-11-15  Eric Blake  <ebb9@byu.net>
33712
33713         * m4/alloca.m4 (gl_FUNC_ALLOCA): Use AC_CACHE_CHECK to avoid a
33714         random "(cached)" in configure output.
33715
33716 2006-11-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
33717
33718         * m4/inttypes.m4 (gl_INTTYPES_H): Use AC_CACHE_CHECK so that the
33719         test for conforming inttypes.h is both announced and cached.
33720
33721         * MODULES.html.sh (seen_modules, seen_files): New variables.
33722         (func_module): Rewrite to use a few less gnulib-tool and sed
33723         invocations.  Avoid a couple of quadratic algorithms for ...
33724         (missed_modules, missed_files): ... these, with ...
33725         (func_append, func_tmpdir): ... these new functions, from
33726         gnulib-tool.  Analogously, install traps for cleanup.
33727
33728         * tests/test-gc.c (main): Remove unused variables.
33729         * tests/test-read-file.c: Include stdlib.h, for 'free'.
33730
33731 2006-11-14  Paul Eggert  <eggert@cs.ucla.edu>
33732
33733         * modules/inttostr (License): Change to LGPL.
33734
33735 2006-11-14  Eric Blake  <ebb9@byu.net>
33736
33737         * modules/tempname (License): Change to LGPL.
33738
33739 2006-11-14  Eric Blake  <ebb9@byu.net>
33740
33741         * doc/functions.texi (Function Portability): *printf functions on
33742         Cygwin now understand all POSIX size specifiers.
33743
33744 2006-11-14  Bruno Haible  <bruno@clisp.org>
33745
33746         * modules/c-ctype (License): Change to LGPL.
33747
33748 2006-11-12  Bruno Haible  <bruno@clisp.org>
33749
33750         * m4/lib-link.m4 (AC_LIB_LINKFLAGS, AC_LIB_HAVE_LINKFLAGS,
33751         AC_LIB_LINKFLAGS_BODY): Also set a LIB${NAME}_PREFIX variable. Needed
33752         for GNOME libraries, for which the include files are installed in
33753         subdirectories of $prefix/include.
33754
33755 2006-11-12  Bruno Haible  <bruno@clisp.org>
33756
33757         * m4/lib-link.m4: Require at least autoconf-2.54.
33758         (AC_LIB_LINKFLAGS_BODY) [autoconf < 2.61]: Turn dots into the library
33759         name to underscores for the --with option.
33760
33761 2006-11-13  Bruno Haible  <bruno@clisp.org>
33762
33763         * gnulib-tool (func_create_testdir): Set gl_source_base correctly in
33764         the tests directory.
33765         Reported by Ralf Wildenhues.
33766
33767 2006-11-13  Bruno Haible  <bruno@clisp.org>
33768
33769         * gnulib-tool (func_emit_initmacro_start): Also override AC_LIBSOURCES.
33770         (func_emit_initmacro_end): Undo the override here.
33771         (func_emit_initmacro_done): Emit a definition for gl_LIBSOURCES.
33772         Works around the famous automake error in coreutils.
33773
33774 2006-11-13  Eric Blake  <ebb9@byu.net>
33775
33776         * lib/gl_anytree_oset.h (gl_tree_search_atleast): Return the
33777         element, not its node.
33778
33779 2006-11-12  Bruno Haible  <bruno@clisp.org>
33780
33781         * gnulib-tool (func_emit_lib_Makefile_am): Replace occurrences of
33782         '$(top_srcdir)/build-aux/', taking into account the real auxdir.
33783
33784 2006-11-12  Bruno Haible  <bruno@clisp.org>
33785
33786         * gnulib-tool: New option --local-symlink.
33787         (func_usage): Document it.
33788         (lsymbolic): New variable.
33789         (func_import, func_create_testdir): If --symlink was not specified,
33790         test whether --local-symlink was specified and the file comes from
33791         the local_gnulib_dir.
33792
33793 2006-11-12  Bruno Haible  <bruno@clisp.org>
33794
33795         * gnulib-tool (func_ln): New function.
33796         (func_ln_if_changed, func_create_testdir): Use it instead of "ln -s".
33797
33798 2006-11-12  Bruno Haible  <bruno@clisp.org>
33799
33800         Finish support for source files in subdirectories.
33801         * gnulib-tool (func_emit_lib_Makefile_am): If some of the source files
33802         are in subdirectories, set uses_subdirs and add 'subdir-objects' to
33803         AUTOMAKE_OPTIONS.
33804         (func_import, func_create_testdir): Invoke AM_PROG_CC_C_O in this case.
33805
33806 2006-11-12  Bruno Haible  <bruno@clisp.org>
33807
33808         * gnulib-tool (func_get_automake_snippet): Synthesize also an
33809         EXTRA_lib_SOURCES augmentation.
33810         (func_emit_lib_Makefile_am): Initialize EXTRA_lib..._SOURCES to empty.
33811
33812 2006-11-12  Jim Meyering  <jim@meyering.net>
33813
33814         Make fts (in FTS_CWDFD mode) more efficient by caching a few open
33815         file descriptors.  This also averts a failure on systems with
33816         native openat support when a traversed directory lacks "x" access.
33817         * lib/fts_.h: Include "i-ring.h"
33818         (struct FTS) [fts_fd_ring]: New member.
33819         * lib/fts.c (RESTORE_INITIAL_CWD): Also call fd_ring_clear.
33820         (FCHDIR): Add parentheses.
33821         (fd_ring_check, fd_ring_print) [!FTS_DEBUG]: Define away.
33822         (cwd_advance_fd): Add a 3rd parameter.  Adjust all callers.
33823         When descending, rather than simply closing the previous
33824         fts_cwd_fd value, push that file descriptor onto the ring.
33825         (same_fd, fd_ring_print, fd_ring_check) [FTS_DEBUG]: New functions.
33826         (fts_open): Initialize the new fd_ring member.
33827         (fts_close): Clear the ring.
33828         (fts_safe_changedir): When possible, use our new fd_ring to skip
33829         the diropen and fstat and dev/ino comparison that would normally
33830         accompany a virtual `chdir ("..")'.
33831
33832         * modules/fts (Depends-on): Add i-ring.
33833         * modules/i-ring: New module.
33834         * lib/i-ring.c, lib/i-ring.h, lib/i-ring-test.c: New files.
33835         * m4/i-ring.m4: New file.
33836
33837 2006-11-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
33838
33839         * gnulib-tool (func_create_testdir): Fix replacement of
33840         `build-aux' in configure.ac.  Run autotools in gltests
33841         subdirectory.
33842         (func_create_testdir, func_create_megatestdir, test): There is
33843         no need for '--force' in most autotool invocations in a new
33844         tree.  Actually fail the whole test if any of the tools, or the
33845         configure or make stages fail.
33846
33847         Sync from Automake.
33848         * build-aux/gnupload: Revert last change.  Add pointer to upload
33849         instructions of the GNU Maintenance Instructions.
33850         Suggestion by Karl Berry.
33851
33852 2006-11-10  Jim Meyering  <jim@meyering.net>
33853
33854         * lib/fts.c [FTS_DEBUG]: Don't try to print a pointer via %s.
33855
33856 2006-11-09  Paul Eggert  <eggert@cs.ucla.edu>
33857
33858         * lib/gettext.h (dgettext, dcgettext, ngettext) [! ENABLE_NLS]:
33859         (dngettext, dcngettext, bindtextdomain) [! ENABLE_NLS]:
33860         (bind_textdomain_codeset) [! ENABLE_NLS]:
33861         Evaluate all the arguments.  That way, callers get compatible behavior
33862         if the arguments have side effects.  Also, it avoids some GCC
33863         diagnostics in some cases; Joel E. Denny reported problems when Bison
33864         was configured with --enable-gcc-warnigs.
33865
33866 2006-11-10  Jim Meyering  <jim@meyering.net>
33867
33868         * m4/inline.m4 (gl_INLINE): Check with the compiler, not cpp, so that
33869         relevant options in CFLAGS (like -O, -fno-inline) are taken into
33870         account.
33871
33872 2006-11-10  Jim Meyering  <jim@meyering.net>
33873
33874         * modules/inline: New file/module.
33875         * modules/xalloc (Files): Remove m4/inline.m4.
33876         (Depends-on): Add inline, instead.
33877         * modules/oset: Likewise.
33878         * modules/list: Likewise.
33879
33880 2006-11-09  Paul Eggert  <eggert@cs.ucla.edu>
33881
33882         * lib/stdint_.h (uintmax_t): Fix typo: int64_t -> uint64_t.
33883         Problem reported by Matthew Woehlke.
33884
33885 2006-11-09  Bruno Haible  <bruno@clisp.org>
33886
33887         * lib/tempname.c (gen_tempname): Remove variant that invokes
33888         __gen_tempname.
33889         * m4/tempname.m4 (gl_FUNC_GEN_TEMPNAME): Don't test for
33890         __gen_tempname.
33891
33892 2006-11-08  Bruno Haible  <bruno@clisp.org>
33893
33894         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Set ac_cv_type_long_long_int
33895         to 'yes' instead of 'cross-compiling'.
33896
33897 2006-11-08  Paul Eggert  <eggert@cs.ucla.edu>
33898
33899         * lib/quotearg.h (quotearg_free): New decl.
33900         * lib/quotearg.c (quotearg_free): New function.
33901         (slot0, nslots, slotvec0, slotvec):
33902         Now file-scope so that quotearg_free can get at them.
33903
33904 2006-11-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
33905
33906         Sync from Automake.
33907         * build-aux/gnupload: Add missing 'gnu' to example URL.
33908         Report by Karl Berry.
33909
33910 2006-11-08  Bruno Haible  <bruno@clisp.org>
33911
33912         * m4/inline.m4 (gl_INLINE): Also test __NO_INLINE__.
33913         Suggested by Paul Eggert.
33914
33915 2006-11-08  Jim Meyering  <jim@meyering.net>
33916
33917         * lib/fts.c [!_LGPL_PACKAGE]: Don't include fcntl--.h twice.
33918         It's already included if !_LIBC.
33919         (fts_safe_changedir): Add a comment.
33920
33921 2006-11-07  Paul Eggert  <eggert@cs.ucla.edu>
33922
33923         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Detect bug in
33924         Tandem NonStop Kernel (OSS) cc -O circa 2004, reported by
33925         Matthew Woehlke.
33926
33927         * lib/xalloc.h (XMALLOC, XNMALLOC, XZALLOC, XCALLOC): Move
33928         definitions up, to avoid colliding with change below.
33929         (static_inline) [HAVE_INLINE]: New macro.
33930         (xnmalloc, xnrealloc, x2nrealloc, xcharalloc):
33931         Provide extern decls when !HAVE_INLINE.  Do not define unless
33932         static_inline is defined, either by us or by xmalloc.c.  Use
33933         static_inline rather than static inline.
33934         (XCALLOC): Optimize sizeof(T) = 1 case.
33935         * lib/xmalloc.c (static_inline) [!HAVE_INLINE]: New macro.
33936
33937 2006-11-07  Bruno Haible  <bruno@clisp.org>
33938
33939         * lib/xalloc.h (XNMALLOC): Restore optimization of sizeof(T) = 1 case.
33940         * m4/xalloc.m4 (gl_PREREQ_XALLOC): Require gl_INLINE instead of
33941         AC_C_INLINE.
33942         * modules/xalloc (Files): Add m4/inline.m4.
33943
33944 2006-11-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
33945
33946         * README: Fix typo.
33947         * doc/gnulib.texi (Miscellaneous Notes): Likewise, rename...
33948         (Miscellanous Notes): ...from this.
33949
33950 2006-11-07  Paul Eggert  <eggert@cs.ucla.edu>
33951
33952         * m4/flexmember.m4 (AC_C_FLEXIBLE_ARRAY_MEMBER):
33953         Mention that offsetof should be used instead of sizeof.
33954         From Bruno Haible.
33955
33956 2006-11-07  Bruno Haible  <bruno@clisp.org>
33957
33958         * lib/w32spawn.h (prepare_spawn): Use XNMALLOC instead of xmalloc.
33959
33960 2006-11-06  Paul Eggert  <eggert@cs.ucla.edu>
33961
33962         Simplify xmalloc expressions. Add overflow check in xmalloc arguments.
33963         * lib/gl_anyavltree_list2.h (create_subtree_with_contents):
33964         (gl_tree_create, gl_tree_add_first, gl_tree_add_last):
33965         (gl_tree_add_before, gl_tree_add_after):
33966         Use XMALLOC instead of xmalloc, and XCALLOC instead of xzalloc.
33967         * lib/gl_anyhash_list2.h (hash_resize): Likewise.
33968         * lib/gl_anylinked_list2.h (gl_linked_create_empty, gl_linked_create):
33969         (gl_linked_add_first, gl_linked_add_last, gl_linked_add_before):
33970         (gl_linked_add_after, gl_linked_add_at): Likewise.
33971         * lib/gl_anyrbtree_list2.h (create_subtree_with_contents):
33972         (gl_tree_create, gl_tree_add_first, gl_tree_add_last):
33973         (gl_tree_add_before, gl_tree_add_after): Likewise.
33974         * lib/gl_anytree_list2.h (gl_tree_create_empty): Likewise.
33975         * lib/gl_anytree_oset.h (gl_tree_create_empty): Likewise.
33976         * lib/gl_anytreehash_list1.h (add_to_bucket): Likewise.
33977
33978 2006-11-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
33979
33980         * lib/gl_oset.h: Use C comment style, not C++ comment style.
33981
33982 2006-11-06  Bruno Haible  <bruno@clisp.org>
33983
33984         * m4/inline.m4: New file.
33985         * m4/gl_list.m4 (gl_LIST): Require gl_INLINE.
33986         * modules/list (Files): Add m4/inline.m4.
33987         * modules/oset (Files): Likewise.
33988
33989 2006-11-06  Paul Eggert  <eggert@cs.ucla.edu>
33990
33991         * lib/idcache.c: Include <stddef.h>, for offsetof.
33992         (struct userid.name): Change from char * to a flexible array member.
33993         All uses changed.
33994         * modules/idcache (Depends-on): Add flexmember.
33995
33996         * MODULES.html.sh (Core language properties): New module flexmember.
33997         * modules/flexmember, m4/flexmember.m4: New files.
33998
33999         * lib/xalloc.h (xnmalloc, xnrealloc, x2nrealloc): Now static
34000         inline functions that are identical with the old xnmalloc_inline,
34001         xnrealloc_inline, x2nrealloc_inline of lib/xmalloc.c.  This is so
34002         that we can avoid some unnecessary integer multiplications and
34003         divisions in the common case where the element size is known at
34004         compile time.
34005         (XNMALLOC) [HAVE_INLINE]: Remove special case, which is no longer
34006         needed.
34007         (xnboundedmalloc): Remove.
34008         (XMALLOC, XNMALLOC, XZALLOC, XCALLOC): Use lower-case letters for
34009         arguments, for consistency with rest of this header.
34010         (xcharalloc): Rewrite using XNMALLOC.
34011         * lib/xmalloc.c (xnmalloc_inline, xnmalloc, xnrealloc_inline):
34012         (xnrealloc, x2nrealloc_inline, x2nrealloc): Remove.  The *_inline
34013         versions have been moved to lib/xalloc.h and renamed to be the
34014         non-*_inline versions.
34015         (xmalloc, xrealloc): Implement without reference to the xnmalloc
34016         and xnrealloc functions, since those functions are now inline and
34017         now call us.
34018         (x2realloc): Invoke x2realloc, not x2realloc_inline, to accommodate
34019         renaming described above.
34020         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Remove AC_C_INLINE since
34021         xmalloc.c no longer uses inline directly.  gl_PREREQ_XALLOC now
34022         captures the dependency in AC_C_INLINE.
34023
34024         New module canonicalize-lgpl, proposed by Charles Wilson in
34025         <http://lists.gnu.org/archive/html/bug-gnulib/2006-11/msg00020.html>
34026         with a few small changes afterwards.
34027         * MODULES.html.sh (File system functions): New module
34028         canonicalize-lgpl.
34029         * lib/canonicalize.h: Add comments for canonicalize_filename_mode
34030         and canonicalize_file_name.
34031         * lib/canonicalize-lgpl.c, m4/canonicalize-lgpl.m4:
34032         * modules/canonicalize-lgpl: New files.
34033
34034 2006-11-05  Bruno Haible  <bruno@clisp.org>
34035
34036         * gnulib-tool (func_import, func_create_testdir): Create directories
34037         also for files in subdirectories of lib/.
34038
34039 2006-11-05  Bruno Haible  <bruno@clisp.org>
34040
34041         * lib/gl_array_list.c (gl_array_iterator_next): Make pointer decrement
34042         ANSI C compliant.
34043
34044 2006-11-03  Bruno Haible  <bruno@clisp.org>
34045
34046         Simplify xmalloc expressions. Add overflow check in xmalloc arguments.
34047         * m4/xalloc.m4 (gl_PREREQ_XALLOC): Require AC_C_INLINE.
34048         * lib/xalloc.h (XMALLOC, XNMALLOC, XZALLOC, XCALLOC): New macros.
34049         (xnboundedmalloc): New inline function.
34050         * lib/classpath.c (new_classpath): Use XNMALLOC instead of xmalloc.
34051         * lib/clean-temp.c (create_temp_dir): Use XNMALLOC, XMALLOC instead of
34052         xmalloc.
34053         * lib/concatpath.c (concatenated_pathname): Use XNMALLOC instead of
34054         xmalloc.
34055         * lib/fatal-signal.c (at_fatal_signal): Use XNMALLOC instead of xmalloc.
34056         * lib/findprog.c (find_in_path): Use XNMALLOC instead of xmalloc.
34057         * lib/gl_array_list.c (gl_array_create_empty): Use XMALLOC instead of
34058         xmalloc.
34059         (gl_array_create): Use XNMALLOC, XMALLOC instead of xmalloc.
34060         * lib/gl_array_oset.c (gl_array_create_empty): Use XNMALLOC instead of
34061         xmalloc.
34062         * lib/gl_avltree_oset.c (gl_tree_add_first, gl_tree_add_before,
34063         gl_tree_add_after): Use XMALLOC instead of xmalloc.
34064         * lib/gl_carray_list.c (gl_carray_create_empty): Use XMALLOC instead of
34065         xmalloc.
34066         (gl_carray_create): Use XNMALLOC, XMALLOC instead of xmalloc.
34067         * lib/gl_rbtree_oset.c (gl_tree_add_first, gl_tree_add_before,
34068         gl_tree_add_after): Use XMALLOC instead of xmalloc.
34069         * lib/gl_sublist.c (gl_sublist_create): Use XMALLOC instead of xmalloc.
34070         * lib/pagealign_alloc.c (new_memnode): Use XMALLOC instead of xmalloc.
34071         * lib/sh-quote.c (shell_quote_argv): Use XNMALLOC instead of xmalloc.
34072         * lib/xvasprintf.c (xstrcat): Use XNMALLOC instead of xmalloc.
34073
34074 2006-11-03  Bruno Haible  <bruno@clisp.org>
34075
34076         * lib/c-ctype.h [C++]: Define functions without name mangling.
34077         * lib/fwriteerror.h [C++]: Likewise.
34078         * lib/gcd.h [C++]: Likewise.
34079         * lib/linebreak.h [C++]: Likewise.
34080
34081 2006-11-03  Paul Eggert  <eggert@cs.ucla.edu>
34082
34083         * lib/canonicalize.h: (canonicalize_mode_t, CAN_EXISTING):
34084         (CAN_ALL_BUT_LAST, CAN_MISSING, canonicalize_filename_mode):
34085         Define only if PROVIDE_CANONICALIZE_FILENAME_MODE is defined.
34086         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME):
34087         Check for functions and headers just once.
34088         Check for declaration of canonicalize_file_name.
34089         Define PROVIDE_CANONICALIZE_FILENAME_MODE.
34090
34091 2006-11-02  Charles Wilson  <cygwin@cwilson.fastmail.fm>
34092
34093         * gnulib-tool (func_import): Fix typo in actioncmd.
34094
34095 2006-11-02  Bruno Haible  <bruno@clisp.org>
34096
34097         * gnulib-tool (func_get_automake_snippet): Interpret a backslash-
34098         newline sequence in the Makefile.am snippet as a space, like "make"
34099         does.
34100         Reported by Roger Persson <perrog@gmail.com>.
34101
34102 2006-11-01  Bruno Haible  <bruno@clisp.org>
34103
34104         * m4/strcase.m4 (gl_FUNC_STRNCASECMP): Check whether strncasecmp is
34105         already declared in <string.h>.
34106         * lib/strcase.h (strncasecmp): Don't declare it if yes.
34107
34108 2006-11-01  Bruno Haible  <bruno@clisp.org>
34109
34110         * m4/strcase.m4 (gl_FUNC_STRCASECMP): Don't define strcasecmp here.
34111         * lib/strcase.h: Include <string.h>.
34112         (strcasecmp): Define to rpl_strcasecmp here.
34113
34114 2006-11-01  Bruno Haible  <bruno@clisp.org>
34115
34116         * lib/printf-parse.c (PRINTF_PARSE): Cast malloc/realloc results.
34117
34118 2006-11-01  Eric Blake  <ebb9@byu.net>
34119
34120         * lib/mkstemp-safer.c (mkstemp_safer): Allow C++ compilation.
34121
34122         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Allow C++ configuration.
34123
34124 2006-10-29  Bruno Haible  <bruno@clisp.org>
34125
34126         Make it compile in C++ mode.
34127         * lib/full-write.c (full_rw): Add a cast.
34128
34129 2006-11-01  Bruno Haible  <bruno@clisp.org>
34130
34131         * gnulib-tool (func_get_automake_snippet): Change sed_combine_lines to
34132         be POSIX compliant.
34133         Reported by Roger Persson <perrog@gmail.com>.
34134
34135 2006-11-01  Eric Blake  <ebb9@byu.net>
34136
34137         * lib/getopt_.h: Fix comments.
34138
34139 2006-10-31  Eric Blake  <ebb9@byu.net>
34140
34141         * modules/tmpdir (Depends-on): Add sys_stat.
34142         * modules/mkdtemp (Depends-on): Add tempname, drop unistd.
34143         * lib/mkdtemp.c (gen_tempname): Remove; tempname covers this.
34144         * lib/tmpdir.c (S_ISDIR): Simplify, thanks to sys_stat.
34145         * m4/mkdtemp.m4 (gl_PREREQ_MKDTEMP): Simplify, thanks to
34146         tempname.
34147
34148 2006-10-31  Paul Eggert  <eggert@cs.ucla.edu>
34149
34150         Avoid some C++ diagnostics reported by Bruno Haible.
34151         * lib/quotearg.c (clone_quoting_options): Use xmemdup rather than
34152         xmalloc.
34153         (quotearg_alloc): Use xcharalloc rather than xmalloc.
34154         (struct slotvec): Move to top level.
34155         (quotearg_n_options): Rewrite to avoid xmalloc.
34156         * lib/xalloc.h (xcharalloc): New function.
34157         * (xrealloc, xnrealloc, x2realloc, x2nrealloc, xmemdup):
34158         [defined __cplusplus]: Add function template that provides result
34159         type propagation.  This part of the change is from Bruno Haible.
34160
34161 2006-10-29  Bruno Haible  <bruno@clisp.org>
34162
34163         Make it compile in C++ mode.
34164         * lib/striconv.c (mem_cd_iconv): Cast malloc/realloc result.
34165         * lib/strnlen1.c (strnlen1): Cast memchr result.
34166         * lib/mbchar.h (mb_copy): Rename arguments to 'new_mbc', 'old_mbc'.
34167         * lib/clean-temp.c (string_equals, string_hash): Add casts.
34168         (create_temp_dir): Rename local variable 'template'.
34169         (compile_csharp_using_sscli): Add cast.
34170         * lib/fatal-signal.c (at_fatal_signal): Cast xmalloc result.
34171         * lib/findprog.c (find_in_path): Likewise.
34172         * lib/linebreak.c (mbs_width_linebreaks): Cast malloc result.
34173         * lib/wait-process.c (register_slave_subprocess): Likewise.
34174
34175 2006-10-22  Bruno Haible  <bruno@clisp.org>
34176
34177         * modules/tsearch: New file.
34178         * lib/tsearch.h: New file.
34179         * lib/tsearch.c: New file, from glibc-2.5 with small modifications.
34180         * m4/tsearch.m4: New file.
34181         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add tsearch.
34182
34183 2006-10-29  Eric Blake  <ebb9@byu.net>
34184
34185         * lib/arcfour.c: Assume config.h.
34186         * lib/arctwo.c: Likewise.
34187         * lib/base64.c: Likewise.
34188         * lib/check-version.c: Likewise.
34189         * lib/crc.c: Likewise.
34190         * lib/des.c: Likewise.
34191         * lib/gc-gnulib.c: Likewise.
34192         * lib/gc-libgcrypt.c: Likewise.
34193         * lib/gc-pbkdf2-sha1.c: Likewise.
34194         * lib/getaddrinfo.c: Likewise.
34195         * lib/getdelim.c: Likewise.
34196         * lib/getline.c: Likewise.
34197         * lib/hmac-md5.c: Likewise.
34198         * lib/hmac-sha1.c: Likewise.
34199         * lib/iconvme.c: Likewise.
34200         * lib/md2.c: Likewise.
34201         * lib/md4.c: Likewise.
34202         * lib/memxor.c: Likewise.
34203         * lib/read-file.c: Likewise.
34204         * lib/readline.c: Likewise.
34205         * lib/rijndael-alg-fst.c: Likewise.
34206         * lib/rijndael-api-fst.c: Likewise.
34207         * lib/xgetdomainname.c: Likewise.
34208
34209 2006-10-28  Eric Blake  <ebb9@byu.net>
34210
34211         * lib/xstrndup.c: Assume config.h.
34212
34213 2006-10-27  Paul Eggert  <eggert@cs.ucla.edu>
34214
34215         Move stat.h-substitute stuff from lib/stat-macros.h to lib/stat_.h.
34216         stat-macros.h is now for our own macros, whereas stat_h is for
34217         macros in the <sys/stat.h> name space.
34218         * lib/stat-macros.h: Remove copyright notice, as this file is now tiny.
34219         (STAT_MACROS_H): Remove.
34220         (S_IFMT, S_ISBLK, S_ISCHR, S_ISDIR, S_ISFIFO, S_ISLNK, S_ISNAM):
34221         (S_ISMPB, S_ISMPC, S_ISNWK, S_ISREG, S_ISSOCK, S_ISDOOR, S_ISPORT):
34222         (S_TYPEISMQ, S_TYPEISTMO, S_TYPEISSEM, S_TYPEISSHM, S_ISCTG, S_ISOFD):
34223         (S_ISOFL, S_ISWHT, S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IRGRP):
34224         (S_IROTH, S_IWUSR, S_IWGRP, S_IWOTH, S_IXUSR, S_IXGRP, S_IXOTH):
34225         (S_IRWXU, S_IRWXG, S_IRWXO, S_IXUGO, S_IRWXUGO):
34226         Move these macros to ...
34227         * lib/stat_.h: here.  Don't include stat-macros.h.
34228         * lib/canonicalize.c: Don't include stat-macros.h.
34229         * lib/chown.c: Likewise.
34230         * lib/euidaccess.c: Likewise.
34231         * lib/file-type.c: Likewise.
34232         * lib/filemode.c: Likewise.
34233         * lib/glob.c: Likewise.
34234         * lib/isapipe.c: Likewise.
34235         * lib/lchown.c: Likewise.
34236         * lib/lstat.c: Likewise.
34237         * lib/mkdir-p.c: Likewise.
34238         * lib/rmdir.c: Likewise.
34239         * m4/lchown.m4 (gl_FUNC_LCHOWN): Don't require gl_STAT_MACROS.
34240         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Don't check for io.h
34241         unless mkdir isn't declared, to speed up 'configure'.
34242         Always create sys/stat.h, since it's unlikely any real sys/stat.h
34243         would define all the S_* symbols.
34244         * modules/canonicalize (Depends-on):
34245         Depend on sys_stat, not stat-macros.
34246         * modules/chown: Likewise.
34247         * modules/euidaccess: Likewise.
34248         * modules/filemode: Likewise.
34249         * modules/file-type: Likewise.
34250         * modules/glob: Likewise.
34251         * modules/isapipe: Likewise.
34252         * modules/lchown: Likewise.
34253         * modules/lstat: Likewise.
34254         * modules/mkancesdirs: Likewise.
34255         * modules/rmdir: Likewise.
34256         * modules/mkdir-p (Depends-on): Also depend on sys_stat.
34257         * modules/modechange: Likewise.
34258         * modules/stat-macros (Files): Remove m4/stat-macros.m4.
34259         (configure.ac): Remove gl_STAT_MACROS.
34260         * modules/sys_stat (Depends-on): Remove stat-macros.
34261
34262 2006-10-27  Bruno Haible  <bruno@clisp.org>
34263
34264         * m4/signed.m4: Remove file.
34265         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_ARGS_: Remove bh_C_SIGNED
34266         invocation.
34267         * modules/vasnprintf (Files): Remove m4/signed.m4.
34268
34269 2006-10-27  Bruno Haible  <bruno@clisp.org>
34270
34271         Update to GNU gettext 0.16.
34272         * modules/gettext (Files): Add m4/intl.m4, m4/intldir.m4. Remove
34273         m4/inttypes-h.m4, m4/signed.m4.
34274         * m4/gettext.m4: Update to GNU gettext 0.16.
34275         * m4/intl.m4: New file, from GNU gettext.
34276         * m4/intldir.m4: New file, from GNU gettext.
34277         * config/srclist.txt: Update
34278
34279 2006-10-27  Eric Blake  <ebb9@byu.net>
34280
34281         * MODULES.html.sh: Document tempname.
34282         * modules/mkstemp (Depends-on): Add tempname, and drop transitive
34283         dependencies.
34284         (Files): Move lib/tempname.c...
34285         * modules/tempname: ...to this new module.
34286         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Remove tempname checks.
34287         (gl_PREREQ_TEMPNAME): Move...
34288         * m4/tempname.m4: ...to this new file.
34289         * lib/mkstemp.c (includes) [!_LIBC]: Use tempname.h.
34290         * modules/sys_stat (Depends-on): Add stat-macros.
34291         * lib/stat_.h (includes): Pick up stat macros.
34292         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Replace <sys/stat.h>
34293         if stat macros are broken.
34294         * lib/tempname.c (includes): No need to include "stat-macros.h".
34295         (__gen_tempname) [!_LIBC]: Expose as gen_tempname.
34296         (direxists, __path_search) [!_LIBC]: Don't compile these in
34297         gnulib; the tmpdir module covers that.
34298         * lib/tempname.h: New file.
34299
34300 2006-10-26  Paul Eggert  <eggert@cs.ucla.edu>
34301
34302         * COPYING: Explain how gnulib-tool converts licence headers.
34303         Almost all wording by Eric Blake.
34304
34305 2006-10-25  Paul Eggert  <eggert@cs.ucla.edu>
34306
34307         * lib/mbchar.h (is_basic_table): Make read-only.
34308         * lib/mbchar.c (is_basic_table): Likewise.
34309         Reported by John Darrington.
34310
34311 2006-10-25  Bruno Haible  <bruno@clisp.org>
34312
34313         * lib/progname.h (set_program_name): Undefine before defining.
34314
34315 2006-10-25  Bruno Haible  <bruno@clisp.org>
34316
34317         * lib/gettext.h (_LIBGETTEXT_HAVE_VARIABLE_SIZE_ARRAYS): Define to
34318         false for non-gcc C++ compilers.
34319         Reported by Nelson H. F. Beebe <beebe@math.utah.edu>.
34320
34321 2006-10-24  Bruno Haible  <bruno@clisp.org>
34322
34323         * lib/striconv.c (mem_cd_iconv, str_cd_iconv): Treat all non-GNU
34324         iconv implementations like Irix iconv.
34325
34326 2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
34327
34328         * modules/vararrays: New file.
34329         * m4/vararrays.m4: New file, taken from diffutils.
34330         * MODULES.html.sh: New module vararrays.
34331
34332 2006-10-24  Karl Berry  <karl@gnu.org>
34333
34334         * doc/gnulib-intro.texi: --- instead of --; non-naive naive.
34335         Don't call GNU Unix.
34336
34337 2006-10-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
34338
34339         * users.txt: Add Libtool.
34340
34341         Sync from Libtool:
34342
34343         2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
34344
34345         * lib/argz.c: Remove check for HAVE_CONFIG_H, to conform
34346         to gnulib's policy of including config.h unconditionally.
34347
34348 2006-10-24  Bruno Haible  <bruno@clisp.org>
34349
34350         * modules/wcwidth (Files): Add m4/wint_t.m4.
34351         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Require gt_TYPE_WINT_T.
34352         * lib/wcwidth.h (iswprint): Use 'int' if 'wint_t' is not defined.
34353
34354 2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
34355
34356         * lib/getdate.y (yyerror): Make the arguments pointer-to-const,
34357         to pacify GCC with some -W flags enabled.  Problem reported by
34358         Bruno Haible.
34359
34360 2006-10-24  Jim Meyering  <jim@meyering.net>
34361
34362         * MODULES.html.sh: Remove uinttostr.  It's not a module.
34363         Reported by Karl Berry.
34364
34365 2006-10-23  Bruno Haible  <bruno@clisp.org>
34366
34367         * lib/fts.c (fts_build): Move variable declaration, for C89 compliance.
34368
34369 2006-10-24  Bruno Haible  <bruno@clisp.org>
34370
34371         * lib/gl_list.h: Use C comment style, not C++ comment style.
34372
34373 2006-10-23  Eric Blake  <ebb9@byu.net>
34374
34375         * lib/getaddrinfo.c (includes): Add missing include.
34376
34377 2006-10-23  Bruno Haible  <bruno@clisp.org>
34378             Paul Eggert  <eggert@cs.ucla.edu>
34379
34380         Ability to rename obstack_free.
34381         * lib/obstack.h (__obstack_free): New macro. Declare instead of
34382         obstack_free.
34383         (obstack_free): Invoke the __obstack_free macro.
34384         * lib/obstack.c (obstack_free): Use __obstack_free macro.
34385
34386 2006-10-23  Bruno Haible  <bruno@clisp.org>
34387             Paul Eggert  <eggert@cs.ucla.edu>
34388
34389         * lib/argp.h (argp_parse, __argp_parse): Comment out the identifiers
34390         __argc, __argv from the declaration. (They are defined as macros on
34391         mingw.)
34392
34393 2006-10-22  Bruno Haible  <bruno@clisp.org>
34394
34395         * doc/gnulib-intro.texi: New file.
34396         * doc/gnulib.texi: Include it.
34397
34398 2006-10-21  Bruno Haible  <bruno@clisp.org>
34399
34400         * doc/gnulib.texi: Split the chapter "Gnulib" into 3 chapters
34401         "Introduction", "Miscellanous Notes", "Particular Modules".
34402
34403 2006-10-21  Bruno Haible  <bruno@clisp.org>
34404
34405         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
34406         Change mostlyclean-local rule to avoid sh syntax error from bash
34407         versions 2.00..2.05 when $(MOSTLYCLEANDIRS) is empty.
34408
34409 2006-10-23  Jim Meyering  <jim@meyering.net>
34410
34411         * lib/getaddrinfo.c (getnameinfo): Use new lightweight uinttostr,
34412         in place of snprintf.
34413
34414         * modules/inttostr (Files): Add lib/uinttostr.c.
34415         * lib/uinttostr.c (inttostr): New file/function.
34416         * lib/inttostr.h (uinttostr): Declare.
34417         * m4/inttostr.m4: Add AC_LIBOBJ([uinttostr]).
34418         * MODULES.html.sh (Numeric conversion functions <stdlib.h>):
34419         Add uinttostr.
34420         * modules/getaddrinfo (Depends-on): Remove snprintf.  Add inttostr.
34421
34422 2006-10-21  Paul Eggert  <eggert@cs.ucla.edu>
34423
34424         * lib/canonicalize.c (ELOOP): Define if not already defined.
34425         Problem reported by Bruno Haible in
34426         <http://lists.gnu.org/archive/html/bug-gnulib/2006-10/msg00282.html>.
34427
34428 2006-10-21  Paul Eggert  <eggert@cs.ucla.edu>
34429
34430         * lib/stdint_.h [defined _AIX]: Don't include <sys/types.h>.
34431         Problem reported by Perry Smith and Ville Laurikari.
34432
34433         * lib/getndelim2.c (SSIZE_MAX): Use same defn that getdelim.c
34434         uses.
34435
34436 2006-10-19  Bruno Haible  <bruno@clisp.org>
34437
34438         * lib/getndelim2.c (SSIZE_MAX): Provide fallback definition. Needed
34439         for mingw.
34440
34441 2006-10-19  Bruno Haible  <bruno@clisp.org>
34442
34443         * lib/openat-priv.h (EOPNOTSUPP): Provide fallback definition.
34444         Needed for mingw.
34445
34446 2006-10-19  Bruno Haible  <bruno@clisp.org>
34447
34448         * m4/size_max.m4 (gl_SIZE_MAX): Cache the result.
34449
34450 2006-10-19  Bruno Haible  <bruno@clisp.org>
34451
34452         * m4/allocsa.m4 (gl_ALLOCSA): Invoke gl_FUNC_ALLOCA, don't AC_REQUIRE
34453         it.
34454
34455 2006-10-19  Bruno Haible  <bruno@clisp.org>
34456
34457         * m4/alloca.m4 (gl_FUNC_ALLOCA): Cache the result of the AC_EGREP_CPP
34458         invocation.
34459
34460 2006-10-19  Bruno Haible  <bruno@clisp.org>
34461
34462         * gnulib-tool (func_create_testdir): Don't include ftruncate and
34463         mountlist by default.
34464
34465 2006-10-16  Bruno Haible  <bruno@clisp.org>
34466
34467         * lib/c-strstr.c: Include c-strstr.h.
34468
34469 2006-10-18  Charles Wilson  <cygwin@cwilson.fastmail.fm>
34470
34471         * gnulib-tool: Don't clobber $sourcebase when $local_gnulib_dir ends
34472         in a slash.
34473
34474 2006-10-18  Bruno Haible  <bruno@clisp.org>
34475
34476         * lib/lock.h [C++]: Wrap definitions in extern "C".
34477
34478 2006-10-18  Bruno Haible  <bruno@clisp.org>
34479
34480         * gnulib-tool (func_emit_initmacro_end): Remove duplicates from the
34481         gl_LIBOBJS list.
34482
34483 2006-10-18  Bruno Haible  <bruno@clisp.org>
34484
34485         * lib/findprog.c (find_in_path): Avoid "gcc -Wwrite-strings" warning.
34486
34487 2006-10-19  Paul Eggert  <eggert@cs.ucla.edu>
34488
34489         * lib/xstrtol.h: Include gettext.h.
34490         (_STRTOL_ERROR): Wrap English-language formats inside gettext.
34491         Problem reported by Eric Blake.
34492         * modules/xstrtol (Depends-on): Add gettext-h.
34493
34494 2006-10-19  Paul Eggert  <eggert@cs.ucla.edu>  (tiny change)
34495
34496         * lib/strftime.c (advance): New macro.
34497         (add): Use it to avoid adding 0 to a FILE *.  FILE can be an
34498         incomplete type, so you can't add 0 to it.  Problem and patch
34499         reported by Eelco Dolstra for dietlibc.
34500
34501 2006-10-18  Jim Meyering  <jim@meyering.net>
34502
34503         * lib/readutmp.c (desirable_utmp_entry): Use "bool" as the
34504         type for a local, and rename it: s/up/user_proc/.
34505
34506 2006-10-18  Sergey Poznyakoff  <gray@gnu.org.ua>
34507
34508         * lib/readutmp.c (desirable_utmp_entry): Implement new flag:
34509         READ_UTMP_USER_PROCESS.
34510         * lib/readutmp.h (READ_UTMP_USER_PROCESS): New flag
34511
34512 2006-10-17  Paul Eggert  <eggert@cs.ucla.edu>
34513
34514         * lib/localcharset.c: Do not check HAVE_SETLOCALE.
34515         * m4/localcharset.m4 (gl_LOCALCHARSET): Don't check for setlocale.
34516
34517 2006-10-17  Eric Blake  <ebb9@byu.net>
34518
34519         * lib/sigprocmask.c (sigprocmask): Fix typo.
34520
34521         * m4/signalblocking.m4 (gl_PREREQ_SIGPROCMASK): Fix typo.
34522
34523         * modules/clean-temp (Makefile.am): Don't add to make output...
34524         (configure.ac): ...instead define SIGNAL_SAFE_LIST inside
34525         config.h.
34526
34527 2006-10-17  Bruno Haible  <bruno@clisp.org>
34528
34529         * lib/gettext.h (gettext, ngettext, pgettext, npgettext): Define
34530         differently if DEFAULT_TEXT_DOMAIN is set.
34531
34532 2006-10-16  Bruno Haible  <bruno@clisp.org>
34533
34534         * lib/clean-temp.c: Include fwriteerror.h.
34535
34536 2006-10-16  Bruno Haible  <bruno@clisp.org>
34537
34538         * getndelim2.m4 (gl_GETNDELIM2): Remove 2003-10-23 hack.
34539
34540 2006-10-16  Bruno Haible  <bruno@clisp.org>
34541
34542         * m4/signalblocking.m4 (gl_PREREQ_SIGPROCMASK): Also test for sigset_t.
34543         * lib/sigprocmask.h: Include <sys/types.h>.
34544         (sigset_t): Use the system's definition if present.
34545
34546 2006-10-17  Eric Blake  <ebb9@byu.net>
34547
34548         * lib/xvasprintf.c (includes): Assume config.h.
34549         * lib/xasprintf.c (includes): Likewise.
34550
34551 2006-10-16  Paul Eggert  <eggert@cs.ucla.edu>
34552
34553         * lib/fsusage.c (PROPAGATE_ALL_ONES): Don't assume uintmax_t is
34554         at least as wide as intmax_t.
34555
34556 2006-10-16  Alexandre Duret-Lutz  <adl@gnu.org>
34557
34558         (Imported from Automake.)
34559         * build-aux/gnupload: Update to version 1.1 of directive file.
34560
34561 2006-10-16  Eric Blake  <ebb9@byu.net>
34562
34563         * modules/configmake (Makefile.am): Add pkglibexecdir support, to
34564         match Automake 1.10a.
34565
34566 2006-10-14  Bruno Haible  <bruno@clisp.org>
34567
34568         * modules/sigprocmask: New file.
34569         * lib/sigprocmask.h: New file.
34570         * lib/sigprocmask.c: New file.
34571         * m4/signalblocking.m4 (gl_SIGNALBLOCKING): Renamed from
34572         gt_SIGNALBLOCKING. When not defining HAVE_POSIX_SIGNALBLOCKING,
34573         request sigprocmask.o.
34574         (gl_PREREQ_SIGPROCMASK): New macro.
34575         * modules/fatal-signal (Files): Remove m4/signalblocking.m4.
34576         (Depends-on): Add sigprocmask.
34577         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Don't require
34578         gt_SIGNALBLOCKING. Test for 'raise' only once.
34579         * lib/fatal-signal.c: Include sigprocmask.h.
34580         (fatal_signal_set, init_fatal_signal_set, block_fatal_signals,
34581         unblock_fatal_signals): Define always.
34582         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
34583         sigprocmask.
34584
34585 2006-10-14  Paul Eggert  <eggert@cs.ucla.edu>
34586
34587         Sync from Automake.
34588         * build-aux/install-sh (posix_mkdir): Reject FreeBSD 6.1 mkdir -p -m,
34589         which incorrectly sets the mode of an existing destination
34590         directory.  In some cases the unpatched install-sh could do the
34591         equivalent of "chmod 777 /" or "chmod 0 /" on a buggy FreeBSD
34592         system.  We hope this is rare in practice, but it's clearly worth
34593         fixing.  Problem reported by Alex Unleashed in
34594         <http://lists.gnu.org/archive/html/bug-autoconf/2006-10/msg00012.html>.
34595         Also, don't bother to check for -m bugs unless we're using -m;
34596         suggested by Stepan Kasal.
34597
34598 2006-10-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
34599
34600         Sync from Automake.
34601         * build-aux/depcomp (gcc3): Put dependency extraction flags before the
34602         `-c' flag, so they appear at the same position as in %FASTDEP%
34603         mode in depend2.am.  Fixes build failure for FreeBSD's c89,
34604         which ignores unknown options only after the first non-option.
34605         Bug report against M4 by Nelson H. F. Beebe.
34606
34607 2006-10-13  Jim Meyering  <jim@meyering.net>
34608
34609         Fix a bug in yesterday's change.
34610         * lib/fts.c (fts_open): When using FTS_XDEV|FTS_NOSTAT,
34611         p->fts_statp->st_dev would be used uninitialized.
34612         Ensures that we always call fts_stat on the very first entry.
34613         Miklos Szeredi reported that find -xdev stopped working.
34614
34615 2006-10-12  Bruno Haible  <bruno@clisp.org>
34616
34617         * gnulib-tool (func_get_automake_snippet): Append an automatically
34618         computed EXTRA_DIST augmentation.
34619         * modules/acl (Makefile.am): Remove EXTRA_DIST augmentation.
34620         * modules/alloca-opt (Makefile.am): Likewise.
34621         * modules/allocsa (Makefile.am): Likewise.
34622         * modules/arcfour (Makefile.am): Likewise.
34623         * modules/arctwo (Makefile.am): Likewise.
34624         * modules/argmatch (Makefile.am): Likewise.
34625         * modules/argz (Makefile.am): Likewise.
34626         * modules/atexit (Makefile.am): Likewise.
34627         * modules/backupfile (Makefile.am): Likewise.
34628         * modules/byteswap (Makefile.am): Likewise.
34629         * modules/c-strtod (Makefile.am): Likewise.
34630         * modules/c-strtold (Makefile.am): Likewise.
34631         * modules/calloc (Makefile.am): Likewise.
34632         * modules/canon-host (Makefile.am): Likewise.
34633         * modules/canonicalize (Makefile.am): Likewise.
34634         * modules/chdir-long (Makefile.am): Likewise.
34635         * modules/chdir-safer (Makefile.am): Likewise.
34636         * modules/check-version (Makefile.am): Likewise.
34637         * modules/chown (Makefile.am): Likewise.
34638         * modules/cloexec (Makefile.am): Likewise.
34639         * modules/close-stream (Makefile.am): Likewise.
34640         * modules/closeout (Makefile.am): Likewise.
34641         * modules/crc (Makefile.am): Likewise.
34642         * modules/csharpexec (Makefile.am): Likewise.
34643         * modules/cycle-check (Makefile.am): Likewise.
34644         * modules/des (Makefile.am): Likewise.
34645         * modules/dev-ino (Makefile.am): Likewise.
34646         * modules/dirfd (Makefile.am): Likewise.
34647         * modules/dirname (Makefile.am): Likewise.
34648         * modules/dup2 (Makefile.am): Likewise.
34649         * modules/eealloc (Makefile.am): Likewise.
34650         * modules/error (Makefile.am): Likewise.
34651         * modules/euidaccess (Makefile.am): Likewise.
34652         * modules/exclude (Makefile.am): Likewise.
34653         * modules/exitfail (Makefile.am): Likewise.
34654         * modules/fcntl-safer (Makefile.am): Likewise.
34655         * modules/fcntl (Makefile.am): Likewise.
34656         * modules/file-type (Makefile.am): Likewise.
34657         * modules/fileblocks (Makefile.am): Likewise.
34658         * modules/filemode (Makefile.am): Likewise.
34659         * modules/filenamecat (Makefile.am): Likewise.
34660         * modules/fnmatch (Makefile.am): Likewise.
34661         * modules/fopen-safer (Makefile.am): Likewise.
34662         * modules/fpending (Makefile.am): Likewise.
34663         * modules/fprintftime (Makefile.am): Likewise.
34664         * modules/free (Makefile.am): Likewise.
34665         * modules/fsusage (Makefile.am): Likewise.
34666         * modules/ftruncate (Makefile.am): Likewise.
34667         * modules/fts (Makefile.am): Likewise.
34668         * modules/gc-arcfour (Makefile.am): Likewise.
34669         * modules/gc-des (Makefile.am): Likewise.
34670         * modules/gc-hmac-md5 (Makefile.am): Likewise.
34671         * modules/gc-hmac-sha1 (Makefile.am): Likewise.
34672         * modules/gc-md4 (Makefile.am): Likewise.
34673         * modules/gc-pbkdf2-sha1 (Makefile.am): Likewise.
34674         * modules/gc-sha1 (Makefile.am): Likewise.
34675         * modules/gc (Makefile.am): Likewise.
34676         * modules/getaddrinfo (Makefile.am): Likewise.
34677         * modules/getcwd (Makefile.am): Likewise.
34678         * modules/getdelim (Makefile.am): Likewise.
34679         * modules/getdomainname (Makefile.am): Likewise.
34680         * modules/getgroups (Makefile.am): Likewise.
34681         * modules/gethostname (Makefile.am): Likewise.
34682         * modules/gethrxtime (Makefile.am): Likewise.
34683         * modules/getline (Makefile.am): Likewise.
34684         * modules/getloadavg (Makefile.am): Likewise.
34685         * modules/getlogin_r (Makefile.am): Likewise.
34686         * modules/getndelim2 (Makefile.am): Likewise.
34687         * modules/getopt (Makefile.am): Likewise.
34688         * modules/getpagesize (Makefile.am): Likewise.
34689         * modules/getpass-gnu (Makefile.am): Likewise.
34690         * modules/getpass (Makefile.am): Likewise.
34691         * modules/getsubopt (Makefile.am): Likewise.
34692         * modules/gettime (Makefile.am): Likewise.
34693         * modules/gettimeofday (Makefile.am): Likewise.
34694         * modules/getugroups (Makefile.am): Likewise.
34695         * modules/getusershell (Makefile.am): Likewise.
34696         * modules/glob (Makefile.am): Likewise.
34697         * modules/group-member (Makefile.am): Likewise.
34698         * modules/hard-locale (Makefile.am): Likewise.
34699         * modules/hash (Makefile.am): Likewise.
34700         * modules/hmac-md5 (Makefile.am): Likewise.
34701         * modules/hmac-sha1 (Makefile.am): Likewise.
34702         * modules/human (Makefile.am): Likewise.
34703         * modules/idcache (Makefile.am): Likewise.
34704         * modules/imaxabs (Makefile.am): Likewise.
34705         * modules/imaxdiv (Makefile.am): Likewise.
34706         * modules/inet_ntop (Makefile.am): Likewise.
34707         * modules/inet_pton (Makefile.am): Likewise.
34708         * modules/intprops (Makefile.am): Likewise.
34709         * modules/inttostr (Makefile.am): Likewise.
34710         * modules/inttypes (Makefile.am): Likewise.
34711         * modules/isapipe (Makefile.am): Likewise.
34712         * modules/javaversion (Makefile.am): Likewise.
34713         * modules/lchmod (Makefile.am): Likewise.
34714         * modules/lchown (Makefile.am): Likewise.
34715         * modules/localcharset (Makefile.am): Likewise.
34716         * modules/long-options (Makefile.am): Likewise.
34717         * modules/lstat (Makefile.am): Likewise.
34718         * modules/malloc (Makefile.am): Likewise.
34719         * modules/mathl (Makefile.am): Likewise.
34720         * modules/mbchar (Makefile.am): Likewise.
34721         * modules/md2 (Makefile.am): Likewise.
34722         * modules/md4 (Makefile.am): Likewise.
34723         * modules/md5 (Makefile.am): Likewise.
34724         * modules/memcasecmp (Makefile.am): Likewise.
34725         * modules/memchr (Makefile.am): Likewise.
34726         * modules/memcmp (Makefile.am): Likewise.
34727         * modules/memcoll (Makefile.am): Likewise.
34728         * modules/memcpy (Makefile.am): Likewise.
34729         * modules/memmem (Makefile.am): Likewise.
34730         * modules/memmove (Makefile.am): Likewise.
34731         * modules/mempcpy (Makefile.am): Likewise.
34732         * modules/memrchr (Makefile.am): Likewise.
34733         * modules/memset (Makefile.am): Likewise.
34734         * modules/memxor (Makefile.am): Likewise.
34735         * modules/mkancesdirs (Makefile.am): Likewise.
34736         * modules/mkdir-p (Makefile.am): Likewise.
34737         * modules/mkdir (Makefile.am): Likewise.
34738         * modules/mkdtemp (Makefile.am): Likewise.
34739         * modules/mkstemp (Makefile.am): Likewise.
34740         * modules/mktime (Makefile.am): Likewise.
34741         * modules/modechange (Makefile.am): Likewise.
34742         * modules/mountlist (Makefile.am): Likewise.
34743         * modules/nanosleep (Makefile.am): Likewise.
34744         * modules/obstack (Makefile.am): Likewise.
34745         * modules/openat (Makefile.am): Likewise.
34746         * modules/pagealign_alloc (Makefile.am): Likewise.
34747         * modules/pathmax (Makefile.am): Likewise.
34748         * modules/physmem (Makefile.am): Likewise.
34749         * modules/poll (Makefile.am): Likewise.
34750         * modules/posixtm (Makefile.am): Likewise.
34751         * modules/posixver (Makefile.am): Likewise.
34752         * modules/putenv (Makefile.am): Likewise.
34753         * modules/quote (Makefile.am): Likewise.
34754         * modules/quotearg (Makefile.am): Likewise.
34755         * modules/raise (Makefile.am): Likewise.
34756         * modules/read-file (Makefile.am): Likewise.
34757         * modules/readline (Makefile.am): Likewise.
34758         * modules/readlink (Makefile.am): Likewise.
34759         * modules/readtokens (Makefile.am): Likewise.
34760         * modules/readutmp (Makefile.am): Likewise.
34761         * modules/realloc (Makefile.am): Likewise.
34762         * modules/regex (Makefile.am): Likewise.
34763         * modules/rename-dest-slash (Makefile.am): Likewise.
34764         * modules/rename (Makefile.am): Likewise.
34765         * modules/rijndael (Makefile.am): Likewise.
34766         * modules/rmdir (Makefile.am): Likewise.
34767         * modules/rpmatch (Makefile.am): Likewise.
34768         * modules/safe-read (Makefile.am): Likewise.
34769         * modules/safe-write (Makefile.am): Likewise.
34770         * modules/same-inode (Makefile.am): Likewise.
34771         * modules/same (Makefile.am): Likewise.
34772         * modules/save-cwd (Makefile.am): Likewise.
34773         * modules/savedir (Makefile.am): Likewise.
34774         * modules/setenv (Makefile.am): Likewise.
34775         * modules/settime (Makefile.am): Likewise.
34776         * modules/sha1 (Makefile.am): Likewise.
34777         * modules/sig2str (Makefile.am): Likewise.
34778         * modules/snprintf (Makefile.am): Likewise.
34779         * modules/stat-macros (Makefile.am): Likewise.
34780         * modules/stat-time (Makefile.am): Likewise.
34781         * modules/stdbool (Makefile.am): Likewise.
34782         * modules/stdint (Makefile.am): Likewise.
34783         * modules/stdlib-safer (Makefile.am): Likewise.
34784         * modules/stpcpy (Makefile.am): Likewise.
34785         * modules/stpncpy (Makefile.am): Likewise.
34786         * modules/strcase (Makefile.am): Likewise.
34787         * modules/strcasestr (Makefile.am): Likewise.
34788         * modules/strchrnul (Makefile.am): Likewise.
34789         * modules/strcspn (Makefile.am): Likewise.
34790         * modules/strdup (Makefile.am): Likewise.
34791         * modules/strerror (Makefile.am): Likewise.
34792         * modules/strftime (Makefile.am): Likewise.
34793         * modules/strndup (Makefile.am): Likewise.
34794         * modules/strnlen (Makefile.am): Likewise.
34795         * modules/strpbrk (Makefile.am): Likewise.
34796         * modules/strsep (Makefile.am): Likewise.
34797         * modules/strstr (Makefile.am): Likewise.
34798         * modules/strtod (Makefile.am): Likewise.
34799         * modules/strtoimax (Makefile.am): Likewise.
34800         * modules/strtok_r (Makefile.am): Likewise.
34801         * modules/strtol (Makefile.am): Likewise.
34802         * modules/strtoll (Makefile.am): Likewise.
34803         * modules/strtoul (Makefile.am): Likewise.
34804         * modules/strtoull (Makefile.am): Likewise.
34805         * modules/strtoumax (Makefile.am): Likewise.
34806         * modules/strverscmp (Makefile.am): Likewise.
34807         * modules/sys_socket (Makefile.am): Likewise.
34808         * modules/sys_stat (Makefile.am): Likewise.
34809         * modules/sysexits (Makefile.am): Likewise.
34810         * modules/time_r (Makefile.am): Likewise.
34811         * modules/timegm (Makefile.am): Likewise.
34812         * modules/timespec (Makefile.am): Likewise.
34813         * modules/tmpfile-safer (Makefile.am): Likewise.
34814         * modules/trim (Makefile.am): Likewise.
34815         * modules/unistd-safer (Makefile.am): Likewise.
34816         * modules/unlinkdir (Makefile.am): Likewise.
34817         * modules/unlocked-io (Makefile.am): Likewise.
34818         * modules/userspec (Makefile.am): Likewise.
34819         * modules/utime (Makefile.am): Likewise.
34820         * modules/utimecmp (Makefile.am): Likewise.
34821         * modules/utimens (Makefile.am): Likewise.
34822         * modules/vasnprintf (Makefile.am): Likewise.
34823         * modules/vasprintf (Makefile.am): Likewise.
34824         * modules/vsnprintf (Makefile.am): Likewise.
34825         * modules/xalloc (Makefile.am): Likewise.
34826         * modules/xgetcwd (Makefile.am): Likewise.
34827         * modules/xnanosleep (Makefile.am): Likewise.
34828         * modules/xreadlink (Makefile.am): Likewise.
34829         * modules/xstrtod (Makefile.am): Likewise.
34830         * modules/xstrtol (Makefile.am): Likewise.
34831         * modules/xstrtold (Makefile.am): Likewise.
34832         * modules/yesno (Makefile.am): Likewise.
34833         * modules/getdate (Makefile.am): Don't add getdate.h to EXTRA_DIST.
34834
34835 2006-10-12  Paul Eggert  <eggert@cs.ucla.edu>
34836
34837         * modules/error (Makefile.am): Distribute files through
34838         EXTRA_DIST, not lib_SOURCES.
34839
34840 2006-10-12  Eric Blake  <ebb9@byu.net>
34841
34842         * modules/error (Makefile.am): Distribute files in /lib.
34843         * modules/obstack (Makefile.am): Likewise.
34844
34845 2006-10-12  Bruno Haible  <bruno@clisp.org>
34846
34847         * modules/acl (Makefile.am): Distribute all files in lib/ through
34848         EXTRA_DIST.
34849         * modules/arcfour (Makefile.am): Likewise.
34850         * modules/arctwo (Makefile.am): Likewise.
34851         * modules/argmatch (Makefile.am): Likewise.
34852         * modules/argz (Makefile.am): Likewise.
34853         * modules/atexit (Makefile.am): Likewise.
34854         * modules/backupfile (Makefile.am): Likewise.
34855         * modules/c-strtod (Makefile.am): Likewise.
34856         * modules/c-strtold (Makefile.am): Likewise.
34857         * modules/calloc (Makefile.am): Likewise.
34858         * modules/canon-host (Makefile.am): Likewise.
34859         * modules/canonicalize (Makefile.am): Likewise.
34860         * modules/chdir-long (Makefile.am): Likewise.
34861         * modules/chdir-safer (Makefile.am): Likewise.
34862         * modules/check-version (Makefile.am): Likewise.
34863         * modules/chown (Makefile.am): Likewise.
34864         * modules/cloexec (Makefile.am): Likewise.
34865         * modules/close-stream (Makefile.am): Likewise.
34866         * modules/closeout (Makefile.am): Likewise.
34867         * modules/crc (Makefile.am): Likewise.
34868         * modules/cycle-check (Makefile.am): Likewise.
34869         * modules/des (Makefile.am): Likewise.
34870         * modules/dirfd (Makefile.am): Likewise.
34871         * modules/dirname (Makefile.am): Likewise.
34872         * modules/dup2 (Makefile.am): Likewise.
34873         * modules/euidaccess (Makefile.am): Likewise.
34874         * modules/exclude (Makefile.am): Likewise.
34875         * modules/exitfail (Makefile.am): Likewise.
34876         * modules/fcntl-safer (Makefile.am): Likewise.
34877         * modules/file-type (Makefile.am): Likewise.
34878         * modules/fileblocks (Makefile.am): Likewise.
34879         * modules/filemode (Makefile.am): Likewise.
34880         * modules/filenamecat (Makefile.am): Likewise.
34881         * modules/fnmatch (Makefile.am): Likewise.
34882         * modules/fopen-safer (Makefile.am): Likewise.
34883         * modules/fpending (Makefile.am): Likewise.
34884         * modules/fprintftime (Makefile.am): Likewise.
34885         * modules/free (Makefile.am): Likewise.
34886         * modules/fsusage (Makefile.am): Likewise.
34887         * modules/ftruncate (Makefile.am): Likewise.
34888         * modules/fts (Makefile.am): Likewise.
34889         * modules/gc (Makefile.am): Likewise.
34890         * modules/gc-pbkdf2-sha1 (Makefile.am): Likewise.
34891         * modules/getaddrinfo (Makefile.am): Likewise.
34892         * modules/getcwd (Makefile.am): Likewise.
34893         * modules/getdelim (Makefile.am): Likewise.
34894         * modules/getdomainname (Makefile.am): Likewise.
34895         * modules/getgroups (Makefile.am): Likewise.
34896         * modules/gethostname (Makefile.am): Likewise.
34897         * modules/gethrxtime (Makefile.am): Likewise.
34898         * modules/getline (Makefile.am): Likewise.
34899         * modules/getloadavg (Makefile.am): Likewise.
34900         * modules/getlogin_r (Makefile.am): Likewise.
34901         * modules/getopt (Makefile.am): Likewise.
34902         * modules/getpass (Makefile.am): Likewise.
34903         * modules/getpass-gnu (Makefile.am): Likewise.
34904         * modules/getsubopt (Makefile.am): Likewise.
34905         * modules/gettime (Makefile.am): Likewise.
34906         * modules/gettimeofday (Makefile.am): Likewise.
34907         * modules/getugroups (Makefile.am): Likewise.
34908         * modules/getusershell (Makefile.am): Likewise.
34909         * modules/glob (Makefile.am): Likewise.
34910         * modules/group-member (Makefile.am): Likewise.
34911         * modules/hard-locale (Makefile.am): Likewise.
34912         * modules/hash (Makefile.am): Likewise.
34913         * modules/hmac-md5 (Makefile.am): Likewise.
34914         * modules/hmac-sha1 (Makefile.am): Likewise.
34915         * modules/human (Makefile.am): Likewise.
34916         * modules/idcache (Makefile.am): Likewise.
34917         * modules/imaxabs (Makefile.am): Likewise.
34918         * modules/imaxdiv (Makefile.am): Likewise.
34919         * modules/inet_ntop (Makefile.am): Likewise.
34920         * modules/inet_pton (Makefile.am): Likewise.
34921         * modules/inttostr (Makefile.am): Likewise.
34922         * modules/isapipe (Makefile.am): Likewise.
34923         * modules/lchown (Makefile.am): Likewise.
34924         * modules/long-options (Makefile.am): Likewise.
34925         * modules/lstat (Makefile.am): Likewise.
34926         * modules/malloc (Makefile.am): Likewise.
34927         * modules/mathl (Makefile.am): Likewise.
34928         * modules/mbchar (Makefile.am): Likewise.
34929         * modules/md2 (Makefile.am): Likewise.
34930         * modules/md4 (Makefile.am): Likewise.
34931         * modules/md5 (Makefile.am): Likewise.
34932         * modules/memcasecmp (Makefile.am): Likewise.
34933         * modules/memchr (Makefile.am): Likewise.
34934         * modules/memcmp (Makefile.am): Likewise.
34935         * modules/memcoll (Makefile.am): Likewise.
34936         * modules/memcpy (Makefile.am): Likewise.
34937         * modules/memmem (Makefile.am): Likewise.
34938         * modules/memmove (Makefile.am): Likewise.
34939         * modules/mempcpy (Makefile.am): Likewise.
34940         * modules/memrchr (Makefile.am): Likewise.
34941         * modules/memset (Makefile.am): Likewise.
34942         * modules/memxor (Makefile.am): Likewise.
34943         * modules/mkancesdirs (Makefile.am): Likewise.
34944         * modules/mkdir (Makefile.am): Likewise.
34945         * modules/mkdir-p (Makefile.am): Likewise.
34946         * modules/mkdtemp (Makefile.am): Likewise.
34947         * modules/mkstemp (Makefile.am): Likewise.
34948         * modules/mktime (Makefile.am): Likewise.
34949         * modules/modechange (Makefile.am): Likewise.
34950         * modules/mountlist (Makefile.am): Likewise.
34951         * modules/nanosleep (Makefile.am): Likewise.
34952         * modules/openat (Makefile.am): Likewise.
34953         * modules/pagealign_alloc (Makefile.am): Likewise.
34954         * modules/physmem (Makefile.am): Likewise.
34955         * modules/poll (Makefile.am): Likewise.
34956         * modules/posixtm (Makefile.am): Likewise.
34957         * modules/posixver (Makefile.am): Likewise.
34958         * modules/putenv (Makefile.am): Likewise.
34959         * modules/quote (Makefile.am): Likewise.
34960         * modules/quotearg (Makefile.am): Likewise.
34961         * modules/raise (Makefile.am): Likewise.
34962         * modules/read-file (Makefile.am): Likewise.
34963         * modules/readline (Makefile.am): Likewise.
34964         * modules/readlink (Makefile.am): Likewise.
34965         * modules/readtokens (Makefile.am): Likewise.
34966         * modules/readutmp (Makefile.am): Likewise.
34967         * modules/realloc (Makefile.am): Likewise.
34968         * modules/regex (Makefile.am): Likewise.
34969         * modules/rename (Makefile.am): Likewise.
34970         * modules/rename-dest-slash (Makefile.am): Likewise.
34971         * modules/rijndael (Makefile.am): Likewise.
34972         * modules/rmdir (Makefile.am): Likewise.
34973         * modules/rpmatch (Makefile.am): Likewise.
34974         * modules/safe-read (Makefile.am): Likewise.
34975         * modules/safe-write (Makefile.am): Likewise.
34976         * modules/same (Makefile.am): Likewise.
34977         * modules/save-cwd (Makefile.am): Likewise.
34978         * modules/savedir (Makefile.am): Likewise.
34979         * modules/setenv (Makefile.am): Likewise.
34980         * modules/settime (Makefile.am): Likewise.
34981         * modules/sha1 (Makefile.am): Likewise.
34982         * modules/sig2str (Makefile.am): Likewise.
34983         * modules/snprintf (Makefile.am): Likewise.
34984         * modules/stdlib-safer (Makefile.am): Likewise.
34985         * modules/stpcpy (Makefile.am): Likewise.
34986         * modules/stpncpy (Makefile.am): Likewise.
34987         * modules/strcase (Makefile.am): Likewise.
34988         * modules/strcasestr (Makefile.am): Likewise.
34989         * modules/strchrnul (Makefile.am): Likewise.
34990         * modules/strcspn (Makefile.am): Likewise.
34991         * modules/strdup (Makefile.am): Likewise.
34992         * modules/strerror (Makefile.am): Likewise.
34993         * modules/strftime (Makefile.am): Likewise.
34994         * modules/strndup (Makefile.am): Likewise.
34995         * modules/strnlen (Makefile.am): Likewise.
34996         * modules/strpbrk (Makefile.am): Likewise.
34997         * modules/strsep (Makefile.am): Likewise.
34998         * modules/strstr (Makefile.am): Likewise.
34999         * modules/strtod (Makefile.am): Likewise.
35000         * modules/strtoimax (Makefile.am): Likewise.
35001         * modules/strtok_r (Makefile.am): Likewise.
35002         * modules/strtol (Makefile.am): Likewise.
35003         * modules/strtoll (Makefile.am): Likewise.
35004         * modules/strtoul (Makefile.am): Likewise.
35005         * modules/strtoull (Makefile.am): Likewise.
35006         * modules/strtoumax (Makefile.am): Likewise.
35007         * modules/strverscmp (Makefile.am): Likewise.
35008         * modules/time_r (Makefile.am): Likewise.
35009         * modules/timegm (Makefile.am): Likewise.
35010         * modules/tmpfile-safer (Makefile.am): Likewise.
35011         * modules/unistd-safer (Makefile.am): Likewise.
35012         * modules/unlinkdir (Makefile.am): Likewise.
35013         * modules/userspec (Makefile.am): Likewise.
35014         * modules/utime (Makefile.am): Likewise.
35015         * modules/utimecmp (Makefile.am): Likewise.
35016         * modules/utimens (Makefile.am): Likewise.
35017         * modules/vasnprintf (Makefile.am): Likewise.
35018         * modules/vasprintf (Makefile.am): Likewise.
35019         * modules/vsnprintf (Makefile.am): Likewise.
35020         * modules/xalloc (Makefile.am): Likewise.
35021         * modules/xgetcwd (Makefile.am): Likewise.
35022         * modules/xnanosleep (Makefile.am): Likewise.
35023         * modules/xreadlink (Makefile.am): Likewise.
35024         * modules/xstrtod (Makefile.am): Likewise.
35025         * modules/xstrtol (Makefile.am): Likewise.
35026         * modules/xstrtold (Makefile.am): Likewise.
35027         * modules/yesno (Makefile.am): Likewise.
35028
35029 2006-10-12  Jim Meyering  <jim@meyering.net>
35030
35031         * m4/getloadavg.m4: Revert the change below.
35032
35033         * m4/getloadavg.m4 (gl_GETLOADAVG): Test for the existence of
35034         lib/getloadavg.c using "ls -L", not "test -f".  The latter would
35035         fail with a symlink, which is what coreutils' ./bootstrap now
35036         creates by default.
35037
35038 2006-10-12  Bruno Haible  <bruno@clisp.org>
35039
35040         * lib/inttypes_.h (_LONG_LONG_FORMAT_PREFIX): Don't define for MSVC or
35041         mingw.
35042         (_PRI64_PREFIX, _PRIu64_PREFIX, _SCN64_PREFIX, _SCNu64_PREFIX): Handle
35043         MSVC and mingw explicitly.
35044
35045 2006-10-11  Simon Josefsson  <jas@extundo.com>
35046             Bruno Haible  <bruno@clisp.org>
35047
35048         Add support for multiple gnulib-tool invocations in the scope of a
35049         single configure.ac file.
35050         * gnulib-tool (func_emit_lib_Makefile_am): In the _LIBADD variable,
35051         use a private [LT]LIBOBJS variant. Define a _DEPENDENCIES variable
35052         with the same contents as the _LIBADD variable.
35053         (func_emit_initmacro_start, func_emit_initmacro_end,
35054         func_emit_initmacro_done): New functions.
35055         (func_import, func_create_testdir): Invoke them. Allow the identifiers
35056         gl_LIBOBJS and gl_LTLIBOBJS.
35057
35058 2006-10-11  Bruno Haible  <bruno@clisp.org>
35059
35060         * gnulib-tool (GETTEXTPATH, AUTOHEADER, AUTOPOINT): New variables.
35061         (func_create_testdir): Don't create po/Makefile.am, don't invoke
35062         autoreconf. Instead, invoke autopoint explicitly but move back the
35063         *.m4 files from gnulib.
35064
35065 2006-10-11  Bruno Haible  <bruno@clisp.org>
35066
35067         * gnulib-tool (func_usage): Make module names after --create-testdir
35068         optional.
35069         (func_create_testdir): If no module was specified, use nearly all
35070         modules.
35071
35072 2006-10-12  Jim Meyering  <jim@meyering.net>
35073
35074         Big performance improvement for fts-based tools that use FTS_NOSTAT.
35075         Avoid spurious inode-mismatch problems on non-POSIX file systems.
35076         Details: http://article.gmane.org/gmane.comp.lib.gnulib.bugs/7416
35077         * lib/fts_.h (FTS_DEFER_STAT): Define new flag.
35078         (FTS_OPTIONMASK): Extend the mask to reflect this addition.
35079         * lib/fts.c (DT_IS_KNOWN, DT_MUST_BE): Define.
35080         (FTS_NO_STAT_REQUIRED, FTS_STAT_REQUIRED): Define.
35081         (fts_set_stat_required): New function.
35082         (fts_open): Defer the calls to fts_stat, if possible or requested.
35083         Move the code that maps a command-line fts_info value FTS_DOT to FTS_D
35084         into fts_stat itself.
35085         (fts_read): Perform any required (deferred) fts_stat call.
35086         (fts_build): Likewise, for the directory we're about to open and read.
35087         In the readdir loop, carefully decide whether each entry will require
35088         an eventual call to fts_stat, using dirent.d_type info if available.
35089         (fts_stat): Move the test for whether to honor FTS_COMFOLLOW on
35090         a command line argument into this function.  Update all callers.
35091         Map a return value of FTS_DOT to FTS_D for a command line argument.
35092         * modules/fts (Depends-on): Add d-type.  Alphabetize.
35093         Thanks to Miklos Szeredi for his tenacity and for the initial
35094         bug report about "find" failing on a FUSE-based file system.
35095
35096         * lib/fts.c (fts_open): Use consistent indentation.
35097
35098 2006-10-12  Paul Eggert  <eggert@cs.ucla.edu>
35099
35100         * m4/extensions.m4 (AC_USE_SYSTEM_EXTENSIONS): Renamed from
35101         gl_USE_SYSTEM_EXTENSIONS, to fix a coreutils bootstrap failure
35102         reported by Jim Meyering.  All uses of cache variables renamed
35103         to match Autoconf's.
35104         (gl_USE_SYSTEM_EXTENSIONS): New macro, which simply requires
35105         the other one.
35106
35107         * m4/rename-dest-slash.m4 (gl_FUNC_RENAME_TRAILING_DEST_SLASH):
35108         Fix misspelling in diagnostic.
35109
35110 2006-10-11  Paul Eggert  <eggert@cs.ucla.edu>
35111
35112         * lib/mkdir-p.c (HAVE_FCHMOD): Define to false if not already
35113         defined.  Problem reported by Matthew Woehlke.
35114
35115         * lib/inttypes_.h (_LONG_LONG_FORMAT_PREFIX): New macro.
35116         Add support for Tandem NonStop R series.
35117         (_PRI64_PREFIX, _PRIu64_PREFIX, _SCN64_PREFIX, _SCNu64_PREFIX):
35118         Use new macro.
35119
35120         * lib/rename-dest-slash.c: Include stdbool.h but not string.h.
35121         (has_trailing_slash): Omit size arg; all callers changed.
35122         Omit 'inline', since it doesn't help performance and we'd
35123         need to configure it.
35124         Don't count //, ///, etc. as having a trailing slash.
35125         As a side effect, this removes a C99ism reported by Matthew Woehlke.
35126         (rpl_rename_dest_slash): On failure, use rename's errno rather
35127         than (in some cases) an incorrect or junk errno.
35128         Simplify code by removing need to compute length; this does
35129         cause it to make two passes instead of one over the file name,
35130         but it's worth it.
35131
35132         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Undo previous
35133         change, since Autoconf's version may no longer be appropriate now
35134         that we are using CVS Autoconf's version.  Add support for Tandem.
35135
35136 2006-10-11  Paul Eggert  <eggert@cs.ucla.edu>
35137             Bruno Haible  <bruno@clisp.org>
35138
35139         * lib/allocsa.h (sa_alignment_longlong, sa_alignment_max): Test
35140         HAVE_LONG_LONG_INT instead of HAVE_LONG_LONG.
35141         * m4/allocsa.m4 (gl_ALLOCSA): Invoke AC_TYPE_LONG_LONG_INT instead of
35142         gl_AC_TYPE_LONG_LONG.
35143
35144         * lib/printf-args.h (arg_type, argument): Test HAVE_LONG_LONG_INT
35145         instead of HAVE_LONG_LONG.
35146         * lib/printf-args.c (printf_fetchargs): Likewise.
35147         * lib/printf-parse.c (PRINTF_PARSE): Likewise.
35148         * lib/vasnprintf.c (VASNPRINTF): Likewise.
35149         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_ARGS, gl_PREREQ_PRINTF_PARSE,
35150         gl_PREREQ_VASNPRINTF): Invoke AC_TYPE_LONG_LONG_INT instead of
35151         gl_AC_TYPE_LONG_LONG.
35152
35153 2006-10-11  Bruno Haible  <bruno@clisp.org>
35154
35155         * m4/longlong.m4: Add comments.
35156         * m4/ulonglong.m4: Likewise.
35157
35158 2006-10-10  Bruno Haible  <bruno@clisp.org>
35159
35160         Make it possible to #define stpcpy, strdup to aliases.
35161         * lib/stpcpy.c (stpcpy) [!_LIBC]: Don't undefine.
35162         * lib/strdup.c (strdup) [!_LIBC]: Don't undefine.
35163
35164 2006-10-10  Bruno Haible  <bruno@clisp.org>
35165
35166         Make it possible to #define gcd to an alias.
35167         * lib/gcd.c: Include config.h.
35168
35169 2006-10-10  Bruno Haible  <bruno@clisp.org>
35170
35171         Make it possible to #define c_isascii to an alias.
35172         * lib/c-ctype.h: Don't define the macros if NO_C_CTYPE_MACROS is
35173         defined. Undefine the macros before defining them, to avoid gcc
35174         warnings.
35175         * lib/c-ctype.c: Include config.h. Don't undefine the macros; instead,
35176         define NO_C_CTYPE_MACROS early.
35177
35178 2006-10-10  Bruno Haible  <bruno@clisp.org>
35179
35180         Make it possible to #define set_program_name to an alias.
35181         * lib/progname.c: Don't undefine set_program_name; instead, undefine
35182         ENABLE_RELOCATABLE early.
35183
35184 2006-10-10  Paul Eggert  <eggert@cs.ucla.edu>
35185
35186         Port to Tandem NSK OSS, which has 64-bit signed int but at most
35187         32-bit unsigned int.  Problem reported by Matthew Woehlke in:
35188         http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00062.html
35189         More generally, don't assume that 64-bit signed int is available
35190         if unsigned int is, and vice versa.
35191         * lib/inttypes_.h (_PRIu64_PREFIX, _SCNu64_PREFIX): Depend on
35192         unsigned symbols, not on their signed counterparts.
35193         * lib/stdint_.h (uint64_t, uint_least64_t, uint_fast64_t, uintmax_t):
35194         (UINT64_MAX, UINT_LEAST64_MAX, UINT_FAST64_MAX, UINTMAX_MAX):
35195         (UINT64_C, UINTMAX_C):
35196         Likewise.
35197         * lib/strtoimax.c (strtoll): Depend on signed symbols, not their
35198         unsigned counterparts.
35199         (Have_long_long, Unsigned): New macros.
35200         (Int): Renamed from INT.
35201         (strtoimax): Use the new macros.
35202         * m4/stdint.m4 (gl_STDINT_H): Require AC_TYPE_UNSIGNED_LONG_LONG_INT
35203         and substitute HAVE_UNSIGNED_LONG_LONG_INT.
35204         * modules/inttypes (inttypes.h): Substitute
35205         HAVE_UNSIGNED_LONG_LONG_INT.
35206         * modules/stdint (stdint.h): Likewise.
35207         (Files): Add m4/ulonglong.m4.
35208
35209 2006-10-10  Bruno Haible  <bruno@clisp.org>
35210
35211         Fix a gcc -Wshadow warning.
35212         * lib/gl_anyhash_list2.h (hash_resize): Rename local variable 'index'
35213         to 'bucket'.
35214         * lib/gl_anylinked_list2.h (gl_linked_search_from_to,
35215         gl_linked_indexof_from_to): Likewise.
35216         * lib/gl_linkedhash_list.c (add_to_bucket, remove_from_bucket):
35217         Likewise.
35218         * lib/gl_anytreehash_list1.h (add_to_bucket, remove_from_bucket):
35219         Likewise.
35220         * lib/gl_anytreehash_list2.h (gl_tree_search_from_to): Likewise.
35221         Reported by Eric Blake.
35222
35223 2006-10-09  Paul Eggert  <eggert@cs.ucla.edu>
35224
35225         * lib/filemode.h [HAVE_DECL_STRMODE]: Include unistd.h too,
35226         for NetBSD.  Problem reported by Bruno Haible.
35227
35228 2006-10-09  Jim Meyering  <jim@meyering.net>
35229
35230         * lib/lchown.c: Include <sys/stat.h> before "stat-macros.h".
35231         Patch from Bruno Haible.
35232
35233 2006-10-09  Jim Meyering  <jim@meyering.net>
35234
35235         * lib/fts-cycle.c (leave_dir): When "leaving" a top level directory due
35236         to FTS_SKIP, don't copy the parent's uninitialized dev/ino values.
35237         Trigger with e.g., mkdir d && valgrind ./chmod u+rwx d d
35238
35239 2006-10-08  Paul Eggert  <eggert@cs.ucla.edu>
35240
35241         Don't include <config.h> twice; this doesn't work in some cases,
35242         e.g., when config.h has "#define intmax_t long long int" and
35243         we include <config.h>, <inttypes.h>, <config.h> in that order.
35244         Problem reported by Matthew Woehlke in:
35245         http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00073.html
35246         * lib/fprintftime.c: Don't include config.h or fprintftime.h.
35247         * lib/fts-cycle.c: Don't include config.h.
35248         * lib/strftime.c: Include fprintftime.h if FPRINTFTIME is defined.
35249         * lib/xstrtoimax.c: Remove copyright notice since it's short tnow.
35250         Don't include config.h or xstrtol.h.  Define STRTOL_T_MINIMUM
35251         and STRTOL_T_MAXIMUM unconditionally, since we now assume gnulib
35252         inttypes.h.
35253         * lib/xstrtoumax.c: Likewise.
35254         * lib/xstrtol.c: Include config.h and xstrtol.h after defining
35255         __strtol and the like, so that this module is more like its siblings.
35256         (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM) [! defined STRTOL_T_MINIMUM]:
35257         Remove; no longer needed now that we assume gnulib inttypes.h.
35258
35259 2006-10-08  Bruno Haible  <bruno@clisp.org>
35260
35261         * doc/gnulib-tool.texi: Emphasize the drawbacks of the --symlink
35262         option.
35263
35264 2006-10-07  Jim Meyering  <jim@meyering.net>
35265
35266         * modules/inttypes (inttypes.h): Revert what seems to have been
35267         an inadvertent part of today's change: use "|", not "/" in the
35268         substitution for the "/"-containing string, $(ABSOLUTE_INTTYPES_H).
35269
35270 2006-10-07  Bruno Haible  <bruno@clisp.org>
35271
35272         * modules/sublist: New file.
35273
35274 2006-10-07  Bruno Haible  <bruno@clisp.org>
35275
35276         * modules/alloca-opt (alloca.h): Add a "DO NOT EDIT" comment.
35277         * modules/argz (argz.h): Likewise.
35278         * modules/arpa_inet (arpa/inet.h): Likewise.
35279         * modules/byteswap (byteswap.h): Likewise.
35280         * modules/configmake (configmake.h): Likewise.
35281         * modules/fcntl (fcntl.h): Likewise.
35282         * modules/fnmatch (fnmatch.h): Likewise.
35283         * modules/getopt (getopt.h): Likewise.
35284         * modules/glob (glob.h): Likewise.
35285         * modules/inttypes (inttypes.h): Likewise.
35286         * modules/netinet_in (netinet/in.h): Likewise.
35287         * modules/poll (poll.h): Likewise.
35288         * modules/stdbool (stdbool.h): Likewise.
35289         * modules/stdint (stdint.h): Likewise.
35290         * modules/sys_select (sys/select.h): Likewise.
35291         * modules/sys_socket (sys/socket.h): Likewise.
35292         * modules/sys_stat (sys/stat.h): Likewise.
35293         * modules/sysexits (sysexits.h): Likewise.
35294         * modules/unistd (unistd.h): Likewise.
35295         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
35296         Add a "DO NOT EDIT" comment to the generated file.
35297         (func_import): Likewise for gnulib-comp.m4.
35298
35299 2006-10-07  Bruno Haible  <bruno@clisp.org>
35300
35301         * lib/gl_sublist.h: New file.
35302         * lib/gl_sublist.c: New file.
35303
35304 2006-10-06  Paul Eggert  <eggert@cs.ucla.edu>
35305
35306         * lib/mkancesdirs.c (mkancesdirs): Pass to MAKE_DIR both the full file
35307         name (relative to the original working directory) and the file
35308         name component (relative to the temporary working directory).  All
35309         callers changed.
35310         * lib/mkancesdirs.h (mkancesdirs): Adjust prototype to match.
35311         * lib/mkdir-p.c (make_dir_parents): Likewise.
35312         * lib/mkdir-p.h (make_dir_parents): Likewise.
35313
35314 2006-10-06  Eric Blake  <ebb9@byu.net>
35315
35316         Define several macros for use by the clean-temp module.
35317         * m4/close-stream.m4 (gl_CLOSE_STREAM): Define GNULIB_CLOSE_STREAM.
35318         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Define GNULIB_FCNTL_SAFER.
35319         * m4/stdio-safer.m4 (gl_FOPEN_SAFER): Define GNULIB_FOPEN_SAFER.
35320
35321         * lib/clean-temp.h (close_stream_temp): New declaration.
35322         * lib/clean-temp.c (includes): Pull in headers according to what
35323         other modules are in use.
35324         (close_stream_temp) [GNULIB_CLOSE_STREAM]: New function.
35325
35326 2006-10-06  Bruno Haible  <bruno@clisp.org>
35327
35328         * lib/javacomp.c (write_temp_file): Use fopen_temp, fwriteerror_temp
35329         instead of fopen, fwriteerror.
35330
35331 2006-10-06  Bruno Haible  <bruno@clisp.org>
35332
35333         * lib/clean-temp.h (cleanup_temp_file, cleanup_temp_subdir,
35334         cleanup_temp_dir_contents, cleanup_temp_dir): Change return type to
35335         int.
35336         * lib/clean-temp.c (do_unlink, do_rmdir, cleanup_temp_file,
35337         cleanup_temp_subdir, cleanup_temp_dir_contents, cleanup_temp_dir):
35338         Return an error indicator.
35339         Suggested by Eric Blake.
35340
35341 2006-10-06  Bruno Haible  <bruno@clisp.org>
35342
35343         * lib/clean-temp.c (PATH_MAX): Provide a fallback for GNU Hurd.
35344         Reported by Eric Blake.
35345
35346 2006-10-06  Bruno Haible  <bruno@clisp.org>
35347
35348         * modules/closeout (Description): Mention stderr too.
35349
35350 2006-10-06  Bruno Haible  <bruno@clisp.org>
35351         and Paul Eggert  <eggert@cs.ucla.edu>
35352
35353         * lib/closeout.c (close_stdout): Also close stderr.
35354         * lib/closeout.h: Update comment.
35355
35356 2006-10-05  Paul Eggert  <eggert@cs.ucla.edu>
35357
35358         Fix some Darwin-7.9.0 porting problems reported by Bruno Haible in
35359         <http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00063.html>.
35360         * lib/dirchownmod.c: Include lchown.h.
35361         * lib/lchown.c: Don't include files that lchown.h now includes.
35362         Don't declare chown, since lchown.h now does that.
35363         * lib/lchown.h: Include errno.h, sys/types.h, unistd.h.
35364         (lchown): Define to rpl_chown if lchown is declared but
35365         does not exist.  Declare using a prototype if lchown is not
35366         declared.  Add a copyright notice.
35367         * lib/mkstemp.h: Include <unistd.h>.
35368         * lib/openat.c: Include lchown.h.
35369
35370         * lib/fcntl_.h (O_NOFOLLOW): Don't depend on O_NOFOLLOW_IS_INEFFECTIVE;
35371         we now test for that separately.
35372         * lib/fts.c (fts_safe_changedir): Inspect HAVE_WORKING_O_NOFOLLOW
35373         rather than O_NOFOLLOW, when testing whether it's possible to
35374         avoid a race condition reliably.
35375         * lib/savewd.c (savewd_chdir): Likewise.
35376
35377         Remove macros that are no longer needed now that stdint.h is
35378         reliable.
35379         * lib/fsusage.c (UINTMAX_MAX): Remove.
35380         * lib/human.c (SIZE_MAX, UINTMAX_MAX): Remove.
35381         * lib/utimecmp.c (SIZE_MAX): Remove.
35382
35383         * m4/lchown.m4 (gl_FUNC_LCHOWN): Check whether lchown is declared.
35384
35385         * m4/fcntl_h.m4 (gl_FCNTL_H): Define HAVE_WORKING_O_NOFOLLOW instead
35386         of O_NOFOLLOW_IS_INEFFECTIVE.  Define HAVE_WORKING_O_NOATIME if
35387         O_NOATIME works.
35388
35389 2006-10-05  Bruno Haible  <bruno@clisp.org>
35390
35391         * lib/gl_list.h (gl_sortedlist_search_from_to,
35392         gl_sortedlist_indexof_from_to): New declarations.
35393         (gl_list_implementation): New fields sortedlist_search_from_to,
35394         sortedlist_indexof_from_to.
35395         (gl_sortedlist_search_from_to, gl_sortedlist_indexof_from_to): New
35396         inline functions.
35397         * lib/gl_list.c (gl_sortedlist_search_from_to,
35398         gl_sortedlist_indexof_from_to): New functions.
35399         * lib/gl_array_list.c (gl_array_sortedlist_indexof_from_to): New
35400         function.
35401         (gl_array_sortedlist_indexof, gl_array_sortedlist_search): Use it.
35402         (gl_array_sortedlist_search_from_to): New function.
35403         (gl_array_list_implementation): Update.
35404         * lib/gl_carray_list.c (gl_carray_sortedlist_indexof_from_to): New
35405         function.
35406         (gl_carray_sortedlist_indexof, gl_carray_sortedlist_search): Use it.
35407         (gl_carray_sortedlist_search_from_to): New function.
35408         (gl_carray_list_implementation): Update.
35409         * lib/gl_anylinked_list2.h (gl_linked_sortedlist_search_from_to,
35410         gl_linked_sortedlist_indexof_from_to): New functions.
35411         * lib/gl_linked_list.c (gl_linked_list_implementation): Update.
35412         * lib/gl_linkedhash_list.c (gl_linkedhash_list_implementation): Update.
35413         * lib/gl_anytree_list2.h (gl_tree_sortedlist_search_from_to,
35414         gl_tree_sortedlist_indexof_from_to): New functions.
35415         * lib/gl_avltree_list.c (gl_avltree_list_implementation): Update.
35416         * lib/gl_avltreehash_list.c (gl_avltreehash_list_implementation):
35417         Update.
35418         * lib/gl_rbtree_list.c (gl_rbtree_list_implementation): Update.
35419         * lib/gl_rbtreehash_list.c (gl_avltreehash_list_implementation):
35420         Update.
35421
35422 2006-10-05  Bruno Haible  <bruno@clisp.org>
35423
35424         * lib/gl_list.h (gl_list_search_from, gl_list_search_from_to,
35425         gl_list_indexof_from, gl_list_indexof_from_to): New declarations.
35426         (struct gl_list_implementation): Add fields search_from_to,
35427         indexof_from_to. Remove fields search, indexof.
35428         (gl_list_search): Use the search_from_to method.
35429         (gl_list_search_from, gl_list_search_from_to): New functions.
35430         (gl_list_indexof): Use the indexof_from_to method.
35431         (gl_list_indexof_from, gl_list_indexof_from_to): New functions.
35432         * lib/gl_list.c (gl_list_search): Use the search_from_to method.
35433         (gl_list_search_from, gl_list_search_from_to): New functions.
35434         (gl_list_indexof): Use the indexof_from_to method.
35435         (gl_list_indexof_from, gl_list_indexof_from_to): New functions.
35436         * lib/gl_array_list.c (gl_array_indexof_from_to): Renamed from
35437         gl_array_indexof. Add start_index, end_index arguments.
35438         (gl_array_search_from_to): Renamed from gl_array_search. Add
35439         start_index, end_index arguments.
35440         (gl_array_remove, gl_array_list_implementation): Update.
35441         * lib/gl_carray_list.c (gl_carray_indexof_from_to): Renamed from
35442         gl_carray_indexof. Add start_index, end_index arguments.
35443         (gl_carray_search_from_to): Renamed from gl_carray_search. Add
35444         start_index, end_index arguments.
35445         (gl_carray_remove, gl_carray_list_implementation): Update.
35446         * lib/gl_anylinked_list2.h (gl_linked_search_from_to): Renamed from
35447         gl_linked_search. Add start_index, end_index arguments.
35448         (gl_linked_indexof_from_to): Renamed from gl_linked_indexof. Add
35449         start_index, end_index arguments.
35450         (gl_linked_remove): Update.
35451         * lib/gl_linked_list.c (gl_linked_list_implementation): Update.
35452         * lib/gl_linkedhash_list.c (gl_linkedhash_list_implementation): Update.
35453         * lib/gl_anytree_list1.h (iterstack_item_t): Change type of 'rightp'
35454         field to 'size_t'.
35455         * lib/gl_anytree_list2.h (gl_tree_search_from_to): Renamed from
35456         gl_tree_search. Add start_index, end_index arguments.
35457         (gl_tree_indexof_from_to): Renamed from gl_tree_indexof. Add
35458         start_index, end_index arguments.
35459         (gl_tree_remove): Update.
35460         * lib/gl_avltree_list.c (gl_avltree_list_implementation): Update.
35461         * lib/gl_rbtree_list.c (gl_rbtree_list_implementation): Update.
35462         * lib/gl_anytreehash_list1.h (compare_position_threshold): New
35463         function.
35464         * lib/gl_anytreehash_list2.h (gl_tree_search_from_to): Renamed from
35465         gl_tree_search. Add start_index, end_index arguments.
35466         (gl_tree_indexof_from_to): Renamed from gl_tree_indexof. Add
35467         start_index, end_index arguments.
35468         * lib/gl_avltreehash_list.c (gl_avltreehash_list_implementation):
35469         Update.
35470         * lib/gl_rbtreehash_list.c (gl_rbtreehash_list_implementation): Update.
35471
35472 2006-10-05  Bruno Haible  <bruno@clisp.org>
35473
35474         * modules/fwriteerror (configure.ac): Define GNULIB_FWRITEERROR.
35475
35476         * lib/clean-temp.h (open_temp, fopen_temp, close_temp, fclose_temp,
35477         fwriteerror_temp): New declarations.
35478         * lib/clean-temp.c (uintptr_t): Provide fallback definition.
35479         (descriptors): New variable.
35480         (cleanup): First, close the descriptors.
35481         (register_fd, unregister_fd, open_temp, fopen_temp, close_temp,
35482         fclose_temp, fwriteerror_temp): New functions.
35483
35484 2006-10-04  Jim Meyering  <jim@meyering.net>
35485
35486         * lib/fts.c (fts_open): Tiny comment change.
35487
35488 2006-10-04  Bruno Haible  <bruno@clisp.org>
35489
35490         Make it possible to invoke AC_GNU_SOURCE after gl_LOCK_EARLY.
35491         * m4/lock.m4 (gl_LOCK_EARLY_BODY): New macro, extracted code from
35492         gl_LOCK_BODY.
35493         (gl_LOCK_EARLY): Require gl_LOCK_EARLY_BODY, not gl_LOCK_BODY.
35494         (gl_LOCK_BODY): Remove settings of CPPFLAGS, now done in
35495         gl_LOCK_EARLY_BODY.
35496         (gl_LOCK): Require gl_LOCK_BODY.
35497
35498 2006-10-04  Bruno Haible  <bruno@clisp.org>
35499
35500         * lib/gl_oset.h (gl_setelement_threshold_fn): New type.
35501         (gl_oset_search_atleast): New declaration.
35502         (struct gl_oset_implementation): Add field 'search_atleast'.
35503         (gl_oset_search_atleast): New inline function.
35504         * lib/gl_oset.c (gl_oset_search_atleast): New function.
35505         * lib/gl_array_oset.c (gl_array_search_atleast): New function.
35506         (gl_array_oset_implementation): Update.
35507         * lib/gl_anytree_oset.h (gl_tree_search_atleast): New function.
35508         * lib/gl_avltree_oset.c (gl_avltree_oset_implementation): Update.
35509         * lib/gl_rbtree_oset.c (gl_rbtree_oset_implementation): Update.
35510
35511 2006-10-04  Bruno Haible  <bruno@clisp.org>
35512
35513         * lib/fatal-signal.c (fatal_signals) [WOE32]: Add the SIGBREAK signal.
35514
35515 2006-10-03  Bruno Haible  <bruno@clisp.org>
35516
35517         * lib/gl_rbtreehash_list.c (gl_rbtreehash_list_implementation): Renamed
35518         from gl_avltreehash_list_implementation.
35519
35520 2006-10-03  Bruno Haible  <bruno@clisp.org>
35521
35522         * lib/gl_oset.c (gl_oset_add): Fix return type.
35523
35524 2006-10-02  Paolo Bonzini  <bonzini@gnu.org>  (tiny change)
35525
35526         * lib/quotearg.c (mbstate_t) [!HAVE_MBRTOWC]: #define to int.
35527
35528 2006-10-02  Eric Blake  <ebb9@byu.net>
35529
35530         * modules/strnlen (Depends-on): Add extensions.
35531
35532 2006-10-02  Eric Blake  <ebb9@byu.net>
35533
35534         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Use autoconf's
35535         definition in 2.60+.
35536
35537 2006-10-02  Dmitry V. Levin  <ldv@altlinux.org>
35538
35539         * lib/fts.c (fts_close, fts_build, fts_palloc): Remove redundant
35540         checks.
35541
35542 2006-10-02  Bruno Haible  <bruno@clisp.org>
35543
35544         * gnulib-tool (func_emit_lib_Makefile_am): Don't add no-dependencies
35545         to the AUTOMAKE_OPTIONS.
35546         Reported by Jim Meyering.
35547
35548 2006-09-29  Paul Eggert  <eggert@cs.ucla.edu>
35549
35550         Work around bug in Solaris 10 /proc file system:
35551         /proc/self/fd/NNN/.. isn't the parent directory of
35552         the directory whose file descriptor is NNN.  This needs to
35553         be worked around at run time, not compile time, since a
35554         program might be built on Solaris 8, where things work, and
35555         run on Solaris 10.
35556         * lib/openat-priv.h (BUILD_PROC_NAME): Remove.  All callers changed
35557         to use the following interface instead:
35558         (OPENAT_BUFFER_SIZE): New macro.
35559         (openat_proc_name): New function.
35560         * lib/at-func.c (AT_FUNC_NAME): Adjust to above changes.
35561         * lib/openat.c (openat_permissive, openat_needs_fchdir, fdopendir):
35562         Likewise.
35563         * lib/openat-proc.c: New file.
35564         * modules/openat (Files): Add lib/openat-proc.c.
35565         (Depends-on): Add same-inode, stdbool.
35566         * m4/openat.m4 (gl_FUNC_OPENAT): Add AC_LIBOBJ(openat-proc).
35567
35568 2006-09-29  Bruno Haible  <bruno@clisp.org>
35569
35570         * lib/fwriteerror.h (fwriteerror_no_ebadf): New declaration.
35571         * lib/(do_fwriteerror): Renamed from fwriteerror. Add ignore_ebadf
35572         argument. Set stdout_closed before testing for ferror, not after.
35573         (fwriteerror, fwriteerror_no_ebadf): New functions.
35574
35575 2006-09-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
35576
35577         * m4/intmax.m4 (gt_TYPE_INTMAX_T): Avoid unused variables warning.
35578
35579 2006-09-28  Paolo Bonzini  <bonzini@gnu.org>
35580
35581         * lib/poll.c (rpl_poll) [__APPLE__]: Use FIONREAD instead of MSG_PEEK.
35582         * m4/poll.m4: Look for sys/ioctl.h and sys/filio.h.
35583
35584 2006-09-28  Jim Meyering  <jim@meyering.net>
35585
35586         * lib/mkdir-p.c: Include "dirchownmod.h", not "dirchownmod.c".
35587         Include <unistd.h>.
35588
35589 2006-09-28  Bruno Haible  <bruno@clisp.org>
35590
35591         * modules/avltreehash-list (Depends-on): Add stdint, remove size_max.
35592         * modules/linkedhash-list (Depends-on): Likewise.
35593         * modules/rbtreehash-list (Depends-on): Likewise.
35594
35595 2006-09-28  Bruno Haible  <bruno@clisp.org>
35596
35597         * lib/strndup.h: Simplify the redefinition of strndup.
35598         (_GL_CONCAT, _GL_XCONCAT, __STRNDUP_ID): Remove macros.
35599         * m4/strndup.m4 (gl_FUNC_STRNDUP): Don't define __STRNDUP_PREFIX.
35600
35601 2006-09-28  Bruno Haible  <bruno@clisp.org>
35602
35603         * lib/gl_avltreehash_list.c: Include <stdint.h> instead of size_max.h.
35604         * lib/gl_linkedhash_list.c: Likewise.
35605         * lib/gl_rbtreehash_list.c: Likewise.
35606
35607 2006-09-27  Paul Eggert  <eggert@cs.ucla.edu>
35608
35609         * lib/canon-host.c (canon_host_r): Work around bug in Darwin 7.9.0
35610         getaddrinfo.
35611
35612         * lib/__fpending.h: Don't include <stdio_ext.h> unless
35613         HAVE_DECL___FPENDING.  This avoids a bug with lsbcc, where
35614         it causes <stdio_ext.h> to cause a compile-time error.
35615         Problem reported by Nelson H. F. Beebe.
35616         * lib/getpass.c: Likewise, except for HAVE_DECL___FSETLOCKING instead
35617         of HAVE_DECL___PENDING.
35618
35619         * m4/fpending.m4 (gl_FUNC_FPENDING): Check for stdio_ext at most once.
35620         * m4/getpass.m4 (gl_PREREQ_GETPASS): Check for __fsetlocking's
35621         declaration.
35622
35623 2006-09-27  Jim Meyering  <jim@meyering.net>
35624
35625         This file could end up with a definition for a function
35626         named __strndup, rather than rpl_strndup on a system with
35627         incomplete weak_alias support.
35628         * lib/strndup.c (strndup): Rename from __strndup.
35629         Remove #defines that used to map __strndup to strndup.
35630         Don't use K&R prototypes.
35631         Remove LIBC-related code, since this file is not sync'd with glibc.
35632         * lib/strndup.h: Revamp, accordingly.
35633         * m4/strndup.m4: Modernize.
35634
35635 2006-09-26  Paul Eggert  <eggert@cs.ucla.edu>
35636
35637         * modules/savewd (Depends-on): Add 'raise'.
35638         * lib/savewd.c: Include <signal.h>, for 'raise'.
35639
35640 2006-09-26  Jim Meyering  <jim@meyering.net>
35641
35642         * m4/acl.m4 (AC_FUNC_ACL): Disable ACL support altogether
35643         when we detect Darwin 8.7.0's acl_get_file bug.
35644         Rearrange to perform the new (below) run-test while $LIBS
35645         contains any acl-related library.  Set USE_ACL at the end.
35646         (gl_ACL_GET_FILE): New function.
35647
35648 2006-09-26  Eric Blake  <ebb9@byu.net>
35649
35650         * lib/verror.c: Include <config.h> unconditionally.
35651
35652 2006-09-25  Paul Eggert  <eggert@cs.ucla.edu>
35653
35654         * modules/clock-time (Maintainer): Add self.
35655         * modules/getlogin_r (Depends-on): Add extensions.
35656
35657 2006-09-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
35658
35659         * modules/clock-time: New module.
35660         * modules/nanosleep (Depends-on): Add clock-time.
35661         * modules/gethrxtime (Depends-on): Likewise.
35662         * modules/gettime (Depends-on): Likewise.
35663         * modules/settime (Depends-on): Likewise.
35664
35665         * modules/fts-lgpl: Depend on openat.
35666         * modules/mkancesdirs: Depend on savewd.
35667         * modules/mkdir-p: Likewise.
35668
35669 2006-09-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
35670
35671         * m4/host-os.m4 (gl_HOST_OS): Require AC_CANONICAL_HOST.
35672
35673         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Rename cache variable from
35674         `gl_have_arbitrary_file_name_length_limit' to
35675         `gl_cv_have_arbitrary_file_name_length_limit', so that caching
35676         actually works between configure runs.
35677
35678 2006-09-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
35679             Bruno Haible  <bruno@clisp.org>
35680
35681         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Include <string.h>.
35682
35683 2006-09-25  Jim Meyering  <jim@meyering.net>
35684
35685         * m4/fcntl_h.m4 (gl_FCNTL_H): Fix typo in test for failed open.
35686         This typo caused coreutils/tests/dd/misc to fail on Darwin 8.7.0.
35687
35688 2006-09-25  Eric Blake  <ebb9@byu.net>
35689
35690         * gnulib-tool (func_import, func_create_testdir): Fix typos in
35691         exec's in 2006-09-18 patch when shuffling fds.
35692
35693 2006-09-25  Bruno Haible  <bruno@clisp.org>
35694
35695         * m4/getloadavg.m4 (gl_GETLOADAVG): Fix directory in error message.
35696         Reported by Jim Meyering.
35697
35698 2006-09-24  Jim Meyering  <jim@meyering.net>
35699
35700         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Don't use '>' to
35701         compare a pointer against a literal "0".  That caused failures with
35702         at least HP-UX's hpcc.
35703
35704 2006-09-22  Simon Josefsson  <jas@extundo.com>
35705
35706         * modules/gc-sha1:
35707         * modules/gc-md4:
35708         * modules/gc-hmac-sha1:
35709         * modules/gc-hmac-md5:
35710         * modules/gc-des:
35711         * modules/gc-arcfour: Distribute more files.
35712
35713 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
35714
35715         * lib/gl_anylinked_list2.h [lint] (gl_linked_iterator)
35716         (gl_linked_iterator_from_to): Initialize struct completely.
35717         * lib/gl_anytree_list2.h [lint] (gl_tree_iterator): Likewise.
35718         (gl_tree_iterator_from_to): Likewise
35719         * lib/gl_anytree_oset.h [lint] (gl_tree_iterator): Likewise.
35720         * lib/gl_array_list.c [lint] (gl_array_iterator)
35721         (gl_array_iterator_from_to): Likewise.
35722         * lib/gl_array_oset.c [lint] (gl_array_iterator): Likewise.
35723         * lib/gl_carray_list.c [lint] (gl_carray_iterator)
35724         (gl_carray_iterator_from_to): Likewise.
35725
35726         * lib/gc-gnulib.c [GC_USE_HMAC_SHA1]: include hmac.h for hmac_sha1.
35727         * lib/md4.c (md4_process_block): Remove unused variable.
35728         * lib/rijndael-api-fst.c (rijndaelBlockDecrypt): GCC suggests
35729         parentheses for clarity.
35730
35731 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
35732
35733         * modules/bison-i18n (Depends-on): Add gettext.
35734
35735 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
35736
35737         * m4/fsusage.m4 (gl_STATFS_TRUNCATES): Avoid unused variable.
35738         * m4/getdate.m4 (gl_C_COMPOUND_LITERALS): Likewise.
35739         * m4/jm-winsz1.m4 (gl_HEADER_TIOCGWINSZ_IN_TERMIOS_H): Likewise;
35740         also add missing comma that caused broken test.
35741         * m4/link-follow.m4 (gl_AC_FUNC_LINK_FOLLOWS_SYMLINK): Include
35742         stdlib.h, for `abort'.
35743         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Avoid unused
35744         variables.
35745         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Check for and
35746         include unistd.h if present, for `rmdir'.
35747         * m4/physmem.m4 (gl_SYS__SYSTEM_CONFIGURATION): Avoid unused
35748         variables.
35749         * m4/putenv.m4 (gl_FUNC_PUTENV): Rewrite using AC_RUN_IFELSE, and
35750         in the process include standard headers for prototypes.
35751         * m4/readutmp.m4 (gl_READUTMP): Require AC_GNU_SOURCE, so utmpxname
35752         gets declared on GNU/Linux.
35753         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Check for and include
35754         unistd.h, for `rmdir'.
35755         * m4/time_r.m4 (gl_TIME_R): Avoid unused variables.
35756
35757         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Avoid expression that is
35758         always true.
35759         * m4/strndup.m4 (gl_FUNC_STRNDUP): include stdlib.h, for `free'.
35760
35761         * m4/sockpfaf.m4 (gl_SOCKET_FAMILIES): Avoid gcc -Wall warnings.
35762
35763 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
35764
35765         * gnulib-tool (func_version): Create output all at once.  This
35766         may help avoid triggering unnecessary SIGPIPEs, and at any
35767         rate it doesn't hurt.
35768
35769 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
35770             Bruno Haible  <bruno@clisp.org>
35771
35772         * m4/lock.m4 (gl_LOCK_BODY): Avoid unused variables warning.
35773         * m4/mbswidth.m4 (gl_MBSWIDTH): Likewise.
35774         * m4/signed.m4 (bh_C_SIGNED): Likewise.
35775
35776         * m4/vasprintf.m4 (gl_PREREQ_VASPRINTF_H): New macro.
35777         (gl_FUNC_VASPRINTF): Invoke it.
35778
35779 2006-09-22  Bruno Haible  <bruno@clisp.org>
35780
35781         * m4/getloadavg.m4 (gl_GETLOADAVG): Expect the directory of
35782         getloadavg.c as first argument.
35783
35784 2006-09-22  Bruno Haible  <bruno@clisp.org>
35785
35786         * gnulib-tool (func_import, func_create_testdir): Set gl_source_base
35787         at the beginning of the gl_INIT macro.
35788         * modules/getloadavg (configure.ac): Pass $gl_source_base to
35789         gl_GETLOADAVG.
35790
35791 2006-09-22  Bruno Haible  <bruno@clisp.org>
35792
35793         * gnulib-tool (func_create_megatestdir): Don't include the config-h
35794         module.
35795         Suggested by Ralf Wildenhues.
35796
35797 2006-09-20  Paul Eggert  <eggert@cs.ucla.edu>
35798
35799         Import this patch from libc:
35800
35801         2006-09-06  Jakub Jelinek  <jakub@redhat.com>
35802
35803         * lib/regex_internal.c (re_string_reconstruct): Handle
35804         offset < pstr->valid_raw_len && pstr->offsets_needed case.
35805         Ensure no bytes read before raw_mbs array.  Pass a saved copy of
35806         pstr->valid_len - 1 rather than pstr->valid_raw_len - 1 to
35807         re_string_context_at.
35808
35809         * m4/regex.m4 (gl_REGEX): Check for locale.h, since the test
35810         now requires it.
35811         (gl_PREREQ_REGEX): Don't check for locale.h any more, since
35812         gl_REGEX now does it for us.
35813         (gl_REGEX): Add test taken from
35814         http://sourceware.org/ml/libc-hacker/2006-09/msg00008.html.
35815
35816         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Require AC_SYS_LARGEFILE.
35817         Check that large offsets work.  Modernize Autoconf usages.
35818         Prefer "yes" to mean a good thing rather than a bad.
35819         Don't put "#define mkstemp" in config.h, as this might interfere
35820         with standard system headers that "#define mkstemp mkstemp64".
35821
35822         * modules/mkstemp (Depends-on): Add extensions, so that
35823         mkstemp is visible on some platforms.
35824         (Makefile.am): Add mkstemp.h to EXTRA_DIST.
35825         (Include): Change to "mkstemp.h" from <stdlib.h>.
35826         (Files): Add mkstemp.h.
35827
35828         * lib/mkstemp.h: New file, since some standard headers
35829         #define mkstemp.
35830         * lib/mkstemp.c: Revamp to put the !_LIBC code together.
35831         Include "mkstemp.h".
35832         Make the _LIBC code resemble glibc original more,
35833         e.g., use K&R style.
35834         * lib/mkstemp-safer.c: Include "mkstemp.h" instead of <stdlib.h>.
35835         (mkstemp): Remove, since mkstemp.h does this for us.
35836         * lib/stdlib--.h: Include mkstemp.h.
35837
35838         Import this patch from libc:
35839
35840         2006-04-07  Ulrich Drepper  <drepper@redhat.com>
35841
35842         * lib/tempname.c (__gen_tempname): Change attempts_min
35843         into a macro.  Use preprocessor to decide how to initialize
35844         attempts [Coverity CID 67].
35845
35846 2006-09-20  Bruno Haible  <bruno@clisp.org>
35847
35848         * lib/mkdtemp.c: Import from libc.
35849         2006-04-07  Ulrich Drepper  <drepper@redhat.com>
35850                 * sysdeps/posix/tempname.c (__gen_tempname): Change
35851                 attempts_min into a macro.  Use preprocessor to decide how to
35852                 initialize attempts [Coverity CID 67].
35853         2001-11-27  Paul Eggert  <eggert@twinsun.com>
35854                 * sysdeps/posix/tempname.c (__gen_tempname): Try at least
35855                 ATTEMPTS_MIN or TMP_MAX times, whichever is greater.
35856
35857 2006-09-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
35858
35859         * gnulib-tool (func_exit): New function, to allow to pass the
35860         exit status portably through the trap.  Use everywhere.
35861         (--help, --version): Signal a write error.
35862         (trap): catch SIGPIPE, for write errors.
35863         Exit at the end of the trap, with the correct exit status.
35864
35865 2006-09-19  Karl Berry  <karl@gnu.org>
35866
35867         * doc/gnulib.texi: note about the license texinfo files.
35868
35869 2006-09-19  Eric Blake  <ebb9@byu.net>
35870
35871         * gnulib-tool: Avoid space-tab.
35872
35873 2006-09-18  Paul Eggert  <eggert@cs.ucla.edu>
35874
35875         * lib/getaddrinfo.c (getaddrinfo) [defined HAVE_IPV6]: Fix typo
35876         that prevented coreutils 6.1 from building.  Problem reported
35877         by Petter Reinholdtsen.
35878
35879 2006-09-18  Paul Eggert  <eggert@cs.ucla.edu>
35880
35881         * gnulib-tool (avoidlist): Fix typo that broke options like
35882         --avoid=lock that are used by coreutils bootstrap.
35883
35884 2006-09-18  Mark D. Baushke  <mdb@gnu.org>
35885
35886         * m4/inttypes.m4 (gl_INTTYPES_H): Quote "test" args
35887         more systematically.
35888
35889 2006-09-18  Jim Meyering  <jim@meyering.net>
35890
35891         * lib/savewd.c (savewd_restore): Don't shadow: s/status/child_status/.
35892
35893 2006-09-18  Bruno Haible  <bruno@clisp.org>
35894
35895         * modules/inttypes (Files): Remove m4/inttypes-h.m4.
35896
35897 2006-09-18  Bruno Haible  <bruno@clisp.org>
35898
35899         * m4/inttypes-h.m4 (gl_HEADER_INTTYPES_H): Remove macro.
35900         * m4/inttypes-pri.m4: Require autoconf >= 2.52.
35901         (gt_INTTYPES_PRI): Invoke AC_CHECK_HEADERS on inttypes.h. Test
35902         ac_cv_header_inttypes_h instead of gl_cv_header_inttypes_h.
35903         * m4/gettext.m4: Require autoconf >= 2.52.
35904         (gt_INTL_SUBDIR_CORE): Invoke AC_CHECK_HEADERS on inttypes.h.
35905         * m4/inttypes.m4 (gl_INTTYPES_H): Test ac_cv_header_inttypes_h instead
35906         of gl_cv_header_inttypes_h.
35907
35908 2006-09-18  Bruno Haible  <bruno@clisp.org>
35909
35910         * lib/javaversion.c: Include configmake.h.
35911
35912 2006-09-18  Bruno Haible  <bruno@clisp.org>
35913
35914         * gnulib-tool (func_import, func_create_testdir): Use exec tricks to
35915         avoid that the while loops be executed in a subshell.
35916
35917 2006-09-18  Bruno Haible  <bruno@clisp.org>
35918
35919         * MODULES.html.sh (func_module): Break long lines.
35920         Suggested by Bruce Korb <bkorb@gnu.org>.
35921
35922 2006-09-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
35923
35924         Speed up by a factor of 1.12.
35925         * gnulib-tool (nl): New variable.
35926         (func_import): Rewrite include directive extraction to only read each
35927         directive once.
35928
35929 2006-09-17  Bruno Haible  <bruno@clisp.org>
35930
35931         * modules/javaversion (Makefile.am): Remove DEFS setting.
35932         (Depends-on): Add configmake, for PKGDATADIR definition.
35933
35934 2006-09-17  Bruno Haible  <bruno@clisp.org>
35935
35936         * gnulib-tool (func_create_testdir): Rewrite all files at once.
35937
35938 2006-09-17  Bruno Haible  <bruno@clisp.org>
35939
35940         * gnulib-tool (func_append): New function, stolen from libtool.m4.
35941         (func_modules_transitive_closure, func_modules_add_dummy,
35942         func_modules_to_filelist, func_import, func_create_testdir,
35943         func_create_megatestdir, ...): Use it wherever possible.
35944         Suggested by Ralf Wildenhues.
35945
35946 2006-09-16  Karl Berry  <karl@gnu.org>
35947
35948         * doc/fdl.texi (ADDENDUM): switch to @heading from @appendixsubsec,
35949         to avoid sectioning errors.
35950         * doc/lgpl.texi, gpl.texi (Copying): downcase @unnumbered title.
35951         [ifinfo]: blank line after @center-ed titles.
35952         * doc/lgpl.texi (Library Copying): Rename main node to GNU LGPL.
35953         Spell FSF address consistently with others.
35954         (These changes approved by rms.)
35955
35956 2006-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
35957
35958         Speed up by a factor of 1.61.
35959         * gnulib-tool (func_modules_transitive_closure): Rewrite to not check
35960         already checked module names again.
35961
35962 2006-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
35963
35964         Speed up by a factor of 1.13.
35965         * gnulib-tool (func_import): Rewrite all old_files at once; likewise
35966         for new_files, and the input to func_add_or_update.
35967
35968 2006-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
35969
35970         * gnulib-tool (func_all_modules, func_modules_to_filelist, func_import,
35971         func_create_testdir, ...): Change 'sort | uniq' to 'sort -u'.
35972
35973 2006-09-15  Paul Eggert  <eggert@cs.ucla.edu>
35974
35975         * modules/mkancesdirs (Depends-on): Add fcntl.
35976         * modules/savewd: New file.
35977         * MODULES.html.sh (File system functions): Add savewd.
35978
35979         * modules/configmake (Makefile.am): Add support for the
35980         Automake-supplied PKGLIBDIR, PKGINCLUDEDIR, PKGDATADIR.
35981
35982 2006-09-15  Paul Eggert  <eggert@cs.ucla.edu>
35983
35984         * m4/savewd.m4: New file.
35985
35986 2006-09-15  Paul Eggert  <eggert@cs.ucla.edu>
35987
35988         * lib/dirchownmod.c: Don't include fcntl.h; no longer needed.
35989         (dirchownmod): New arg FD.  All callers changed.
35990         Use FD rather than opening the directory ourself, as opening is
35991         now the caller's responsibility.
35992         * lib/dirchownmod.h: Likewise.
35993         * lib/mkancesdirs.c: Include <sys/types.h>, for portability to older
35994         hosts that require <sys/types.h> before <sys/stat.h>.  Include
35995         fcntl.h, savewd.h, and unistd.h, not dirname.h and stat-macros.h.
35996         (test_dir): Remove.
35997         (mkancesdirs): Return length of prefix of FILE that has already
35998         been made, or -2 if there is a child doing the work.  Redo
35999         algorithm so that it is O(N) rather than O(N**2).  Optimize away
36000         ".", and treat ".." specially since it might stray back into
36001         already-created areas.  Use a subprocess if necessary.  New arg
36002         WD; all users changed.  MAKE_DIR function should now return 1
36003         if it creates a directory that is not readable.  Return -2 if
36004         a child process is spun off.
36005         * lib/mkancesdirs.h: Include <stddef.h>, for ptrdiff_t.
36006         Adjust signature to match code.
36007         * lib/mkdir-p.c: Include dirname.h, for IS_ABSOLUTE_FILE_NAME.
36008         (make_dir_parents): Use a subprocess if necessary.  New arg WD;
36009         all users changed.
36010         * lib/savewd.c, lib/savewd.h: New files.
36011
36012 2006-09-15  Jim Meyering  <jim@meyering.net>
36013
36014         * modules/rename-dest-slash: New module.
36015         * MODULES.html.sh (posix_compat): Add it here.
36016
36017         * modules/rename: Reflect vb_FUNC_RENAME -> gl_FUNC_RENAME change.
36018
36019 2006-09-15  Jim Meyering  <jim@meyering.net>
36020
36021         * m4/rename-dest-slash.m4 (gl_FUNC_RENAME_TRAILING_DEST_SLASH): New
36022         file.
36023
36024         * m4/rename.m4 (gl_FUNC_RENAME): Rename from vb_FUNC_RENAME.
36025
36026 2006-09-15  Jim Meyering  <jim@meyering.net>
36027
36028         * lib/rename-dest-slash.c (has_trailing_slash): Use
36029         FILE_SYSTEM_PREFIX_LEN, for non-POSIX systems.
36030         (rpl_rename_dest_slash): Perform the cheaper trailing slash
36031         test before testing whether SRC is a directory.
36032         Suggestions from Bruno Haible.
36033
36034         Avoid a warning about an unused variable.
36035         * lib/regex_internal.c (re_dfa_add_node): Move declaration of "type"
36036         into the #ifdef block where it's used.
36037
36038         * lib/rename-dest-slash.c: New file.
36039
36040 2006-09-14  Bruno Haible  <bruno@clisp.org>
36041
36042         * lib/allocsa.c: Include <config.h> unconditionally.
36043         * lib/asnprintf.c: Likewise.
36044         * lib/asprintf.c: Likewise.
36045         * lib/c-strcasecmp.c: Likewise.
36046         * lib/c-strcasestr.c: Likewise.
36047         * lib/c-strncasecmp.c: Likewise.
36048         * lib/c-strstr.c: Likewise.
36049         * lib/classpath.c: Likewise.
36050         * lib/clean-temp.c: Likewise.
36051         * lib/concatpath.c: Likewise.
36052         * lib/copy-file.c: Likewise.
36053         * lib/csharpcomp.c: Likewise.
36054         * lib/csharpexec.c: Likewise.
36055         * lib/execute.c: Likewise.
36056         * lib/fatal-signal.c: Likewise.
36057         * lib/findprog.c: Likewise.
36058         * lib/fwriteerror.c: Likewise.
36059         * lib/gl_array_list.c: Likewise.
36060         * lib/gl_array_oset.c: Likewise.
36061         * lib/gl_avltree_list.c: Likewise.
36062         * lib/gl_avltree_oset.c: Likewise.
36063         * lib/gl_avltreehash_list.c: Likewise.
36064         * lib/gl_carray_list.c: Likewise.
36065         * lib/gl_linked_list.c: Likewise.
36066         * lib/gl_linkedhash_list.c: Likewise.
36067         * lib/gl_list.c: Likewise.
36068         * lib/gl_oset.c: Likewise.
36069         * lib/gl_rbtree_list.c: Likewise.
36070         * lib/gl_rbtree_oset.c: Likewise.
36071         * lib/gl_rbtreehash_list.c: Likewise.
36072         * lib/imaxabs.c: Likewise.
36073         * lib/imaxdiv.c: Likewise.
36074         * lib/javacomp.c: Likewise.
36075         * lib/javaexec.c: Likewise.
36076         * lib/javaversion.c: Likewise.
36077         * lib/linebreak.c: Likewise.
36078         * lib/localcharset.c: Likewise.
36079         * lib/lock.c: Likewise.
36080         * lib/mbchar.c: Likewise.
36081         * lib/mbswidth.c: Likewise.
36082         * lib/mkdtemp.c: Likewise.
36083         * lib/pipe.c: Likewise.
36084         * lib/printf-args.c: Likewise.
36085         * lib/printf-parse.c: Likewise.
36086         * lib/progname.c: Likewise.
36087         * lib/progreloc.c: Likewise.
36088         * lib/readlink.c: Likewise.
36089         * lib/sh-quote.c: Likewise.
36090         * lib/stpcpy.c: Likewise.
36091         * lib/stpncpy.c: Likewise.
36092         * lib/strcasecmp.c: Likewise.
36093         * lib/strcasestr.c: Likewise.
36094         * lib/strcspn.c: Likewise.
36095         * lib/striconv.c: Likewise.
36096         * lib/strncasecmp.c: Likewise.
36097         * lib/strnlen1.c: Likewise.
36098         * lib/strstr.c: Likewise.
36099         * lib/strtok_r.c: Likewise.
36100         * lib/tls.c: Likewise.
36101         * lib/tmpdir.c: Likewise.
36102         * lib/unicodeio.c: Likewise.
36103         * lib/unsetenv.c: Likewise.
36104         * lib/vasnprintf.c: Likewise.
36105         * lib/vasprintf.c: Likewise.
36106         * lib/wait-process.c: Likewise.
36107         * lib/xallocsa.c: Likewise.
36108         * lib/xsetenv.c: Likewise.
36109         * lib/xstriconv.c: Likewise.
36110
36111 2006-09-13  Simon Josefsson  <jas@extundo.com>
36112
36113         * m4/getdate.m4: Don't AC_LIBOBJ([getdate]), automake takes care of
36114         that internally, suggested by Ralf Wildenhues
36115         <Ralf.Wildenhues@gmx.de>.
36116
36117 2006-09-13  Simon Josefsson  <jas@extundo.com>
36118
36119         * gnulib-tool (func_emit_lib_Makefile_am): Use $(LIBOBJS), not
36120         @LIBOBJS@.
36121         Suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
36122
36123 2006-09-13  Paul Eggert  <eggert@cs.ucla.edu>
36124
36125         * lib/_fpending.c: Include <config.h> unconditionally, since we no
36126         longer worry about uses that don't define HAVE_CONFIG_H.
36127         * lib/acl.c, lib/alloca.c, lib/argmatch.c, lib/atexit.c:
36128         * lib/backupfile.c, lib/basename.c, lib/c-stack.c, lib/c-strtod.c:
36129         * lib/calloc.c,lib/ canon-host.c, lib/canonicalize.c, lib/chdir-long.c:
36130         * lib/chdir-safer.c, lib/chown.c, lib/cloexec.c, lib/close-stream.c:
36131         * lib/closeout.c, lib/creat-safer.c, lib/cycle-check.c, lib/diacrit.c:
36132         * lib/dirchownmod.c, lib/dirfd.c, lib/dirname.c, lib/dup-safer.c:
36133         * lib/dup2.c, lib/error.c, lib/euidaccess.c, lib/exclude.c:
36134         * lib/exitfail.c, lib/fchmodat.c, lib/fchown-stub.c, lib/fd-safer.c:
36135         * lib/file-type.c, lib/fileblocks.c, lib/filemode.c, lib/filenamecat.c:
36136         * lib/fnmatch.c, lib/fopen-safer.c, lib/fprintftime.c, lib/free.c:
36137         * lib/fsusage.c, lib/ftruncate.c, lib/fts-cycle.c, lib/fts.c:
36138         * lib/full-write.c, lib/gai_strerror.c, lib/getcwd.c, lib/getdate.y:
36139         * lib/getdomainname.c, lib/getgroups.c, lib/gethostname.c:
36140         * lib/gethrxtime.c, lib/getloadavg.c, lib/getlogin_r.c:
36141         * lib/getndelim2.c, lib/getnline.c, lib/getopt.c, lib/getopt1.c:
36142         * lib/getpass.c, lib/gettime.c, lib/gettimeofday.c, lib/getugroups.c:
36143         * lib/getusershell.c, lib/glob.c, lib/group-member.c:
36144         * lib/hard-locale.c, lib/hash-pjw.c, lib/hash.c, lib/human.c:
36145         * lib/idcache.c, lib/inet_ntop.c, lib/inet_pton.c, lib/inttostr.c:
36146         * lib/isdir.c, lib/lchown.c, lib/linebuffer.c, lib/long-options.c:
36147         * lib/lstat.c, lib/malloc.c, lib/md5.c, lib/memcasecmp.c, lib/memchr.c:
36148         * lib/memcmp.c, lib/memcoll.c, lib/memcpy.c, lib/memmove.c:
36149         * lib/memrchr.c, lib/mkancesdirs.c, lib/mkdir-p.c, lib/mkdir.c:
36150         * lib/mkdirat.c, lib/mkstemp-safer.c, lib/mkstemp.c, lib/modechange.c:
36151         * lib/mountlist.c, lib/nanosleep.c, lib/obstack.c, lib/open-safer.c:
36152         * lib/openat-die.c, lib/openat.c, lib/pagealign_alloc.c, lib/physmem.c:
36153         * lib/pipe-safer.c, lib/posixtm.c, lib/posixver.c, lib/putenv.c:
36154         * lib/quote.c, lib/quotearg.c, lib/raise.c, lib/readtokens.c:
36155         * lib/readtokens0.c, lib/readutmp.c, lib/realloc.c, lib/regex.c:
36156         * lib/rename.c, lib/rmdir.c, lib/rpmatch.c, lib/safe-read.c:
36157         * lib/same.c, lib/save-cwd.c, lib/savedir.c, lib/setenv.c:
36158         * lib/settime.c, lib/sha1.c, lib/sig2str.c, lib/snprintf.c:
36159         * lib/strdup.c, lib/strerror.c, lib/strftime.c, lib/stripslash.c:
36160         * lib/strndup.c, lib/strnlen.c, lib/strpbrk.c, lib/strtod.c:
36161         * lib/strtoimax.c, lib/strtol.c, lib/strverscmp.c, lib/tempname.c:
36162         * lib/time_r.c, lib/timegm.c, lib/tmpfile-safer.c, lib/unlinkdir.c:
36163         * lib/userspec.c, lib/utime.c, lib/utimecmp.c, lib/utimens.c:
36164         * lib/version-etc-fsf.c, lib/version-etc.c, lib/xalloc-die.c:
36165         * lib/xgetcwd.c, lib/xgethostname.c, lib/xmalloc.c, lib/xmemcoll.c:
36166         * lib/xnanosleep.c, lib/xreadlink.c, lib/xstrtod.c, lib/xstrtoimax.c:
36167         * lib/xstrtol.c, lib/xstrtoumax.c, lib/yesno.c:
36168         Likewise.
36169
36170 2006-09-13  Eric Blake  <ebb9@byu.net>
36171
36172         * lib/getopt.c: Fix typo in last commit.
36173
36174 2006-09-12  Sergey Poznyakoff  <gray@gnu.org.ua>
36175
36176         * lib/argp-help.c (argp_doc): Make sure NULL is not passed to
36177         dgettext.
36178
36179 2006-09-12  Jim Meyering  <jim@meyering.net>
36180
36181         * lib/nanosleep.c: Include <sys/types.h> before sys/select.h, to avoid
36182         compilation failure (due to use of pid_t in latter) on NetBSD 1.6.
36183         Reported by Nelson H. F. Beebe.
36184
36185 2006-09-10  Sergey Poznyakoff  <gray@gnu.org.ua>
36186
36187         * lib/argp-parse.c (__argp_parse) [!_LIBC]: Make sure
36188         program_invocation_name and program_invocation_short_name are
36189         initialized.
36190         * lib/argp-namefrob.h: Move declarations of program_invocation_name
36191         and program_invocation_short_name to argp.h, so they are visible
36192         to user programs.
36193         * lib/argp.h: Likewise
36194
36195 2006-09-10  Bruno Haible  <bruno@clisp.org>
36196
36197         * modules/mkdtemp (Files): Remove m4/ulonglong.m4, m4/stdint_h.m4,
36198         m4/inttypes_h.m4, m4/uintmax_t.m4.
36199
36200 2006-09-10  Bruno Haible  <bruno@clisp.org>
36201
36202         * m4/mkdtemp.m4 (gl_PREREQ_MKDTEMP): Don't require
36203         gl_AC_TYPE_UINTMAX_T.
36204
36205 2006-09-10  Bruno Haible  <bruno@clisp.org>
36206
36207         * lib/mkdtemp.c: Include <stdint.h> always. Don't include <inttypes.h>.
36208
36209 2006-09-09  Sergey Poznyakoff  <gray@gnu.org.ua>
36210
36211         * lib/argp.h (struct argp): Document the N_("..") "\v" N_("..")
36212         convention.  Text proposed by Bruno Haible.
36213         (struct argp_option): Document the use of N_() wrappers.
36214
36215         * lib/argp-help.c (argp_doc): Split the untranslated doc string on
36216         '\v', and translate the two parts separately, instead of feeding
36217         the whole string to gettext.  This allows to exclude
36218         '\v' from the strings visible to the translator by writing doc
36219         strings as N_("..") "\v" N_("..").
36220
36221 2006-09-09  Paul Eggert  <eggert@cs.ucla.edu>
36222
36223         * config/srclist.txt: Undo latest change; the bug was fixed.
36224
36225 2006-09-09  Bruno Haible  <bruno@clisp.org>
36226
36227         * gnulib-tool (func_emit_lib_Makefile_am): Eliminate lib_LDFLAGS
36228         assignments if building a library without libtool.
36229         (func_emit_tests_Makefile_am): Likewise. Handle lib_* variables as
36230         in func_emit_lib_Makefile_am.
36231         (func_import): When building a static library libfoo.a, arrange to
36232         define variables LIBFOO_LIBDEPS and LIBFOO_LTLIBDEPS.
36233         (func_create_testdir): Likewise.
36234         * modules/gc (configure.ac, Makefile.am): If building statically,
36235         augment gl_libdeps and gl_ltlibdeps instead of lib_LDFLAGS.
36236         * modules/iconvme (configure.ac, Makefile.am): Likewise.
36237         * modules/striconv (configure.ac, Makefile.am): Likewise.
36238         Based on a suggestion by Ralf Wildenhues.
36239
36240 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
36241
36242         * m4/mktime.m4 (AC_FUNC_MKTIME): Sync from Autoconf.
36243         Check for unistd.h too, since Autoconf doesn't assume POSIX.
36244         Also:
36245
36246         2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
36247         Add year_2050_test to catch glibc bug 2821
36248         <http://sourceware.org/bugzilla/show_bug.cgi?id=2821>.
36249
36250         2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
36251         Prefer #ifdef to #if.
36252
36253         2006-04-02  Paul Eggert  <eggert@cs.ucla.edu>
36254         Return from 'main' instead of calling 'exit'.
36255
36256 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
36257
36258         * lib/mktime.c (guess_time_tm): Fix bug where mktime
36259         returned the maximum time_t value rather than (time_t) -1.
36260         Problem originally reported by William Bardwell
36261         <http://sourceware.org/bugzilla/show_bug.cgi?id=2821>.
36262
36263         * lib/isapipe.h (HAVE_FIFO_PIPES) [!defined HAVE_FIFO_PIPES]:
36264         Moved to here ...
36265         * lib/isapipe.c (HAVE_FIFO_PIPES) [!defined HAVE_FIFO_PIPES]:
36266         ... from here.
36267
36268 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
36269
36270         * config/srclist.txt: Temporarily comment out mktime.c until glibc bug
36271         2821 is fixed.
36272
36273 2006-09-08  Jim Meyering  <jim@meyering.net>
36274
36275         Don't make generated files read-only.  That would bother too many
36276         people.  However, do retain the ability to work when targets are
36277         read-only: remove the destination and temporary files before writing
36278         them (when generated via sed or echo), or by using the -f option for
36279         both cp and mv commands.  Suggestion to use -f from Paul Eggert.
36280         * modules/alloca-opt, modules/argz, modules/arpa_inet:
36281         * modules/byteswap, modules/configmake, modules/fcntl:
36282         * modules/fnmatch, modules/getopt, modules/glob, modules/inttypes:
36283         * modules/localcharset, modules/netinet_in, modules/poll:
36284         * modules/stdbool, modules/stdint, modules/sys_select:
36285         * modules/sys_socket, modules/sys_stat, modules/sysexits:
36286
36287 2006-09-08  Jim Meyering  <jim@meyering.net>
36288
36289         Avoid new build failure on FreeBSD 6.0.
36290         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Include
36291         <sys/param.h> when testing whether getmntinfo uses statvfs.  Patch by
36292         Pavel Tsekov, in <http://savannah.gnu.org/bugs/?17643>.
36293
36294 2006-09-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
36295
36296         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Don't use plain echo.
36297
36298 2006-09-07  Jim Meyering  <jim@meyering.net>
36299
36300         Fix global typo in last change: use chmod u-w, not chmod u-x.
36301         Spotted by Paul Eggert and Bruce Korb.
36302         * modules/alloca-opt, modules/argz, modules/arpa_inet:
36303         * modules/byteswap, modules/configmake, modules/fcntl:
36304         * modules/fnmatch, modules/getopt, modules/glob, modules/inttypes:
36305         * modules/localcharset, modules/netinet_in, modules/poll:
36306         * modules/stdbool, modules/stdint, modules/sys_select:
36307         * modules/sys_socket, modules/sys_stat, modules/sysexits:
36308
36309 2006-09-06  Jim Meyering  <jim@meyering.net>
36310
36311         Make generated files be read-only.
36312         * modules/alloca-opt (Makefile.am): Work also when $@ is read-only.
36313         Ensure that each generated file is now read-only.
36314         * modules/argz: Likewise.
36315         * modules/arpa_inet: Likewise.
36316         * modules/byteswap: Likewise.
36317         * modules/configmake: Likewise.
36318         * modules/fcntl: Likewise.
36319         * modules/fnmatch: Likewise.
36320         * modules/getopt: Likewise.
36321         * modules/glob: Likewise.
36322         * modules/inttypes: Likewise.
36323         * modules/netinet_in: Likewise.
36324         * modules/poll: Likewise.
36325         * modules/stdbool: Likewise.
36326         * modules/stdint: Likewise.
36327         * modules/sys_select: Likewise.
36328         * modules/sys_socket: Likewise.
36329         * modules/sys_stat: Likewise.
36330         * modules/sysexits: Likewise.
36331         * modules/localcharset: Same as above, but continue using temporary
36332         file named "t-$@" (why different?) rather than the "$@-t" used
36333         everywhere else.
36334
36335         * modules/sysexits (Makefile.am): Replace literal occurrences
36336         of "sysexit.h" more readable, and more consistent, "$@".
36337
36338 2006-09-06  Bruno Haible  <bruno@clisp.org>
36339
36340         * modules/striconv: New file.
36341         * modules/xstriconv: New file.
36342         * MODULES.html.sh (Internationalization functions): Add striconv,
36343         xstriconv.
36344
36345 2006-09-06  Bruno Haible  <bruno@clisp.org>
36346
36347         * modules/gc (Makefile.am): Augment lib_LDFLAGS, not lib_LIBADD.
36348         * modules/iconvme (Makefile.am): Likewise. Also handle the case of
36349         not using libtool correctly.
36350
36351 2006-09-06  Bruno Haible  <bruno@clisp.org>
36352
36353         * lib/striconv.h: New file.
36354         * lib/striconv.c: New file, merging iconvme.c with GNU gettext's
36355         iconvstring.c.
36356         * lib/xstriconv.h: New file.
36357         * lib/xstriconv.c: New file.
36358
36359 2006-09-06  Bruno Haible  <bruno@clisp.org>
36360
36361         * gnulib-tool (func_emit_lib_Makefile_am): Initialize also
36362         lib_..._LDFLAGS.
36363
36364 2006-09-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
36365
36366         * lib/argz_.h: Sync from Libtool.
36367
36368         2006-09-04  George Bosilca <bosilca@cs.utk.edu>
36369                 and Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
36370
36371         * lib/libltdl/argz_.h: It's __cplusplus, not _cplusplus.
36372
36373 2006-09-05  Davide Angelocola  <davide.angelocola@tiscali.it>
36374
36375         * modules/trim: New file.
36376
36377 2006-09-05  Davide Angelocola  <davide.angelocola@tiscali.it>
36378
36379         * lib/trim.h: New file.
36380         * lib/trim.c: New file.
36381
36382 2006-09-05  Bruno Haible  <bruno@clisp.org>
36383
36384         * MODULES.html.sh (String handling): Add trim.
36385
36386 2006-09-04  Karl Berry  <karl@gnu.org>
36387
36388         * config/srclist.txt (signed.m4, gettext.m4): changes not propagated
36389         until next release.
36390
36391 2006-09-03  Bruno Haible  <bruno@clisp.org>
36392
36393         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Locate mingw shared libraries
36394         correctly.
36395
36396 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
36397
36398         * m4/getloadavg.m4 (gl_GETLOADAVG): Use CONFIGURING_GETLOADAVG,
36399         not gl_GETLOADAVG.  Omit unneeded semicolons.
36400         Problems reported by Ralf Wildenhues in
36401         <http://lists.gnu.org/archive/html/bug-gnulib/2006-09/msg00000.html>.
36402         (gl_PREREQ_GETLOADAVG): Use AC_DEFUN, not m4_define.  Put
36403         at the end, which is the usual gnulib style.
36404
36405         * m4/fstypename.m4 (gl_FSTYPENAME): Use AC_CHECK_MEMBERS instead
36406         of doing all the work ourselves.
36407         * m4/fsusage.m4 (gl_PREREQ_FSUSAGE_EXTRA): Don't check for
36408         sys/statvfs.h since the code doesn't use HAVE_SYS_STATVFS_H.
36409
36410 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
36411
36412         * lib/getloadavg.c: Use CONFIGURING_GETLOADAVG, not gl_GETLOADAVG.
36413         Problem reported by Ralf Wildenhues in
36414         <http://lists.gnu.org/archive/html/bug-gnulib/2006-09/msg00000.html>.
36415
36416         * lib/mountlist.c: All uses of HAVE_F_FSTYPENAME_IN_STATFS replaced by
36417         HAVE_STRUCT_STATFS_F_FSTYPENAME.
36418
36419 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
36420
36421         * gnulib-tool (func_emit_lib_Makefile_am): Fix typos in
36422         yesterday's patch by changing test -n to test -z.
36423
36424 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
36425
36426         * modules/getloadavg (Files): Add m4/getloadavg.m4.
36427         (configure.ac): AC_FUNC_GETLOADAVG -> gl_GETLOADAVG, as
36428         the former is now obsolescent.
36429
36430         * modules/chdir-long (Depends-on): Add fcntl.
36431
36432 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
36433
36434         * m4/fnmatch.m4: Add comment that Autoconf AC_FUNC_FNMATCH is
36435         obsolescent, and programs should use gnulib instead.
36436         * m4/getloadavg.m4: New file, with contents taken from Autoconf
36437         but with prefixes changed.
36438
36439 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
36440
36441         * lib/getloadavg.c [defined gl_GETLOADAVG]: Don't include config.h
36442         or stdbool.h, because they might not exist while configuring.
36443
36444         * lib/chdir-long.c: Include <fcntl.h>, for O_DIRECTORY.
36445         Don't include unistd.h or limits.h; not needed, since chdir-long.h
36446         does that for us.
36447         (O_DIRECTORY): Remove.
36448
36449 2006-08-31  Eric Blake  <ebb9@byu.net>
36450
36451         * gnulib-tool: Don't let emacs change spaces to TAB.
36452
36453 2006-08-31  Bruno Haible  <bruno@clisp.org>
36454
36455         * gnulib-tool: When calling func_import more than once, do it in a
36456         subshell.
36457         Reported by Eric Blake <ebb9@byu.net>.
36458
36459 2006-08-31  Bruno Haible  <bruno@clisp.org>
36460
36461         * gnulib-tool (nl): Remove variable.
36462         (sed_transform_lib_file): Use more robust test for config-h module.
36463         (func_import): Fix typo in 2006-08-25 patch.
36464
36465 2006-08-31  Bruno Haible  <bruno@clisp.org>
36466
36467         * gnulib-tool (func_emit_lib_Makefile_am): When --makefile-name was
36468         specified, augment Makefile.am variables instead of assigning them.
36469
36470 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
36471
36472         Work around a bug in both the Linux and SunOS 64-bit kernels:
36473         nanosleep mishandles sleeps for longer than 2**31 seconds.
36474         Problem reported by Frank v Waveren in
36475         <http://lists.gnu.org/archive/html/bug-coreutils/2006-08/msg00298.html>.
36476         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Require gl_CLOCK_TIME.
36477         Check for nanosleep bug.
36478         (LIB_NANOSLEEP): Append clock_gettime library if needed.
36479
36480 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
36481
36482         Work around a bug in both the Linux and SunOS 64-bit kernels:
36483         nanosleep mishandles sleeps for longer than 2**31 seconds.
36484         Problem reported by Frank v Waveren in
36485         <http://lists.gnu.org/archive/html/bug-coreutils/2006-08/msg00298.html>.
36486         * lib/nanosleep.c (BILLION): New constant.
36487         (getnow) [HAVE_BUG_BIG_NANOSLEEP]: New functions.
36488         (rpl_nanosleep) [HAVE_BUG_BIG_NANOSLEEP]: Completely new
36489         implementation.
36490
36491 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
36492
36493         * modules/nanosleep (Depends-on): Add gettime.
36494
36495 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
36496         and Simon Josefsson  <jas@extundo.com>
36497         and Oskar Liljeblad  <oskar@osk.mine.nu>
36498
36499         * MODULES.html.sh (Support for building documentation): Add gpl, lgpl.
36500         * gnulib-tool (func_import): New license type 'unmodifiable license
36501         text'.
36502         * modules/fdl: Use it.  Longer description.
36503         * module/gpl, module/lgpl: New files.
36504
36505 2006-08-30  Jim Meyering  <jim@meyering.net>
36506
36507         * lib/isapipe.c (isapipe): Rename local s/fd/fd_pair/ to avoid
36508         shadowing the parameter.
36509
36510 2006-08-29  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
36511
36512         Sync from Libtool:
36513
36514         2006-08-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
36515
36516         * lib/libltdl/argz.c: Use `#ifdef HAVE_CONFIG_H', to facilitate code
36517         sharing with gnulib.  Report by Eric Blake.
36518
36519 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
36520
36521         * modules/isapipe: New file.
36522         * MODULES.html.sh (File descriptor based Input/Output): Add isapipe.
36523
36524 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
36525
36526         * modules/configmake (Makefile.am): Add a comment, and omit
36527         the CONFIGMAKE_ prefix from generated macro names.  Suggested
36528         by Bruno Haible.
36529
36530 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
36531
36532         * m4/isapipe.m4: New file.
36533
36534 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
36535
36536         * lib/isapipe.c, lib/isapipe.h: New files.
36537
36538 2006-08-29  Jim Meyering  <jim@meyering.net>
36539
36540         * modules/configmake (Makefile.am): Make configmake.h depend on
36541         Makefile.  Otherwise, a stale configmake.h could hang around.
36542
36543 2006-08-29  Eric Blake  <ebb9@byu.net>
36544
36545         * lib/error.c (error_at_line, print_errno_message): Match libc, after
36546         resolution of upstream bug 3044.
36547
36548 2006-08-29  Bruno Haible  <bruno@clisp.org>
36549
36550         * modules/localcharset (Depends-on): Add configmake.
36551         (Makefile.am): Remove setting of LIBDIR through DEFS.
36552
36553 2006-08-29  Bruno Haible  <bruno@clisp.org>
36554
36555         * lib/localcharset.c: Include configmake.h in order to get LIBDIR
36556         defined.
36557
36558 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
36559
36560         * modules/fcntl: New file.
36561         * modules/chdir-safer (Depends-on): Add fcntl.
36562         * modules/fts: Likewise.
36563         * modules/mkdir-p: Likewise.
36564
36565         * modules/stdint (Makefile.am): Do not substitute ABSOLUTE_INTTYPES_H.
36566         This undoes the most recent change, since we're now addressing the
36567         problem in a different way.
36568
36569         * gnulib-tool (emit_lib_Makefile_am): Don't put $makefile_name
36570         into output, since the output might be called Makefile.am even
36571         if $makefile_name is something different.
36572         (func_import): Use $makefile_am rather than
36573         ${makefile_name-Makefile.am}, to fix a bug where makefile_name was
36574         empty.
36575
36576         * modules/inttypes (Files): Add m4/inttypes-h.m4.
36577
36578 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
36579
36580         * m4/inttypes.m4 (gl_INTTYPES_H): Move ABSOLUTE_INTTYPES_H code here...
36581         * m4/stdint.m4 (gl_STDINT_H): ... from here.  This undoes the most
36582         recent change to stdint.m4, since we're now addressing the problem in a
36583         different way.
36584
36585 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
36586
36587         * m4/fcntl_h.m4: New file.
36588
36589 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
36590
36591         * lib/fcntl_.h: New file.
36592         * lib/chdir-safer.c (O_DIRECTORY, O_NOFOLLOW): Remove, now that we have
36593         the fcntl module.
36594         * lib/dirchownmod.c: Likewise.
36595         * lib/fts.c: Likewise.
36596
36597         * lib/inttypes_.h [defined _GL_JUST_INCLUDE_ABSOLUTE_INTTYPES_H]:
36598         Include @ABSOLUTE_INTTYPES_H@ if available, but do nothing else.
36599         * lib/stdint_.h (_GL_JUST_INCLUDE_ABSOLUTE_INTTYPES_H): Define
36600         just before including <inttypes.h>, to avoid circular inclusion.
36601
36602 2006-08-28  Jim Meyering  <jim@meyering.net>
36603
36604         * doc/visibility.texi: Actually read and correct the grammar of the
36605         sentence affected by yesterday's change.
36606
36607 2006-08-28  Eric Blake  <ebb9@byu.net>
36608
36609         * modules/inttypes (Makefile.am): Fix sed error when inttypes.h
36610         needs wrapper.
36611
36612 2006-08-28  Eric Blake  <ebb9@byu.net>
36613
36614         * m4/inttypes.m4 (gl_INTTYPES_H): Fix missing #endif.
36615
36616 2006-08-28  Eric Blake  <ebb9@byu.net>
36617
36618         * m4/codeset.m4 (AM_LANGINFO_CODESET): Avoid compiler warning.
36619
36620 2006-08-28  Bruno Haible  <bruno@clisp.org>
36621
36622         * modules/c-strstr: New file, from GNU gettext.
36623         * MODULES.html.sh (String handling): Add c-strstr.
36624
36625 2006-08-28  Bruno Haible  <bruno@clisp.org>
36626
36627         * m4/inttypes.m4 (gl_INTTYPES_H): Don't test for the existence of SCNX*
36628         macros.
36629         Reported by Eric Blake.
36630
36631 2006-08-28  Bruno Haible  <bruno@clisp.org>
36632
36633         * lib/vasnprintf.c (EOVERFLOW): Remove definition.
36634         (VASNPRINTF): Return a string of length > INT_MAX without failing.
36635         * lib/vasprintf.c: Include errno.h, limits.h.
36636         (EOVERFLOW): New fallback definition.
36637         (vasprintf): Test here whether the string length is > INT_MAX.
36638         * lib/vsnprintf.c: Include errno.h, limits.h.
36639         (EOVERFLOW): New fallback definition.
36640         (vsnprintf): Fix bug when generated string was too long for the buffer.
36641         Test here whether the string length is > INT_MAX.
36642
36643 2006-08-28  Bruno Haible  <bruno@clisp.org>
36644
36645         * lib/inttypes_.h (SCNX*): Remove definitions.
36646         Reported by Eric Blake.
36647
36648 2006-08-28  Bruno Haible  <bruno@clisp.org>
36649
36650         * lib/c-strstr.h: New file, from GNU gettext.
36651         * lib/c-strstr.c: New file, from GNU gettext.
36652
36653 2006-08-28  Bruno Haible  <bruno@clisp.org>
36654
36655         * gnulib-tool: Reorder some statements.
36656
36657 2006-08-28  Bruno Haible  <bruno@clisp.org>
36658
36659         * gnulib-tool: New option --makefile-name.
36660         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am): Use
36661         $makefile_name.
36662         (func_import): Write $makefile_name to the cache file, and read it from
36663         there unless explicitly specified. Use $makefile_name as file name
36664         instead of Makefile.am. Adjust the recommendations accordingly.
36665
36666 2006-08-28  Bruno Haible  <bruno@clisp.org>
36667
36668         * gnulib-tool (func_verify_module): Check against misapplying patch.
36669
36670 2006-08-28  Bruno Haible  <bruno@clisp.org>
36671
36672         * gnulib-tool (func_relativize, func_relconcat): New functions.
36673         Give an error if --local-dir is given with --update.
36674         Remove trailing slashes from $local_gnulib_dir.
36675         (func_import): Store the relativized $local_gnulib_dir in
36676         gnulib-cache.m4, and read it from there if not specified explicitly.
36677
36678 2006-08-28  Bruno Haible  <bruno@clisp.org>
36679
36680         * gnulib-tool (func_get_tests_module): Don't assume that $gnulib_dir
36681         is the current directory. Respect also $local_gnulib_dir.
36682
36683 2006-08-28  Bruno Haible  <bruno@clisp.org>
36684             Simon Josefsson  <jas@extundo.com>
36685
36686         BeOS portability.
36687         * lib/getaddrinfo.c (PF_INET, PF_UNSPEC): New macros.
36688
36689 2006-08-27  Jim Meyering  <jim@meyering.net>
36690
36691         * doc/visibility.texi: Remove duplicate word: "pointer".
36692
36693 2006-08-26  Bruno Haible  <bruno@clisp.org>
36694
36695         * modules/inttypes (Files): Add lib/inttypes_.h, remove lib/inttypes.h.
36696         Add m4/inttypes.m4, remove m4/_inttypes_h.m4 and m4/include_next.m4.
36697         (Makefile.am): Create inttypes.h from inttypes_.h.
36698         * modules/stdint (Makefile.am): Substitute also ABSOLUTE_INTTYPES_H.
36699
36700         * modules/imaxabs: New file.
36701
36702         * modules/imaxdiv: New file.
36703
36704 2006-08-26  Bruno Haible  <bruno@clisp.org>
36705
36706         * m4/inttypes.m4: New file.
36707         * m4/_inttypes_h.m4: Remove file.
36708         * m4/inttypes-pri.m4 (gt_INTTYPES_PRI): Also AC_SUBST
36709         PRI_MACROS_BROKEN.
36710         * m4/stdint.m4 (gl_STDINT_H): Define also ABSOLUTE_INTTYPES_H.
36711
36712         * m4/imaxabs.m4: New file.
36713
36714         * m4/imaxdiv.m4: New file.
36715
36716 2006-08-26  Bruno Haible  <bruno@clisp.org>
36717
36718         * lib/inttypes_.h: New file.
36719         * lib/inttypes.h: Remove file.
36720         * lib/stdint_.h: Include <inttypes.h> through its absolute filename.
36721
36722         * lib/imaxabs.c: New file.
36723
36724         * lib/imaxdiv.c: New file.
36725
36726 2006-08-25  Paul Eggert  <eggert@cs.ucla.edu>
36727
36728         New config-h module, so that "make" output needn't be cluttered
36729         by -DHAVE_CONFIG_H.
36730         * MODULES.html.sh (Support for building libraries and executables):
36731         Add config-h.
36732         * modules/config-h: New file.
36733         * gnulib-tool (nl, sed_transform_lib_file): New vars.
36734         (func_import): Turn "#ifdef HAVE_CONFIG_H" to "#if 1" if
36735         the config-h module is used.
36736
36737         New configmake module, so that "make" output needn't be cluttered
36738         by fluff like '-DLIBDIR=\"/usr/local/lib\"'.
36739         * MODULES.html.sh (Support for building libraries and executables):
36740         Add configmake.
36741         * modules/configmake: New file.
36742
36743 2006-08-25  Paul Eggert  <eggert@cs.ucla.edu>
36744
36745         * m4/config-h.m4: New file.
36746
36747 2006-08-24  Paul Eggert  <eggert@cs.ucla.edu>
36748
36749         * config/srclist.txt: Add elisp-comp.
36750
36751 2006-08-24  Paul Eggert  <eggert@cs.ucla.edu>
36752
36753         * MODULES.html.sh (Support for building libraries and executables):
36754         Add elisp-comp.
36755         * build-aux/elisp-comp: New file.
36756         * modules/elisp-comp: New file.
36757
36758 2006-08-24  Bruno Haible  <bruno@clisp.org>
36759
36760         * gnulib-tool (func_create_testdir): Use non-default values of
36761         sourcebase and m4base.
36762
36763 2006-08-24  Bruno Haible  <bruno@clisp.org>
36764
36765         * MODULES.html.sh (Compatibility checks for POSIX:2001 functions: Fix
36766         HTML structure.
36767
36768 2006-08-23  Paul Eggert  <eggert@cs.ucla.edu>
36769
36770         * modules/openat (Depends-on): Add lchown.
36771
36772 2006-08-23  Bruno Haible  <bruno@clisp.org>
36773
36774         * gnulib-tool (func_import, func_create_testdir): Emit an invocation
36775         of gl_LOCK_EARLY instead of gl_LOCK.
36776
36777 2006-08-23  Bruno Haible  <bruno@clisp.org>
36778
36779         * m4/lock.m4 (gl_LOCK_BODY): Change the default value of gl_use_threads
36780         on OSF/1 to no.
36781         Reported by Stephen Cartwright <sgcartwr@ucalgary.ca>.
36782
36783 2006-08-23  Bruno Haible  <bruno@clisp.org>
36784
36785         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Don't consider BeOS statvfs
36786         as unusable.
36787
36788         * m4/lock.m4 (gl_LOCK_EARLY): Renamed from gl_LOCK.
36789         (gl_LOCK_BODY): Remove gl_PREREQ_LOCK invocation.
36790         (gl_LOCK): New macro.
36791
36792 2006-08-22  Simon Josefsson  <jas@extundo.com>
36793
36794         * modules/gc-md5 (Makefile.am): Need to add md5.h, after changes
36795         to md5 module.
36796
36797 2006-08-22  Simon Josefsson  <jas@extundo.com>
36798
36799         * MODULES.html.sh: Add "Support for maintaining and release
36800         projects".
36801
36802         * build-aux/gnupload: New file, from coreutils.
36803
36804 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
36805
36806         Avoid the need for AC_LIBSOURCES in m4 macros.
36807         * modules/arcfour (EXTRA_DIST): Add arcfour.h.
36808         * modules/arctwo (EXTRA_DIST): Add arctwo.h.
36809         * modules/check-version (EXTRA_DIST): Add check-version.h.
36810         * modules/crc (EXTRA_DIST): Add crc.h.
36811         * modules/des (EXTRA_DIST): Add des.h.
36812         * modules/gc (EXTRA_DIST): Add gc.h.
36813         * modules/getdelim (EXTRA_DIST): Add getdelim.h.
36814         * modules/getline (EXTRA_DIST): Add getline.h.
36815         * modules/getlogin_r (EXTRA_DIST): Add getlogin_r.h.
36816         * modules/hmac-md5 (EXTRA_DIST): Add hmac.h.
36817         * modules/hmac-sha1 (EXTRA_DIST): Add hmac.h.
36818         * modules/md2 (EXTRA_DIST): Add md2.h.
36819         * modules/md4 (EXTRA_DIST): Add md4.h.
36820         * modules/pagealign_alloc (EXTRA_DIST): Add pagealign_alloc.h.
36821         * modules/read-file (EXTRA_DIST): Add read-file.h.
36822         * modules/readline (EXTRA_DIST): Add readline.h.
36823         * modules/rijndael (EXTRA_DIST): Add rijndael-alg-fst.h,
36824         rijndael-api-fst.h.
36825
36826 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
36827
36828         * m4/rijndael.m4 (gl_ARCFOUR):
36829         * m4/arctwo.m4 (gl_ARCTWO):
36830         * m4/check-version.m4 (gl_CHECK_VERSION):
36831         * m4/crc.m4 (gl_CRC):
36832         * m4/des.m4 (gl_DES):
36833         * m4/gc-pbkdf2-sha1.m4 (gl_GC_PBKDF2_SHA1):
36834         * m4/gc.m4 (gl_GC):
36835         * m4/getdelim.m4 (gl_FUNC_GETDELIM):
36836         * m4/getline.m4 (gl_FUNC_GETLINE):
36837         * m4/getlogin_r.m4 (gl_GETLOGIN_R_SUBSTITUTE):
36838         * m4/hmac-md5.m4 (gl_HMAC_MD5):
36839         * m4/hmac-sha1.m4 (gl_HMAC_SHA1):
36840         * m4/md2.m4 (gl_MD2):
36841         * m4/md4.m4 (gl_MD4):
36842         * m4/pagealign_alloc.m4 (gl_PAGEALIGN_ALLOC):
36843         * m4/read-file.m4 (gl_FUNC_READ_FILE):
36844         * m4/readline.m4 (gl_FUNC_READLINE):
36845         * m4/rijndael.m4 (gl_RIJNDAEL):
36846         Don't use AC_LIBSOURCES; instead, rely on the files in ../modules/
36847         to get the necessary .h files and whatnot.
36848
36849 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
36850
36851         * config/srclist.txt: Remove gnupload, since coreutils now syncs from
36852         gnulib rather than the other way around.
36853         * config/srclistvars.sh (COREUTILS): Remove.
36854
36855 2006-08-22  Jim Meyering  <jim@meyering.net>
36856
36857         * modules/mkdir-p (Makefile.am): Fix typo: s/lib+SOURCES/lib_SOURCES/.
36858
36859         * modules/getpass-gnu (Makefile.am): Add getpass.h to EXTRA_DIST.
36860
36861 2006-08-22  Eric Blake  <ebb9@byu.net>
36862
36863         * modules/regexprops-generic: New file.
36864         * MODULES.html.sh (Support for building documentation): List it.
36865
36866 2006-08-22  Eric Blake  <ebb9@byu.net>
36867
36868         * m4/stdint_h.m4 (gl_AC_HEADER_STDINT_H): Avoid compiler warning.
36869         * m4/inttypes_h.m4 (gl_AC_HEADER_INTTYPES_H): Likewise.
36870         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Likewise.
36871         * m4/intmax_t.m4 (gt_AC_TYPE_INTMAX_T): Likewise.
36872
36873 2006-08-22  Bruno Haible  <bruno@clisp.org>
36874
36875         * gnulib-tool (func_emit_lib_Makefile_am): Don't treat lib_LIBRARIES
36876         and lib_LTLIBRARIES like the other lib_* variables.
36877
36878 2006-08-22  Bruno Haible  <bruno@clisp.org>
36879
36880         * build-aux/x-to-1.in: New file, from GNU gettext.
36881
36882 2006-08-22  Bruno Haible  <bruno@clisp.org>
36883
36884         * m4/readutmp.m4 (gl_READUTMP): Compile readutmp.c only if <utmp.h> or
36885         <utmpx.h> exists.
36886
36887 2006-08-22  Bruno Haible  <bruno@clisp.org>
36888
36889         * lib/readutmp.h: Skip most definitions if neither <utmp.h> nor
36890         <utmpx.h> exists.
36891
36892 2006-08-21  Paul Eggert  <eggert@cs.ucla.edu>
36893
36894         BeOS portability.
36895         * lib/dirchownmod.c (dirchownmod): Don't use fchmod if it doesn't
36896         exist.
36897         Problem reported by Bruno Haible.
36898
36899 2006-08-21  Paul Eggert  <eggert@cs.ucla.edu>
36900
36901         Avoid the need for AC_LIBSOURCES in m4 macros.
36902         * modules/acl (EXTRA_DIST): Add acl.h.
36903         * modules/argmatch (Files): Add m4/argmatch.m4.
36904         (configure.ac): Add gl_ARGMATCH.
36905         (EXTRA_DIST): Renamed from lib_SOURCES, for
36906         consistency with the other modules.  Remove argmatch.c.
36907         * modules/backupfile (EXTRA_DIST): Add backupfile.h.
36908         * modules/c-strtod (EXTRA_DIST): Add c-strtod.h.
36909         * modules/c-strtold (EXTRA_DIST): Add c-strtod.c, c-strtod.h.
36910         * modules/canonhost (EXTRA_DIST): Add c-canonhost.h.
36911         * modules/canonicalize (EXTRA_DIST): Add canonicalize.h.
36912         * modules/chdir-long (EXTRA_DIST): Add chdir-long.h.
36913         * modules/chdir-safer (EXTRA_DIST): Add chdir-safer.h.
36914         * modules/cloexec (EXTRA_DIST): Add cloexec.h.
36915         * modules/close-stream (EXTRA_DIST): Add close-stream.h.
36916         * modules/closeout (EXTRA_DIST): Add closeout.h.
36917         * modules/cycle-check (EXTRA_DIST): Add cycle-check.h.
36918         * modules/dev-ino (EXTRA_DIST): Add dev-ino.h.
36919         * modules/dirfd (EXTRA_DIST): Add dirfd.h.
36920         * modules/dirname (EXTRA_DIST): Renamed from lib_SOURCES.  Add
36921         dirname.h; remove basename.c and stripslash.c.
36922         * modules/exclude (EXTRA_DIST): Add exclude.h.
36923         * modules/exitfail (EXTRA_DIST): Add exitfail.h.
36924         * modules/fcntl-safer (EXTRA_DIST): Add fcntl-safer.h fcntl--.h.
36925         * modules/file-type (EXTRA_DIST): Add file-type.h.
36926         * modules/filemode (EXTRA_DIST): Add filemode.h.
36927         * modules/filenamecat (EXTRA_DIST): Add filenamecat.h.
36928         * modules/fopen-safer (EXTRA_DIST): Add stdio-safer.h stdio--.h.
36929         * modules/fpending (EXTRA_DIST): Add __fpending.h.
36930         * modules/fprintftime (EXTRA_DIST): Add fprintftime.h.
36931         * modules/fsusage (EXTRA_DIST): Add fsusage.h.
36932         * modules/fts (EXTRA_DIST): Add fts_.h fts-cycle.c.
36933         * modules/getcwd (EXTRA_DIST): Add getcwd.h.
36934         * modules/getdate (EXTRA_DIST): Add getdate.c.
36935         * modules/gethrxtime (EXTRA_DIST): Add gethrxtime.h xtime.h.
36936         * modules/getpagesize (EXTRA_DIST): Add getpagesize.h.
36937         * modules/getpass (EXTRA_DIST): Add getpass.h.
36938         * modules/glob (EXTRA_DIST): Add glob_.h glob-libc.h.
36939         * modules/group-member (EXTRA_DIST): Add group-member.h.
36940         * modules/hard-locale (EXTRA_DIST): Add hard-locale.h.
36941         * modules/hash (EXTRA_DIST): Add hash.h.
36942         * modules/human (EXTRA_DIST): Add human.h.
36943         * modules/inttypes (EXTRA_DIST): Add inttypes.h.
36944         * modules/lchmod (EXTRA_DIST): Add lchmod.h.
36945         * modules/lchown (EXTRA_DIST): Add lchown.h.
36946         * modules/long-options (EXTRA_DIST): Add long-options.h.
36947         * modules/lstat (EXTRA_DIST): Add lstat.h.
36948         * modules/md5 (EXTRA_DIST): Add memcasecmp.h.
36949         * modules/memcoll (EXTRA_DIST): Add memcoll.h.
36950         * modules/mempcpy (EXTRA_DIST): Add mempcpy.h.
36951         * modules/memrchr (EXTRA_DIST): Add memrchr.h.
36952         * modules/memxor (EXTRA_DIST): Add memxor.h.
36953         * modules/mkancesdirs (EXTRA_DIST): Add mkancesdirs.h.
36954         * modules/mkdir-p (EXTRA_DIST): Add modechange.h.
36955         * modules/mountlist (EXTRA_DIST): Add mountlist.h.
36956         * modules/openat (EXTRA_DIST): Add at-func.c openat.h openat-priv.h.
36957         * modules/pathmax (EXTRA_DIST): Add pathmax.h.
36958         * modules/physmem (EXTRA_DIST): Add physmem.h.
36959         * modules/posixtm (EXTRA_DIST): Add posixtm.h.
36960         * modules/posixver (EXTRA_DIST): Add posixver.h.
36961         * modules/quote (EXTRA_DIST): Add quote.h.
36962         * modules/quotearg (EXTRA_DIST): Add quotearg.h.
36963         * modules/readtokens (EXTRA_DIST): Add readtokens.h.
36964         * modules/readutmp (EXTRA_DIST): Add readutmp.h.
36965         * modules/regex (EXTRA_DIST): Add regcomp.c regex.h regex_internal.c
36966         regex_internal.h regexec.c.
36967         * modules/safe-read (EXTRA_DIST): Add safe-read.h.
36968         * modules/safe-write (EXTRA_DIST): Add safe-write.h.
36969         * modules/same (EXTRA_DIST): Add same.h.
36970         * modules/same-inode (EXTRA_DIST): Add same-inode.h.
36971         * modules/save-cwd (EXTRA_DIST): Add save-cwd.h.
36972         * modules/savedir (EXTRA_DIST): Add savedir.h.
36973         * modules/sha1 (EXTRA_DIST): Add sha1.h.
36974         * modules/sig2str (EXTRA_DIST): Add sig2str.h.
36975         * modules/stat-macros (EXTRA_DIST): Add stat-macros.h.
36976         * modules/stat-time (EXTRA_DIST): Add stat-time.h.
36977         * modules/stdlib-safer (EXTRA_DIST): Add stdlib-safer.h stdlib--.h.
36978         * modules/strdup (EXTRA_DIST): Add strdup.h.
36979         * modules/strftime (EXTRA_DIST): Add strftime.h.
36980         * modules/strndup (EXTRA_DIST): Add strndup.h.
36981         * modules/strnlen (EXTRA_DIST): Add strnlen.h.
36982         * modules/strverscmp (EXTRA_DIST): Add strverscmp.h.
36983         * modules/time_r (EXTRA_DIST): Add time_r.h.
36984         * modules/timespec (EXTRA_DIST): Add timespec.h.
36985         * modules/tmpfile-safer (EXTRA_DIST): Add stdio-safer.h stdio--.h.
36986         * modules/unistd-safer (EXTRA_DIST): Add unistd-safer.h unistd--.h.
36987         * modules/unlinkdir (EXTRA_DIST): Add unlinkdir.h.
36988         * modules/unlocked-io (EXTRA_DIST): Add unlocked-io.h.
36989         * modules/userspec (EXTRA_DIST): Add userspec.h.
36990         * modules/utimecmp (EXTRA_DIST): Add utimecmp.h.
36991         * modules/utimens (EXTRA_DIST): Add utimens.h.
36992         * modules/xalloc (EXTRA_DIST): Add xalloc.h.
36993         * modules/xgetcwd (EXTRA_DIST): Add xgetcwd.h.
36994         * modules/xnanosleep (EXTRA_DIST): Add xnanosleep.h.
36995         * modules/xreadlink (EXTRA_DIST): Add xreadlink.h.
36996         * modules/xstrtod (EXTRA_DIST): Add xstrtod.h.
36997         * modules/xstrtol (EXTRA_DIST): Add xstrtol.h.
36998         * modules/xstrtold (EXTRA_DIST): Add xstrtod.c xstrtod.h.
36999         * modules/yesno (EXTRA_DIST): Add yesno.h.
37000
37001 2006-08-21  Paul Eggert  <eggert@cs.ucla.edu>
37002
37003         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Check for fchmod.
37004
37005         * m4/argmatch.m4: New file, from coreutils with AC_LIBSOURCES removed.
37006         * m4/dev-ino.m4, same-inode.m4: Remove.
37007
37008         * m4/_inttypes_h.m4 (gl_INTTYPES_H):
37009         * m4/acl.m4 (AC_FUNC_ACL):
37010         * m4/backupfile.m4 (gl_BACKUPFILE):
37011         * m4/c-strtod.m4 (gl_C99_STRTOLD):
37012         * m4/canon-host.m4 (gl_CANON_HOST):
37013         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME):
37014         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG):
37015         * m4/chdir-safer.m4 (gl_CHDIR_SAFER):
37016         * m4/cloexec.m4 (gl_CLOEXEC):
37017         * m4/close-stream.m4 (gl_CLOSE_STREAM):
37018         * m4/closeout.m4 (gl_CLOSEOUT):
37019         * m4/dirfd.m4 (gl_FUNC_DIRFD):
37020         * m4/dirname.m4 (gl_DIRNAME):
37021         * m4/exclude.m4 (gl_EXCLUDE):
37022         * m4/exitfail.m4 (gl_EXITFAIL):
37023         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER):
37024         * m4/file-type.m4 (gl_FILE_TYPE):
37025         * m4/filemode.m4 (gl_FILEMODE):
37026         * m4/filenamecat.m4 (gl_FILE_NAME_CONCAT):
37027         * m4/fpending.m4 (gl_FUNC_FPENDING):
37028         * m4/fprintftime.m4 (gl_FPRINTFTIME):
37029         * m4/fts.m4 (gl_FUNC_FTS):
37030         * m4/getcwd.m4 (gl_FUNC_GETCWD_NULL):
37031         * m4/getdate.m4 (gl_GETDATE):
37032         * m4/gethrxtime.m4 (gl_GETHRXTIME):
37033         * m4/getpagesize.m4 (gl_GETPAGESIZE):
37034         * m4/getpass.m4 (gl_FUNC_GETPASS):
37035         * m4/gettime.m4 (gl_GETTIME):
37036         * m4/getugroups.m4 (gl_GETUGROUPS):
37037         * m4/glob.m4 (gl_GLOB_SUBSTITUTE):
37038         * m4/group-member.m4 (gl_FUNC_GROUP_MEMBER):
37039         * m4/hard-locale.m4 (gl_HARD_LOCALE):
37040         * m4/hash.m4 (gl_HASH):
37041         * m4/idcache.m4 (gl_IDCACHE):
37042         * m4/lchmod.m4 (gl_FUNC_LCHMOD):
37043         * m4/lchown.m4 (gl_FUNC_LCHOWN):
37044         * m4/long-options.m4 (gl_LONG_OPTIONS):
37045         * m4/lstat.m4 (gl_FUNC_LSTAT):
37046         * m4/md5.m4 (gl_MD5):
37047         * m4/memcasecmp.m4 (gl_MEMCASECMP):
37048         * m4/memcoll.m4 (gl_MEMCOLL):
37049         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY):
37050         * m4/memrchr.m4 (gl_FUNC_MEMRCHR):
37051         * m4/memxor.m4 (gl_MEMXOR):
37052         * m4/mkancesdirs.m4 (gl_MKANCESDIRS):
37053         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS):
37054         * m4/modechange.m4 (gl_MODECHANGE):
37055         * m4/mountlist.m4 (gl_MOUNTLIST):
37056         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP):
37057         * m4/openat.m4 (gl_FUNC_OPENAT):
37058         * m4/pathmax.m4 (gl_PATHMAX):
37059         * m4/physmem.m4 (gl_PHYSMEM):
37060         * m4/posixtm.m4 (gl_POSIXTM):
37061         * m4/posixver.m4 (gl_POSIXVER):
37062         * m4/quote.m4 (gl_QUOTE):
37063         * m4/quotearg.m4 (gl_QUOTEARG):
37064         * m4/readtokens.m4 (gl_READTOKENS):
37065         * m4/readutmp.m4 (gl_READUTMP):
37066         * m4/regex.m4 (gl_REGEX):
37067         * m4/safe-read.m4 (gl_SAFE_READ):
37068         * m4/safe-write.m4 (gl_SAFE_WRITE):
37069         * m4/same.m4 (gl_SAME):
37070         * m4/save-cwd.m4 (gl_SAVE_CWD):
37071         * m4/savedir.m4 (gl_SAVEDIR):
37072         * m4/settime.m4 (gl_SETTIME):
37073         * m4/sha1.m4 (gl_SHA1):
37074         * m4/sig2str.m4 (gl_FUNC_SIG2STR):
37075         * m4/stat-macros.m4 (gl_STAT_MACROS):
37076         * m4/stat-time.m4 (gl_STAT_TIME):
37077         * m4/stdio-safer.m4 (gl_FOPEN_SAFER):
37078         * m4/stdlib-safer.m4 (gl_STDLIB_SAFER):
37079         * m4/strdup.m4 (gl_FUNC_STRDUP):
37080         * m4/strftime.m4 (gl_FUNC_GNU_STRFTIME):
37081         * m4/strndup.m4 (gl_FUNC_STRNDUP):
37082         * m4/strnlen.m4 (gl_FUNC_STRNLEN):
37083         * m4/strverscmp.m4 (gl_FUNC_STRVERSCMP):
37084         * m4/time_r.m4 (gl_TIME_R):
37085         * m4/timespec.m4 (gl_TIMESPEC):
37086         * m4/unistd-safer.m4 (gl_UNISTD_SAFER):
37087         * m4/unlinkdir.m4 (gl_UNLINKDIR):
37088         * m4/unlocked-io.m4 (gl_FUNC_GLIBC_UNLOCKED_IO):
37089         * m4/userspec.m4 (gl_USERSPEC):
37090         * m4/utimecmp.m4 (gl_UTIMECMP):
37091         * m4/utimens.m4 (gl_UTIMENS):
37092         * m4/xalloc.m4 (gl_XALLOC):
37093         * m4/xgetcwd.m4 (gl_XGETCWD):
37094         * m4/xnanosleep.m4 (gl_XNANOSLEEP):
37095         * m4/xreadlink.m4 (gl_XREADLINK):
37096         * m4/xstrtod.m4 (gl_XSTRTOD):
37097         * m4/yesno.m4 (gl_YESNO):
37098         Don't use AC_LIBSOURCES; instead, rely on the files in ../modules/
37099         to get the necessary .h files and whatnot.
37100
37101 2006-08-21  Mark D. Baushke  <mdb@gnu.org>
37102             Bruno Haible  <bruno@clisp.org>
37103
37104         * gnulib-tool (func_verify_module): Work around Sun's non-POSIX 1003.2
37105         /bin/sh understanding of '!' conditional negation.
37106
37107 2006-08-21  Jim Meyering  <jim@meyering.net>
37108
37109         * modules/openat (Depends-on): Really alphabetize.
37110
37111         * modules/acl (Depends-on): Add error and quote.
37112
37113         * check-module (find_included_lib_files): Add at-func.c to the
37114         ok-to-include-more-than-once white list.
37115
37116         * modules/openat (Depends-on): Add lstat.  Alphabetize.
37117
37118 2006-08-21  Bruno Haible  <bruno@clisp.org>
37119
37120         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
37121         Emit a pkgdata_DATA variable only if some snippets add contents to it.
37122         Reported by Martin Lambers <marlam@marlam.de>.
37123
37124 2006-08-21  Bruno Haible  <bruno@clisp.org>
37125
37126         * gnulib-tool (func_emit_lib_Makefile_am): If the snippets already
37127         specify an installation location, don't emit a noinst_LIBRARIES or
37128         noinst_LTLIBRARIES assignment.
37129
37130 2006-08-21  Bruno Haible  <bruno@clisp.org>
37131
37132         BeOS portability.
37133         * modules/mbchar (Include): Don't test HAVE_WCTYPE_H any more, since
37134         BeOS has mbrtowc() but no <wctype.h>.
37135
37136 2006-08-21  Bruno Haible  <bruno@clisp.org>
37137
37138         BeOS portability.
37139         * m4/mbchar.m4 (gl_MBCHAR): Compile mbchar.c also if <wctype.h> doesn't
37140         exist.
37141
37142 2006-08-21  Bruno Haible  <bruno@clisp.org>
37143
37144         BeOS portability.
37145         * lib/mbchar.h: Include <wctype.h> only if it exists.
37146
37147 2006-08-20  Paul Eggert  <eggert@cs.ucla.edu>
37148
37149         Remove files that are no longer needed by their respective modules.
37150         * m4/obstack.m4: Remove.
37151         * m4/strerror_r.m4: Remove.
37152         * m4/uint32_t.m4: Remove.
37153         * m4/uintptr_t.m4: Remove.
37154         * m4/ullong_max.m4: Remove.
37155         * m4/xstrtoimax.m4: Remove.
37156         * m4/xstrtoumax.m4: Remove.
37157
37158         * m4/cycle-check.m4 (gl_CYCLE_CHECK): Do not require
37159         gl_AC_TYPE_UINTMAX_T, gl_STRUCT_DEV_INO, or gl_SAME_INODE, since gnulib
37160         dependencies now capture this.
37161
37162         * m4/cycle-check.m4 (gl_CYCLE_CHECK):
37163         Do not use AC_LIBSOURCES, since gnulib modules now do this.
37164         * m4/fsusage.m4 (gl_FSUSAGE): Likewise.
37165         * m4/human.m4 (gl_HUMAN): Likewise.
37166         * m4/inttostr.m4 (gl_INTTOSTR): Likewise.
37167         * m4/xstrtol.m4 (gl_XSTRTOL): Likewise.
37168
37169         * m4/filemode.m4 (gl_FILEMODE): Require AC_STRUCT_ST_DM_MODE.
37170
37171         * m4/filemode.m4 (gl_PREREQ_FSUSAGE_EXTRA): Do not require
37172         gl_AC_TYPE_INTMAX_T or gl_AC_TYPE_UINTMAX_T, since we now require
37173         stdint.
37174         * m4/human.m4 (gl_HUMAN): Likewise.
37175         * m4/inttostr.m4 (gl_PREREQ_INTTOSTR): Likewise.
37176         * m4/mkstemp.m4 (gl_PREREQ_TEMPNAME): Likewise.
37177         * m4/strtoimax.m4 (gl_PREREQ_STRTOIMAX): Likewise.
37178         * m4/strtoumax.m4 (gl_PREREQ_STRTOUMAX): Likewise.
37179         * m4/xstrtol (gl_XSTRTOL): Likewise.
37180
37181         * m4/gethrxtime.m4 (gl_XTIME): gl_AC_TYPE_LONG_LONG ->
37182         AC_TYPE_LONG_LONG_INT.
37183         * m4/strtoimax.m4 (gl_PREREQ_STRTOIMAX): Likewise.
37184         * m4/strtoll.m4 (gl_FUNC_STRTOLL): Likewise.
37185         * m4/strtoull.m4 (gl_FUNC_STRTOULL): Likewise, for unsigned long.
37186         * m4/strtoumax.m4 (gl_PREREQ_STRTOUMAX): Likewise.
37187
37188         * m4/human.m4 (gl_HUMAN): Do not require AM_STDBOOL_H since we depend
37189         on stdbool.
37190
37191         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL_H, gl_PREREQ_XSTRTOL): Remove.
37192         (gl_PREREQ_XSTRTOUL): Remove.
37193
37194         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Check for hasmntopt.
37195
37196         * m4/posixver.m4: Fix comment since head -1 now works even in POSIX
37197         mode.
37198
37199 2006-08-20  Paul Eggert  <eggert@cs.ucla.edu>
37200
37201         Add and change modules to make it easier for coreutils to use
37202         gnulib-tool.
37203         * modules/backupfile (Files): Remove m4/d-ino.m4.
37204         (Depends-on): Add d-ino.
37205         * modules/cycle-check (Depends-on): Add stdint.
37206         (lib_SOURCES): Add cycle-check.h.
37207         * modules/d-ino: New module.
37208         * modules/d-type: New module.
37209         * modules/error (Files): Remove m4/strerror_r.m4.
37210         * modules/filemode (Files): Add m4/st_dm_mode.m4.
37211         * modules/fsuage (Files): Remove m4/ulonglong.m4, m4/stdint_h.m4,
37212         m4/inttypes_h.m4, m4/uintmax_t.m4.
37213         (Depends-on): Add stdint.
37214         (lib_SOURCES): Add fsusage.h.
37215         * modules/getcwd (Files): Remove d-ino.m4.
37216         (Depends-on): Add d-ino.
37217         * modules/getndelim2 (Depends-on): Add stdint.
37218         * modules/glob (Files): Remove m4/d-type.m4.
37219         (Depends-on): Add d-type.
37220         * modules/host-os: New module.
37221         * modules/human (Files):  Remove m4/ulonglong.m4, m4/stdint_h.m4,
37222         m4/inttypes_h.m4, m4/uintmax_t.m4.
37223         * Depends-on: Add stdint.
37224         (lib_SOURCES): Add human.h.
37225         * modules/inttostr (Files): Remove m4/intmax_t.m4,
37226         m4/inttostr.m4, m4/inttypes_h.m4, m4/longlong.m4, m4/stdint_h.m4,
37227         m4/uintmax_t.m4, m4/ulonglong.m4.
37228         (Depends-on): Add stdint.
37229         (EXTRA_DIST): Add inttostr.h.
37230         * modules/lchmod: New module.
37231         * modules/link-follow: New module.
37232         * modules/mkdir-p (Files): Remove lib/lchmod.h, m4/lchmod.m4.
37233         (Depends-on): Add lchmod.
37234         * modules/mkstemp (Files): Remove m4/ulonglong.m4,
37235         m4/stdint_h.m4, m4/inttypes_h.m4, m4/uintmax_t.m4.
37236         (Depends-on): Add stdint.
37237         * modules/obstack (Files): Remove m4/inttypes_h.m4, m4/obstack.m4,
37238         m4/stdint_h.m4, m4/uintmax_t.m4, m4/ulonglong.m4.
37239         (Depends-on): Add stdint.
37240         (configure.ac): Change gl_OBSTACK to AC_FUNC_OBSTACK.
37241         * modules/perl: New module.
37242         * modules/regex (Depends-on): Add stdint.
37243         * modules/rmdir-errno: New module.
37244         * modules/strtoimax (Files): Remove m4/stdint_h.m4, m4/inttypes_h.m4,
37245         m4/intmax_t.m4.
37246         (Depends-on): Add stdint.
37247         * modules/strtoumax (Files): Remove m4/stdint_h.m4, m4/inttypes_h.m4,
37248         m4/uintmax_t.m4.
37249         (Depends-on): Add stdint.
37250         * modules/unlink-busy: New module.
37251         * modules/utimecmp (Depends-on): Add stdint.
37252         * modules/uptime: New module.
37253         * modules/winsz-ioctl: New module.
37254         * modules/winsz-termios: New module.
37255         * modules/xnanosleep (Depends-on): Add nanosleep.
37256         * modules/ullong_max: Remove.
37257         * modules/xstrtoimax (Files): Remove m4/xstrtoimax.m4.
37258         (configure.ac): Remove gl_XSTRTOIMAX; no action needed now.
37259         * modules/xstrtol (Files): Remove m4/ulonglong.m4, m4/longlong.m4,
37260         m4/stdint_h.m4, m4/inttypes_h.m4, m4/uintmax_t.m4, m4/intmax_t.m4.
37261         (Depends-on): Add inttypes.
37262         (lib_SOURCES): Add xstrtol.h.
37263         * modules/xstrtoumax (Files): Remove m4/xstrtoumax.m4.
37264         (configure.ac): Remove gl_XSTRTOUMAX; no action needed now.
37265         * MODULES.html.sh: Move 'assert' into the assert section.
37266         Move 'dummy' into the linking section.
37267         Remove ullong_max.
37268         Add section for compatibility checks for POSIX:2001 functions,
37269         and put d-ino, d-type, link-follow, rmdir-errno, unlink-busy,
37270         winsz-ioctl, and winsz-termios into it.
37271         Add lchmod.
37272         Add top-level Misc section and put host-os, perl, and uptime
37273         into it.
37274
37275 2006-08-20  Paul Eggert  <eggert@cs.ucla.edu>
37276
37277         * lib/cycle-check.h: Include <stdint.h> unconditionally, since we
37278         now assume the stdint module.  Do not include inttypes.h.
37279         * lib/fsusage.h: Likewise.
37280         * lib/getndelim2.c: Likewise.
37281         * lib/human.h: Likewise.
37282         * lib/inttostr.h: Likewise.
37283         * lib/obstack.c: Likewise.
37284         * lib/regex_internal.h: Likewise.
37285         * lib/tempname.c: Likewise.
37286         * lib/utimecmp.c: Likewise.
37287         * lib/xstrtol.h: Likewise.
37288
37289         * lib/stat_.h: Fix typo: HAVE_FUNC_LSTAT -> HAVE_LSTAT.
37290
37291         * lib/strtoimax.c: Adjust to macro name changes in Autoconf,
37292         e.g., HAVE_LONG_LONG -> HAVE_LONG_LONG_INT.
37293         * lib/xtime.h: Likewise.
37294
37295 2006-08-19  Paul Eggert  <eggert@cs.ucla.edu>
37296
37297         * modules/openat (Files): Add lib/fchmodat.c.
37298         Fixes problem reported by Jay Youngman.
37299
37300 2006-08-19  Paul Eggert  <eggert@cs.ucla.edu>
37301
37302         * lib/fchmodat.c: New file, from coreutils.  This was inadvertently
37303         omitted in the 2006-08-17 update.  Problem reported by Jay Youngman.
37304
37305 2006-08-18  Paul Eggert  <eggert@cs.ucla.edu>
37306             Bruno Haible  <bruno@clisp.org>
37307
37308         * m4/bison-i18n.m4 (BISON_I18N): Also handle the case where yacc exists
37309         and is a script that invokes bison. Tighten the code. Add comments.
37310
37311 2006-08-18  Jim Meyering  <jim@meyering.net>
37312
37313         * m4/gethrxtime.m4 (gl_PREREQ_GETHRXTIME): Also check for
37314         CLOCK_REALTIME, since gethrxtime may revert to using clock_gettime via
37315         gettime.c.  Gabor Z. Papp reported that gethrxtime-using programs
37316         failed to link due to unresolved clock_gettime on a linux-2.4.x system.
37317
37318 2006-08-18  Bruno Haible  <bruno@clisp.org>
37319
37320         * modules/bison-i18n: New file.
37321         * MODULES.html.sh (Internationalization functions): Add it.
37322
37323 2006-08-18  Bruno Haible  <bruno@clisp.org>
37324
37325         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Also check for
37326         sys/statvfs.h. When getmntinfo was found, check its declaration and
37327         set either MOUNTED_GETMNTINFO or MOUNTED_GETMNTINFO2 depending on it.
37328
37329 2006-08-18  Bruno Haible  <bruno@clisp.org>
37330
37331         * m4/bison-i18n.m4: New file, from bison.
37332
37333 2006-08-18  Bruno Haible  <bruno@clisp.org>
37334
37335         * lib/mountlist.c [MOUNTED_GETMNTINFO2]: Include sys/statvfs.h.
37336         (ME_DUMMY): Treat "kernfs" as a dummy.
37337         (read_file_system_list) [MOUNTED_GETMNTINFO2]: Implement.
37338
37339 2006-08-17  Paul Eggert  <eggert@cs.ucla.edu>
37340
37341         Update from coreutils.
37342
37343         2006-08-15  Jim Meyering  <jim@meyering.net>
37344
37345         * m4/openat.m4 (gl_FUNC_OPENAT): Add at-func.c via AC_LIBSOURCES.
37346
37347         2006-01-17  Jim Meyering  <jim@meyering.net>
37348
37349         * m4/fts.m4 (gl_FUNC_FTS_CORE): Depend on gl_FUNC_OPENAT.
37350
37351         2006-01-11  Jim Meyering  <jim@meyering.net>
37352
37353         * m4/openat.m4 (gl_FUNC_OPENAT): Require and compile fchmodat.c.
37354         Check for the lchmod function.
37355
37356 2006-08-17  Paul Eggert  <eggert@cs.ucla.edu>
37357
37358         Update from coreutils.
37359
37360         * lib/__fpending.h: Add copyright notice.
37361         * lib/fprintftime.h: Likewise.
37362         * lib/savedir.c: Use (C) in copyright notice.
37363         * lib/savedir.h: Likewise.
37364
37365         2006-08-15  Jim Meyering  <jim@meyering.net>
37366
37367         * lib/at-func.c: New file, with the logic of all emulated at-functions.
37368         * lib/openat-priv.h: Include <errno.h> and define ENOSYS,
37369         in support of the EXPECTED_ERRNO macro.
37370         * lib/openat.c (fstatat, unlinkat, fchownat): Remove function
37371         definitions.  Instead, define the appropriate symbols and include
37372         "at-func.c".
37373         * lib/mkdirat.c (mkdirat): Likewise.
37374         * lib/fchmodat.c (fchmodat): Likewise.
37375         (ENOSYS): Remove definition.
37376         * lib/openat.c: Don't include <errno.h>, now that "openat-priv.h" does
37377         it.  Don't include "unistd--.h" -- it wasn't ever used.
37378
37379         2006-01-17  Jim Meyering  <jim@meyering.net>
37380
37381         Rewrite fts.c not to change the current working directory,
37382         by using openat, fstatat, fdopendir, etc..
37383
37384         * lib/fts.c [! _LIBC]: Include "openat.h" and "unistd--.h".
37385         (HAVE_OPENAT_SUPPORT): Define.
37386         [_LIBC] (fchdir): Don't undef or define; no longer used.
37387         (FCHDIR): Define in terms of cwd_advance_fd rather than fchdir.
37388         Now, this `function' always succeeds, and consumes its file descriptor
37389         parameter -- so callers must not close such FDs.  Update callers.
37390         (diropen_fd, opendirat, cwd_advance_fd): New functions.
37391         (diropen): Add parameter, SP.  Adjust all callers.
37392         Implement using diropen_fd, rather than open.
37393         (fts_open): Initialize new member, fts_cwd_fd.
37394         Remove fts_rft-setting code.
37395         (fts_close): Close fts_cwd_fd, if necessary.
37396         (__opendir2): Define in terms of opendir or opendirat,
37397         depending on whether the FST_NOCHDIR flag is set.
37398         (fts_build): Since fts_safe_changedir consumes its FD, and since
37399         this code must do `closedir(dirp)', dup the dirfd(dirp) argument,
37400         and close the dup'd file descriptor upon failure.
37401         (fts_stat): Use fstatat(...AT_SYMLINK_NOFOLLOW) in place of lstat.
37402         (fts_safe_changedir): Tweak semantics to reflect that this function
37403         now calls cwd_advance_fd and hence consumes its FD argument.
37404         * lib/fts_.h [struct FTS] (fts_cwd_fd): New member.
37405         [struct FTS] (fts_rft): Remove now-unused member.
37406         [struct FTS] (fts_cycle.state): Improve comment.
37407
37408         * lib/openat.c (openat_needs_fchdir): New function.
37409         * lib/openat.h (openat_needs_fchdir): Declare it.
37410
37411 2006-08-16  Paul Eggert  <eggert@cs.ucla.edu>
37412
37413         * lib/memcoll.c (memcoll): Set errno = 0 in the shortcut case, too.
37414         Problem and fix reported by Pádraig Brady in
37415         <http://lists.gnu.org/archive/html/bug-coreutils/2006-08/msg00099.html>.
37416
37417 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
37418
37419         * modules/cycle-check (configure.ac): Add gl_CYCLE_CHECK.
37420
37421 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
37422
37423         * lib/memcoll.c (memcoll): Optimize for the common case where the
37424         arguments are bytewise equal.
37425
37426 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
37427
37428         * doc/regexprops-generic.texi: Add a copyright notice.
37429
37430 2006-08-15  Bruno Haible  <bruno@clisp.org>
37431
37432         * modules/tmpdir (License): Change to LGPL.
37433
37434 2006-08-15  Bruno Haible  <bruno@clisp.org>
37435
37436         * gnulib-tool (func_all_modules, func_verify_module): COPYING is not a
37437         module.
37438
37439 2006-08-14  Simon Josefsson  <jas@extundo.com>
37440
37441         * config/srclist.txt: Add gnupload.
37442
37443 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
37444
37445         Change copyright notice from LGPL 2 to GPL 2, since that's the
37446         standard form used in the gnulib repository.
37447         * tests/test-lock.c: Likewise.
37448         * tests/test-stdint.c: Likewise.
37449         * tests/test-tls.c: Likewise.
37450
37451         * users.txt: Add bison, diffutils, libprelude, prelude-lml,
37452         prelude-manager.  User shorter URLs for GNU projects, without '?'.
37453         Add copyright notice.
37454
37455         * check-module: Add copyright notice.  Output a copyright
37456         notice if "--version" is specified.
37457         * modules/COPYING: New file.
37458         * tests/test-getaddrinfo.c: Add copyright notice.
37459         * tests/test-verify.c: Likewise.
37460
37461 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
37462
37463         Change copyright notice from LGPL 2 to GPL 2, since that's the
37464         standard form used in the gnulib repository.
37465         * lib/lock.c: LGPL -> GPL.
37466         * lib/lock.h: Likewise.
37467         * lib/strnlen1.c: Likewise.
37468         * lib/strnlen1.h: Likewise.
37469         * lib/tls.c: Likewise.
37470         * lib/tls.h: Likewise.
37471         * lib/tmpdir.c: Likewise.
37472
37473         * lib/TODO: Remove; this belongs only in coreutils.
37474
37475 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
37476
37477         Add copyright notices to long-enough files that lack them, since
37478         otherwise the files aren't clearly free.  Use the same notice that
37479         getdate.texi already uses.
37480         * doc/alloca-opt.texi: Add copyright notice.
37481         * doc/alloca.texi: Likewise.
37482         * doc/ctime.texi: Likewise.
37483         * doc/functions.texi: Likewise.
37484         * doc/gcd.texi: Likewise.
37485         * doc/gnulib-tool.texi: Likewise.
37486         * doc/inet_ntoa.texi: Likewise.
37487         * doc/visibility.texi: Likewise.
37488
37489         * doc/getdate.texi: Update FDL version from 1.1 to 1.2.
37490         * doc/quote.texi: Add copyright notice.
37491
37492         * doc/solaris-versions: Add SunOS 5.10, SunOS 1.x, SunOS 4.0, SunOS
37493         4.0.x, SunOS 4.1.1.1, SunOS 4.1.1_U1, SunOS 4.1.3B.  SunOS 4.1.3
37494         was Solaris 1.1A.  Remove space before B in Solaris 1.1.1B.
37495         Mention SunOS 5.11.  Mention that everything before SunOS 5.7
37496         is now obsolete, and give a pointer to the Sun list.
37497         Add copyright notice.
37498
37499 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
37500
37501         * config/srclistvars.sh: Add copyright notice.
37502
37503 2006-08-14  Eric Blake  <ebb9@byu.net>
37504
37505         Import the following change from libc:
37506
37507         2006-08-12  Ulrich Drepper  <drepper@redhat.com>
37508
37509         Upstream bug 2997.
37510         * lib/misc/error.c: Add space between program name and message if file
37511         name is missing.
37512
37513 2006-08-12  Karl Berry  <karl@gnu.org>
37514
37515         * config/srclist.txt (ssize_t.m4, sig_atomic_t.m4, signalblocking.m4):
37516         remove, these originate in gnulib now.
37517
37518 2006-08-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
37519
37520         * doc/Makefile (standards.info standards.html standards.dvi):
37521         Also depend on make-stds.texi.
37522
37523 2006-08-11  Paul Eggert  <eggert@cs.ucla.edu>
37524
37525         * lib/pipe-safer.c (pipe_safer): Fix misspelling: HAVE_FUNC_PIPE ->
37526         HAVE_PIPE.  Fix a file descriptor leak when fd_safer fails.
37527
37528         * lib/regex_internal.c (re_string_skip_chars): Don't assume WEOF fits
37529         in wchar_t.  Problem reported by Eric Blake.
37530
37531         * lib/snprintf.c (snprintf): memcpy LEN bytes, not SIZE - 1, when
37532         LEN is smaller than SIZE.  Suggested by Bruno Haible.
37533         Also, help the compiler to keep LEN in a register.
37534
37535 2006-08-11  Eric Blake  <ebb9@byu.net>
37536
37537         * users.txt: Sort.  Add tar.
37538
37539 2006-08-11  Bruno Haible  <bruno@clisp.org>
37540
37541         * users.txt: New file.
37542
37543 2006-08-11  Bruno Haible  <bruno@clisp.org>
37544
37545         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Include <stdio.h> and <time.h>
37546         before <wchar.h>. Needed for OSF/1 and BSD/OS.
37547
37548 2006-08-10  Paul Eggert  <eggert@cs.ucla.edu>
37549
37550         * modules/snprintf (Depends-on): Remove minmax.
37551         (Maintainer): Add self and Bruno.
37552
37553 2006-08-10  Paul Eggert  <eggert@cs.ucla.edu>
37554
37555         * lib/.cppi-disable: Add snprintf.h, socket_.h.
37556         * lib/snprintf.c: Include <errno.h> and <limits.h>.
37557         (EOVERFLOW): Define if the system does not.
37558         Do not include "minmax.h"; it wasn't used.
37559         (snprintf): Don't assume size_t promotes to an unsigned type.
37560         Fix bug when generated string was too long for the buffer: the
37561         buffer's contents are supposed to be the initial prefix of the
37562         output.  Don't assume vasnprintf returns EOVERFLOW if the size
37563         exceeds INT_MAX; do the check ourselves.
37564
37565         Import the following changes from libc:
37566
37567         2006-06-02  Jakub Jelinek  <jakub@redhat.com>
37568
37569         * lib/posix/regex_internal.c (re_string_skip_chars): If no character
37570         has been converted at all, set *last_wc to WEOF.  If mbrtowc failed,
37571         set wc to the byte which couldn't be converted.
37572         (re_string_reconstruct): Don't clear valid_raw_len before calling
37573         re_string_skip_chars.  If wc is WEOF after re_string_skip_chars, set
37574         tip_context using re_string_context_at.
37575
37576         2006-05-02  Ulrich Drepper  <drepper@redhat.com>
37577
37578         * lib/posix/regex.h: g++ still cannot handled [restrict].
37579
37580         2006-04-21  Ulrich Drepper  <drepper@redhat.com>
37581
37582         * lib/posix/regex.h: Remove special handling for VMS.
37583
37584 2006-08-10  Jim Meyering  <jim@meyering.net>
37585
37586         * modules/same-inode: New module.
37587         * modules/dev-ino: New module.
37588         * modules/cycle-check: Depend on these modules, rather than simply
37589         including their .h files.
37590         (Makefile.am): Don't list cycle-check.[ch] here, now that they're
37591         required via m4/cycle-check.m4.
37592         * modules/same: Depend on new same-inode module, rather than
37593         including same-inode.h.
37594         * modules/chdir-safer: New file.
37595
37596         * modules/chown (Depends-on): Add stat-macros.
37597
37598 2006-08-10  Jim Meyering  <jim@meyering.net>
37599
37600         * m4/cycle-check.m4: New file.
37601         Require gl_STRUCT_DEV_INO and gl_SAME_INODE.
37602         * m4/dev-ino.m4, m4/same-inode.m4: New files.
37603
37604 2006-08-10  Eric Blake  <ebb9@byu.net>
37605
37606         * modules/verror (Depends-on): Remove bogus gl_VERROR that snuck
37607         in from original proposal.
37608
37609 2006-08-10  Eric Blake  <ebb9@byu.net>
37610         and Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
37611
37612         * gnulib-tool (func_import): Detect unexpanded macros in gnulib
37613         namespace.
37614
37615 2006-08-10  Bruno Haible  <bruno@clisp.org>
37616
37617         * gnulib-tool (func_create_testdir): Detect unexpanded macros here
37618         as well.
37619
37620 2006-08-09  Paul Eggert  <eggert@cs.ucla.edu>
37621
37622         Sync from coreutils.
37623
37624         2006-07-19  Mike Frysinger  <vapier@gentoo.org>
37625
37626         * lib/mountlist.c [ME_REMOTE]: Filter out cifs.
37627         Reported by Toralf Förster in <http://bugs.gentoo.org/141012>.
37628
37629 2006-08-09  Paul Eggert  <eggert@cs.ucla.edu>
37630
37631         * modules/restrict: Remove; no longer needed now that we assume
37632         Autoconf 2.59 or later.
37633         * MODULES.html.sh: Remove 'restrict'.
37634         * modules/argp (Depends-on): Remove 'restrict'.
37635         * modules/base64 (Depends-on): Likewise.
37636         * modules/gc (Depends-on): Likewise.
37637         * modules/getaddrinfo (Depends-on): Likewise.
37638         * modules/glob (Depends-on): Likewise.
37639         * modules/inet_ntop (Depends-on): Likewise.
37640         * modules/inet_pton (Depends-on): Likewise.
37641         * modules/memxor (Depends-on): Likewise.
37642         * modules/regex (Depends-on): Likewise.
37643         * modules/strtok_r (Depends-on): Likewise.
37644         * modules/time_r (Depends-on): Likewise.
37645
37646 2006-08-09  Paul Eggert  <eggert@cs.ucla.edu>
37647
37648         * m4/argp.m4 (gl_ARGP): Require AC_C_RESTRICT.
37649         * m4/gc.m4 (gl_PREREQ_GC): Likewise.
37650         * m4/glob.m4 (gl_PREREQ_GLOB): Likewise.
37651         * m4/inet_ntop.m4 (gl_PREREQ_INET_NTOP): Likewise.
37652         * m4/inet_pton.m4 (gl_PREREQ_INET_PTON): Likewise.
37653         * m4/memxor.m4 (gl_MEMXOR): Likewise.
37654         * m4/restrict.m4: Remove; no longer needed.  All remaining uses of
37655         gl_C_RESTRICT replaced by AC_C_RESTRICT.
37656
37657         Merge from coreutils.
37658         * m4/regex.m4 (gl_PREREQ_REGEX): Require AC_C_RESTRICT, not
37659         gl_C_RESTRICT, now that we assume Autoconf 2.59 or later.
37660         * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Likewise.
37661         * m4/time_r.m4 (gl_TIME_R): Likewise.
37662
37663 2006-08-09  Karl Berry  <karl@gnu.org>
37664
37665         * config/srclist.txt: no more gettext-tools, per Bruno.
37666
37667 2006-08-08  Eric Blake  <ebb9@byu.net>
37668
37669         * modules/verror: New module.
37670         * MODULES.html.sh: Document it.
37671
37672 2006-08-08  Eric Blake  <ebb9@byu.net>
37673
37674         * lib/verror.h, lib/verror.c: New files.
37675
37676 2006-08-08  Eric Blake  <ebb9@byu.net>
37677
37678         * lib/verror.c (verror_at_line): Work around glibc bug 2997, so that
37679         verror_at_line output complies with GNU Coding Standards even when
37680         file is NULL.
37681
37682 2006-08-07  Bruno Haible  <bruno@clisp.org>
37683
37684         * lib/allocsa.h (sa_alignof) [_AIX]: Also consider 'long long' in newer
37685         versions of AIX.
37686         Reported by Ralf Wildenhues.
37687
37688 2006-08-07  Bruno Haible  <bruno@clisp.org>
37689
37690         * gnulib-tool (func_create_testdir): Wrap the set of autoconf snippets
37691         in an AC_DEFUN. Needed so that the autoconf snippets can use
37692         AC_REQUIRE.
37693
37694 2006-08-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
37695
37696         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
37697         Initialize pkgdata_DATA.
37698         * modules/javaversion (Makefile.am): Add to pkgdata_DATA, rather than
37699         overriding it.
37700
37701 2006-08-06  Eric Blake  <ebb9@byu.net>
37702
37703         * lib/error.h: Fold in some upstream changes from glibc.
37704         * lib/error.c: Likewise.
37705
37706 2006-08-04  Bruno Haible  <bruno@clisp.org>
37707
37708         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
37709         Make the mostlyclean-local rule depend on mostlyclean-generic.
37710         Reported by Jim Meyering. Solution suggested by Ralf Wildenhues.
37711
37712 2006-07-31  Bruno Haible  <bruno@clisp.org>
37713
37714         * m4/localcharset.m4 (gl_LOCALCHARSET): Remove tests for <stddef.h>,
37715         <stdlib.h>, <string.h>.
37716
37717 2006-07-30  Bruno Haible  <bruno@clisp.org>
37718
37719         * modules/readlink (License): Change to LGPL.
37720
37721 2006-07-30  Bruno Haible  <bruno@clisp.org>
37722
37723         * modules/javaversion (Makefile.am): Distribute javaversion.java and
37724         javaversion.class. Also install javaversion.class in $(pkgdatadir) and
37725         set PKGDATADIR to point to it.
37726
37727 2006-07-30  Bruno Haible  <bruno@clisp.org>
37728
37729         * modules/csharpexec (configure.ac): Comment out macro invocation.
37730         * modules/javaexec (configure.ac): Likewise.
37731         * modules/javacomp-script (configure.ac): Likewise.
37732
37733         * modules/csharpcomp-script (configure.ac): Use AC_REQUIRE.
37734
37735 2006-07-30  Bruno Haible  <bruno@clisp.org>
37736
37737         * modules/clean-temp (Depends-on): Add linkedhash-list, remove
37738         linked-list.
37739
37740 2006-07-30  Bruno Haible  <bruno@clisp.org>
37741
37742         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Assume <string.h> exists.
37743
37744 2006-07-30  Bruno Haible  <bruno@clisp.org>
37745
37746         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
37747         Initialize MOSTLYCLEANFILES to core and *.stackdump, so that core dumps
37748         get removed.
37749
37750 2006-07-29  Bruno Haible  <bruno@clisp.org>
37751
37752         Make it possible for gnulib-tool to work with locally modified or
37753         augmented gnulib repositories.
37754         * gnulib-tool (func_usage): Document --local-dir option.
37755         (local_gnulib_dir): New variable.
37756         Handle --local-dir option.
37757         (func_lookup_file): New function.
37758         (func_all_modules, func_verify_module): Look also in $local_gnulib_dir.
37759         (func_get_description, func_get_filelist, func_get_description,
37760         func_get_filelist, func_get_dependencies, func_get_autoconf_snippet,
37761         func_get_automake_snippet, func_get_include_directive,
37762         func_get_license, func_get_maintainer): Use func_lookup_file.
37763         (func_import, func_create_testdir): Use func_lookup_file.
37764
37765 2006-07-29  Bruno Haible  <bruno@clisp.org>
37766
37767         * modules/setenv (Depends-on): Add unistd.
37768
37769 2006-07-29  Bruno Haible  <bruno@clisp.org>
37770
37771         * lib/setenv.c: Undo unintended modification done on 2006-02-27.
37772
37773 2006-07-29  Bruno Haible  <bruno@clisp.org>
37774
37775         * lib/localcharset.c: Assume <stddef.h>, <stdlib.h>, <string.h> exist.
37776
37777 2006-07-29  Bruno Haible  <bruno@clisp.org>
37778
37779         * gnulib-tool (import, update): If there is no Makefile.am, look at
37780         aclocal.m4, instead of bailing out.
37781
37782 2006-07-29  Bruno Haible  <bruno@clisp.org>
37783
37784         * gnulib-tool (func_usage): Revert most of the 2006-07-15 change.
37785         Categorize the options by when they are useful.
37786
37787 2006-07-29  Bruno Haible  <bruno@clisp.org>
37788
37789         * gnulib-tool (func_usage): Document option --no-libtool.
37790         Handle option --no-libtool.
37791         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am): Update
37792         for changed semantics of $libtool variable.
37793         (func_import): Likewise. If libtool is not used, show this through
37794         an option --no-libtool.
37795         (func_create_testdir): Update.
37796
37797 2006-07-29  Bruno Haible  <bruno@clisp.org>
37798
37799         * gnulib-tool (func_import): Extend error message about missing
37800         --doc-base.
37801
37802 2006-07-29  Bruno Haible  <bruno@clisp.org>
37803
37804         * gnulib-tool (func_import): Don't create the $docbase directory if
37805         there is no file to store there.
37806
37807 2006-07-29  Bruno Haible  <bruno@clisp.org>
37808
37809         * gnulib-tool (autoconf_minversion): If a --dir option is given and
37810         relevant, look for configure.ac there, not in the current directory.
37811         Also use a simple search for AC_PREREQ, not "autoconf --trace".
37812
37813 2006-07-29  Bruno Haible  <bruno@clisp.org>
37814
37815         * gnulib-tool (SORT): New variable.
37816         (func_usage): Undocument --assume-autoconf option.
37817         Remove --assume-autoconf option handling.
37818         (autoconf_minversion): Determine from the contents of configure.ac.
37819         (func_import): Remove autoconf_minversion handling.
37820         Suggested by Eric Blake.
37821
37822 2006-07-29  Bruno Haible  <bruno@clisp.org>
37823
37824         * doc/gnulib-tool.texi (gl_LIBTOOL): Mention --no-libtool option.
37825
37826 2006-07-29  Bruno Haible  <bruno@clisp.org>
37827
37828         * config/srclist.txt (*setenv.[ch]): Remove rules.
37829
37830 2006-07-28  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
37831
37832         * m4/inet_pton.m4, inet_ntop.m4: Check for netinet/in.h too.
37833
37834 2006-07-28  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
37835
37836         * lib/inet_ntop.h, inet_pton.h: Need to include netinet/in.h before
37837         arpa/inet.h.
37838
37839 2006-07-28  Simon Josefsson  <jas@extundo.com>
37840
37841         * modules/inet_ntop (Depends-on): Depend on arpa_inet.
37842         * modules/inet_pton (Depends-on): Likewise.
37843
37844 2006-07-28  Simon Josefsson  <jas@extundo.com>
37845
37846         * m4/netinet_in_h.m4: New file.
37847
37848 2006-07-28  Simon Josefsson  <jas@extundo.com>
37849
37850         * lib/inet_ntop.h, inet_pton.h: No need to guard netinet/in.h
37851         #include's.
37852
37853 2006-07-28  Simon Josefsson  <jas@extundo.com>
37854
37855         * lib/inet_ntop.h, inet_pton.h: No need to guard arpa/inet.h
37856         #include's.
37857
37858 2006-07-28  Paul Eggert  <eggert@cs.ucla.edu>
37859
37860         * lib/modechange.c (mode_compile): Numeric modes now affect setuid and
37861         setgid on directories only if they set these bits.
37862         * lib/modechange.h: Remove obsolete comment about masks.
37863
37864 2006-07-28  Eric Blake  <ebb9@byu.net>
37865
37866         * lib/regex_internal.h (struct re_dfa_t) [!_LIBC]: Avoid invalid C89
37867         macro expansion.
37868
37869 2006-07-28  Bruno Haible  <bruno@clisp.org>
37870
37871         * lib/inet_ntop.h, inet_pton.h: Use #if HAVE* instead of #ifdef HAVE*.
37872
37873 2006-07-28  Bruno Haible  <bruno@clisp.org>
37874
37875         * m4/mbchar.m4 (gl_MBCHAR): Also test for iswcntrl.
37876
37877 2006-07-28  Bruno Haible  <bruno@clisp.org>
37878
37879         * lib/mbchar.h (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit,
37880         iswgraph, iswlower, iswprint, iswpunct, iswspace, iswupper, iswxdigit):
37881         Define fallbacks.
37882         Avoids link error on FreeBSD 4.x.
37883         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
37884
37885         * lib/wcwidth.h (iswprint): Assume an ASCII compatible wide character
37886         encoding.
37887         * lib/mbswidth.c (iswcntrl): Likewise.
37888
37889 2006-07-27  Bruno Haible  <bruno@clisp.org>
37890
37891         * m4/stdint.m4 (gl_STDINT_H): Define __STDC_CONSTANT_MACROS during the
37892         test.
37893
37894 2006-07-27  Bruno Haible  <bruno@clisp.org>
37895
37896         * lib/stdint_.h (INT*_C, UINT*_C) [C++]: Define these if
37897         __STDC_CONSTANT_MACROS is defined, not if __STDC_LIMIT_MACROS is
37898         defined.
37899
37900 2006-07-26  Eric Blake  <ebb9@byu.net>
37901
37902         * m4/unistd-safer.m4 (gl_UNISTD_SAFER): Check for missing pipe.
37903
37904 2006-07-26  Eric Blake  <ebb9@byu.net>
37905
37906         * lib/mkstemp-safer.c [! HAVE_MKSTEMP]: Add prototype for platforms
37907         like mingw that lack mkstemp.
37908         * lib/pipe-safer.c (pipe_safer) [!HAVE_FUNC_PIPE]: Provide fallback to
37909         avoid compilation warning on mingw.
37910
37911 2006-07-26  Bruno Haible  <bruno@clisp.org>
37912
37913         * m4/stdint.m4 (gl_STDINT_H): Also verify the existence of the macros
37914         INT*_MIN, INT_LEAST*_MAX, INT_LEAST*_MIN, UINT_LEAST*_MAX,
37915         INT_FAST*_MIN, INTPTR_MIN.
37916
37917 2006-07-25  Bruno Haible  <bruno@clisp.org>
37918
37919         * modules/version-etc (Depends-on): Add stdarg.
37920
37921 2006-07-25  Bruno Haible  <bruno@clisp.org>
37922
37923         * m4/stdint.m4 (gl_INTEGER_TYPE_SUFFIX): Avoid 'eval' in front of
37924         complex commands.
37925
37926 2006-07-25  Bruno Haible  <bruno@clisp.org>
37927
37928         * lib/version-etc.c (version_etc_va): Use va_copy, assumed to be
37929         defined in <stdarg.h> or config.h.
37930
37931 2006-07-24  Paul Eggert  <eggert@cs.ucla.edu>
37932
37933         * m4/stdio-safer.m4 (gl_FOPEN_SAFER, gl_TMPFILE_SAFER): New macros.
37934         (gl_STDIO_SAFER): Remove.
37935
37936 2006-07-24  Paul Eggert  <eggert@cs.ucla.edu>
37937
37938         * MODULES.html.sh (File stream based Input/Output):
37939         Add fopen-safer, tmpfile-safer; remove stdio-safer.
37940         * modules/getusershell (Depends-on): Change stdio-safer to fopen-safer.
37941         * modules/fopen-safer, modules/tmpfile-safer: New files.
37942         * modules/stdio-safer: Remove.
37943
37944 2006-07-24  Bruno Haible  <bruno@clisp.org>
37945
37946         * modules/tmpdir: New file.
37947         * MODULES.html.sh (File system functions): Add it.
37948
37949 2006-07-24  Bruno Haible  <bruno@clisp.org>
37950
37951         * modules/javacomp (Depends-on): Add unistd, javaversion, binary-io,
37952         getline, pathname, fwriteerror, clean-temp, xvasprintf, strstr.
37953
37954 2006-07-24  Bruno Haible  <bruno@clisp.org>
37955
37956         * modules/clean-temp: New file.
37957
37958 2006-07-24  Bruno Haible  <bruno@clisp.org>
37959
37960         * m4/tmpdir.m4: New file, from GNU gettext.
37961
37962 2006-07-24  Bruno Haible  <bruno@clisp.org>
37963
37964         * lib/tmpdir.h: New file, from GNU gettext.
37965         * lib/tmpdir.c: New file, from GNU gettext.
37966
37967 2006-07-24  Bruno Haible  <bruno@clisp.org>
37968
37969         * lib/clean-temp.h: New file, from GNU gettext.
37970         * lib/clean-temp.c: New file, from GNU gettext.
37971
37972 2006-07-23  Eric Blake  <ebb9@byu.net>
37973
37974         * modules/stdio-safer (Files): Add tmpfile-safer.c.
37975         (Depends-on): Add binary-io.
37976
37977 2006-07-23  Eric Blake  <ebb9@byu.net>
37978
37979         * m4/stdio-safer.m4 (gl_STDIO_SAFER): Add tmpfile-safer.c.
37980
37981 2006-07-23  Eric Blake  <ebb9@byu.net>
37982
37983         * lib/tmpfile-safer.c: New file.
37984         * lib/stdio-safer.h (fopen_safer): Add prototype.
37985         * lib/stdio--.h (tmpfile): Make safer.
37986
37987 2006-07-23  Bruno Haible  <bruno@clisp.org>
37988
37989         * lib/gl_anylinked_list2.h (ASYNCSAFE): New macro.
37990         (gl_linked_add_first, gl_linked_add_last, gl_linked_add_before,
37991         gl_linked_add_after, gl_linked_add_at, gl_linked_remove_node,
37992         gl_linked_remove_at): Use it.
37993
37994 2006-07-22  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
37995         and Simon Josefsson <jas@extundo.com>
37996
37997         * lib/getaddrinfo.h (AI_PASSIVE): Make sure it is defined.
37998
37999         * lib/getaddrinfo.c (getaddrinfo): Support AI_PASSIVE.
38000
38001 2006-07-22  Paul Eggert  <eggert@cs.ucla.edu>
38002
38003         * modules/close-stream: New file.
38004         * modules/closeout (Description): Make it clear that it exits
38005         with a diagnostic on error.
38006         (Depends-on): Add close-stream.  Remove fpending, stdbool.
38007         * MODULES.html.sh (File stream based Input/Output): Add close-stream.
38008
38009 2006-07-22  Paul Eggert  <eggert@cs.ucla.edu>
38010
38011         * m4/close-stream.m4: New file.
38012
38013 2006-07-22  Paul Eggert  <eggert@cs.ucla.edu>
38014
38015         * lib/close-stream.c, lib/close-stream.h: New files.
38016
38017 2006-07-22  Bruno Haible  <bruno@clisp.org>
38018
38019         Merge from GNU gettext 0.15.
38020
38021         2006-05-01  Bruno Haible  <bruno@clisp.org>
38022
38023                 * build-aux/javacomp.sh.in: Update for changed javacomp.m4.
38024
38025         2006-07-22  Bruno Haible  <bruno@clisp.org>
38026
38027                 * modules/javaversion: New file.
38028                 * MODULES.html.sh (Java): Add javaversion.
38029
38030         2006-03-12  Bruno Haible  <bruno@clisp.org>
38031
38032                 * build-aux/javaexec.sh.in: Update for changed javaexec.m4.
38033
38034         2005-12-04  Bruno Haible  <bruno@clisp.org>
38035
38036                 * build-aux/csharpexec.sh.in: Add support for 'clix' launcher
38037                 (untested).
38038
38039         2006-06-21  Bruno Haible  <bruno@clisp.org>
38040
38041                 Avoid warnings from recent versions of mcs.
38042                 * build-aux/csharpcomp.sh.in (options_mcs): Don't use options
38043                 -o, -L, -r any more. Use options documented since mcs-1.0
38044                 instead. Similarly for -g.
38045
38046         2005-12-04  Bruno Haible  <bruno@clisp.org>
38047
38048                 * build-aux/csharpcomp.sh.in: Suffix for resources is
38049                 .resources, not .resource.
38050
38051         2005-07-09  Bruno Haible  <bruno@clisp.org>
38052
38053                 * build-aux/csharpcomp.sh.in (options_csc): For -l option,
38054                 add a .dll suffix.
38055                 Reported by Mark Junker <mjscod@gmx.de>.
38056
38057         2006-07-22  Bruno Haible  <bruno@clisp.org>
38058
38059                 * modules/gettext: Upgrade to gettext-0.15.
38060                 (Files): Remove m4/isc-posix.m4. Add m4/lock.m4,
38061                 m4/visibility.m4.
38062                 Replace m4/inttypes.m4 with m4/inttypes-h.m4.
38063
38064 2006-07-22  Bruno Haible  <bruno@clisp.org>
38065
38066         Merge from GNU gettext 0.15.
38067
38068         2006-03-25  Bruno Haible  <bruno@clisp.org>
38069
38070                 * lib-link.m4 (AC_LIB_LINKFLAGS_FROM_LIBS): New macro.
38071
38072         2006-07-21  Bruno Haible  <bruno@clisp.org>
38073
38074                 * javacomp.m4 (gt_JAVACOMP): Convert target_version "null" to
38075                 "1.1".
38076
38077         2006-05-09  Bruno Haible  <bruno@clisp.org>
38078
38079                 * javacomp.m4 (gt_JAVACOMP): On Cygwin, set
38080                 CLASSPATH_SEPARATOR to a semicolon. Use CLASSPATH_SEPARATOR
38081                 for the conftestver execution.
38082
38083         2006-05-01  Bruno Haible  <bruno@clisp.org>
38084
38085                 * javacomp.m4 (gt_JAVACOMP): Accept a source-version and an
38086                 optional target-version argument. Verify that the compiler
38087                 groks source of the specified source-version, or add -source
38088                 option as necessary. Verify that the compiler produces
38089                 bytecode in the specified target-version, or add -target and
38090                 -source options as necessary. Make the result of the test
38091                 available as variable CONF_JAVAC. Also log error output in
38092                 config.log.
38093
38094         2006-03-11  Bruno Haible  <bruno@clisp.org>
38095
38096                 * javacomp.m4 (gt_JAVACOMP): Treat gcj-4.x like gcj-3.x.
38097
38098         2006-05-09  Bruno Haible  <bruno@clisp.org>
38099
38100                 * javaexec.m4 (gt_JAVAEXEC): On Cygwin, set
38101                 CLASSPATH_SEPARATOR to a semicolon.
38102
38103         2006-03-12  Bruno Haible  <bruno@clisp.org>
38104
38105                 * javaexec.m4 (gt_JAVAEXEC): Make the result of the test
38106                 available as variable CONF_JAVA, for subsequent autoconf
38107                 tests. Also log error output in config.log.
38108
38109         2006-07-19  Bruno Haible  <bruno@clisp.org>
38110
38111                 * getline.m4 (AM_FUNC_GETLINE): When cross-compiling, assume
38112                 that getline works on glibc2 systems. Needed to avoid trouble
38113                 in relocatable.c.
38114                 Reported by Nils Magnus Larsgard <nmlarsgaard@atmel.no>.
38115
38116         2005-12-04  Bruno Haible  <bruno@clisp.org>
38117
38118                 * csharpexec.m4 (gt_CSHARPEXEC): Add support for 'clix'
38119                 launcher (untested).
38120
38121         2005-12-04  Bruno Haible  <bruno@clisp.org>
38122
38123                 * csharpcomp.m4 (gt_CSHARPCOMP): Also set CSHARPCOMPFLAGS.
38124
38125         2006-07-22  Bruno Haible  <bruno@clisp.org>
38126
38127                 * gettext.m4: Update from GNU gettext-0.15.
38128                 * nls.m4: Likewise.
38129                 * po.m4: Likewise.
38130                 * inttypes-pri.m4: Likewise.
38131                 * inttypes-h.m4: Renamed from inttypes.m4.
38132                 (gl_HEADER_INTTYPES_H): Renamed from gt_HEADER_INTTYPES_H.
38133
38134 2006-07-22  Bruno Haible  <bruno@clisp.org>
38135
38136         Merge from GNU gettext 0.15.
38137
38138         2005-07-05  Bruno Haible  <bruno@clisp.org>
38139
38140                 * printf-args.c (printf_fetchargs): Work around broken
38141                 definition of wint_t on mingw.
38142
38143         2005-02-12  Bruno Haible  <bruno@clisp.org>
38144
38145                 * xallocsa.h: Add extern "C" for C++.
38146
38147         2006-05-17  Bruno Haible  <bruno@clisp.org>
38148
38149                 Cygwin portability.
38150                 * progreloc.c (WIN32_NATIVE): Renamed from WIN32.
38151
38152         2006-04-30  Bruno Haible  <bruno@clisp.org>
38153
38154                 * progreloc.c: Include <mach-o/dyld.h> if available.
38155                 (find_executable): Use _NSGetExecutablePath when possible.
38156
38157         2006-05-06  Charles Wilson  <cygwin@cwilson.fastmail.fm>
38158
38159                 * progreloc.c (maybe_executable) [CYGWIN]: Use the access()
38160                 function.
38161
38162         2005-12-29  Bruno Haible  <bruno@clisp.org>
38163
38164                 * progreloc.c (set_program_name_and_installdir): Fix
38165                 compilation error.
38166
38167         2005-12-04  Bruno Haible  <bruno@clisp.org>
38168
38169                 Cygwin portability.
38170                 * progreloc.c: Include <windows.h> also on Cygwin.
38171                 (find_executable): Add support for Cygwin.
38172                 (set_program_name_and_installdir): Handle also platforms with
38173                 nonempty EXEEXT.
38174
38175         2006-07-11  Bruno Haible  <bruno@clisp.org>
38176
38177                 * javacomp.c: Fix a comment.
38178                 Reported by Jim Meyering.
38179
38180         2006-04-30  Bruno Haible  <bruno@clisp.org>
38181
38182                 * javacomp.h (compile_java_class): Add source_version,
38183                 target_version arguments.
38184                 * javacomp.c: Rewritten to choose only a compiler that
38185                 respects the specified source_version and target_version.
38186
38187         2006-06-27  Bruno Haible  <bruno@clisp.org>
38188
38189                 Assume correct S_ISDIR macro.
38190                 * mkdtemp.c: Remove test of STAT_MACROS_BROKEN.
38191
38192         2006-07-22  Bruno Haible  <bruno@clisp.org>
38193
38194                 * javaversion.h: New file, from GNU gettext.
38195                 * javaversion.c: New file, from GNU gettext.
38196                 * javaversion.java: New file, from GNU gettext.
38197                 * javaversion.class: New file, from GNU gettext.
38198
38199         2006-05-17  Bruno Haible  <bruno@clisp.org>
38200
38201                 Cygwin portability.
38202                 * javaexec.c (execute_java_class): Test for jview program
38203                 also on Cygwin.
38204
38205         2006-04-09  Bruno Haible  <bruno@clisp.org>
38206
38207                 * fatal-signal.c: Don't include string.h.
38208                 (at_fatal_signal): Use a copying loop instead of memcpy.
38209
38210         2005-12-04  Bruno Haible  <bruno@clisp.org>
38211
38212                 * csharpexec.c: Add support for 'clix' launcher (untested).
38213                 (execute_csharp_using_sscli): New function.
38214                 (execute_csharp_program): Call it.
38215
38216         2006-06-21  Bruno Haible  <bruno@clisp.org>
38217
38218                 Avoid warnings from recent versions of mcs.
38219                 * csharpcomp.c (compile_csharp_using_mono): Don't use options
38220                 -o, -L, -r any more. Use options documented since mcs-1.0
38221                 instead. Similarly for -g.
38222
38223         2005-07-09  Bruno Haible  <bruno@clisp.org>
38224
38225                 * csharpcomp.c (compile_csharp_using_sscli): For -l option,
38226                 add a .dll suffix.
38227                 Reported by Mark Junker <mjscod@gmx.de>.
38228
38229         2006-06-17  Bruno Haible  <bruno@clisp.org>
38230
38231                 * config.charset: Update for NetBSD 3.0.
38232
38233         2006-05-17  Bruno Haible  <bruno@clisp.org>
38234
38235                 Cygwin portability.
38236                 * localcharset.c (WIN32_NATIVE): Renamed from WIN32.
38237
38238         2006-05-16  Bruno Haible  <bruno@clisp.org>
38239
38240                 * localcharset.c [CYGWIN]: Include <windows.h>.
38241                 (get_charset_aliases): For Cygwin, return the same CPxxx
38242                 aliases list as under WIN32.
38243                 (locale_charset) [CYGWIN]: Try to retrieve the encoding from
38244                 the environment variables. Fall back to GetACP().
38245
38246         2006-04-05  Bruno Haible  <bruno@clisp.org>
38247
38248                 * config.charset: Update Juan Manuel Guerrero's address.
38249
38250         2005-02-12  Bruno Haible  <bruno@clisp.org>
38251
38252                 * allocsa.h: Add extern "C" for C++.
38253
38254         2005-02-10  Bruno Haible  <bruno@clisp.org>
38255
38256                 * allocsa.h (sa_alignof): Define differently with AIX xlc, to
38257                 avoid a bug of this compiler on AIX 3.2.5 dealing with enums.
38258
38259         2006-07-22  Bruno Haible  <bruno@clisp.org>
38260
38261                 * gettext.h: Update to GNU gettext-0.15.
38262
38263 2006-07-22  Bruno Haible  <bruno@clisp.org>
38264
38265         * config/srclist.txt: Resync printf-args.c, vasnprintf.c,
38266         localcharset.c, mkdtemp.c, config.rpath, lib-ld.m4, lib-link.m4,
38267         lib-prefix.m4, longdouble.m4, ssize_t.m4.
38268
38269 2006-07-21  Eric Blake  <ebb9@byu.net>
38270
38271         * modules/stdlib-safer: New file.
38272         * MODULES.html.sh (File stream based Input/Output): Add
38273         stdlib-safer.
38274
38275 2006-07-21  Eric Blake  <ebb9@byu.net>
38276
38277         * lib/stdlib-safer.h: New file from coreutils, required by
38278         stdlib--.h.
38279
38280 2006-07-20  Paul Eggert  <eggert@cs.ucla.edu>
38281
38282         * gnulib-tool (func_usage): Document --assume-autoconf='latest-stable'.
38283
38284 2006-07-20  Bruno Haible  <bruno@clisp.org>
38285
38286         * gnulib-tool: Recognize new option --assume-autoconf.
38287         (autoconf_minversion): New variable.
38288         (func_get_filelist): Use it to decide whether to add onceonly_2_57.m4.
38289
38290 2006-07-20  Bruno Haible  <bruno@clisp.org>
38291
38292         * MODULES.html.sh (func_all_modules): Add a missing func_begin_table.
38293
38294 2006-07-19  Derek R. Price  <derek@ximbiot.com>
38295
38296         * lib/getaddrinfo.h: Don't define unimplemented AI_* flags.
38297         Reindent and repaginate.
38298
38299 2006-07-19  Derek Price  <derek@ximbiot.com>
38300
38301         * doc/gnulib.texi (Libtool and Windows):  Eliminate passive voice.
38302         Correct grammar.
38303
38304 2006-07-17  Bruno Haible  <bruno@clisp.org>
38305
38306         * modules/list: New file.
38307         * modules/array-list: New file.
38308         * modules/carray-list, modules/carray-list-tests: New files.
38309         * modules/linked-list, modules/linked-list-tests: New files.
38310         * modules/avltree-list, modules/avltree-list-tests: New files.
38311         * modules/rbtree-list, modules/rbtree-list-tests: New files.
38312         * modules/linkedhash-list, modules/linkedhash-list-tests: New files.
38313         * modules/avltreehash-list, modules/avltreehash-list-tests: New files.
38314         * modules/rbtreehash-list, modules/rbtreehash-list-tests: New files.
38315         * modules/oset: New file.
38316         * modules/array-oset: New file.
38317         * modules/avltree-oset, modules/avltree-oset-tests: New files.
38318         * modules/rbtree-oset, modules/rbtree-oset-tests: New files.
38319         * tests/test-carray_list.c: New file.
38320         * tests/test-linked_list.c: New file.
38321         * tests/test-avltree_list.c: New file.
38322         * tests/test-rbtree_list.c: New file.
38323         * tests/test-linkedhash_list.c: New file.
38324         * tests/test-avltreehash_list.c: New file.
38325         * tests/test-rbtreehash_list.c: New file.
38326         * tests/test-avltree_oset.c: New file.
38327         * tests/test-rbtree_oset.c: New file.
38328         * MODULES.html.sh (Container data structures): New section.
38329
38330 2006-07-17  Bruno Haible  <bruno@clisp.org>
38331
38332         * m4/gl_list.m4: New file.
38333
38334 2006-07-17  Bruno Haible  <bruno@clisp.org>
38335
38336         * lib/gl_list.h: New file.
38337         * lib/gl_list.c: New file.
38338         * lib/gl_array_list.h: New file.
38339         * lib/gl_array_list.c: New file.
38340         * lib/gl_carray_list.h: New file.
38341         * lib/gl_carray_list.c: New file.
38342         * lib/gl_linked_list.h: New file.
38343         * lib/gl_linked_list.c: New file.
38344         * lib/gl_anylinked_list1.h: New file.
38345         * lib/gl_anylinked_list2.h: New file.
38346         * lib/gl_avltree_list.h: New file.
38347         * lib/gl_avltree_list.c: New file.
38348         * lib/gl_anyavltree_list1.h: New file.
38349         * lib/gl_anyavltree_list2.h: New file.
38350         * lib/gl_rbtree_list.h: New file.
38351         * lib/gl_rbtree_list.c: New file.
38352         * lib/gl_anyrbtree_list1.h: New file.
38353         * lib/gl_anyrbtree_list2.h: New file.
38354         * lib/gl_anytree_list1.h: New file.
38355         * lib/gl_anytree_list2.h: New file.
38356         * lib/gl_linkedhash_list.h: New file.
38357         * lib/gl_linkedhash_list.c: New file.
38358         * lib/gl_anyhash_list1.h: New file.
38359         * lib/gl_anyhash_list2.h: New file.
38360         * lib/gl_avltreehash_list.h: New file.
38361         * lib/gl_avltreehash_list.c: New file.
38362         * lib/gl_rbtreehash_list.h: New file.
38363         * lib/gl_rbtreehash_list.c: New file.
38364         * lib/gl_anytreehash_list1.h: New file.
38365         * lib/gl_anytreehash_list2.h: New file.
38366
38367         * lib/gl_oset.h: New file.
38368         * lib/gl_oset.c: New file.
38369         * lib/gl_array_oset.h: New file.
38370         * lib/gl_array_oset.c: New file.
38371         * lib/gl_avltree_oset.h: New file.
38372         * lib/gl_avltree_oset.c: New file.
38373         * lib/gl_rbtree_oset.h: New file.
38374         * lib/gl_rbtree_oset.c: New file.
38375         * lib/gl_anytree_oset.h: New file.
38376
38377 2006-07-16  Paul Eggert  <eggert@cs.ucla.edu>
38378
38379         * m4/mkancesdirs.m4: New file.
38380         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Mention dirchownmod.c,
38381         dirchownmod.h.  Don't require AC_FUNC_ALLOCA, gl_AFS, gl_CHDIR_SAFER;
38382         no longer needed.  Require gl_FUNC_LCHOWN, since dirchownmod.c needs
38383         it.
38384
38385 2006-07-16  Paul Eggert  <eggert@cs.ucla.edu>
38386
38387         * lib/dirchownmod.c, lib/dirchownmod.h, lib/mkancesdirs.c:
38388         * lib/mkancesdirs.h: New files.
38389         * lib/mkdir-p.c: Don't include alloca.h, stdio.h, sys/types.h,
38390         unistd.h, string.h, chdir-safer.h, dirname.h, lchmod.h, lchown.h,
38391         save-cwd.h.  Instead, include dirchownmod.h and mkancesdirs.h.
38392         (make_dir_parents): New args MAKE_ANCESTOR, OPTIONS, ANNOUNCE,
38393         MODE_BITS.  Remove options VERBOSE_FMT_STRING, CWD_ERRNO.  All
38394         callers changed.  Revamp internals significantly, by not
38395         attempting to create directories that are temporarily more
38396         permissive than the final results.  Do not attempt to use
38397         save_cwd/restore_cwd; it isn't worth it for mkdir and install.
38398         This removes some race conditions, fixes some bugs, and simplifies
38399         things.  Use new dirchownmod function to do owner and mode changes.
38400         * lib/mkdir-p.h: Likewise.
38401         * lib/modechange.c (octal_to_mode): New function.
38402         (struct mode_change): New member mentioned.
38403         (make_node_op_equals): New arg mentioned.  All callers changed.
38404         (mode_compile): Keep track of which mode bits the user has explicitly
38405         mentioned.
38406         (mode_adjust): New arg DIR, so that we implement the X op correctly.
38407         New arg PMODE_BITS, to keep track of which mode bits the user
38408         mentioned; it treats S_ISUID and S_ISGID speciall.
38409         All callers changed.
38410         * lib/modechange.h: Likewise.
38411
38412 2006-07-16  Paul Eggert  <eggert@cs.ucla.edu>
38413
38414         * MODULES.html.sh: Add mkancestors.
38415         * modules/mkancesdirs: New module.
38416         * modules/mkdir-p (Files): Remove lib/chdir-safer.c, lib/chdir-safer.h,
38417         lib/same-inode.h, m4/afs.m4, m4/chdir-safer.m4.
38418         The chdir-safer and afs files are now orphans; I'll remove them
38419         unless someone speaks up.
38420         Add lib/dirchownmod.c, lib/dirchownmod.h.
38421         (Depends-on): Remove alloca, chown, save-cwd, dirname.
38422         Add lchown, mkancesdirs.
38423         (Maintainer): Add self.
38424
38425 2006-07-15  Karl Berry  <karl@gnu.org>
38426
38427         * gnulib-tool: help message wording/arrangement.
38428
38429 2006-07-14  Simon Josefsson  <jas@extundo.com>
38430
38431         * doc/gnulib.texi (Libtool and Windows): New section.
38432
38433 2006-07-12  Simon Josefsson  <jas@extundo.com>
38434
38435         * modules/gendocs (License): Fix license, approved by Karl.
38436
38437 2006-07-12  Eric Blake  <ebb9@byu.net>
38438
38439         * MODULES.html.sh: Add gendocs.
38440
38441 2006-07-11  Eric Blake  <ebb9@byu.net>
38442
38443         * modules/fdl: New module, to install doc/fdl.texi.
38444         * MODULES.html.sh: Add new section for documentation modules.
38445         * gnulib-tool: Avoid space-tab.
38446         (--doc-base): New option, to manage files from doc.
38447
38448 2006-07-11  Eric Blake  <ebb9@byu.net>
38449
38450         * m4/absolute-header.m4: Fix comments to match recent change.
38451
38452 2006-07-11  Eric Blake  <ebb9@byu.net>
38453
38454         * gnulib-tool: List --doc-base before --tests-base.
38455
38456 2006-07-11  Derek R. Price  <derek@ximbiot.com>
38457
38458         * lib/glob.c: s/NAMLEN/_D_EXACT_NAMLEN/.
38459
38460 2006-07-11  Bruno Haible  <bruno@clisp.org>
38461
38462         * README: Mention where to put documentation.
38463
38464 2006-07-10  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
38465
38466         * doc/functions.texi, gnulib-tool.texi, gnulib.texi: Fix some typos.
38467
38468 2006-07-10  Paul Eggert  <eggert@cs.ucla.edu>
38469
38470         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Like today's change
38471         to stdint.m4.
38472
38473 2006-07-10  Paul Eggert  <eggert@cs.ucla.edu>
38474
38475         * m4/stdint.m4 (gl_STDINT_H): Like yesterday's change to
38476         absolute-header.m4.  Also, set ABSOLUTE_STDINT_H to a string
38477         "no/such/file/stdint.h" when there is no such file, so that
38478         the resulting C code can be parsed by dodgy compilers.
38479         Problems reported by Bob Proulx.
38480
38481 2006-07-10  Derek R. Price  <derek@ximbiot.com>
38482
38483         * lib/backupfile.c, dirfd.h, fts.c, getcwd.c, glob.c, glob_.h:
38484         Ignore the obsolescent !HAVE_DIRENT_H case.  Consolidate NAMLEN
38485         macros into the GNU _D_EXACT_NAMLEN.
38486         * lib/savedir.c:  Likewise.
38487         (savedirstream): Use _D_EXACT_NAMLEN in preference to strlen.
38488
38489 2006-07-10  Derek R. Price  <derek@ximbiot.com>
38490         and Paul Eggert  <eggert@cs.ucla.edu>
38491
38492         * m4/backupfile.m4, d-ino.m4, d-type.m4, dirfd.m4, fts.m4, getcwd.m4:
38493         * m4/savedir.m4:
38494         Ignore the obsolescent !HAVE_DIRENT_H case.  Consolidate NAMLEN
38495         macros into the GNU _D_EXACT_NAMLEN.
38496
38497 2006-07-09  Paul Eggert  <eggert@cs.ucla.edu>
38498
38499         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Use "" rather than <>
38500         around the absolute name, to work around a problem with the HP-UX
38501         11.23 native C compiler, reported by Bob Proulx.
38502
38503 2006-07-09  Paul Eggert  <eggert@cs.ucla.edu>
38504
38505         * doc/maintain.texi, make-stds.texi: Sync from
38506         <http://savannah.gnu.org/projects/gnustandards>.
38507
38508 2006-07-09  Paul Eggert  <eggert@cs.ucla.edu>
38509
38510         * build-aux/depcomp, build-aux/install-sh: Sync from Automake.
38511
38512 2006-07-09  Jim Meyering  <jim@meyering.net>
38513
38514         * m4/glob.m4: Remove a doubled word in a comment.
38515
38516 2006-07-09  Jim Meyering  <jim@meyering.net>
38517
38518         * lib/argp-pv.c: Remove a doubled word in a comment.
38519         * lib/check-version.c (check_version): Likewise.
38520         * lib/javacomp.c (compile_java_class): Likewise.
38521
38522 2006-07-08  Paul Eggert  <eggert@cs.ucla.edu>
38523
38524         * gnulib-tool (func_get_filelist): Don't echo m4/onceonly_2_57.m4,
38525         for the benefit of people using Autoconf 2.60.  If you want to
38526         support older Autoconf versions you can copy m4/onceonly_2_57.m4
38527         (or m4/onceonly.m4, if pre-2.57) manually.
38528
38529 2006-07-08  Jim Meyering  <jim@meyering.net>
38530
38531         * m4/link-follow.m4: Remove one of two adjacent "whether"s in a
38532         comment.
38533         * m4/getopt.m4: Remove one of two adjacent "your"s in a comment.
38534         * m4/regex.m4 (gl_REGEX): Remove one of two adjacent "the"s in a
38535         comment.
38536
38537 2006-07-08  Jim Meyering  <jim@meyering.net>
38538
38539         * lib/getndelim2.h (getndelim2): Remove doubled "after" in comment.
38540
38541 2006-07-07  Simon Josefsson  <jas@extundo.com>
38542
38543         * tests/test-crc.c: Change expected crc value, the test vector
38544         were probably computed using the old broken crc.c?
38545
38546 2006-07-06  Simon Josefsson  <jas@extundo.com>
38547
38548         * modules/sys_socket (Files): Add m4/sockpfaf.m4 (this module is
38549         now the canonical place for the M4 file).
38550
38551         * modules/getaddrinfo (Files): Remove m4/sockpfaf.m4, we get it
38552         from the sys_socket dependency now.
38553
38554         * modules/inet_pton (Files): Ditto.
38555
38556         * modules/inet_ntop (Files): Ditto.
38557
38558 2006-07-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
38559
38560         * modules/getusershell (configure.ac): Use gl_FUNC_GETUSERSHELL,
38561         not gl_PREREQ_GETUSERSHELL.
38562
38563 2006-07-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
38564
38565         * m4/_inttypes_h.m4 (gl_INTTYPES_H): Use AC_CHECK_DECLS_ONCE
38566         with only one argument, for Autoconf 2.60.
38567         * m4/fileblocks.m4 (gl_PREREQ_FILEBLOCKS): AC_CHECK_DECLS_ONCE may
38568         expand to nothing, so add a shell command to avoid syntax error.
38569         * m4/getpass.m4 (gl_PREREQ_GETPASS): Likewise.
38570
38571 2006-07-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
38572
38573         * lib/strtod.c (strtod): cast the argument of tolower to unsigned char.
38574
38575 2006-07-06  Paul Eggert  <eggert@cs.ucla.edu>
38576
38577         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Don't check for getenv decl;
38578         no longer needed.  Check for isblank decl.
38579         * m4/mkstemp.m4 (gl_PREREQ_TEMPNAME): Don't check for getenv decl.
38580         * m4/regex.m4 (gl_PREREQ_REGEX): Dheck for isblank decl instead
38581         of existence.
38582
38583 2006-07-06  Paul Eggert  <eggert@cs.ucla.edu>
38584
38585         * lib/getloadavg.c: Use __VMS, not VMS.
38586         * lib/getopt.c: Likewise.
38587         * lib/getpagesize.h: Likewise.
38588         * lib/glob.c: Remove most VMS cruft; it hasn't been tested for a while
38589         and probably does not work.
38590
38591 2006-07-06  Paul Eggert  <eggert@cs.ucla.edu>
38592
38593         * lib/.cppi-disable: Add wcwidth.
38594         * lib/fnmatch.c (ISBLANK): Remove.  All uses changed to isblank.
38595         (isblank) [! (defined isblank || HAVE_DECL_ISBLANK)]: New macro.
38596         (ISGRAPH): Remove.  All uses changed to isgraph.
38597         (FOLD) [!defined _LIBC]: Remove special case.
38598         * lib/getdate.y (lookup_word): Remove no-longer-needed call to islower.
38599         * lib/regex_internal.h (isblank): Depend on HAVE_DECL_ISBLANK, not
38600         HAVE_ISBLANK.
38601         * lib/strftime.c (TOLOWER, TOUPPER) [!defined _LIBC]: Remove special
38602         case.
38603
38604 2006-07-06  Jim Hyslop  <jhyslop@dreampossible.ca>  (tiny change)
38605
38606         * lib/getaddrinfo.c: Changes to compile under MSVC6: changed
38607         '#if WIN32_NATIVE' to '#ifdef' & moved WSAAPI macro inside
38608         brackets.  Other minor changes to suppress some compiler
38609         warnings.
38610
38611 2006-07-06  Derek R. Price  <derek@ximbiot.com>
38612         and Paul Eggert  <eggert@cs.ucla.edu>
38613
38614         * m4/backupfile.m4 (gl_BACKUPFILE): Check for dirent.h, instead
38615         of invoking obsolescent AC_HEADER_DIRENT macro.
38616         * m4/d-ino.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_INO): Likewise.
38617         * m4/d-type.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Likewise.
38618         * m4/dirfd.m4 (gl_FUNC_DIRFD): Likewise.
38619         * m4/fts.m4 (gl_FUNC_FTS_CORE): Likewise.
38620         * m4/getcwd.m4 (gl_PREREQ_GETCWD): Likewise.
38621         * m4/glob.m4 (gl_PREREQ_GLOB): Likewise.
38622         * m4/savedir.m4 (gl_SAVEDIR): Likewise.
38623         * m4/readdir.m4: Remove; no longer needed.
38624
38625 2006-07-06  Derek R. Price  <derek@ximbiot.com>
38626         and Paul Eggert  <eggert@cs.ucla.edu>
38627
38628         * lib/backupfile.c [HAVE_DIRENT_H && ! HAVE_NDIR_H]:
38629         Don't worry about this obsolete case any more.
38630         (HAVE_DIR): Remove.  All uses removed; we now assume you can read
38631         directories.
38632         * lib/dirfd.h [HAVE_DIRENT_H && ! HAVE_NDIR_H]: Don't
38633         worry about this obsolete case any more.
38634         * lib/fts.c: Likewise.
38635         * lib/getcwd.c: Likewise.
38636         * lib/glob.h: Likewise.
38637         * lib/savedir.c: Likewise.
38638
38639 2006-07-05  Paul Eggert  <eggert@cs.ucla.edu>
38640
38641         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Use AC_CHECK_DECLS_ONCE
38642         rather than AC_CHECK_DECLS for strtoimax and strtoumax.
38643         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Remove; no longer
38644         needed.
38645         All uses removed.
38646         * m4/strtol.m4 (gl_PREREQ_STRTOL): Likewise.
38647         * m4/strtoul.m4 (gl_PREREQ_STRTOUL): Likewise.
38648         * m4/exclude.m4 (gl_EXCLUDE): Don't check for isascii; no longer
38649         needed.
38650         * m4/getdate.m4 (gl_GETDATE): Likewise.
38651         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Likewise.
38652         * m4/memcasecmp.m4 (gl_MEMCASECMP): Likewise.
38653         * m4/strtod.m4 (gl_FUNC_STRTOD): Likewise.
38654         * m4/strtol.m4 (gl_PREREQ_STRTOL): Likewise.
38655         * m4/strtoul.m4 (gl_PREREQ_STRTOUL): Likewise.
38656         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
38657         * m4/exclude.m4 (gl_EXCLUDE): Don't require AC_C_INLINE; no longer
38658         needed.
38659
38660 2006-07-05  Paul Eggert  <eggert@cs.ucla.edu>
38661
38662         * lib/memcasecmp.c: Include <limits.h>.
38663         (memcasecmp): Don't assume UCHAR_MAX <= INT_MAX.
38664         * lib/strtod.c (strtod): Don't assume isspace works on negative chars.
38665         Don't assume isdigit succeeds only on '0' through '9'.
38666
38667 2006-07-05  Eric Blake  <ebb9@byu.net>
38668
38669         * modules/getaddrinfo (Depends-on): Add snprintf.
38670
38671 2006-07-05  Eric Blake  <ebb9@byu.net>
38672
38673         * m4/sockpfaf.m4 (gl_SOCKET_FAMILIES): Use gl_HEADER_SYS_SOCKET
38674         to avoid 'header present but could not be compiled' on cygwin.
38675
38676 2006-07-05  Eric Blake  <ebb9@byu.net>
38677
38678         * lib/getaddrinfo.h (NI_NUMERICHOST, NI_NUMERICSERV): Define if
38679         missing from netdb.h.
38680         * lib/getaddrinfo.c (includes): Include inet_ntop and snprintf.
38681
38682 2006-07-05  Derek R. Price  <derek@ximbiot.com>
38683
38684         * m4/calloc.m4 (_AC_FUNC_CALLOC_IF): Don't require AC_HEADER_STDC;
38685         no longer needed.
38686         * m4/exclude.m4 (gl_EXCLUDE): Likewise.
38687         * m4/getdate.m4 (gl_GETDATE): Likewise.
38688         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Likewise.
38689         * m4/memcasecmp.m4 (gl_MEMCASECMP): Likewise.
38690         * m4/strtod.m4 (gl_FUNC_STRTOD): Likewise.
38691         * m4/strtol.m4 (gl_PREREQ_STRTOL): Likewise.
38692         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
38693
38694 2006-07-05  Derek R. Price  <derek@ximbiot.com>
38695
38696         * lib/exclude.c (IN_CTYPE_DOMAIN, is_space): Remove; no longer needed.
38697         All uses of is_space replaced by isspace.
38698         * lib/exit.h: Don't talk about STDC_HEADERS.
38699         * lib/fnmatch.c (ISASCII): Remove; no longer needed.  All uses removed.
38700         (ISPRINT, ISDIGIT, ISALNUM, ISALPHA, ISCNTRL, ISLOWER, ISPUNCT):
38701         (ISSPACE, ISUPPER, ISXDIGIT): Remove; no longer needed.  All uses
38702         replaced by isprint etc.
38703         * lib/getdate.y (IN_CTYPE_DOMAIN, ISSPACE, ISALPHA, ISLOWER): Likewise.
38704         * lib/getusershell.c (IN_CTYPE_DOMAIN, ISSPACE): Likewise.
38705         * lib/memcasecmp.c (IN_CTYPE_DOMAIN, ISLOWER, TOUPPER): Likewise.
38706         * lib/strtod.c (IN_CTYPE_DOMAIN, ISSPACE, ISDIGIT, TOLOWER): Likewise.
38707         * lib/strtol.c (IN_CTYPE_DOMAIN): Likewise.
38708         * lib/xstrtol.c (IN_CTYPE_DOMAIN, ISSPACE): Likewise.
38709
38710 2006-07-05  Bruno Haible  <bruno@clisp.org>
38711
38712         * m4/strndup.m4 (gl_FUNC_STRNDUP): When cross-compiling, check whether
38713         the function exists, before testing against AIX.
38714         Reported by Martin Lambers <marlam@marlam.de>.
38715
38716 2006-07-04  Paul Eggert  <eggert@cs.ucla.edu>
38717
38718         * modules/cycle-check (lib_SOURCES): Add same-inode.h.
38719         From Mark D. Baushke.
38720
38721 2006-07-04  Paul Eggert  <eggert@cs.ucla.edu>
38722
38723         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Prepend three slashes
38724         to the absolute name, not just one, to bypass Sun C 5.8's
38725         "warning: #include of /usr/include/... may be non-portable".
38726
38727 2006-07-04  Eric Blake  <ebb9@byu.net>
38728
38729         * modules/dirname-tests: New test module.
38730         * tests/test-dirname.c: New file, replacing dirname.c
38731         TEST_DIRNAME section that was recently deleted.
38732
38733 2006-07-04  Bruno Haible  <bruno@clisp.org>
38734
38735         Assume ANSI C header files and <ctype.h> functions.
38736         * lib/mbswidth.c (IN_CTYPE_DOMAIN, ISPRINT, ISCNTRL): Remove macros.
38737         (mbsnwidth): Use isprint, iscntrl instead.
38738
38739 2006-07-03  Paul Eggert  <eggert@cs.ucla.edu>
38740
38741         Merge from coreutils.
38742         * MODULES.html.sh: Add xstrtold.
38743         * modules/xstrtold: New file.
38744         * modules/cycle-check (Files): Add lib/same-inode.h.
38745         * modules/dirname (Files): Add m4/double-slash-root.m4.
38746         * modules/getcwd (Files): Add m4/getcwd-abort-bug.m4.
38747         * modules/mkdir-p (Files): Add lib/same-inode.h.
38748         * modules/same (Files): Add lib/same-inode.h.
38749
38750 2006-07-03  Paul Eggert  <eggert@cs.ucla.edu>
38751
38752         * m4/absolute-header.m4: Renamed from full-header-path.m4.
38753         This is to keep the terminology clean; POSIX talks about
38754         "absolute pathnames", not "full pathnames", but the GNU
38755         Coding Standards say to use "path" for something else;
38756         so use "absolute" to keep both sides happy.
38757         (gl_ABSOLUTE_HEADER): Renamed from gl_FULL_HEADER_PATH.
38758         Set gl_absolute_header, not gl_full_header_path.
38759         Set gl_cv_absolute_<header>, not gl_full_path_<header>.
38760         Define ABSOLUTE_<HEADER>, not FULL_PATH_<HEADER>.
38761         All uses changed.
38762
38763         Merge from coreutils.
38764
38765         2006-06-30  Paul Eggert  <eggert@cs.ucla.edu>
38766
38767         * m4/c-strtod.m4 (gl_C_STRTOLD): Add c-strtod.c to LIBSOURCES.
38768         Require gl_USE_SYSTEM_EXTENSIONS, not gl_C_STRTOD, since we don't
38769         want to require the building of c-strtod.o.
38770         * m4/lib-check.m4 (cu_LIB_CHECK): Remove SEQ_LIBM, since seq no longer
38771         needs -lm directly.
38772         * m4/xstrtod.m4 (gl_XSTRTOLD): New macro.
38773
38774         2006-06-19  Paul Eggert  <eggert@cs.ucla.edu>
38775
38776         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Prefer binutils's
38777         --as-needed option if available.  Problem reported by Albert Chin in
38778         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00114.html>.
38779         However, use -Wl,--as-needed, not bare --as-needed, since HP-UX 11.11
38780         cc merely issues a bunch of annoying warnings for --as-needed
38781         (this problem was reported by Bob Proulx).  Also, try linking with
38782         -lm to detect a bug in binutils 2.16 (this problem was reported
38783         by Ralf Wildenhues).
38784
38785         2006-06-18  Jim Meyering  <jim@meyering.net>
38786
38787         Test for a bug that causes glibc's getcwd to suffer a failed assertion.
38788         * m4/getcwd-abort-bug.m4 (gl_FUNC_GETCWD_ABORT_BUG): New file and
38789         macro.
38790         * m4/getcwd.m4 (gl_FUNC_GETCWD): If we detect support for getcwd_null,
38791         also check for glibc-2.4's abort-inducing bug.
38792
38793         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Fix typo.
38794         Low-probability clean-up should be to use rmdir to get rid of
38795         the just-created directory, not unlink.
38796
38797         * m4/ftruncate.m4 (gl_FUNC_FTRUNCATE): If ftruncate is missing, make
38798         configure fail, and request a bug report to inform us about it.
38799         Add a comment that, barring reports to the contrary, in 2007 we'll
38800         assume ftruncate is universally available.
38801
38802         2006-04-17  Paul Eggert  <eggert@cs.ucla.edu>
38803
38804         * m4/filemode.m4 (gl_FILEMODE): Check for strmode declaration.
38805
38806         2006-03-12  Jim Meyering  <jim@meyering.net>
38807
38808         * m4/chdir-safer.m4 (gl_CHDIR_SAFER): Add same-inode.h to the list.
38809         * m4/cycle-check.m4 (gl_CYCLE_CHECK): Likewise.
38810         * m4/same.m4 (gl_SAME): Likewise.
38811         * m4/root-dev-ino.m4 (gl_ROOT_DEV_INO): Likewise.
38812
38813         2006-03-11  Eric Blake  <ebb9@byu.net>
38814
38815         * m4/double-slash-root.m4: New file, provides gl_DOUBLE_SLASH_ROOT.
38816         * m4/dirname.m4 (gl_DIRNAME): Use gl_DOUBLE_SLASH_ROOT.
38817         * m4/dos.m4 (FILE_SYSTEM_PREFIX_LEN): Move from here to dirname.h.
38818         (FILE_SYSTEM_DRIVE_PREFIX_CAN_BE_RELATIVE): New define.
38819
38820 2006-07-03  Paul Eggert  <eggert@cs.ucla.edu>
38821
38822         * lib/stdint_.h: Include <sys/types.h> after @FULL_PATH_STDINT_H@, for
38823         MacOS X 10.4.6.  Don't mention <sys/int_types.h>.  Problems
38824         reported by Mark D. Baushke, one in
38825         <http://lists.gnu.org/archive/html/bug-gnulib/2006-07/msg00015.html>.
38826
38827         Merge from coreutils.
38828
38829         * lib/.cppi-disable: Add stdint_.h.
38830         * lib/.cvsignore: Add stdint.h.
38831
38832         2006-06-30  Paul Eggert  <eggert@cs.ucla.edu>
38833
38834         * lib/xstrtod.c (XSTRTOD, DOUBLE): New macros, so that we can support
38835         both double and long double versions.
38836         (XSTRTOD): Renamed from xstrtod.  Use DOUBLE internally.
38837         * lib/xstrtold.c: New file.
38838         * lib/xstrtod.h (xstrtold): New decl.
38839
38840         2006-05-22  Paul Eggert  <eggert@cs.ucla.edu>
38841
38842         * lib/filemode.c (setst): Remove.
38843         (strmode): Rewrite to avoid setst.  This makes the code shorter,
38844         (arguably) clearer, and the generated code is a bit smaller on my
38845         Debian GNU/Linux stable x86 host.
38846
38847         2006-04-17  Paul Eggert  <eggert@cs.ucla.edu>
38848
38849         * lib/filemode.c: Include "filemode.h" first, to test the interface.
38850         Assume that filemode.h includes sys/types.h and sys/stat.h.
38851         (HAVE_ST_DM_MODE): New macro, moved here from ls.c.
38852         (ftypelet): Reorder to put common cases first, for efficiency.
38853         Add 'P', 'w'.  Remove 'M', since it's now the caller's responsibility
38854         to do 'M'.
38855         (strmode): Renamed from mode_string, and now stores 12 bytes instead
38856         of 10, for compatibility with FreeBSD.  All callers changed.
38857         (filemodestring): Now stores 12 bytes instead of 10, and sets file
38858         types that can't be deduced solely from st_mode.  First arg is now a
38859         const pointer.
38860         * lib/filemode.h (HAVE_DECL_STRMODE): Include <string.h> for strmode.
38861         (strmode): Renamed from mode_string.
38862         (filemodestring): New decl.
38863         * lib/stat-macros.h: Don't undef S_ISDOOR, since it's never buggy.
38864         (S_ISDOOR): Don't bother with S_IFDOOR, since that code is never
38865         needed.
38866         (S_ISPORT, S_ISWHT): New macros, if not already defined.
38867
38868         2006-04-12  Paul Eggert  <eggert@cs.ucla.edu>
38869
38870         * lib/fsusage.c: Don't include <inttypes.h> or <stdint.h>, since
38871         fsusage.h now does that.  Include fsusage.h first, to test interface.
38872         Prefer statvfs if it works, since it's blessed by POSIX.  Attempt
38873         at most one method (the old code could have generated decls that
38874         didn't conform to C89, not that this was ever exercised).
38875         * lib/fsusage.h: Include <inttypes.h> and <stdint.h> if they exist.
38876
38877         2006-03-19  Jim Meyering  <jim@meyering.net>
38878
38879         Work even in a chroot where d_ino values for entries in "/"
38880         don't match the stat.st_ino values for the same names.
38881         * lib/getcwd.c (__getcwd): When no d_ino value matches the target inode
38882         number, iterate through all entries again, using lstat instead.
38883         Reported by Kenshi Muto in http://bugs.debian.org/355810, and by
38884         Zouhir Hafidi in https://bugzilla.redhat.com/bugzilla/190656.
38885
38886         * lib/getcwd.c (__getcwd): Clarify a comment.
38887         Use memcpy in place of a call to strcpy.
38888
38889         2006-03-12  Jim Meyering  <jim@meyering.net>
38890
38891         * lib/fts-cycle.c (leave_dir): If cycle-check's saved dev-ino pair
38892         matches that of the current directory (which we're about to chdir ".."
38893         out of), then save the dev-ino of the parent, instead.
38894
38895         * lib/same-inode.h (SAME_INODE): New file/macro.
38896         * lib/chdir-safer.c (SAME_INODE): Remove definition.
38897         Include "same-inode.h", instead.
38898         * lib/same.c: Likewise.
38899         * lib/cycle-check.h: Include "same-inode.h".
38900         (CYCLE_CHECK_REFLECT_CHDIR_UP): Define.
38901         * lib/cycle-check.c (SAME_INODE): Remove definition.
38902         * lib/root-dev-ino.h: Include "same-inode.h".
38903
38904         2006-03-11  Eric Blake  <ebb9@byu.net>
38905
38906         * lib/same.c (same_name): s/base_name/last_component/
38907         * lib/backupfile.c (check_extension, numbered_backup): Likewise.
38908         * lib/filenamecat.c (file_name_concat): Likewise.
38909
38910         2006-03-11  Eric Blake  <ebb9@byu.net>,
38911                     Paul Eggert  <eggert@cs.ucla.edu>
38912
38913         * lib/dirname.h (FILE_SYSTEM_PREFIX_LEN): Move here from dos.m4.
38914         [FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX]: Don't treat 1: as a
38915         drive prefix.
38916         (IS_ABSOLUTE_FILE_NAME): Treat all drive letters as absolute on
38917         platforms like cygwin with FILE_SYSTEM_DRIVE_PREFIX_IS_ABSOLUTE.
38918         (last_component): New method.
38919         * lib/dirname.c (dir_len): Determine when drive letters need a
38920         subsequent slash.  Preserve // when it is special.
38921         (dir_name): Don't append dot when drive letter is absolute.
38922         [TEST_DIRNAME]: Move into a full-blown gnulib test.
38923         * lib/basename.c (base_name): New semantics - malloc the result.
38924         Preserve // when it is special.  Preserve relative files that look
38925         like drive letters.
38926         (base_len): Preserve // when it is special.
38927         (last_component): New method, similar to old base_name semantics.
38928         * lib/stripslash.c (strip_trailing_slashes): Use last_component, not
38929         base_name.  Strip redundant slashes from ///.
38930
38931 2006-07-03  Jim Meyering  <jim@meyering.net>
38932
38933         * lib/cycle-check.h (CYCLE_CHECK_REFLECT_CHDIR_UP): Abort if this
38934         macro is used before the first cycle_check call.
38935
38936 2006-07-03  Eric Blake  <ebb9@byu.net>
38937
38938         * modules/dirname (Depends-on): Add xstrndup.
38939
38940 2006-07-02  Paul Eggert  <eggert@cs.ucla.edu>
38941
38942         * m4/stdint.m4 (gl_STDINT_H): Use more-mnemonic identifiers for
38943         test cases, so that config.log is a bit easier to follow.
38944
38945 2006-07-02  Paul Eggert  <eggert@cs.ucla.edu>
38946
38947         * lib/stdint_.h (intmax_t, uintmax_t): Prefer long to long long if
38948         both are 64 bits, since this seems to be the tradition, and this
38949         prevents gcc -Wformat from warning about usages with PRIuMAX.  If
38950         we ever run into a host that prefers long long to long in this
38951         case, we'll need another configure-time test.  Problem reported by
38952         Jim Meyering.
38953
38954 2006-07-02  Eric Blake  <ebb9@byu.net>
38955
38956         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Simplify by using AC_CHECK_DECLS.
38957
38958 2006-07-01  Paul Eggert  <eggert@cs.ucla.edu>
38959
38960         * modules/inttypes (Depends-on): No longer depends on stdint.
38961         * modules/stdint (Description): Say more about assumptions.
38962         Say that the fast types might differ.  Say macros are used.
38963         (Files): Remove m4/size_max.m4, m4/wchar_t.m4.  Add m4/longlong.m4.
38964         (Makefile.am): Revise list of substituted symbols to match
38965         new stdint.m4.
38966         * modules/stdint-tests (Files): Add m4/wchar_t.m4, m4/wint_t.m4.
38967         (configure.ac): Add gt_TYPE_WCHAR_T, gt_TYPE_WINT_T.
38968         * tests/test-stdint.c (verify_same_types)
38969         [! (__GNUC__ >= 2 && DO_PEDANTIC)]: Put in a decl, so that
38970         the code conforms to C99/C89.
38971         Test for WCHAR_MIN and WCHAR_MAX only if HAVE_WCHAR_T.
38972         Test for WINT_MIN and WINT_MAX only if HAVE_WINT_T.
38973
38974 2006-07-01  Paul Eggert  <eggert@cs.ucla.edu>
38975
38976         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Backport from Autoconf 2.60,
38977         but fix a bug, by requiring at least 64 bits.
38978         * m4/ulonglong.m4 (AC_TYPE_UNSIGNED_LONG_LONG_INT): Likewise.
38979         * m4/longlong.m4 (gl_AC_TYPE_LONG_LONG): Now just call
38980         AC_TYPE_LONG_LONG_INT.  This macro is obsolete and will go soon.
38981         * m4/ulonglong.m4 (gl_AC_TYPE_UNSIGNED_LONG_LONG) Likewise.
38982
38983         * m4/stdint.m4 (gl_STDINT_H): Rewrite to accommodate stdint_.h
38984         changes.  Make 2.59 a prerequisite.  Check and substitute for
38985         HAVE_LONG_LONG_INT.  Rely on Autoconf to check for stdint.h and
38986         inttypes.h.  Do not use special include files; just use the
38987         defaults.  Check for sys/inttypes.h and sys/bitypes.h in the usual
38988         way now.  Remove no-longer-needed tests for HAVE_LONG_64BIT,
38989         HAVE_LONG_LONG_64BIT, int8_t, int16_t, int32_t, int64_t, uint8_t,
38990         uint16_t, uint32_t uint64_t, int_least8_t, int_least16_t,
38991         int_least32_t, int_least64_t, uint_least8_t, uint_least16_t,
38992         uint_least32_t, uint_least64_t, int_fast8_t, int_fast16_t,
38993         int_fast32_t, int_fast64_t, uint_fast8_t uint_fast16_t,
38994         uint_fast32_t, uint_fast64_t, intptr_t, uintptr_t, intmax_t,
38995         uintmax_t, INT8_MIN, INT8_MAX, UINT8_MAX, INT16_MIN, INT16_MAX,
38996         UINT16_MAX, INT32_MIN, INT32_MAX, UINT32_MAX, INT64_MIN,
38997         INT64_MAX, UINT64_MAX, INT_LEAST8_MIN, INT_LEAST8_MAX,
38998         UINT_LEAST8_MAX, INT_LEAST16_MIN, INT_LEAST16_MAX,
38999         UINT_LEAST16_MAX, INT_LEAST32_MIN, INT_LEAST32_MAX,
39000         UINT_LEAST32_MAX, INT_LEAST64_MIN, INT_LEAST64_MAX,
39001         UINT_LEAST64_MAX, INT_FAST8_MIN, INT_FAST8_MAX, UINT_FAST8_MAX,
39002         INT_FAST16_MIN, INT_FAST16_MAX, UINT_FAST16_MAX, INT_FAST32_MIN,
39003         INT_FAST32_MAX, UINT_FAST32_MAX, INT_FAST64_MIN, INT_FAST64_MAX,
39004         UINT_FAST64_MAX, INTPTR_MIN, INTPTR_MAX, UINTPTR_MAX, INTMAX_MIN,
39005         INTMAX_MAX, UINTMAX_MAX, PTRDIFF_MIN, PTRDIFF_MAX, SIG_ATOMIC_MIN,
39006         SIG_ATOMIC_MAX, SIZE_MAX, WCHAR_MIN, WCHAR_MAX, WINT_MIN,
39007         WINT_MAX.  Check for C99 conformance more strictly, by detecting
39008         bugs in glibc 2.4, Solaris 10, and OpenBSD 3.9.  On the other hand do
39009         not check for things that C99 does not require, e.g., int8_t.  If
39010         a test isn't needed unless <stdint.h> isn't working, and is
39011         unlikely to be needed for any other reason, then don't do it
39012         unless <stdint.h> isn't working.  Do not check for ptrdiff_t or
39013         size_t, since we assume C89 freestanding at least.  Do not check
39014         for sig_atomic_t, wchar_t, or wint_t, since the code now does
39015         the right thing even if the types are not defined.  Instead use:
39016         (gl_STDINT_TYPE_PROPERTIES): New macro.
39017         (gl_HEADER_STDINT_H, gl_HEADER_INTTYPES_H): Remove.  Don't bother
39018         testing whether <sys/types.h> clashes, as Autoconf does this for
39019         us now.  All uses removed.
39020         (gl_STDINT_CHECK_TYPES, gl_STDINT_MISSING_BOUND):
39021         (gl_STDINT_MISSING_BOUNDS, gl_STDINT_MISSING_BOUNDS2):
39022         (gl_CHECK_TYPE_SAME):
39023         Remove; no longer needed.
39024         (gl_STDINT_BITSIZEOF): Don't bother to check whether the type
39025         exists, since we'll return 0 anyway in that case.
39026         (gl_INTEGER_TYPE_SUFFIX, gl_STDINT_INCLUDES): New macros.
39027
39028 2006-07-01  Paul Eggert  <eggert@cs.ucla.edu>
39029
39030         * lib/stdint_.h (_GL_STDINT_H): Renamed from _STDINT_H, to avoid
39031         possible collision with system files.
39032         (<stdio.h>, <time.h>, <wchar.h>) [defined __cplusplus && ! defined
39033         __STDC_CONSTANT_MACROS)]: Do not include, since we don't need
39034         WCHAR_MIN and WCHAR_MAX in this case.
39035         (<stddef.h>): Do not include; no longer needed.
39036         (<sys/types.h>): Include if @HAVE_SYS_TYPES_H@, not if
39037         (defined(__OpenBSD__) || defined(__bsdi__) || defined(__sgi)).
39038         (<sys/inttypes.h>): Include if @HAVE_SYS_INTTYPES_H@ &&
39039         !@HAVE_INTTYPES_H@, not if (defined(__FreeBSD__)
39040         && (__FreeBSD__ >= 3) && (__FreeBSD__ <= 4)).
39041         (__STDINT_H__) [@HAVE_STDINT_H@ && defined __sgi && ! defined
39042         __c99]: Define, to work around IRIX <stdint.h> incompatibility.
39043         (@FULL_PATH_STDINT_H@) [!(defined(__sgi) && @HAVE_INTTYPES_H@ &&
39044         !defined(__c99))]: Include in this case too, since it's harmless
39045         now.
39046         (<inttypes.h>) [@HAVE_INTTYPES_H@]: Include, since it's no longer
39047         dangerous to do so.
39048         (@FULL_PATH_INTTYPES_H@) [(defined(__hpux) || defined(_AIX)) &&
39049         @HAVE_INTTYPES_H@]: Do not include, since we now include <inttypes.h>.
39050         (_STDINT_MIN, _STDINT_MAX): New macros.
39051         (int8_t, uint8_t, int16_t, uint16_t, int32_t, uint32_t, int64_t):
39052         (uint64_t, int_least8_t, uint_least8_t, int_least16_t):
39053         (uint_least16_t, int_least32_t, uint_least32_t, int_least64_t):
39054         (uint_least64_t, int_fast8_t, uint_fast8_t, int_fast16_t):
39055         (uint_fast16_t, int_fast32_t, uint_fast32_t, int_fast64_t):
39056         (uint_fast64_t, intptr_t, uintptr_t, intmax_t, uintmax_t): Now
39057         macros, not typedefs; this simplifies things quite a bit.
39058         Use long int for all types narrower than int64_t.
39059         (intmax_t, uintmax_t, INTMAX_C, UINTMAX_C):
39060         Define in terms of long long int or int64_t or long int,
39061         not int64_t or int32_t.  This saves some compile-time testing.
39062         (INT8_MIN, INT8_MAX, UINT8_MAX, INT16_MIN, INT16_MAX, UINT16_MAX):
39063         (INT32_MIN, INT32_MAX, UINT32_MAX, INT64_MIN, INT64_MAX):
39064         (UINT64_MAX, INT_LEAST8_MIN, INT_LEAST8_MAX, UINT_LEAST8_MAX):
39065         (INT_LEAST16_MIN, INT_LEAST16_MAX, UINT_LEAST16_MAX):
39066         (INT_LEAST32_MIN, INT_LEAST32_MAX, UINT_LEAST32_MAX):
39067         (INT_LEAST64_MIN, INT_LEAST64_MAX, UINT_LEAST64_MAX, INT_FAST8_MIN):
39068         (INT_FAST8_MAX, UINT_FAST8_MAX, INT_FAST16_MIN, INT_FAST16_MAX):
39069         (UINT_FAST16_MAX, INT_FAST32_MIN, INT_FAST32_MAX, UINT_FAST32_MAX):
39070         (INT_FAST64_MIN, INT_FAST64_MAX, UINT_FAST64_MAX, INTPTR_MIN):
39071         (INTPTR_MAX, UINTPTR_MAX, INTMAX_MIN, INTMAX_MAX, UINTMAX_MAX):
39072         (PTRDIFF_MIN, PTRDIFF_MAX, SIG_ATOMIC_MIN, SIG_ATOMIC_MAX):
39073         (SIZE_MAX, WCHAR_MIN, WCHAR_MAX, WINT_MIN, WINT_MAX):
39074         undef any previous version and define our own version, for
39075         simplicity and consistency with the new macros for types.
39076         (PTRDIFF_MIN, PTRDIFF_MAX, SIG_ATOMIC_MIN, SIG_ATOMIC_MAX):
39077         (SIZE_MAX, WCHAR_MIN, WCHAR_MAX, WINT_MIN, WINT_MAX):
39078         Simplify definitions by using _STDINT_MIN and _STDINT_MAX
39079         where appropriate.  Rely on new symbols @PTRDIFF_T_SUFFIX@,
39080         @SIG_ATOMIC_T_SUFFIX@, @SIZE_T_SUFFIX@, @WCHAR_T_SUFFIX@,
39081         @WINT_T_SUFFIX@ to keep things simple here.
39082         (UINT8_C, UINT16_C, UINT32_C, INT64_C, UINT64_C):
39083         Simplify by assuming typical 8/16/32/64 host, since we're
39084         already doing that elsewhere anyway.
39085         Use (LONG_MAX >> 31 >> 31 == 1) rather than @HAVE_LONG_64BIT@,
39086         and assume long long int is 64 bits if available.  This
39087         speeds up 'configure'.
39088
39089 2006-07-01  Eric Blake  <ebb9@byu.net>
39090
39091         * m4/stdarg.m4 (gl_STDARG_H): Use proper AH_VERBATIM.
39092         Reported by Andreas Buening.
39093
39094 2006-07-01  Eric Blake  <ebb9@byu.net>
39095
39096         * m4/stdarg.m4 (gl_STDARG_H): Properly parenthesize gl_va_copy.
39097
39098 2006-06-30  Jim Hyslop  <jhyslop@dreampossible.ca>  (tiny change)
39099
39100         * lib/getaddrinfo.c: fixed typo
39101
39102 2006-06-29  Jim Meyering  <jim@meyering.net>
39103
39104         * modules/strftime (Maintainer): Add my name, since with the
39105         FPRINTFTIME changes strftime.c has forked from glibc.
39106
39107 2006-06-29  Eric Blake  <ebb9@byu.net>
39108
39109         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Use AC_C_INLINE.
39110
39111 2006-06-29  Eric Blake  <ebb9@byu.net>
39112
39113         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): New file.
39114
39115 2006-06-29  Eric Blake  <ebb9@byu.net>
39116
39117         * lib/stat_.h: New file.
39118
39119 2006-06-29  Eric Blake  <ebb9@byu.net>
39120
39121         * lib/stat_.h (rpl_mkdir): Declare inline, to avoid warnings about
39122         unused static function.
39123
39124 2006-06-29  Eric Blake  <ebb9@byu.net>
39125
39126         * doc/functions.texi (Function Portability): Document missing lstat
39127         on mingw.
39128
39129 2006-06-29  Eric Blake  <ebb9@byu.net>
39130
39131         * MODULES.html.sh: Add sys_stat.
39132         * modules/sys_stat: New module.
39133         * modules/mkstemp (Depends-on): Add sys_stat.
39134
39135 2006-06-29  Derek R. Price  <derek@ximbiot.com>
39136
39137         * m4/strftime.m4: Don't call AC_FUNC_STRFTIME.
39138
39139 2006-06-29  Derek R. Price  <derek@ximbiot.com>
39140
39141         * m4/c-bs-a.m4: Removed.
39142
39143 2006-06-29  Derek R. Price  <derek@ximbiot.com>
39144
39145         * lib/strftime.c: Assume strftime() exists.
39146
39147 2006-06-29  Derek Price  <derek@ximbiot.com>
39148
39149         * modules/c-bs-a: Removed - \a is C89.
39150         * MODULES.html.sh: Remove c-bs-a.
39151
39152 2006-06-29  Bruno Haible  <bruno@clisp.org>
39153
39154         * modules/wcwidth (License): Change to LGPL.
39155
39156 2006-06-28  Simon Josefsson  <jas@extundo.com>
39157
39158         * tests/test-getaddrinfo.c: Test getnameinfo too.  Call WSAStartup
39159         on _WIN32.
39160
39161         * modules/getaddrinfo (Depends-on): Add inet_ntop, needed by
39162         getnameinfo.
39163
39164 2006-06-28  Simon Josefsson  <jas@extundo.com>
39165
39166         * m4/getaddrinfo.m4: Look for getnameinfo prototypes too.
39167
39168 2006-06-28  Simon Josefsson  <jas@extundo.com>
39169
39170         * lib/getaddrinfo.c: Try to load ws2_32.dll on Windows, to find the
39171         functions there.  It will succeed on Windows XP, but on Windows
39172         2000 and (presumably) earlier, it will fail, and use the internal
39173         re-implementation.
39174         (use_win32_p): New function.
39175         (getaddrinfo): Use strtoul on servname, to support numeric ports.
39176         Support AI_NUMERICSERV to disable getservbyname.
39177         (getnameinfo): New function, only supports
39178         NI_NUMERICHOST|NI_NUMERICSERV for now.
39179
39180         * lib/getaddrinfo.h: Test and check for AI_* flags separately, MinGW
39181         only have some of them.  Add AI_NUMERICSERV.  Add prototype for
39182         getnameinfo.
39183
39184 2006-06-28  Eric Blake  <ebb9@byu.net>
39185
39186         * modules/wcwidth: New file.
39187         * modules/mbchar (Depends-on): Add wcwidth.
39188         * modules/mbswidth (Depends-on): Add wcwidth.
39189         * MODULES.html.sh: Add wcwidth.
39190
39191 2006-06-28  Eric Blake  <ebb9@byu.net>
39192
39193         * m4/mbswidth.m4 (gl_MBSDWIDTH): Move wcwidth from here...
39194         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): ...to this new file.
39195
39196 2006-06-28  Eric Blake  <ebb9@byu.net>
39197
39198         * lib/xvasprintf.h: Fix comments.
39199
39200 2006-06-28  Eric Blake  <ebb9@byu.net>
39201
39202         * lib/mbchar.h (wcwidth): Include wcwidth.h.
39203         * lib/mbswidth.c (wcwidth): Move from here...
39204         * lib/wcwidth.h: ...to this new file.
39205
39206 2006-06-28  Derek R. Price  <derek@ximbiot.com>
39207
39208         * m4/savedir.m4: Remove AC_FUNC_CLOSEDIR_VOID requirement.
39209
39210         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Don't require AC_C_CONST, since
39211         it's obsolete.
39212         * m4/strftime.m4 (gl_FUNC_GNU_STRFTIME): Likewise.
39213
39214 2006-06-28  Derek R. Price  <derek@ximbiot.com>
39215
39216         * lib/savedir.c (CLOSEDIR): Remove.  All uses changed to closedir.
39217         Autoconf 2.60 says this stuff was obsolete.
39218
39219 2006-06-28  Bruno Haible  <bruno@clisp.org>
39220
39221         * modules/wcwidth (Files): Add m4/wchar_t.m4.
39222
39223 2006-06-28  Bruno Haible  <bruno@clisp.org>
39224
39225         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Also require AC_C_INLINE and
39226         gt_TYPE_WCHAR_T.
39227
39228 2006-06-28  Bruno Haible  <bruno@clisp.org>
39229
39230         * lib/wcwidth.h: Declare nothing if !HAVE_WCHAR_T. Provide a fallback
39231         declaration for wcwidth.
39232         * lib/mbswidth.c: Restore the includes of <wchar.h> and <wctypes.h>.
39233
39234 2006-06-28  Bruno Haible  <bruno@clisp.org>
39235
39236         * lib/mkdtemp.c [MINGW]: Include <io.h>.
39237         (mkdir): Define using _mkdir.
39238
39239 2006-06-28  Bruno Haible  <bruno@clisp.org>
39240
39241         * lib/getaddrinfo.h: Fix POSIX URL.
39242         * lib/getaddrinfo.c (WIN32_NATIVE): New macro. Use it instead of
39243         _WIN32.
39244         (use_win32_p): Make static.
39245         (getaddrinfo): Reject service name if it is empty or does not consist
39246         solely of decimal digits, or if its value is > 65535.
39247         (getnameinfo): Remove useless casts.
39248
39249 2006-06-27  Simon Josefsson  <jas@extundo.com>
39250
39251         * modules/sys_select: New file, suggested by Bruno Haible, Paul
39252         Eggert and Martin Lambers.
39253
39254 2006-06-27  Simon Josefsson  <jas@extundo.com>
39255
39256         * m4/sys_select_h.m4: New file, suggested by Bruno Haible, Paul
39257         Eggert and Martin Lambers.
39258
39259 2006-06-27  Bruno Haible  <bruno@clisp.org>
39260
39261         * m4/stdint.m4 (gl_STDINT_BITSIZEOF): For nonexistent types, set the
39262         result to 0, not to empty.
39263         Reported by Martin Neitzel <neitzel@sco.gaertner.de>.
39264
39265 2006-06-27  Bruno Haible  <bruno@clisp.org>
39266
39267         * lib/stdint_.h (intmax_t, uintmax_t): Undefine before typedef.
39268
39269 2006-06-26  Simon Josefsson  <jas@extundo.com>
39270
39271         * m4/inet_ntop.m4: Don't check for sys/types.h, we assume it is
39272         present.
39273
39274 2006-06-26  Paul Eggert  <eggert@cs.ucla.edu>
39275
39276         * lib/base64.c (B64): Use _ as the formal parameter, not x, to avoid
39277         bug in IBM C V6 for AIX.  Problem reported by Larry Jones in
39278         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00181.html>.
39279
39280 2006-06-26  Mark D. Baushke  <mdb@gnu.org>
39281
39282         * m4/stdint.m4 (gl_STDINT_H): Treat BSD/OS like OpenBSD.
39283
39284 2006-06-26  Bruno Haible  <bruno@clisp.org>
39285
39286         * modules/stdint (Makefile.am): Also substitute HAVE_WCHAR_H.
39287
39288 2006-06-26  Bruno Haible  <bruno@clisp.org>
39289
39290         * m4/stdint.m4 (gl_STDINT_H): Test also for <wchar.h>.
39291
39292 2006-06-26  Bruno Haible  <bruno@clisp.org>
39293
39294         * m4/stdint.m4 (gl_STDINT_H): Don't include <stdint.h> when using the
39295         SGI C compiler in pre-C99 mode.
39296         Suggested by Mark D. Baushke and Larry Jones.
39297
39298 2006-06-26  Bruno Haible  <bruno@clisp.org>
39299
39300         * lib/stdint_.h: Include <wchar.h> if necessary for WCHAR_MIN or
39301         WCHAR_MAX.
39302         Reported by Mark D. Baushke and Larry Jones.
39303
39304 2006-06-26  Bruno Haible  <bruno@clisp.org>
39305
39306         * lib/stdint_.h: Don't include <stdint.h> when using the SGI C compiler
39307         in pre-C99 mode.
39308         Suggested by Mark D. Baushke and Larry Jones.
39309
39310 2006-06-23  Simon Josefsson  <jas@extundo.com>
39311             Bruno Haible  <bruno@clisp.org>
39312
39313         * gnulib-tool (func_emit_lib_Makefile_am): Define MOSTLYCLEANDIRS.
39314         Emit mostlyclean-local rule.
39315         (func_emit_tests_Makefile_am): Likewise.
39316         * modules/sys_socket (Makefile.am): Use MOSTLYCLEANDIRS.
39317
39318 2006-06-23  Mark D. Baushke  <mdb@gnu.org>
39319
39320         * lib/stdint_.h: Treat BSD/OS like OpenBSD.
39321
39322 2006-06-23  Bruno Haible  <bruno@clisp.org>
39323
39324         * tests/test-stdint.c: Update to match ISO C 99 Technical
39325         Corrigendum 1.
39326
39327 2006-06-23  Bruno Haible  <bruno@clisp.org>
39328
39329         * m4/stdint.m4 (gl_STDINT_H): Treat IRIX like OpenBSD.
39330
39331 2006-06-23  Bruno Haible  <bruno@clisp.org>
39332
39333         * lib/stdint_.h: Treat IRIX like OpenBSD.
39334
39335 2006-06-23  Bruno Haible  <bruno@clisp.org>
39336
39337         * lib/stdint_.h (UINT8_C, UINT16_C, UINT32_C): Define according to
39338         ISO C 99 Technical Corrigendum 1.
39339
39340 2006-06-22  Simon Josefsson  <jas@extundo.com>
39341
39342         * m4/sockpfaf.m4: Include winsock2.h too, to make it work under
39343         MinGW.
39344
39345 2006-06-22  Paul Eggert  <eggert@cs.ucla.edu>
39346
39347         * lib/glob.c (collated_compare): Remove 'const' uses that weren't
39348         needed.  Some compiler complained about some of them.  Problem reported
39349         by Larry Jones in
39350         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00172.html>.
39351
39352 2006-06-21  Simon Josefsson  <jas@extundo.com>
39353
39354         * tests/test-getaddrinfo.c: New file.
39355
39356         * modules/getaddrinfo-tests: New file.
39357
39358         * MODULES.html.sh: Add inet_pton.
39359
39360         * modules/inet_pton: New file.
39361
39362 2006-06-21  Simon Josefsson  <jas@extundo.com>
39363
39364         * m4/getaddrinfo.m4: Don't define WINVER.  Look for gethostbyname in
39365         -lws2_32 too.  Fixes getaddrinfo on Windows 2000, with the price
39366         of using the (limited) gnulib implementation on Windows XP.
39367
39368         * m4/inet_pton.m4: New file.
39369
39370 2006-06-21  Simon Josefsson  <jas@extundo.com>
39371
39372         * lib/getaddrinfo.c (getaddrinfo): Set ai_family in the return
39373         variable.
39374
39375         * lib/socket_.h: Don't define WINVER.
39376
39377         * lib/inet_pton.h, inet_pton.c: New file, taken from glibc but
39378         slightly modified to work in gnulib.
39379
39380 2006-06-21  Simon Josefsson  <jas@extundo.com>
39381
39382         * doc/gnulib.texi (Windows sockets): Add.
39383
39384 2006-06-21  Paul Eggert  <eggert@cs.ucla.edu>
39385
39386         * lib/read-file.c (fread_file): Start with buffer allocation of
39387         0 bytes rather than 1 byte; this simplifies the code.
39388         Don't invoke feof; it's not needed.  Refactor to avoid duplicate
39389         code to free buffer and save/restore errno.
39390         (internal_read_file): Remove unused local.
39391
39392 2006-06-20  Paul Eggert  <eggert@cs.ucla.edu>
39393
39394         * lib/openat.c (openat): Use ?:, not if, to work around GCC bug 4210
39395         <http://gcc.gnu.org/bugzilla/show_bug.cgi?id=4210>.
39396         Problem reported by Denis Excoffier in
39397         <http://lists.gnu.org/archive/html/bug-tar/2006-06/msg00023.html>.
39398
39399 2006-06-19  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
39400
39401         * modules/sys_socket, modules/socklen: Include sys/types since
39402         FreeBSD 4.x's sys/socket.h needs it.
39403
39404 2006-06-19  Simon Josefsson  <jas@extundo.com>
39405
39406         * lib/inet_ntop.c: Always build inet_ntop4, since inet_ntop6 calls it.
39407
39408 2006-06-19  Paul Eggert  <eggert@cs.ucla.edu>
39409
39410         * lib/alloca_.h (alloca) [defined alloca]: Don't define or declare.
39411
39412 2006-06-19  Bruno Haible  <bruno@clisp.org>
39413
39414         * m4/stdint.m4 (gl_STDINT_H): Enclose the values of FULL_PATH_STDINT_H
39415         and FULL_PATH_INTTYPES_H in angle brackets.
39416         Reported by Mark D. Baushke <mdb@gnu.org>.
39417
39418 2006-06-17  Eric Blake  <ebb9@byu.net>
39419
39420         * m4/rmdir-errno.m4 (gl_FUNC_FMDIR_NOTEMPTY): Assume errno.h declares
39421         errno.
39422
39423 2006-06-17  Bruno Haible  <bruno@clisp.org>
39424
39425         * m4/stdint.m4 (gl_STDINT_H) [FreeBSD >= 5]: Don't include
39426         <sys/inttypes.h>.
39427
39428 2006-06-17  Bruno Haible  <bruno@clisp.org>
39429
39430         * m4/setenv.m4 (gl_PREREQ_SETENV, gl_PREREQ_UNSETENV): Remove test
39431         whether errno is declared. Assume <errno.h> declares errno.
39432
39433 2006-06-17  Bruno Haible  <bruno@clisp.org>
39434
39435         * lib/stdint_.h [FreeBSD >= 5]: Don't include <sys/inttypes.h>.
39436
39437 2006-06-17  Bruno Haible  <bruno@clisp.org>
39438
39439         * lib/stdint_.h (_UINT8_T, _UINT32_T, _UINT64_T): New macros. Fixes a
39440         problem on Solaris 2.5.1.
39441
39442 2006-06-16  Eric Blake  <ebb9@byu.net>
39443
39444         * lib/unsetenv.c [!defined errno]: Assume errno.h declares errno.
39445         * lib/unicodeio.c [!defined errno]: Likewise.
39446         * lib/strtol.c [!defined errno]: Likewise.
39447         * lib/strtod.c [!defined errno]: Likewise.
39448
39449 2006-06-15  Eric Blake  <ebb9@byu.net>
39450
39451         * m4/ssize_t.m4 (gt_TYPE_SSIZE_T): Work in spite of -Werror.
39452
39453 2006-06-15  Eric Blake  <ebb9@byu.net>
39454
39455         * config/srclist.txt (ssize_t.m4): Lose sync.
39456
39457 2006-06-15  Bruno Haible  <bruno@clisp.org>
39458
39459         * modules/stdint (Files): Include m4/full-header-path.m4,
39460         m4/size_max.m4, m4/wchar_t.m4.
39461         (Makefile.am): Many more substitutions.
39462         * modules/stdint-tests: New file.
39463         * tests/test-stdint.c: New file.
39464
39465 2006-06-15  Bruno Haible  <bruno@clisp.org>
39466
39467         * m4/stdint.m4 (gl_STDINT_H): Rewritten to produce a complete stdint.h.
39468         (gl_HEADER_STDINT_H, gl_HEADER_INTTYPES_H, gl_STDINT_CHECK_TYPES,
39469         gl_STDINT_MISSING_BOUND, gl_STDINT_MISSING_BOUNDS,
39470         gl_STDINT_MISSING_BOUNDS2, gl_STDINT_BITSIZEOF, gl_CHECK_TYPES_SIGNED,
39471         gl_CHECK_TYPE_SAME): New macros.
39472
39473 2006-06-15  Bruno Haible  <bruno@clisp.org>
39474
39475         * m4/size_max.m4 (gl_SIZE_MAX): Make it work also when cross-compiling.
39476
39477 2006-06-15  Bruno Haible  <bruno@clisp.org>
39478
39479         * lib/stdint_.h: Rewritten to be fully auto-configured.
39480         Fixes bug on HP-UX/IA64.
39481
39482 2006-06-11  Paul Eggert  <eggert@cs.ucla.edu>
39483
39484         * lib/getdate.y (__attribute__): Don't define if already defined.
39485         Problem reported by Larry Jones.
39486         * lib/utimens.c (__attribute__): Likewise.
39487
39488 2006-06-04  Paul Eggert  <eggert@cs.ucla.edu>
39489
39490         * lib/regexec.c (group_nodes_into_DFAstates): Fix a buffer overrun
39491         reported by Andreas Schwab.
39492
39493 2006-05-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
39494             Bruno Haible  <bruno@clisp.org>
39495
39496         * m4/strndup.m4 (gl_FUNC_STRNDUP): Replace the AC_REPLACE_FUNCS with a
39497         check for the declaration of strnlen and a run test that exposes the
39498         AIX 5.1 strnlen bug.  In the failure case, #define strndup to
39499         rpl_strndup.
39500
39501 2006-05-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
39502             Bruno Haible  <bruno@clisp.org>
39503
39504         * lib/strndup.c (strndup) [!_LIBC]: Don't undefine macro definition.
39505
39506 2006-05-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
39507
39508         * m4/c-strtod.m4 (gl_C99_STRTOLD): Use a link test rather than a
39509         compile test, for Tru64 4.0D.
39510
39511 2006-05-28  Karl Berry  <karl@gnu.org>
39512
39513         * config/srclist.txt (printf-args.c): lose sync.
39514
39515 2006-05-26  Martin Lambers  <marlam@marlam.de>
39516
39517         * lib/getpass.c: Updates the test for the native W32 API, and adds
39518         missing includes, thus fixing compilation warnings.
39519
39520 2006-05-25  Sergey Poznyakoff  <gray@gnu.org.ua>
39521
39522         * lib/exclude.c (exclude_fnmatch): New function.
39523         (excluded_file_name): Call exclude_fnmatch.
39524         * lib/exclude.h (excluded_file_name): New prototype
39525
39526 2006-05-25  Paul Eggert  <eggert@cs.ucla.edu>
39527
39528         * lib/tempname.c (small_open, large_open): New macros.
39529         (__open, __open64) [!_LIBC]: Remove.
39530         (__gen_tempname): Use small_open and large_open instead of __open
39531         and __open64.  This fixes a portability bug on HP-UX 11.11i
39532         reported by Simon Wing-Tang in
39533         <http://lists.gnu.org/archive/html/bug-coreutils/2006-05/msg00114.html>.
39534
39535 2006-05-24  Bruno Haible  <bruno@clisp.org>
39536
39537         * lib/printf-args.c (printf_fetchargs): Turn NULL pointers for
39538         TYPE_STRING and TYPE_WIDE_STRING into a non-NULL replacement.
39539         Reported by Thorsten Maerz <torte@netztorte.de> via
39540         Aaron Stone <aaron@serendipity.cx>.
39541
39542 2006-05-19  Paul Eggert  <eggert@cs.ucla.edu>
39543
39544         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Rename cache variables to use
39545         gl_ rather than jm_.  Link, don't run, so that cross-compiles are
39546         allowed.  Check that resulting type is arithmetic.  Move AC_REQUIRE
39547         and AC_CHECK_HEADERS_ONCE outside of AC_CACHE_CHECK, since they're
39548         not really conditional on the cache.
39549         (gl_PREREQ_NANOSLEEP): Check for sys/select.h.
39550
39551 2006-05-19  Paul Eggert  <eggert@cs.ucla.edu>
39552
39553         * lib/nanosleep.c [HAVE_SYS_SELECT_H]: Include <sys/select.h>.
39554         Use the usual Autoconf way to include <time.h> and/or sys/time.h.
39555         (my_usleep): Don't mishandle maximum value.
39556
39557 2006-05-19  Jim Meyering  <jim@meyering.net>
39558
39559         * lib/getugroups.c: Correct an outdated comment.  From Bruno Haible.
39560
39561 2006-05-17  Bruno Haible  <bruno@clisp.org>
39562
39563         Cygwin portability.
39564         * lib/classpath.c (PATH_SEPARATOR) [CYGWIN]: Define as ':'.
39565
39566 2006-05-17  Bruno Haible  <bruno@clisp.org>
39567
39568         * lib/stdint_.h: Fix recognition of Cygwin.
39569
39570 2006-05-15  Bruno Haible  <bruno@clisp.org>
39571
39572         * build-aux/config.rpath: Improve support for Sun C 5.9 on Linux, based
39573         on libtool patch by Ralf Wildenhues.
39574
39575 2006-05-14  Paul Eggert  <eggert@cs.ucla.edu>
39576
39577         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Fix overly-picky
39578         test for C99 conformance; (bool) 0.5 is an integer constant
39579         expression, but (bool) -0.5 is not.  Problem reported by Fedor
39580         Sergeev in <http://forum.sun.com/jive/thread.jspa?threadID=96202>.
39581
39582 2006-05-11  Simon Josefsson  <jas@extundo.com>
39583
39584         * m4/xvasprintf.m4: Fix obvious typo.
39585
39586 2006-05-11  Jim Meyering  <jim@meyering.net>
39587
39588         * lib/sha1.c (sha1_buffer): Correct comment: s/MD5/SHA1/.  From
39589         James Lemley.
39590
39591 2006-05-10  Simon Josefsson  <jas@extundo.com>
39592
39593         * lib/md4.c: Typo fix, update copyright years.
39594         (K1, K2): Don't use L because it turn computations into 64-bit on
39595         64-bit platforms.
39596
39597 2006-05-10  Paul Eggert  <eggert@cs.ucla.edu>
39598
39599         * lib/crc.c (crc32_update): Remove unnecessary L suffix.
39600         * lib/md4.c (rol): Cast right-shift arg to uint32_t to prevent
39601         unwanted sign propagation, e.g., on hosts with 64-bit int.
39602         There still are some problems with reeelly weird theoretical hosts
39603         (e.g., 33-bit int) but it's not worth worrying about now.
39604         * lib/sha1.c (rol): Likewise.
39605         (K1, K2, K3, K4): Remove unnecessary L suffix.
39606
39607 2006-05-10  Bruno Haible  <bruno@clisp.org>
39608
39609         * lib/des.c: Cast to avoid warnings.
39610
39611 2006-05-09  Bruno Haible  <bruno@clisp.org>
39612
39613         * modules/xvasprintf (Files): Add m4/xvasprintf.m4.
39614         (Depends-on): Depend also on xsize, stdarg.
39615         (configure.ac): Add gl_XVASPRINTF.
39616
39617 2006-05-09  Bruno Haible  <bruno@clisp.org>
39618
39619         * m4/xvasprintf.m4: New file.
39620
39621 2006-05-09  Bruno Haible  <bruno@clisp.org>
39622
39623         * lib/xvasprintf.c: Include limits.h, string.h, xsize.h.
39624         (EOVERFLOW): Define fallback value.
39625         (xstrcat): New function.
39626         (xvasprintf): Recognize the special case of a string concatenation.
39627
39628 2006-05-08  Eric Blake  <ebb9@byu.net>
39629
39630         * gnulib-tool (func_version): Base copyright year on CVS date.
39631         (func_emit_copyright_notice): New function.
39632         (func_emit_lib_Makefile_am): Use it.
39633         (func_emit_tests_Makefile_am): Likewise.
39634         (func_import): Likewise.
39635
39636 2006-05-08  Bruno Haible  <bruno@clisp.org>
39637
39638         * modules/stdarg: New file.
39639         * MODULES.html.sh (func_all_modules): Add section for <stdarg.h>.
39640
39641 2006-05-08  Bruno Haible  <bruno@clisp.org>
39642
39643         * m4/stdarg.m4: New file, from GNU gettext.
39644
39645 2006-05-08  Bruno Haible  <bruno@clisp.org>
39646
39647         * config/srclist.txt (build-aux/config.rpath): different from latest
39648         release.
39649
39650 2006-05-08  Bruno Haible  <bruno@clisp.org>
39651
39652         * build-aux/config.rpath: Add support for Sun C 5.9 on Linux.
39653
39654 2006-05-05  Jim Meyering  <jim@meyering.net>
39655
39656         * m4/warning.m4: New file, derived from bison's file by the same name.
39657
39658 2006-05-03  Bruno Haible  <bruno@clisp.org>
39659
39660         * lib/stdint_.h: Shorter URL.
39661         * lib/inttypes.h: Likewise.
39662
39663 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
39664
39665         * modules/inttypes (Maintainer): Change from Derek Price to 'all'.
39666
39667 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
39668
39669         * lib/verify.h: Document the internals better.  Most of this change
39670         was written by Bruno Haible.
39671
39672 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
39673
39674         * doc/verify.texi: New file, partly based on a proposal by
39675         Bruno Haible.
39676
39677 2006-05-02  Bruno Haible  <bruno@clisp.org>
39678
39679         * m4/full-header-path.m4 (gl_FULL_HEADER_PATH): Move the include_next
39680         test from here...
39681         * m4/_inttypes_h.m4 (gl_INTTYPES_H): ... to here.
39682
39683 2006-04-29  Bruno Haible  <bruno@clisp.org>
39684
39685         * lib/gcd.c: Use WORD_T and GCD instead of unsigned long and gcd.
39686         Suggested by Oskar Liljeblad <oskar@osk.mine.nu>.
39687
39688 2006-04-29  Bruno Haible  <bruno@clisp.org>
39689
39690         * gnulib-tool: Make --update option actually work.
39691
39692 2006-04-29  Bruno Haible  <bruno@clisp.org>
39693
39694         * doc/gcd.texi: New file.
39695         * doc/gnulib.texi: Include it.
39696
39697 2006-04-25  Paul Eggert  <eggert@cs.ucla.edu>
39698
39699         * lib/getdate.y (get_date): When adding relative date, start with the
39700         initial time, not with the result of the first mktime call.
39701
39702 2006-04-25  Bruno Haible  <bruno@clisp.org>
39703
39704         * gnulib-tool (func_import): Output the include directives in three
39705         blocks, sorted separately.
39706         Reported by Ben Pfaff <blp@cs.stanford.edu>.
39707
39708 2006-04-24  Paul Eggert  <eggert@cs.ucla.edu>
39709
39710         * m4/unlink-busy.m4 (gl_FUNC_UNLINK_BUSY_TEXT): Use prototype
39711         to define main with arguments, for C++.  Reported by Eric Blake.
39712         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC):
39713         Prefer 'int main ()' to 'int main (void)', for C++.
39714         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Likewise.
39715         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Specify a return type
39716         for 'main', for C99 and C++.
39717
39718 2006-04-24  Paul Eggert  <eggert@cs.ucla.edu>
39719
39720         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Use return, not exit.
39721         Don't assume that exit status -1 is valid.
39722         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
39723         * m4/putenv.m4 (gl_FUNC_PUTENV): Likewise.
39724         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Likewise.
39725         * m4/readdir.m4 (GL_FUNC_READDIR): Include <stdlib.h>.
39726         * m4/rename.m4 (vb_FUNC_RENAME): Likewise.
39727         * m4/unlink-busy.m4 (gl_FUNC_UNLINK_BUSY_TEXT): Use AC_RUN_IFELSE,
39728         not AC_TRY_RUN.  Use return, not exit.  Don't assume that
39729         functions can be used without declaring them, or that you can
39730         exit with status -1.
39731         * m4/utimes-null.m4 (gl_FUNC_UTIMES_NULL): Likewise.
39732
39733 2006-04-24  Karl Berry  <karl@gnu.org>
39734
39735         * config/srclist.txt (longdouble.m4): sync lost.
39736
39737 2006-04-24  Eric Blake  <ebb9@byu.net>
39738
39739         * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Avoid unused variable warning.
39740
39741 2006-04-24  Bruno Haible  <bruno@clisp.org>
39742
39743         * m4/poll.m4 (gl_FUNC_POLL): When cross-compiling, reject also the
39744         poll() implementation in AIX.
39745         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
39746
39747 2006-04-24  Bruno Haible  <bruno@clisp.org>
39748
39749         * m4/poll.m4 (gl_FUNC_POLL): Rearrange code, so that POLL_H gets
39750         assigned exactly once.
39751
39752 2006-04-23  Claudio Fontana  <claudio@gnu.org>
39753             Bruno Haible  <bruno@clisp.org>
39754
39755         * modules/gettext (Makefile.am): Add a -I flag for <libintl.h>.
39756         * gnulib-tool (func_emit_lib_Makefile_am): Emit empty default value
39757         for AM_CPPFLAGS.
39758
39759 2006-04-23  Bruno Haible  <bruno@clisp.org>
39760
39761         * modules/copy-file: Depend on unistd.
39762         * modules/execute: Likewise.
39763         * modules/fatal-signal: Likewise.
39764         * modules/findprog: Likewise.
39765         * modules/mkdtemp : Likewise.
39766         * modules/pipe: Likewise.
39767         * modules/wait-process: Likewise.
39768
39769 2006-04-23  Bruno Haible  <bruno@clisp.org>
39770
39771         * lib/fwriteerror.c (fwriteerror): Call fclose also when an error
39772         condition was already detected.
39773         Reported by Ben Pfaff <blp@cs.stanford.edu>.
39774
39775 2006-04-23  Bruno Haible  <bruno@clisp.org>
39776
39777         * lib/copy-file.c: Include <unistd.h> unconditionally.
39778         * lib/execute.c: Likewise.
39779         * lib/fatal-signal.c: Likewise.
39780         * lib/findprog.c: Likewise.
39781         * lib/mkdtemp.c: Likewise.
39782         * lib/pipe.h: Likewise.
39783         * lib/pipe.c: Likewise.
39784         * lib/wait-process.h: Likewise.
39785
39786 2006-04-23  Bruno Haible  <bruno@clisp.org>
39787
39788         * gnulib-tool (func_usage): Fix --import description. Document
39789         --update.
39790         (func_import): Create temporary file in a temporary directory, if
39791         --dry-run is specified. Silence errors from 'grep' when there are no
39792         m4 files in $m4dir.
39793         (func_create_testdir): Silence errors from 'grep' when there are no
39794         m4 files in $m4dir.
39795         Reported by Karl Berry <karl@freefriends.org>.
39796
39797 2006-04-20  Bruno Haible  <bruno@clisp.org>
39798
39799         * m4/argp.m4 (gl_ARGP): Don't call AC_CHECK_DECLS_ONCE with more than
39800         one argument, so that the code will be portable to Autoconf 2.60.
39801         * m4/getlogin_r.m4 (gl_PREREQ_GETLOGIN_R): Likewise.
39802         * m4/getpass.m4 (gl_PREREQ_GETPASS): Likewise.
39803         * m4/unlocked-io.m4 (gl_FUNC_GLIBC_UNLOCKED_IO): Likewise.
39804
39805 2006-04-19  Derek Price  <derek@ximbiot.com>
39806             Eric Blake  <ebb9@byu.net>
39807
39808         * m4/full-header-path.m4 (gl_FULL_HEADER_PATH): Use </full/path.h>
39809         rather than "/full/path.h".  Update comment to match.  Shorten &
39810         generalize m4_translit call via AS_TR_CPP.
39811
39812 2006-04-19  Derek Price  <derek@ximbiot.com>
39813             Eric Blake  <ebb9@byu.net>
39814
39815         * lib/inttypes.h: Correct grammar in comment.
39816
39817 2006-04-18  Derek Price  <derek@ximbiot.com>
39818             Paul Eggert  <eggert@cs.ucla.edu>
39819
39820         * modules/inttypes: New file.
39821         * modules/strtoimax, modules/strtoumax: Depend on inttypes.
39822
39823 2006-04-18  Derek Price  <derek@ximbiot.com>
39824             Paul Eggert  <eggert@cs.ucla.edu>
39825
39826         * m4/_inttypes_h.m4, m4/full-header-path.m4, m4/include_next.m4:
39827         New files.
39828
39829 2006-04-18  Derek Price  <derek@ximbiot.com>
39830             Paul Eggert  <eggert@cs.ucla.edu>
39831
39832         * lib/inttypes.h: New file.
39833         * lib/strtoimax.c: Assume <inttypes.h>.
39834
39835 2006-04-15  Paul Eggert  <eggert@cs.ucla.edu>
39836
39837         * lib/utimens.c (futimens): glibc futimesat messes up if /proc
39838         isn't mounted.  Problem reported by Kir Kolyshkin.
39839
39840 2006-04-13  Paul Eggert  <eggert@cs.ucla.edu>
39841
39842         * lib/regcomp.c (init_dfa): Don't use wchar_t or wctype_t if
39843         RE_ENABLE_I18N is not defined.  Problem reported by Mark D. Baushke via
39844         Derek R. Price.
39845         * lib/regex.h (RE_DUP_MAX): Update comment to match current
39846         implementation.
39847
39848 2006-04-12  Eric Blake  <ebb9@byu.net>
39849
39850         * modules/time_r (Makefile.am): Remove lib_SOURCES line, as this
39851         is now done automatically by the corresponding Autoconf macro.
39852
39853 2006-04-11  Paul Eggert  <eggert@cs.ucla.edu>
39854
39855         * m4/time_r.m4 (gl_TIME_R): Add AC_LIBSOURCES for time_r.c and
39856         time_r.h.
39857
39858 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
39859
39860         Merge regex changes from libc, removing some of our
39861         POSIX-conformance changes that were rejected and redoing them in a
39862         less-intrusive way.
39863
39864         * lib/regcomp.c (re_compile_internal, init_dfa):
39865         Length arg is now size_t, not Idx.  All uses changed.
39866         (peek_token): Forward decl now says internal_function.
39867         (__re_error_msgid, __re_error_msgid_idx):
39868         Now static rather than extern with attribute_hidden.
39869         (re_compile_pattern) [!defined _LIBC]: Use K&R-style defn.
39870         For some reason libc prefers K&R style defns for external functions.
39871         (regerror) [!defined _LIBC]: Likewise.
39872         (re_set_syntax, re_compile_fastmap, regcomp, regfree, re_comp):
39873         (seek_collating_symbol_entry, lookup_collation_sequence_value):
39874         (build_range_exp, build_collating_symbol):
39875         Use K&R-style defn.
39876         (re_compile_fastmap): Use '\0' to memset, not 0.
39877         (utf8_sb_map): Make the calculations more obvious.
39878         (init_dfa, parse_bracket_exp, build_charclass_op):
39879         Call calloc and cast result, as glibc does.
39880         (init_word_char, fetch_token, peek_token, peek_token_bracket):
39881         (build_range_exp, build_collating_symbol):
39882         Now internal functions.
39883
39884         * lib/regex.c [!defined _LIBC]: Allow compiling with C++ compilers.
39885
39886         * lib/regex.h (__USE_GNU_REGEX): New macro.  Don't depend on
39887         _REGEX_SOURCE any more; depend on _GNU_SOURCE instead.
39888         Don't depend on VMS; depend on __VMS instead, for POSIX
39889         namespace cleanness.
39890         (regoff_t): Define to ssize_t, not long int.
39891
39892         Remove the REG_ macros named below.  Instead, make the old names
39893         (e.g., RE_BACKSLASH_ESCAPE_IN_LISTS) visible only if
39894         __USE_GNU_REGEX.
39895         (REG_BACKSLASH_ESCAPE_IN_LISTS):
39896         (REG_BK_PLUS_QM, REG_CHAR_CLASSES, REG_CONTEXT_INDEP_ANCHORS):
39897         (REG_CONTEXT_INDEP_OPS, REG_CONTEXT_INVALID_OPS):
39898         (REG_DOT_NEWLINE, REG_DOT_NOT_NULL, REG_HAT_LISTS_NOT_NEWLINE):
39899         (REG_INTERVALS, REG_LIMITED_OPS, REG_NEWLINE_ALT):
39900         (REG_NO_BK_BRACES, REG_NO_BK_PARENS, REG_NO_BK_REFS):
39901         (REG_NO_BK_VBAR, REG_NO_EMPTY_RANGES):
39902         (REG_UNMATCHED_RIGHT_PAREN_ORD, REG_NO_POSIX_BACKTRACKING):
39903         (REG_NO_GNU_OPS, REG_DEBUG, REG_INVALID_INTERVAL_ORD):
39904         (REG_IGNORE_CASE, REG_CARET_ANCHORS_HERE):
39905         (REG_CONTEXT_INVALID_DUP, REG_NO_SUB, REG_SYNTAX_EMACS):
39906         (REG_SYNTAX_AWK, REG_SYNTAX_GNU_AWK, REG_SYNTAX_POSIX_AWK):
39907         (REG_SYNTAX_GREP, REG_SYNTAX_EGREP, REG_SYNTAX_POSIX_EGREP):
39908         (REG_SYNTAX_ED, REG_SYNTAX_SED, _REG_SYNTAX_POSIX_COMMON):
39909         (REG_SYNTAX_POSIX_BASIC, REG_SYNTAX_POSIX_MINIMAL_BASIC):
39910         (REG_SYNTAX_POSIX_EXTENDED, REG_SYNTAX_POSIX_MINIMAL_EXTENDED):
39911         (REG_DUP_MAX, REG_UNALLOCATED, REG_REALLOCATE, REG_FIXED):
39912         (REG_NREGS):
39913         Remove.  All uses replaced by the old RE_* names.
39914         (RE_BACKSLASH_ESCAPE_IN_LISTS):
39915         (RE_BK_PLUS_QM, RE_CHAR_CLASSES, RE_CONTEXT_INDEP_ANCHORS):
39916         (RE_CONTEXT_INDEP_OPS, RE_CONTEXT_INVALID_OPS):
39917         (RE_DOT_NEWLINE, RE_DOT_NOT_NULL, RE_HAT_LISTS_NOT_NEWLINE):
39918         (RE_INTERVALS, RE_LIMITED_OPS, RE_NEWLINE_ALT):
39919         (RE_NO_BK_BRACES, RE_NO_BK_PARENS, RE_NO_BK_REFS):
39920         (RE_NO_BK_VBAR, RE_NO_EMPTY_RANGES):
39921         (RE_UNMATCHED_RIGHT_PAREN_ORD, RE_NO_POSIX_BACKTRACKING):
39922         (RE_NO_GNU_OPS, RE_DEBUG, RE_INVALID_INTERVAL_ORD):
39923         (RE_IGNORE_CASE, RE_CARET_ANCHORS_HERE):
39924         (RE_CONTEXT_INVALID_DUP, RE_NO_SUB):
39925         Don't bother having these macros be independent of each others'
39926         values, since they no longer exist in the POSIX name space.
39927
39928         Rename the following member names back to their old names,
39929         unless !__USE_GNU_REGEX.  All uses changed back.
39930         (buffer): Renamed from re_buffer.
39931         (allocated): Renamed from re_allocated.
39932         (used): Renamed from re_used.
39933         (syntax): Renamed from re_syntax.
39934         (fastmap): Renamed from re_fastmap.
39935         (translate): Renamed from re_translate.
39936         (can_be_null): Renamed from re_can_be_null.
39937         (regs_allocated): Renamed from re_regs_allocated.
39938         (fastmap_accurate): Renamed from re_fastmap_accurate.
39939         (no_sub): Renamed from re_no_sub.
39940         (not_bol): Renamed from re_not_bol.
39941         (not_eol): Renamed from re_not_eol.
39942         (newline_anchor): Renamed from re_newline_anchor.
39943         (num_regs): Renamed from rm_num_regs.
39944         (start): Renamed from rm_start.
39945         (end): Renamed from rm_end.
39946
39947         (free_state): Move up a bit.
39948
39949         * lib/regex_internal.h (inline) [__GNUC__ < 3 && defined _LIBC]:
39950         #define to be empty.
39951         (ASCII_CHARS): New macro, replacing all uses of 0x80 and/or SBC_MAX / 2
39952         when that is what is intended.
39953         (SBC_MAX): Define to UCHAR_MAX + 1, not 256.
39954         (__re_error_msgid, __re_error_msgid_idx): Remove decls; not needed.
39955         (MAX): New macro.
39956         (re_xmalloc, re_calloc, re_xrealloc, re_x2realloc): Remove.
39957         All uses changed back to re_malloc, etc.  It's now the caller's
39958         responsibility to check for overflow; all callers changed.
39959         (re_alloc_oversized, re_x2alloc_oversized, re_xnmalloc, re_xnrealloc):
39960         (re_x2nrealloc): Remove.
39961         (free_state): Remove decl.
39962
39963         * lib/regexc.c (regexec, re_match, re_search, re_match_2, re_search_2):
39964         (re_set_registers, re_exec):
39965         Use K&R-style defn.
39966
39967         2006-01-31  Roland McGrath  <roland@redhat.com>
39968
39969         * lib/regcomp.c (calc_eclosure_iter): Remove dead variables.
39970         Reported by Mike Frysinger <vapier@gentoo.org>.
39971
39972         2006-01-15  Andreas Jaeger  <aj@suse.de>
39973
39974         [BZ #1950]
39975         * lib/regex_internal.c (re_string_reconstruct): Adjust for
39976         build_wcs_upper_buffer change.
39977         (build_wcs_upper_buffer): Change return type.
39978
39979         2005-12-10  Ulrich Drepper  <drepper@redhat.com>
39980
39981         * lib/regex_internal.h: Include <stdint.h> if available.
39982
39983         2005-12-06  Paolo Bonzini  <bonzini@gnu.org>
39984
39985         * lib/regex_internal.h (SIZE_MAX): Provide a default definition.
39986
39987         2005-10-14  Ulrich Drepper  <drepper@redhat.com>
39988
39989         * lib/regcomp.c: Adjust for changed secondary hash function.
39990
39991         2005-09-30  Ulrich Drepper  <drepper@redhat.com>
39992
39993         * lib/regex.h: Pretty printing.
39994         Clean up namespace a bit.
39995
39996         2005-09-30  Jakub Jelinek  <jakub@redhat.com>
39997
39998         * lib/regexec.c (update_cur_sifted_state, check_arrival,
39999         check_arrival_add_next_nodes): Avoid using uninitialized variable.
40000
40001         2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
40002                     Ulrich Drepper  <drepper@redhat.com>
40003
40004         [BZ #1302]
40005         * lib/regex_internal.h (bitset_t): Renamed from bitset.  All uses
40006         changed.
40007         (bitset_word_t): Renamed from bitset_word.  All uses changed.
40008
40009         2005-09-22  Ulrich Drepper  <drepper@redhat.com>
40010
40011         [BZ #281]
40012         * lib/regex.h: Define RE_TRANSLATE_TYPE as unsigned char *.
40013         * lib/regcomp.c: Remove unnecessary uses of
40014         unsigned RE_TRANSLATE_TYPE.
40015         * lib/regex_internal.h: Likewise.
40016         * lib/regex_internal.c: Likewise.
40017         * lib/regexec.c: Likewise.
40018         Based on a patch by Stepan Kasal <kasal@ucw.cz>.
40019
40020         2005-09-07  Ulrich Drepper  <drepper@redhat.com>
40021
40022         * lib/regexec.c (find_recover_state): Remove unnecessary
40023         initialization.
40024         (transit_state_bkref): Make DFA a const pointer.
40025         (get_subexp): Likewise.
40026         (check_arrival): Likewise.
40027         (update_cur_sifted_state): Likewise.
40028         (re_search_internal): Likewise.
40029         (prune_impossible_nodes): Likewise.
40030         (acquire_init_state_context): Likewise.
40031         (proceed_next_node): Likewise.
40032         (set_regs): Likewise.
40033         (free_fail_stack_return): Likewise.
40034         (check_arrival_expand_ecl): Mark DFA parameter as const.
40035         (check_arrival_expand_ecl_sub): Likewise.
40036         (check_subexp_limits): Likewise.
40037         (sub_epsilon_src_nodes):  Likewise.
40038         (add_epsilon_src_nodes):  Likewise.
40039         (merge_state_array): Likewise.
40040         (update_regs): Likewise.
40041         (build_trtable): Likewise.
40042         (sift_states_backward): Mark MCTX parameter as const.
40043         (build_sifted_states): Likewise.
40044         (update_cur_sifted_state): Likewise.
40045         (sift_states_mkref): Likewise.
40046         (check_arrival_expand_ecl): Mark eclosure as const.
40047         (check_dst_limits_calc_pos_1): Likewise.
40048         * lib/regex_internal.h (re_match_context_t): Make dfa a const
40049         pointer.
40050
40051         2005-09-06  Ulrich Drepper  <drepper@redhat.com>
40052
40053         * lib/regexec.c (merge_state_with_log): Define dfa as const pointer.
40054         (transit_state_sb): Likewise.
40055         (transit_state_mb): Likewise.
40056         (sift_states_iter_mb): Likewise.
40057         (check_arrival_add_next_nodes): Likewise.
40058         (check_node_accept_bytes): Change first parameter to pointer-to-const.
40059         [_LIBC] (re_search_2_stub): Use mempcpy.
40060
40061         * lib/regex_internal.c (re_string_reconstruct): Avoid calling
40062         mbrtowc for very simple UTF-8 case.
40063
40064         * lib/regex_internal.c (re_acquire_state): Make DFA pointer arg
40065         a pointer-to-const.
40066         (re_acquire_state_context): Likewise.
40067         * lib/regex_internal.h: Adjust prototypes.
40068
40069         * lib/regex.c: Prevent using C++ compilers.
40070
40071         * lib/regex_internal.c (re_acquire_state): Minor code rearrangement.
40072         (re_acquire_state_context): Likewise.
40073
40074 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
40075
40076         * modules/regex (Depends-on): Add ssize_t.
40077
40078 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
40079
40080         * m4/regex.m4 (gl_REGEX): Check for new glibc interface to
40081         translation table.
40082
40083 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
40084
40085         * doc/gnulib-tool.texi (Modified imports): pathname -> file name.
40086
40087 2006-03-29  Mark D. Baushke  <mdb@gnu.org>
40088             Bruno Haible  <bruno@clisp.org>
40089
40090         * lib/stdint_.h: On OpenBSD, don't redefine types already included in
40091         <sys/types.h> and <inttypes.h>.
40092
40093 2006-03-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
40094
40095         * m4/argz.m4 (gl_FUNC_ARGZ): If we define `error_t', also define
40096         `__error_t_defined', so argp.h will not typedef the former.
40097
40098 2006-03-25  Paul Eggert  <eggert@cs.ucla.edu>
40099
40100         * m4/regex.m4 (gl_REGEX): Don't insist on REG_SYNTAX_POSIX_EGREP,
40101         REG_SYNTAX_EMACS, and REG_IGNORE_CASE.  Settle for the traditional
40102         glibc names.  Even if glibc is changed to conform to POSIX, the
40103         traditional names will be available anyway, since regex depends on
40104         the extensions module.  Also, fix a longstanding typo in the
40105         implementation of Spencer ERE test #75 from grep 2.3.  Problems
40106         reported by Emanuele Giaquinta.  Also, change sense of cached
40107         variable, so that the message makes sense.
40108
40109 2006-03-24  Simon Josefsson  <jas@extundo.com>
40110
40111         * lib/base64.c: Fix problems reported by Eric Blake <ebb9@byu.net>,
40112         including some doc fixes.
40113         (base64_encode_alloc): Fix +1 bug on allocation failures.
40114
40115 2006-03-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
40116
40117         * lib/base64.c (base64_encode): Do not read past end of array with
40118         unsanitized input on systems with CHAR_BIT > 8.
40119
40120 2006-03-24  Eric Blake  <ebb9@byu.net>
40121
40122         * lib/time_r.c (copy_string_result): Remove, as it is no longer used.
40123
40124 2006-03-22  Karl Berry  <karl@gnu.org>
40125
40126         * config/srclist.txt (*setenv.[ch]): get from coreutils.
40127         * config/srclistvars.sh (COREUTILS): new var.
40128
40129 2006-03-17  Jim Meyering  <jim@meyering.net>
40130
40131         * m4/regex.m4 (gl_REGEX): Fix typo in last change:
40132         s/_REGEX_WIDE_OFFSETS/_REGEX_LARGE_OFFSETS/.
40133
40134 2006-03-16  Paul Eggert  <eggert@cs.ucla.edu>
40135
40136         * m4/regex.m4 (gl_REGEX): Don't check for off_t, since the code
40137         no longer needs it.  Instead, check that regoff_t is as least
40138         as wide as ptrdiff_t.
40139
40140         Don't define _REGEX_WIDE_OFFSETS unless using the included regex,
40141         so that our regex.h stays compatible with the installed regex.
40142         This is helpful for installers who configure --without-included-regex.
40143         Problem reported by Emanuele Giaquinta.
40144
40145 2006-03-16  Paul Eggert  <eggert@cs.ucla.edu>
40146
40147         * lib/regex.h (regoff_t) [defined _REGEX_LARGE_OFFSETS]:
40148         Typedef to long int, not to off_, as POSIX will likely change
40149         in that direction.
40150
40151 2006-03-15  Eric Blake  <ebb9@byu.net>
40152
40153         * m4/dirfd.m4 (gl_FUNC_DIRFD): Use AC_REQUIRE for AC_HEADER_DIRENT.
40154
40155 2006-03-13  Sergey Poznyakoff  <gray@gnu.org.ua>
40156
40157         * lib/argp-help.c (validate_uparams): Fix typo
40158         * lib/argp-parse.c (argp_default_options): Consistently begin help
40159         messages with a lowercase letter.
40160
40161 2006-03-11  Paul Eggert  <eggert@cs.ucla.edu>
40162
40163         * lib/time_r.h (asctime_r, ctime_r): Remove.  These functions can
40164         overrun buffers and shouldn't be used (much as gets shouldn't be
40165         used).
40166         * lib/time_r.c (asctime_r, ctime_r): Likewise.
40167
40168 2006-03-08  Simon Josefsson  <jas@extundo.com>
40169
40170         * m4/gc-random.m4: Permit 'no' as variable values and fix warnings,
40171         suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
40172
40173 2006-03-08  Simon Josefsson  <jas@extundo.com>
40174
40175         * m4/gc-random.m4: Call AC_CANONICAL_HOST and use $host_os instead of
40176         $target, suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
40177
40178 2006-03-08  Simon Josefsson  <jas@extundo.com>
40179
40180         * lib/gc-gnulib.c (randomize): Don't open files called 'no', they
40181         signal that configure disabled the device.
40182
40183 2006-03-08  Simon Josefsson  <jas@extundo.com>
40184
40185         * build-aux/maint.mk: Fix refresh-po, to handle no translated
40186         languages.
40187
40188 2006-03-07  Simon Josefsson  <jas@extundo.com>
40189
40190         * modules/getopt (Depends-on): Add unistd.
40191
40192         * modules/unistd: New file.
40193
40194 2006-03-07  Simon Josefsson  <jas@extundo.com>
40195
40196         * modules/gc-random: New file.
40197
40198 2006-03-07  Simon Josefsson  <jas@extundo.com>
40199
40200         * m4/unistd_h.m4: New file.
40201
40202 2006-03-07  Simon Josefsson  <jas@extundo.com>
40203
40204         * m4/readline.m4 (gl_FUNC_READLINE): Rewrite the cached part of the
40205         test to be side-effect free by storing the result in the cache
40206         variable gl_cv_lib_readline, and moving the assignment of
40207         LIBREADLINE and LTLIBREADLINE outside the COMMANDS-TO-SET-IT.
40208         From Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
40209
40210 2006-03-07  Simon Josefsson  <jas@extundo.com>
40211
40212         * m4/gc-random.m4: New file, mostly from gc.m4.  Warn instead of
40213         error on missing devices (the functions will return an error).
40214
40215         * m4/gc.m4: Move random stuff to gc-random.m4
40216
40217 2006-03-07  Simon Josefsson  <jas@extundo.com>
40218
40219         * lib/unistd_.h: New file.
40220
40221 2006-03-07  Simon Josefsson  <jas@extundo.com>
40222
40223         * lib/gc-libgcrypt.c, gc-gnulib.c: Use GC_USE_RANDOM.
40224
40225 2006-03-07  Paul Eggert  <eggert@cs.ucla.edu>
40226
40227         * m4/unistd_h.m4 (gl_HEADER_UNISTD): Rename, to match modules file.
40228         Problem reported by Juan Manuel Guerrero.
40229
40230 2006-03-07  Paul Eggert  <eggert@cs.ucla.edu>
40231
40232         * lib/c-stack.c: Include unistd.h unconditionally, since we now assume
40233         the unistd module.
40234         * lib/getlogin_r.c: Likewise.
40235         * lib/getlogin_r.h: Likewise.
40236         * lib/glob.c: Likewise.
40237         * lib/pagealign_alloc.c: Likewise.
40238         * lib/unistd_.h: Remove; no longer needed.
40239
40240 2006-03-07  Paul Eggert  <eggert@cs.ucla.edu>
40241
40242         * MODULES.html.sh (Support for systems lacking POSIX:2001):
40243         Add unistd.
40244         * modules/c-stack (Depends-on): Add unistd.
40245         * modules/getlogin_r: Likewise.
40246         * modules/glob: Likewise.
40247         * modules/pagealign_alloc: Likewise.
40248         * modules/unistd (Files): Remove lib/unistd_.h.
40249         (EXTRA_DIST): Remove.
40250         (unistd.h): Create using 'echo' rather than 'cp', so that we don't
40251         need unistd_.h.
40252         (MOSTLYCLEANFILES): Remove unistd.h-t.
40253
40254 2006-03-03  Simon Josefsson  <jas@extundo.com>
40255
40256         * build-aux/maint.mk: Add several syntax checks from CoreUtils.
40257
40258 2006-03-03  Simon Josefsson  <jas@extundo.com>
40259
40260         * build-aux/maint.mk: Add refresh-po rule, based on ideas from
40261         libidn and bison.
40262
40263 2006-03-03  Simon Josefsson  <jas@extundo.com>
40264
40265         * build-aux/maint.mk: Add indent target.
40266
40267 2006-03-03  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de> (tiny change)
40268
40269         * m4/poll.m4 (gl_FUNC_POLL): If we deem poll(2) unacceptable, use
40270         our replacement poll.h in any case, to avoid a differing
40271         declaration from a system header.  Seen on AIX.
40272
40273 2006-03-01  Simon Josefsson  <jas@extundo.com>
40274
40275         * lib/readline.c: Fix typo, tiny patch from Stepan Kasal
40276         <kasal@ucw.cz>.
40277
40278 2006-03-01  Paul Eggert  <eggert@cs.ucla.edu>
40279
40280         * modules/gettime (Depends-on): Add extensions module.
40281         * modules/nanosleep (Depends-on): Likewise.
40282         * modules/settime (Depends-on): Likewise.
40283
40284 2006-03-01  Paul Eggert  <eggert@cs.ucla.edu>
40285
40286         * m4/clock_time.m4 (gl_CLOCK_TIME): Require gl_USE_SYSTEM_EXTENSIONS,
40287         not merely AC_GNU_SOURCE, for the benefit of Solaris 10 when compiled
40288         pedantically.
40289         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
40290         * m4/timespec.m4 (gl_TIMESPEC): Likewise.
40291
40292         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Use "=" with "test",
40293         not "==".  Reported by Ralf Wildenhues.
40294
40295 2006-03-01  Karl Berry  <karl@gnu.org>
40296
40297         * doc/Copyright/request-*: new files, synced from gnuorg.
40298
40299 2006-03-01  Karl Berry  <karl@gnu.org>
40300
40301         * config/srclist.txt (Copyright/*): new entries.
40302
40303 2006-02-28  Simon Josefsson  <jas@extundo.com>
40304
40305         * lib/getopt.c: Protect #include of unistd.h, for MSVS.
40306
40307 2006-02-27  Simon Josefsson  <jas@extundo.com>
40308
40309         * lib/base64.h: Indent #define's.  From Jim Meyering
40310         <jim@meyering.net>.
40311
40312 2006-02-27  Jim Meyering  <jim@meyering.net>
40313
40314         Revert the change of 2006-02-24, so these files can continue
40315         to be sync'd from gettext.
40316         * lib/mkdtemp.c, setenv.c, unsetenv.c: *Un*-normalize inclusion
40317         of `config.h'.
40318
40319 2006-02-26  Paul Eggert  <eggert@cs.ucla.edu>
40320
40321         * modules/intprops: New file.
40322         * MODULES.html.sh (Numeric conversion functions <stdlib.h>):
40323         Add intprops.
40324         * modules/getloadavg (Files): Remove lib/intprops.h.
40325         (Depends-on): Add intprops.
40326         * modules/human: Likewise.
40327         * modules/inttostr: Likewise.
40328         * modules/openat: Likewise.
40329         * modules/sig2str: Likewise.
40330         * modules/userspec: Likewise.
40331         * modules/utimecmp: Likewise.
40332         * modules/xnanosleep: Likewise.
40333         * modules/xstrtol: Likewise.
40334
40335 2006-02-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny changes)
40336
40337         * modules/xstrtod: Omit xstrtod.h, xstrtod.c; they're in LIB_SOURCES.
40338         * modules/lock-tests (TESTS): Use $(EXEEXT).
40339         * modules/tls-tests: Likewise.
40340         * modules/argp-tests: Likewise.
40341         (check_PROGRAMS): New var, replacing...
40342         (noinst_PROGRAMS, test_argp_SOURCES): Remove.
40343
40344 2006-02-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
40345
40346         * lib/mkdtemp.c, lib/setenv.c, lib/unsetenv.c: Normalize inclusion of
40347         `config.h'.
40348
40349 2006-02-24  Paul Eggert  <eggert@cs.ucla.edu>
40350
40351         * lib/glob.c: Say "invalid" rather than "illegal" in comments.
40352
40353 2006-02-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
40354
40355         Sync from coreutils.
40356         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Require gl_FUNC_LCHMOD and
40357         gl_CHDIR_SAFER.
40358
40359 2006-02-22  Jim Meyering  <jim@meyering.net>
40360
40361         Sync from coreutils.
40362         * m4/chdir-safer.m4: New file.
40363
40364 2006-02-20  Paul Eggert  <eggert@cs.ucla.edu>
40365
40366         * lib/getcwd.c (AT_FDCWD): Work around a bug in Solaris 9 and 10, where
40367         AT_FDCWD exceeds INT_MAX.
40368         * lib/openat.h (AT_FDCWD): Likewise.
40369
40370 2006-02-17  Eric Blake  <address@hidden>
40371
40372         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Fix caching error.
40373
40374 2006-02-16  Simon Josefsson  <jas@extundo.com>
40375
40376         * modules/getaddrinfo (Depends-on): Add sys_socket.
40377
40378 2006-02-15  Simon Josefsson  <jas@extundo.com>
40379
40380         * build-aux/maint.mk: Add dsyntax-check rule.
40381
40382 2006-02-15  Eric Blake  <ebb9@byu.net>
40383
40384         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Don't attempt using
40385         winsock2.h or ws2tcpip.h when sys/socket.h is present. Fixes
40386         'present but cannot compile' warnings on cygwin.
40387         * m4/socklen.m4 (gl_TYPE_SOCKLEN_T): Use gl_HEADER_SYS_SOCKET.  Don't
40388         use ws2tcpip.h if sys/socket.h works.
40389         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Use gl_HEADER_SYS_SOCKET.
40390         (gl_GETADDRINFO): Don't use ws2tcpip.h when sys/socket.h is present.
40391
40392 2006-02-14  Simon Josefsson  <jas@extundo.com>
40393
40394         * modules/maintainer-makefile (Files): Rename.
40395
40396         * build-aux/GNUmakefile: Rename Makefile.maint to maint.mk
40397         and (the local) Makefile.cfg to maint-cfg.mk.
40398
40399         * build-aux/Makefile.maint, build-aux/maint.mk: Renamed the former
40400         to the latter.
40401
40402         * modules/maintainer-makefile: New module.
40403
40404         * build-aux/Makefile.maint: New file, from GNU CoreUtils, although
40405         severaly stripped to make it possible to build it up from scratch
40406         with reliable tests.
40407
40408         * build-aux/GNUmakefile: New file, from GNU CoreUtils with some
40409         fixes to permit overriding the default actions when configure and
40410         makefile are not available.
40411
40412 2006-02-14  Paul Eggert  <eggert@cs.ucla.edu>
40413
40414         Sync from coreutils.
40415         * modules/lstat (Depends-on): Don't depend on xalloc.
40416         (License): Change from GPL to LGPL, since this is now simply a
40417         replacement for a libc function.
40418
40419 2006-02-14  Jim Meyering  <jim@meyering.net>
40420
40421         Sync from coreutils.
40422
40423         Eliminate the unwelcome (albeit unlikely) possibility of xmalloc
40424         failure on deficient systems, and simplify gnulib lgpl dependencies.
40425         * lib/lstat.c (rpl_lstat): Rewrite to use stat() in place of the
40426         xmalloc/lstat combination.  Based on a patch from Bruno Haible.
40427
40428         * lib/xalloc-die.c: Remove unused definition of N_.
40429
40430 2006-02-14  Jim Meyering  <jim@meyering.net>
40431
40432         Sync from coreutils.
40433         * m4/ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): Invoke
40434         AC_CHECK_FUNCS(getmntent) unconditionally so that tests of
40435         $ac_cv_func_getmntent (e.g., in gl_LIST_MOUNTED_FILE_SYSTEMS) need not
40436         double-quote uses of that variable, to accommodate the rare case in
40437         which getmntent is available in none of the libraries checked.  This
40438         happens at least on FreeBSD 5.0.
40439
40440 2006-02-13  Simon Josefsson  <jas@extundo.com>
40441
40442         * gnulib-tool (Usage): Fix --import, from
40443         karl@freefriends.org (Karl Berry).
40444
40445 2006-02-13  Sergey Poznyakoff  <gray@gnu.org.ua>
40446
40447         * lib/argp-fmtstream.c: Restore another bugfix lost on 2005-12-12
40448
40449 2006-02-07  Sergey Poznyakoff  <gray@gnu.org.ua>
40450
40451         * lib/argp-namefrob.h: Restore changes accidentally lost during the
40452         "autoupdate" on 2005-12-12.
40453
40454 2006-02-07  Paul Eggert  <eggert@cs.ucla.edu>
40455
40456         * modules/closeout (Depends-on): Remove atexit.
40457
40458 2006-02-07  Paul Eggert  <eggert@cs.ucla.edu>
40459
40460         * lib/closeout.c (close_stdout): Don't assume 'bool' converts nonzero
40461         ints to 0 or 1, as this isn't true for the stdbool.h substitute.
40462
40463 2006-02-05  Paul Eggert  <eggert@cs.ucla.edu>
40464
40465         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Don't #define
40466         __EXTENSIONS__ if this causes compilation to fail.  Problem
40467         reported by Nelson H. F. Beebe with Solaris 10 and Sun C 5.7
40468         c89 -D_XOPEN_SOURCE -D_XOPEN_SOURCE_EXTENDED.
40469
40470 2006-01-27  Paul Eggert  <eggert@cs.ucla.edu>
40471
40472         * lib/fnmatch.c (L_): Renamed from L, to work around a bug in
40473         Mac OS X 10.3.9 with GCC 3 reported by Claudio Fontana in
40474         <http://lists.gnu.org/archive/html/bug-gnulib/2006-01/msg00074.html>.
40475         All uses changed.
40476
40477 2006-01-26  Simon Josefsson  <jas@extundo.com>
40478
40479         * lib/socket_.h: Set WINVER to 0x0501, to make sure getaddrinfo
40480         prototype is visible on mingw32.
40481
40482         * lib/getaddrinfo.h: Define EAI_ADDRFAMILY and EAI_SYSTEM if not set,
40483         for mingw32.
40484
40485         * lib/gai_strerror.c, getaddrinfo.h: Protect netdb.h #include (for
40486         mingw32).
40487
40488 2006-01-26  Paul Eggert  <eggert@cs.ucla.edu>
40489
40490         * lib/fts.c (diropen): Open with O_NOCTTY | O_NONBLOCK too.  Don't
40491         attempt to open for write; this always fails, at least on POSIX
40492         hosts.  This reinstates the 2006-01-09 change, which was
40493         inadvertently removed.
40494
40495 2006-01-26  Bruno Haible  <bruno@clisp.org>
40496
40497         * gnulib-tool (func_import): Use "trap 'exit $?' instead of "trap :".
40498         Reported by Paul Eggert.
40499
40500 2006-01-26  Bruno Haible  <bruno@clisp.org>
40501             Paul Eggert  <eggert@cs.ucla.edu>
40502
40503         * lib/stdbool_.h (_Bool)
40504         [(! (defined __cplusplus || defined __BEOS__)
40505           && !defined __GNUC__
40506           && !(defined __HP_cc || defined __xlc__
40507                || (defined __SUNPRO_C && (__SUNPRO_C < 0x550 || __STDC__ == 1))
40508                || defined __sgi))]:
40509         #define to signed char in these cases too; this simplifies
40510         the code (so that we don't have to worry about HP-UX, AIX, SunPRO,
40511         etc., separately) and makes it more conservative.
40512
40513 2006-01-25  Simon Josefsson  <jas@extundo.com>
40514
40515         * m4/getaddrinfo.m4: Look for getaddrinfo inside ws2tcip.h and
40516         -lws2_32.  Protect sys/socket.h and netdb.h #include's.  Include
40517         ws2tcpip.h with WINVER=0x0501.  All for mingw32.
40518
40519 2006-01-25  Sergey Poznyakoff  <gray@gnu.org.ua>
40520
40521         * lib/argp-namefrob.h: Bugfix. Remove stray #
40522
40523 2006-01-25  Paul Eggert  <eggert@cs.ucla.edu>
40524
40525         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Check for xlc bug if __GCC__ too,
40526         so that we test the test.
40527         Check for yet another HP-UX cc bug involving *bool |= bool.
40528
40529 2006-01-25  Karl Berry  <karl@gnu.org>
40530
40531         * config/srclist.txt (vasnprintf.c): sync lost.
40532
40533 2006-01-25  Jim Meyering  <jim@meyering.net>
40534
40535         Sync from the stable (b5) branch of coreutils:
40536
40537         * lib/fts.c (fts_children): Don't let close() clobber errno from
40538         failed fchdir().
40539
40540         * lib/fts.c (fts_stat): When following a symlink-to-directory,
40541         don't necessarily interpret stat-fails+lstat-succeeds as indicating
40542         a dangling symlink.  That can also happen at least for ELOOP.
40543         The fix: return FTS_SLNONE only when the stat errno is ENOENT.
40544         FYI, this bug predates the inclusion of fts.c in coreutils.
40545
40546         * lib/fts.c (fts_open): Put new maxarglen declaration and uses
40547         in their own block, so pre-c99 compilers don't object.
40548
40549         Avoid the double-free (first in fts_read, second in fts_close) that
40550         would occur when an `active' directory is made inaccessible (e.g.,
40551         via chmod a-x) during a traversal.
40552         * lib/fts.c (fts_read): After a failed fchdir, update sp->fts_cur
40553         before returning.  Reproduce this failure by
40554         mkdir -p a/b; cd a; chmod a-x . b
40555         Reported by Stavros Passas.
40556
40557 2006-01-25  Jim Meyering  <jim@meyering.net>
40558
40559         * lib/fileblocks.c: Remove more useless parentheses.
40560         * lib/readutmp.h: Likewise.
40561
40562 2006-01-25  Bruno Haible  <bruno@clisp.org>
40563
40564         * lib/stdbool_.h (_Bool) [IRIX cc]: Define as 'signed char', to avoid
40565         warnings.
40566         Reported by Paul Eggert.
40567
40568 2006-01-25  Bruno Haible  <bruno@clisp.org>
40569
40570         * gnulib-tool (func_import): Use "trap :" instead of "trap -" to get
40571         rid of a trap command. For Solaris sh.
40572         Reported by Mark D. Baushke <mdb@gnu.org>.
40573
40574 2006-01-24  Simon Josefsson  <jas@extundo.com>
40575
40576         * lib/socket_.h (SHUT_WR, SHUT_RDWR): Don't hardcode, suggested by
40577         Bruno.
40578
40579 2006-01-24  Karl Berry  <karl@gnu.org>
40580
40581         * config/srclist.txt (argp-namefrob.h): sync lost.
40582
40583 2006-01-24  Jim Meyering  <jim@meyering.net>
40584
40585         * modules/openat (Files): Add lib/intprops.h.
40586         From Mark D. Baushke.
40587
40588 2006-01-24  Jim Meyering  <jim@meyering.net>
40589
40590         * m4/openat.m4 (gl_FUNC_OPENAT): Add AC_LIBSOURCES([intprops.h]).
40591         Reported by Mark D. Baushke.
40592
40593 2006-01-24  Jim Meyering  <jim@meyering.net>
40594
40595         * lib/socket_.h: Remove useless parentheses in uses of cpp `defined'.
40596
40597 2006-01-24  Bruno Haible  <bruno@clisp.org>
40598
40599         * modules/strnlen (Maintainer): Change from glibc to all.
40600
40601 2006-01-24  Bruno Haible  <bruno@clisp.org>
40602
40603         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Check for IBM and HP-UX bugs.
40604         Patch by Paul Eggert.
40605
40606 2006-01-24  Bruno Haible  <bruno@clisp.org>
40607
40608         * lib/stdbool_.h (_Bool) [__cplusplus]: Don't define if the compiler
40609         already has it.
40610         Report and patch by Albert Chin-A-Young  <china@thewrittenword.com> on
40611         2005-11-26.
40612
40613         * lib/stdbool_.h (_Bool) [HP-UX cc, AIX cc,xlc]: Define as
40614         'signed char' to avoid problems with the built-in _Bool type.
40615         Reported by Paul Eggert on 2005-11-26.
40616
40617 2006-01-24  Bruno Haible  <bruno@clisp.org>
40618
40619         * gnulib-tool (func_import): Avoid constructing complicated sed
40620         expressions inside backquote.
40621         Report and solution by Mark D. Baushke <mdb@gnu.org>.
40622
40623 2006-01-23  Ulrich Drepper  <drepper@redhat.com>
40624
40625         These changes imported from libc.
40626         * lib/getopt.c: Use __fxprintf instead of inline stream orientation
40627         test and two separate function calls.
40628         * lib/strndup.c (__strndup): Add libc_hidden_def.
40629
40630 2006-01-23  Simon Josefsson  <jas@extundo.com>
40631
40632         * modules/lock-tests: Use check_PROGRAMS instead of noinst_PROGRAMS.
40633         Remove the test_*_SOURCES variable: automake infers it by default.
40634         * modules/tls-tests: Likewise.
40635
40636 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
40637
40638         Work around porting bugs reported by Dieter in
40639         <http://lists.gnu.org/archive/html/bug-bison/2006-01/msg00049.html>.
40640         * lib/getopt.c (_NOPROTO): Remove; no longer needed.
40641         Include <stdlib.h> and <unistd.h> in all environments; it's safe now.
40642         Include "getopt.h" first, to check interface.
40643         (getenv): Declare only if defined HAVE_DECL_GETENV &&
40644         !HAVE_DECL_GETENV.
40645         * lib/strndup.c [!_LIBC]: Include "strndup.h" to get prototype.
40646         (__strndup): Revert to K&R-style function dfns, the glibc style.
40647         * lib/strnlen.c: Don't claim it's taken from glibc; it's not.
40648         (strnlen, __strnlen): Remove #defines and #undefs; not needed.
40649         Include strnlen.h first, to get prototype properly.
40650         (strnlen): Renamed from __strnlen.
40651         Remove weak alias.
40652
40653 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
40654
40655         * m4/getopt.m4 (gl_PREREQ_GETOPT): Check for getenv decl.
40656
40657 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
40658
40659         * config/srclist.txt: Adjust to reflect glibc reorganization.
40660         This affects only comments.
40661
40662 2006-01-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
40663
40664          * gnulib-tool, build-aux/csharpcomp.sh.in: Do not pass `-q' to mktemp.
40665          Reported by Bruce Korb <bkorb@gnu.org>.
40666
40667 2006-01-22  Paul Eggert  <eggert@cs.ucla.edu>
40668
40669         * lib/quotearg.c (quotearg_buffer_restyled): Add "default: break;"
40670         to pacify gcc -Wswitch-default.
40671
40672 2006-01-22  Bruno Haible  <bruno@clisp.org>
40673
40674         * lib/vasnprintf.c (VASNPRINTF): In the computation of the size of the
40675         temporary buffer for sprintf, take into account the precision also
40676         for 'd', 'i', 'u', 'o', 'x', 'X'.
40677
40678 2006-01-21  Sergey Poznyakoff  <gray@gnu.org.ua>
40679
40680         * modules/argp-tests: New module
40681         * tests/test-argp.c: New file
40682         * tests/test-argp-2.sh: New file
40683
40684 2006-01-21  Sergey Poznyakoff  <gray@gnu.org.ua>
40685
40686         * lib/argp-help.c (usage_long_opt): Do not print DOC options.
40687         (__argp_base_name): Removed
40688         * lib/argp-namefrob.h (__argp_basename): Removed definition. Was a
40689         typo.
40690         (__argp_base_name): Provide macro definition or extern declaration
40691         depending on the configuration
40692
40693 2006-01-20  Simon Josefsson  <jas@extundo.com>
40694
40695         * modules/inet_ntop (Depends-on): Depend on sys_socket.
40696
40697 2006-01-20  Simon Josefsson  <jas@extundo.com>
40698
40699         * lib/inet_ntop.h: Unconditionally include sys/socket.h.
40700
40701 2006-01-20  Paul Eggert  <eggert@cs.ucla.edu>
40702
40703         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Use -Wl,-z,ignore
40704         rather than -Xlinker -z -Xlinker ignore, as it's more portable.
40705         Suggested by Bruno Haible.
40706
40707 2006-01-20  Karl Berry  <karl@gnu.org>
40708
40709         * config/srclist.txt (argp-fmtstream.h, localcharset.c): comment out
40710         until changes propagate, I guess.
40711
40712 2006-01-19  Simon Josefsson  <jas@extundo.com>
40713
40714         * m4/socklen.m4: Look in ws2tcpip.h too, for mingw32.
40715
40716 2006-01-19  Simon Josefsson  <jas@extundo.com>
40717
40718         * lib/socket_.h: Map SHUT_RD, SHUT_WR, SHUT_RDWR correctly.
40719
40720 2006-01-19  Simon Josefsson  <jas@extundo.com>
40721
40722         * gnulib-tool: Set check_PROGRAMS.
40723
40724         * modules/arcfour-tests, modules/arctwo-tests, modules/crc-tests,
40725         modules/des-tests, modules/gc-arcfour-tests,
40726         modules/gc-arctwo-tests, modules/gc-des-tests,
40727         modules/gc-hmac-md5-tests, modules/gc-hmac-sha1-tests,
40728         modules/gc-md2-tests, modules/gc-md4-tests, modules/gc-md5-tests,
40729         modules/gc-pbkdf2-sha1-tests, modules/gc-rijndael-tests,
40730         modules/gc-sha1-tests, modules/gc-tests, modules/hmac-md5-tests,
40731         modules/hmac-sha1-tests, modules/md2-tests, modules/md4-tests,
40732         modules/md5-tests, modules/readline, modules/rijndael-tests: Use
40733         check_PROGRAMS instead of noinst_PROGRAMS to be able to remove
40734         test_*_SOURCES.
40735
40736 2006-01-18  Simon Josefsson  <jas@extundo.com>
40737
40738         * modules/socklen (Depends-on): Depend on sys_socket.
40739
40740 2006-01-18  Simon Josefsson  <jas@extundo.com>
40741
40742         * modules/arcfour-tests, modules/arctwo-tests, modules/crc-tests,
40743         modules/des-tests, modules/gc-arcfour-tests,
40744         modules/gc-arctwo-tests, modules/gc-des-tests,
40745         modules/gc-hmac-md5-tests, modules/gc-hmac-sha1-tests,
40746         modules/gc-md2-tests, modules/gc-md4-tests, modules/gc-md5-tests,
40747         modules/gc-pbkdf2-sha1-tests, modules/gc-rijndael-tests,
40748         modules/gc-sha1-tests, modules/gc-tests, modules/hmac-md5-tests,
40749         modules/hmac-sha1-tests, modules/md2-tests, modules/md4-tests,
40750         modules/md5-tests, modules/readline, modules/rijndael-tests: Add
40751         $(EXEEXT) to automake TESTS variable, for mingw32.
40752
40753 2006-01-17  Simon Josefsson  <jas@extundo.com>
40754
40755         * modules/socklen (Include): Need sys/socket.h.
40756
40757 2006-01-17  Bruno Haible  <bruno@clisp.org>
40758
40759         * modules/ssize_t (Include): Add <sys/types.h>.
40760
40761 2006-01-16  Paul Eggert  <eggert@cs.ucla.edu>
40762
40763         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Don't use ldd, as
40764         it's not portable and it doesn't work with cross-compiles.
40765         Problem reported by Bruno Haible.  Fix missing-$ typo in
40766         'test "gl_cv_ignore_unused_libraries" ...' that prevented
40767         -zignore from being used with Sun's C compiler.
40768
40769 2006-01-12  Simon Josefsson  <jas@extundo.com>
40770
40771         * lib/base64.c: Fix warning, reported by Bruno Haible
40772         <bruno@clisp.org> and patch by Paul Eggert <eggert@CS.UCLA.EDU>.
40773
40774 2006-01-12  Bruno Haible  <bruno@clisp.org>
40775
40776         * modules/ldd: New file.
40777         * build-aux/ldd.sh.in: New file.
40778         * MODULES.html.sh (Support for building libraries and executables): Add
40779         ldd.
40780
40781 2006-01-12  Bruno Haible  <bruno@clisp.org>
40782
40783         * m4/ldd.m4: New file.
40784
40785 2006-01-12  Bruno Haible  <bruno@clisp.org>
40786
40787         * gnulib-tool (func_import, func_create_testdir): Don't go into an
40788         endless loop while replacing $auxdir with build-aux.
40789
40790 2006-01-11  Simon Josefsson  <jas@extundo.com>
40791
40792         * lib/stdint_.h (SIZE_MAX): Add missing (.
40793
40794 2006-01-11  Paul Eggert  <eggert@cs.ucla.edu>
40795
40796         Sync from coreutils.
40797         * lib/md5.c: Fix commentary typos.
40798         (alignof, UNALIGNED_P): No need for a GCC-specific version.
40799         * lib/md5.h (__attribute__): Remove; unused.
40800         * lib/sha1.c: Fix commentary to match md5 better.
40801         * lib/sha1.h (struct sha1_ctx): Use a word buffer, not a byte buffer,
40802         so that we don't need to worry about alignment.  All uses changed.
40803         This merges the 2005-10-28 md5 change into sha1.
40804
40805 2006-01-11  Jim Meyering  <jim@meyering.net>
40806
40807         Sync from coreutils.
40808         * lib/md5.c (OP): Fix spacing.
40809
40810 2006-01-11  Bruno Haible  <bruno@clisp.org>
40811
40812         Ensure automatic ordering between gl_LOCK and gl_ARGP.
40813         * m4/lock.m4 (gl_LOCK_BODY): Renamed from gl_LOCK.
40814         (gl_LOCK): New macro, requiring gl_LOCK_BODY.
40815
40816 2006-01-11  Bruno Haible  <bruno@clisp.org>
40817
40818         Ensure automatic ordering between gl_LOCK and gl_ARGP.
40819         * gnulib-tool (func_import, func_create_testdir): Put gl_LOCK into
40820         the "early" section as well.
40821
40822 2006-01-11  Bruno Haible  <bruno@clisp.org>
40823
40824         Avoid "ar: no archive members specified" error on MacOS X.
40825         * gnulib-tool (func_modules_add_dummy): New function.
40826         (func_import, func_create_testdir): Invoke it.
40827
40828 2006-01-11  Bruno Haible  <bruno@clisp.org>
40829
40830         * gnulib-tool (func_import, func_create_testdir): Replace build-aux
40831         with $auxdir in AC_CONFIG_FILES statements.
40832
40833 2006-01-11  Bruno Haible  <bruno@clisp.org>
40834
40835         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
40836         Initialize also noinst_HEADERS to empty.
40837
40838 2006-01-11  Bruno Haible  <bruno@clisp.org>
40839
40840         * gnulib-tool (AUTOMAKEPATH, AUTOCONF, ACLOCAL, AUTOMAKE): New
40841         variables.
40842         (func_create_megatestdir): Call aclocal, autoconf, automake here, not
40843         autoreconf.
40844
40845 2006-01-11  Bruno Haible  <bruno@clisp.org>
40846
40847         * gnulib-tool (AUTOCONF, ACLOCAL, AUTOMAKE, AUTORECONF): Make
40848         overridable by the user.
40849         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
40850
40851 2006-01-10  Simon Josefsson  <jas@extundo.com>
40852
40853         * modules/sys_socket: New file.
40854
40855 2006-01-10  Simon Josefsson  <jas@extundo.com>
40856
40857         * m4/sys_socket_h.m4: New file.
40858
40859 2006-01-10  Simon Josefsson  <jas@extundo.com>
40860
40861         * lib/socket_.h: New file.
40862
40863 2006-01-10  Paul Eggert  <eggert@cs.ucla.edu>
40864
40865         * modules/readutmp (Maintainer): Add myself.
40866
40867 2006-01-10  Paul Eggert  <eggert@cs.ucla.edu>
40868
40869         * m4/memcoll.m4 (gl_MEMCOLL): Don't require AC_FUNC_MEMCMP, undoing
40870         the 2002-12-31 change.  Problem and fix reported by Bruno Haible.
40871         People who are still concerned with buggy memcmp implementations
40872         can invoke gl_FUNC_MEMCMP themselves.
40873
40874 2006-01-10  Paul Eggert  <eggert@cs.ucla.edu>
40875
40876         * lib/regex_internal.h (BITSET_WORD_BITS):
40877         Work around a bug in 64-bit PGC (before version 6.1-2), where the
40878         preprocessor mishandles large unsigned values as if they were signed.
40879         Problem reported by Claudio Fontana in
40880         <http://lists.gnu.org/archive/html/bug-gnulib/2005-12/msg00061.html>.
40881
40882 2006-01-10  Jim Meyering  <jim@meyering.net>
40883
40884         Avoid the double-free (first in fts_read, second in fts_close) that
40885         would occur when an `active' directory is made inaccessible (e.g.,
40886         via chmod a-x) during a traversal.
40887         * lib/fts.c (fts_read): After a failed fchdir, update sp->fts_cur
40888         before returning.  Reproduce this failure by
40889         mkdir -p a/b; cd a; chmod a-x . b
40890         Reported by Stavros Passas.
40891
40892         Sync from coreutils.
40893         * lib/sha1.c: Tweak grammar in a comment.
40894
40895 2006-01-10  Jim Meyering  <jim@meyering.net>
40896
40897         * m4/fpending.m4: Also include <stdio.h>, for Dragonfly.
40898         Patch by Joerg Sonnenberger.
40899
40900 2006-01-10  Bruno Haible  <bruno@clisp.org>
40901
40902         * modules/readutmp: Depend on module free.
40903         * modules/strtok_r: Depend on module restrict.
40904
40905 2006-01-10  Bruno Haible  <bruno@clisp.org>
40906
40907         * modules/gettext (configure.ac): Add an invocation of
40908         AM_GNU_GETTEXT_VERSION. Needed since autoreconf is used by gnulib-tool.
40909
40910 2006-01-10  Bruno Haible  <bruno@clisp.org>
40911
40912         * m4/localcharset.m4 (gl_LOCALCHARSET): Also test for getc_unlocked.
40913         Reported by Werner Lemberg <wl@gnu.org>.
40914
40915 2006-01-10  Bruno Haible  <bruno@clisp.org>
40916
40917         * lib/localcharset.c: Update from GNU gettext.
40918
40919 2006-01-10  Bruno Haible  <bruno@clisp.org>
40920
40921         * lib/argp.h (__const): Remove macro. Use const instead.
40922         * lib/argp-fmtstream.h (__const): Likewise.
40923         * lib/glob_.h (__const): Remove macro.
40924         * lib/glob-libc.h: Use const instead of __const.
40925
40926 2006-01-10  Bruno Haible  <bruno@clisp.org>
40927
40928         * gnulib-tool (func_emit_tests_Makefile_am): Emit an empty SUBDIR
40929         variable.
40930         Needed to avoid an automake error regarding the 'gettext' module.
40931
40932 2006-01-09  Simon Josefsson  <jas@extundo.com>
40933
40934         * modules/inet_ntop (Depends-on): Add restrict.
40935
40936 2006-01-09  Simon Josefsson  <jas@extundo.com>
40937
40938         * modules/gc-rijndael-tests (License): Put under LGPL.
40939
40940         * modules/gc-des-tests (License): Likewise.
40941
40942         * modules/gc-arcfour-tests (License): Likewise.
40943
40944         * modules/gc-arctwo-tests (License): Likewise.
40945
40946         * modules/gc-pbkdf2-sha1-tests (License): Likewise.
40947
40948         * modules/gc-hmac-sha1-tests (Files): Likewise.
40949
40950         * modules/gc-hmac-md5-tests (License): Likewise.
40951
40952         * modules/gc-sha1-tests (License): Likewise.
40953
40954         * modules/gc-md5-tests (License): Likewise.
40955
40956         * modules/gc-md4-tests (License): Likewise.
40957
40958         * modules/gc-md2-tests (License): Likewise.
40959
40960         * modules/gc-tests (License): Likewise.
40961
40962         * modules/des-tests (License): Likewise.
40963
40964         * modules/md4-tests (License): Likewise.
40965
40966         * modules/md2-tests (License): Likewise.
40967
40968 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
40969
40970         Sync from coreutils:
40971
40972         * MODULES.html.sh (build_lib): New section, with new lib-ignore module.
40973         * modules/lib-ignore: New file.
40974         * modules/mkdir-p (Files): Add chdir-safer.c, chdir-safer.h, lchmod.h,
40975         chdir-safer.m4, lchmod.m4.
40976         * modules/openat: Add mkdirat.c, openat-priv.h.
40977
40978 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
40979
40980         Sync from coreutils.
40981         * m4/lib-ignore.m4: New file.
40982         * m4/lchmod.m4: New file.
40983
40984 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
40985
40986         Sync from coreutils.
40987         * lib/chdir-long.c (cdb_free): Don't bother trying to open directory
40988         for write access: POSIX says that must fail.
40989         * lib/fts.c (diropen): Likewise.
40990         * lib/save-cwd.c (save_cwd): Likewise.
40991         * lib/chdir-long.c (cdb_free): Open with O_NOCTTY | O_NONBLOCK as
40992         well, for minor improvements on hosts that lack O_DIRECTORY.
40993         * lib/chown.c (rpl_chown) [CHOWN_MODIFIES_SYMLINK]:
40994         Don't try O_WRONLY unless O_RDONLY failed wth EACCES.
40995         Fall back on chown if open failed with EACCES.
40996
40997         * lib/gettime.c (gettime) [!defined OK_TO_USE_1S_CLOCK]:
40998         Report an error at compile-time if only a 1-second nominal clock
40999         resolution is found.
41000
41001         * lib/lchmod.h: New file.
41002         * lib/mkdir-p.c: Include lchmod.h, lchown.h.
41003         (make_dir_parents): Use lchown rather than chown, and
41004         lchmod rather than chmod.
41005
41006         * lib/mountlist.c (ME_DUMMY): "none" and "proc" file systems are
41007         dummies too.  Problem with "none" reported by Bob Proulx.  Problem with
41008         "proc" reported by n0dalus.
41009
41010         * lib/mountlist.c: Include <limits.h>.
41011         (dev_from_mount_options)
41012         [defined MOUNTED_GETMNTENT1 || defined MOUNTED_GETMNTENT2]:
41013         New function.  It no longer assumes "dev=" has the System V meaning
41014         on Linux (since it doesn't).  It also parses "dev=" more carefully.
41015         (read_file_system_list)
41016         [defined MOUNTED_GETMNTENT1 || defined MOUNTED_GETMNTENT2]: Use it.
41017         MOUNTED_GETMNTENT2 is new here; the code didn't used to look for
41018         dev= in that case.
41019
41020         * lib/posixtm.h (PDS_PRE_2000): New macro.
41021         * lib/posixtm.c (year): Arg is now syntax_bits rather than
41022         allow_century.  All usages changed.  Reject dates outside the range
41023         1969-1999 if PDS_PRE_2000 is used.
41024
41025 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
41026
41027         Sync from coreutils.
41028         * doc/getdate.texi (General date syntax): Invalid dates are rejected.
41029         (Time of day items): Mention the possibility of leap seconds.
41030         Problem reported by Dr. David Alan Gilbert.
41031
41032 2006-01-09  Jim Meyering  <jim@meyering.net>
41033
41034         Sync from coreutils.
41035
41036         * lib/version-etc.c (COPYRIGHT_YEAR): Update to 2006.
41037
41038         * lib/chdir-safer.h, lib/chdir-safer.c: New files.
41039
41040         * lib/modechange.c (mode_compile): Reject an invalid mode string
41041         that starts with an octal digit.  From Andreas Gruenbacher.
41042
41043         * lib/openat.c: Include "fcntl--.h" and "unistd--.h", to map open
41044         and dup to open_safer and dup_safer, respectively.
41045         (openat_permissive): Fix typo in comment.
41046
41047         * lib/openat.c: Don't include <stdlib.h>, <unistd.h>, <fcntl.h>,
41048         "gettext.h"; either no longer needed or are guaranteed by openat.h.
41049         (_): Remove; no longer needed.
41050         (openat): Renamed from rpl_openat; no need for rpl_openat
41051         since openat.h renames openat for us.
41052         Replace most of the body with a call to openat_permissive,
41053         to avoid duplicate code.
41054         Port to (probably hypothetical) environments were mode_t is
41055         wider than int.
41056         (openat_permissive): Require mode arg, so that we can check
41057         types better.  Put it just after flags.  Change cwd failure
41058         indicator from pointer-to-bool to pointer-to-errno-value.
41059         All callers changed.
41060         Invoke openat_save_fail and/or openat_restore_fail if
41061         cwd_errno is null, so that openat can call us.
41062         (openat_permissive, fdopendir, fstatat, unlinkat):
41063         Simplify errno handling to avoid some duplicate code,
41064         as it's OK to set errno on success.
41065         * lib/openat.h: Revamp code so that function macros depend on
41066         __OPENAT_PREFIX only, not also on AT_FDCWD.
41067         (openat_ro): Remove.  Caller changed to use openat_permissive.
41068         (openat_permissive): Now a macro, if not a function.
41069         (openat_restore_fail, openat_save_fail): Now always functions,
41070         since mkdirat needs them even if __OPENAT_PREFIX is defined.
41071
41072         * lib/openat-priv.h: New file, defining macros used by mkdirat.c
41073         and openat.c.
41074         * lib/mkdirat.c: Include openat-priv.h.
41075         Remove definitions of macros defined therein.
41076         * lib/openat.c: Likewise.
41077
41078         * lib/mkdirat.c (mkdirat): New file and function.
41079         * lib/openat.h (mkdirat): Declare.
41080
41081         * lib/openat.c (fdopendir): Don't change errno when returning non-NULL.
41082
41083         * lib/openat.h (openat_permissive): Declare.
41084         (openat_ro): Define.
41085
41086         * lib/openat.c (EXPECTED_ERRNO): New macro.
41087         (openat_permissive): New function -- used in remove.c rewrite.
41088         (all functions): Set errno just before returning, only if there
41089         was an actual failure.
41090         Use EXPECTED_ERRNO rather than comparing against only ENOTDIR.
41091
41092         Emulate openat-family functions using Linux's procfs, if possible.
41093         Idea and some code based on Ulrich Drepper's glibc changes.
41094
41095         * lib/openat.c: (BUILD_PROC_NAME): New macro.
41096         Include <stdio.h>, <string.h>, "alloca.h" and "intprops.h".
41097         (rpl_openat): Emulate by trying to open /proc/self/fd/%d/%s,
41098         before falling back on save_cwd and restore_cwd.
41099         (fdopendir, fstatat, unlinkat): Likewise.
41100
41101         * lib/openat.c (fstatat, unlinkat): Perform the syscall directly,
41102         skipping the save_cwd...restore_cwd overhead, if FILE is absolute.
41103
41104         * lib/openat.c (rpl_openat): Use the promoted type (int), not mode_t,
41105         as second argument to va_arg.  Otherwise, some versions of gcc
41106         warn that `if this code is reached, the program will abort'.
41107
41108 2006-01-09  Jim Meyering  <jim@meyering.net>
41109
41110         Sync from coreutils.
41111         * m4/openat.m4 (gl_FUNC_OPENAT): Require and compile mkdirat.c.
41112         Require openat-priv.h.
41113
41114 2006-01-09  Bruno Haible  <bruno@clisp.org>
41115
41116         * modules/strnlen (Include): Use strnlen.h.
41117
41118 2006-01-09  Bruno Haible  <bruno@clisp.org>
41119
41120         * m4/stdint.m4 (gl_STDINT_H): Also test for <sys/bitypes.h>.
41121
41122 2006-01-09  Bruno Haible  <bruno@clisp.org>
41123
41124         * lib/sysexit_.h (EX_OK): New macro.
41125         Suggested by Martin Lambers <marlam@marlam.de>.
41126
41127 2006-01-09  Bruno Haible  <bruno@clisp.org>
41128
41129         * lib/stdint_.h: On Linux libc4 and libc5, include <sys/bitypes.h> and
41130         don't define _STDINT_H_NEED_SIGNED_INT_TYPES.
41131
41132 2006-01-09  Bruno Haible  <bruno@clisp.org>
41133
41134         * lib/stdint_.h (SIZE_MAX): Write the value without involving negative
41135         numbers.
41136
41137 2006-01-09  Bruno Haible  <bruno@clisp.org>
41138
41139         * lib/javacomp.sh.in: Move to ../build-aux/javacomp.sh.in.
41140         * lib/javaexec.sh.in: Move to ../build-aux/javaexec.sh.in.
41141         * lib/csharpcomp.sh.in: Move to ../build-aux/csharpcomp.sh.in.
41142         * lib/csharpexec.sh.in: Move to ../build-aux/csharpexec.sh.in.
41143
41144 2006-01-09  Bruno Haible  <bruno@clisp.org>
41145
41146         * build-aux/javacomp.sh.in: New file, moved from lib/.
41147         * modules/javacomp-script (Files): Update.
41148         (configure.ac): Add AC_CONFIG_FILES invocation.
41149         (EXTRA_DIST): Remove variable.
41150
41151         * build-aux/javaexec.sh.in: New file, moved from lib/.
41152         * modules/javaexec (Files): Update.
41153         (configure.ac): Add AC_CONFIG_FILES invocation.
41154         (EXTRA_DIST): Remove javaexec.sh.in.
41155
41156         * build-aux/csharpcomp.sh.in: New file, moved from lib/.
41157         * modules/csharpcomp-script (Files): Update.
41158         (configure.ac): Add AC_CONFIG_FILES invocation.
41159         (EXTRA_DIST): Remove variable.
41160
41161         * build-aux/csharpexec.sh.in: New file, moved from lib/.
41162         * modules/csharpexec (Files): Update.
41163         (configure.ac): Add AC_CONFIG_FILES invocation.
41164         (EXTRA_DIST): Remove csharpexec.sh.in.
41165
41166 2006-01-09  Andreas Gruenbacher  <agruen@suse.de>
41167
41168         Sync from coreutils.
41169
41170         Add POSIX ACL support
41171         * lib/acl.h (copy_acl, set_acl): Add declarations.
41172         * lib/acl.c (acl_entries): Add fallback implementation for POSIX ACL
41173         systems other than Linux.
41174         (chmod_or_fchmod): New function: use fchmod when possible,
41175         and chmod otherwise.
41176         (file_has_acl): Add a POSIX ACL implementation, with a
41177         Linux-specific subcase.
41178         (copy_acl): Add: copy an acl and S_ISUID, S_ISGID, and
41179         S_ISVTX from one file to another.  Fall back to fchmod/chmod when
41180         acls are unsupported.
41181         (set_acl): Add: set a file's acl and S_ISUID, S_ISGID, and
41182         S_ISVTX to a defined value.  Fall back to fchmod/chmod when acls
41183         are unsupported.
41184
41185 2006-01-09  Andreas Gruenbacher  <agruen@suse.de>
41186
41187         Sync from coreutils.
41188         * m4/acl.m4 (AC_FUNC_ACL): Add POSIX ACL and Linux-specific acl tests.
41189
41190 2006-01-07  Bruno Haible  <bruno@clisp.org>
41191
41192         * gnulib-tool (func_import): Add an AC_PROG_RANLIB dependency to
41193         gl_EARLY.
41194
41195 2006-01-04  Paul Eggert  <eggert@cs.ucla.edu>
41196
41197         * lib/strftime.c (tzname): Don't declare if it is already #defined.
41198         Problem reported for Mingw by Mark Junker.
41199
41200 2006-01-04  Paul Eggert  <eggert@cs.ucla.edu>
41201
41202         * README: Gnulib normally doesn't generate a tarball.
41203
41204 2006-01-03  Paul Eggert  <eggert@cs.ucla.edu>
41205
41206         * lib/xtime.h (xtime_make, xtime_nonnegative_nsec, xtime_nsec): Use
41207         long int, not int, for nanosecond counts, so that people who are
41208         used to POSIX struct timespec won't be surprised.  Reported by Jim
41209         Meyering.
41210
41211 2005-12-28  Bruno Haible  <bruno@clisp.org>
41212
41213         * build-aux/config.rpath: Update from GNU gettext.
41214
41215 2005-12-16  Jim Meyering  <jim@meyering.net>
41216
41217         * modules/fprintftime: New module.
41218         * MODULES.html.sh (Date and time <time.h>): Add fprintftime.
41219
41220 2005-12-16  Jim Meyering  <jim@meyering.net>
41221
41222         * m4/fprintftime.m4: New file.
41223
41224 2005-12-16  Jim Meyering  <jim@meyering.net>
41225
41226         * lib/fprintftime.c, lib/fprintftime.h: New files.
41227
41228 2005-12-15  Simon Josefsson  <jas@extundo.com>
41229
41230         * modules/socklen (configure.ac): Fix M4 macro name, to align with
41231         new m4/socklen.m4.
41232
41233 2005-12-10  Sergey Poznyakoff  <gray@gnu.org.ua>
41234
41235         * m4/argp.m4: Define HAVE_DECL_PROGRAM_INVOCATION_NAME and
41236         HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME
41237
41238 2005-12-10  Sergey Poznyakoff  <gray@gnu.org.ua>
41239
41240         * lib/argp-fmtstream.c (__argp_fmtstream_update): Fix coredump
41241         * lib/argp-help.c (fill_in_uparams): Check if the constructed
41242         struct uparams is valid. Fall back to the default values if it is
41243         not.
41244
41245 2005-12-09  Sergey Poznyakoff  <gray@gnu.org.ua>
41246
41247         * modules/argp (Files): Add argp-pin.c
41248         (Depends-on): dirname
41249         (lib_SOURCES): Add argp-pin.c
41250
41251 2005-12-09  Sergey Poznyakoff  <gray@gnu.org.ua>
41252
41253         * m4/argp.m4:  Check if program_invocation_name and
41254         program_invocation_short_name are declared and define appropriate
41255         macros if they are not.
41256
41257 2005-12-09  Sergey Poznyakoff  <gray@gnu.org.ua>
41258
41259         * lib/argp-help.c (__argp_base_name): New function
41260         (__argp_short_program_name): Rewrite using __argp_base_name
41261         * lib/argp-namefrob.h: Define program_invocation_name and
41262         program_invocation_short_name if requested
41263         (__argp_base_name): Add prototype
41264         * lib/argp-parse.c (argp_def): Use gettext wrappers
41265         (argp_default_parser): Use __argp_base_name
41266         * lib/argp-pin.c: New file. Defines program_invocation_name and
41267         program_invocation_short_name on systems that lack them.
41268
41269 2005-12-07  Paul Eggert  <eggert@cs.ucla.edu>
41270
41271         * m4/stat-time.m4 (gl_STAT_TIME): Add check for
41272         TYPEOF_STRUCT_STAT_ST_ATIM_IS_STRUCT_TIMESPEC, to fix IRIX 5.3
41273         porting problem reported by Georg Schwarz in
41274         <http://lists.gnu.org/archive/html/bug-coreutils/2005-12/msg00083.html>.
41275
41276 2005-12-07  Paul Eggert  <eggert@cs.ucla.edu>
41277
41278         * lib/stat-time.h (STATE_TIMESPEC, STAT_TIMESPEC_NS): Add check for
41279         TYPEOF_STRUCT_STAT_ST_ATIM_IS_STRUCT_TIMESPEC, to fix IRIX 5.3
41280         porting problem reported by Georg Schwarz in
41281         <http://lists.gnu.org/archive/html/bug-coreutils/2005-12/msg00083.html>.
41282
41283 2005-12-05  Bruno Haible  <bruno@clisp.org>
41284
41285         * lib/csharpcomp.sh.in (options_csc): For -l option, add a .dll suffix.
41286         * lib/csharpcomp.c (compile_csharp_using_sscli): Likewise.
41287         Reported by Mark Junker <mjscod@gmx.de>.
41288
41289 2005-12-02  Paul Eggert  <eggert@cs.ucla.edu>
41290
41291         * m4/socklen.m4 (gl_TYPE_SOCKLEN_T): Renamed from gl_SOCKLEN_T.
41292         Use implementation from Albert Chin, with some
41293         comments/corrections by Stepan Kasal and myself.
41294
41295 2005-12-02  Bruno Haible  <bruno@clisp.org>
41296
41297         * gnulib-tool (func_import): Accept GPLed build tool modules when
41298         --lgpl is given.
41299         * modules/csharpcomp-script: New file.
41300         * modules/csharpcomp: Depend on it.
41301         * modules/javacomp-script: New file.
41302         * modules/javacomp: Depend on it.
41303         Suggested by Simon Josefsson.
41304
41305 2005-12-01  Paul Eggert  <eggert@cs.ucla.edu>
41306
41307         * m4/regex.m4 (gl_REGEX): Check whether off_t can be used in a switch
41308         statement, to work around an HP-UX 10.20 compiler bug reported by
41309         Peter O'Gorman.
41310
41311 2005-11-29  Paul Eggert  <eggert@cs.ucla.edu>
41312
41313         * modules/savedir (Depends-on): Add openat.
41314
41315 2005-11-29  Paul Eggert  <eggert@cs.ucla.edu>
41316
41317         * lib/stdint_.h (intmax_t) [defined intmax_t]: Do not declare.
41318         (uintmax_t) [defined uintmax_t]: Do not declare.
41319         (SIZE_MAX) [defined SIZE_MAX]: Do not define.
41320         This works around a problem if intmax_t.m4 and/or uintmax_t.m4
41321         and/or size_max.m4 are also used.  Problem reported by Mark D. Baushke.
41322         (SIZE_MAX): Define to ((size_t) -1), not (~(size_t)0), for the
41323         sake of portability to weird hosts that C allows (though we don't
41324         know of any practical examples).
41325
41326         * lib/savedir.h (fdsavedir): New decl.
41327         * lib/savedir.c (fdsavedir, savedirstream): New functions; the latter
41328         contains most of the former guts of savedir.
41329         (savedir): Use savedirstream.
41330         Include "openat.h".
41331
41332 2005-11-25  Paul Eggert  <eggert@cs.ucla.edu>
41333
41334         * modules/obstack (Files): Add m4/ulonglong.m4.
41335         Problem reported by Davide Angelocola.
41336
41337 2005-11-15  Paul Eggert  <eggert@cs.ucla.edu>
41338
41339         * lib/xstrtod.c: Don't bother with #pragma STDC FENV_ACCESS ON, as
41340         coreutils no longer futzes with rounding modes.
41341
41342 2005-11-14  Jim Meyering  <jim@meyering.net>
41343
41344         * lib/mkstemp-safer.c: Include <config.h>, required for possible
41345         replacement of mkstemp.
41346
41347 2005-11-10  Simon Josefsson  <jas@extundo.com>
41348
41349         * lib/readline.c: Remove EOL.
41350
41351 2005-11-10  Paul Eggert  <eggert@cs.ucla.edu>
41352
41353         * modules/gethrxtime (Depends-on): Add gettime.
41354
41355 2005-11-10  Paul Eggert  <eggert@cs.ucla.edu>
41356
41357         * m4/gethrxtime.m4 (gl_PREREQ_GETHRXTIME): Don't require AC_HEADER_TIME
41358         or gettimeofday; no longer needed.
41359
41360 2005-11-10  Paul Eggert  <eggert@cs.ucla.edu>
41361
41362         * lib/gethrxtime.c: Include "timespec.h" rather than the sys/time /
41363         time business.
41364         (gethrxtime) [! (HAVE_NANOUPTIME
41365         || (defined CLOCK_MONOTONIC && HAVE_CLOCK_GETTIME)
41366         || HAVE_MICROUPTIME)]: Fall back on gettime rather than rolling
41367         our own approximation.
41368
41369 2005-11-08  Eric Blake  <ebb9@byu.net>
41370
41371         * lib/inet_ntop.h: Use #if !, not #ifndef, for AC_CHECK_DECLS.
41372
41373 2005-11-08  Eric Blake  <ebb9@byu.net>
41374
41375         * lib/getaddrinfo.h: Use #if !, not #ifndef, for AC_CHECK_DECLS.
41376
41377 2005-11-04  Bruno Haible  <bruno@clisp.org>
41378
41379         * gnulib-tool: Implement --update mode.
41380
41381 2005-10-30  Paul Eggert  <eggert@cs.ucla.edu>
41382
41383         Fix porting problem reported by Theodoros V. Kalamatianos.
41384         * lib/utimens.c (futimens) [HAVE_WORKING_UTIMES && HAVE_FUTIMES]:
41385         Don't assume that futimes failing means we must fail.
41386
41387 2005-10-30  Paul Eggert  <eggert@cs.ucla.edu>
41388
41389         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Revamp wording and local
41390         variables to suggest the intended function of the PATH_MAX check.
41391
41392 2005-10-30  Kean Johnston  <jkj@sco.com>
41393
41394         Trivial changes to support SCO systems.
41395         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Check for MAXPATHLEN as well
41396         as PATH_MAX.
41397         * m4/fpending.m4 (gl_FUNC_FPENDING): Correct check for SCO systems,
41398         where __ptr is null when no I/O is pending.
41399
41400 2005-10-29  Paul Eggert  <eggert@cs.ucla.edu>
41401
41402         * lib/getcwd.c (__getcwd): Don't assume that system calls after readdir
41403         leave errno alone.  Problem reported by Dmitry V. Levin.
41404
41405 2005-10-28  Simon Josefsson  <jas@extundo.com>
41406
41407         * tests/test-gc-md4.c, tests/test-gc-md5.c, tests/test-gc-sha1.c:
41408         Test more.
41409
41410         * tests/test-gc-md2.c, tests/test-md2.c: New files.
41411
41412         * modules/md2, modules/md2-tests: New files.
41413
41414 2005-10-28  Simon Josefsson  <jas@extundo.com>
41415
41416         * m4/inet_ntop.m4: More tests.
41417
41418         * m4/gc-md2.m4, md2.m4: New file.
41419
41420 2005-10-28  Simon Josefsson  <jas@extundo.com>
41421
41422         * lib/inet_ntop.h, inet_ntop.c: Make it work under mingw32: Add
41423         "restrict" keywords, as per POSIX.  Protect the function
41424         declaration around HAVE_DECL_INET_NTOP rather than HAVE_INET_NTOP.
41425         Don't use K&R prototypes.  Check the sprintf return values.
41426         Re-define EAFNOSUPPORT if not present.  Indent.
41427
41428         * lib/md5.h, md5.c: Simplify buffer handling visavi alignment,
41429         suggested by Bruno Haible <bruno@clisp.org>.
41430
41431         * lib/gc-gnulib.c, gc-libgcrypt.c: Check calloc return value.
41432
41433         * lib/gc.h: Add MD2 and RMD160 length defines.  Add prototypes.
41434
41435         * lib/gc-libgcrypt.c: Add MD2 (which is not available through
41436         libgcrypt).
41437
41438         * lib/gc-gnulib.c: Add MD2.  Implement gc_hash_* API.
41439
41440         * lib/md2.h, lib/md2.c: New files.
41441
41442 2005-10-28  Paul Eggert  <eggert@cs.ucla.edu>
41443
41444         * lib/savedir.c (savedir): Don't assume that xrealloc etc. leave
41445         errno alone.  Problem reported by Frederic Jolliton.
41446
41447 2005-10-27  Paul Eggert  <eggert@cs.ucla.edu>
41448
41449         * modules/verify (License): Change from GPL to LGPL.  This is a
41450         tiny module and there are apparently near-equivalents that are
41451         under the BSD license.
41452
41453 2005-10-24  Simon Josefsson  <jas@extundo.com>
41454
41455         * modules/sha1: Relicense to LGPL.
41456
41457 2005-10-24  Simon Josefsson  <jas@extundo.com>
41458
41459         * lib/md4.h: Shrink buffer size, now that we changed the type.
41460
41461 2005-10-23  Simon Josefsson  <jas@extundo.com>
41462
41463         * gnulib-tool (func_import): Fix --tests-base.
41464
41465 2005-10-22  Simon Josefsson  <jas@extundo.com>
41466
41467         * modules/arcfour (Depends-on): Need stdint.
41468
41469 2005-10-22  Simon Josefsson  <jas@extundo.com>
41470
41471         * m4/gc.m4: Don't be fooled by --disable-*random-device parameters,
41472         suggested by Bruno Haible <bruno@clisp.org>.  Fix error messages.
41473
41474 2005-10-22  Simon Josefsson  <jas@extundo.com>
41475
41476         * lib/md4.h, md4.c: Simplify buffer handling visavi alignment,
41477         suggested by Bruno Haible <bruno@clisp.org>.
41478
41479 2005-10-22  Simon Josefsson  <jas@extundo.com>
41480
41481         * lib/crc.h: Include stddef.h, for size_t.
41482
41483 2005-10-22  Simon Josefsson  <jas@extundo.com>
41484
41485         * lib/arcfour.h, arcfour.c: Use fixed size indices in the
41486         arcfour_context struct (simplify test vector testing in GNU
41487         Shishi).
41488
41489 2005-10-21  Simon Josefsson  <jas@extundo.com>
41490
41491         * modules/des, modules/des-tests: New files.
41492
41493         * modules/gc-des, modules/gc-des-tests: New files.
41494
41495         * tests/test-des.c, tests/test-gc-des.c: New file.
41496
41497 2005-10-21  Simon Josefsson  <jas@extundo.com>
41498
41499         * modules/arctwo, modules/arctwo-tests: New files.
41500
41501         * tests/test-arctwo.c: New file.
41502
41503         * modules/gc-arctwo, modules/gc-arctwo-tests: New files.
41504
41505         * tests/test-gc-arctwo.c: New file.
41506
41507 2005-10-21  Simon Josefsson  <jas@extundo.com>
41508
41509         * m4/gc.m4: Don't use libgcrypt if gcrypt.h isn't found, suggested by
41510         Bruno Haible <bruno@clisp.org>.
41511
41512         * m4/gc-des.m4: New file.
41513
41514 2005-10-21  Simon Josefsson  <jas@extundo.com>
41515
41516         * m4/arctwo.m4: New file.
41517
41518         * m4/gc-arctwo.m4: New file.
41519
41520 2005-10-21  Simon Josefsson  <jas@extundo.com>
41521
41522         * lib/rijndael-api-fst.c: Fix bugs in CBC mode for more than one
41523         block.
41524
41525 2005-10-21  Simon Josefsson  <jas@extundo.com>
41526
41527         * lib/hmac-md5.c (hmac_md5): Add comments, suggested by Bruno Haible
41528         <bruno@clisp.org>.
41529
41530         * lib/hmac-sha1.c (hmac_sha1): Likewise.
41531
41532         * lib/crc.c (crc32_update): Actually use crc parameter, suggested by
41533         Bruno Haible <bruno@clisp.org>.
41534
41535         * lib/crc.h: Include stdint.h directly, suggested by Bruno Haible
41536         <bruno@clisp.org>.
41537
41538 2005-10-21  Simon Josefsson  <jas@extundo.com>
41539
41540         * lib/gc-libgcrypt.c (gc_cipher_open): Handle ECB.
41541
41542 2005-10-21  Simon Josefsson  <jas@extundo.com>
41543
41544         * lib/gc-gnulib.c: Support ARCTWO in CBC mode.
41545
41546 2005-10-21  Simon Josefsson  <jas@extundo.com>
41547
41548         * lib/des.h, lib/des.c: New files.
41549
41550         * lib/gc-gnulib.c: Support DES.c
41551
41552 2005-10-21  Simon Josefsson  <jas@extundo.com>
41553
41554         * lib/arctwo.h, lib/arctwo.c: New files.
41555
41556         * lib/gc-gnulib.c: Support ARCTWO.
41557
41558 2005-10-21  Simon Josefsson  <jas@extundo.com>
41559
41560         * lib/arctwo.h (arctwo_setkey): Protect variable in CPP macro,
41561         suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
41562
41563 2005-10-21  Simon Josefsson  <jas@extundo.com>
41564
41565         * gnulib-tool (func_import, func_create_testdir): Define automake
41566         conditional GL_COND_LIBTOOL if libtool is used (to be used by modules
41567         Makefile.am snippet),
41568         suggested by Bruno Haible <bruno@clisp.org>.
41569
41570         * modules/gc (Makefile.am): Use it.
41571
41572 2005-10-21  Bruno Haible  <bruno@clisp.org>
41573
41574         * gnulib-tool (func_import, func_create_testdir): Add quoting to last
41575         patch.
41576
41577 2005-10-19  Simon Josefsson  <jas@extundo.com>
41578
41579         * tests/test-gc-rijndael.c: New file.
41580
41581         * modules/gc-rijndael, modules/gc-rijndael-test: New files.
41582
41583 2005-10-19  Simon Josefsson  <jas@extundo.com>
41584
41585         * tests/test-gc-md4.c, tests/test-gc-md5.c: Test gc_hash_buffer
41586         interface too.
41587
41588 2005-10-19  Simon Josefsson  <jas@extundo.com>
41589
41590         * tests/test-gc-arcfour.c: New file.
41591
41592         * modules/gc-arcfour, modules/gc-arcfour-tests: New files.
41593
41594 2005-10-19  Simon Josefsson  <jas@extundo.com>
41595
41596         * modules/gc-md4, modules/gc-md4-tests: New file.
41597
41598         * tests/test-gc-md4.c: New file.
41599
41600 2005-10-19  Simon Josefsson  <jas@extundo.com>
41601
41602         * m4/gc-md4.m4: New file.
41603
41604 2005-10-19  Simon Josefsson  <jas@extundo.com>
41605
41606         * m4/gc-hmac-md5.m4, gc-hmac-sha1.m4, gc-md4.m4,
41607         gc-md5.m4, gc-sha1.m4: Fix typo, suggested by Stepan Kasal
41608         <kasal@ucw.cz>.
41609
41610 2005-10-19  Simon Josefsson  <jas@extundo.com>
41611
41612         * m4/gc-arcfour.m4: New file.
41613
41614         * m4/gc-rijndael.m4: New file.
41615
41616 2005-10-19  Simon Josefsson  <jas@extundo.com>
41617
41618         * lib/gc.h, gc-gnulib.c, gc-libgcrypt.c: Support MD4.
41619
41620 2005-10-19  Simon Josefsson  <jas@extundo.com>
41621
41622         * lib/gc-gnulib.c: Support ARCFOUR.
41623
41624 2005-10-19  Simon Josefsson  <jas@extundo.com>
41625
41626         * lib/gc-gnulib.c: Implement gc_cipher_* API, currently only with AES
41627         support.
41628
41629         * lib/gc.h: Add ECB enum type.
41630
41631         * lib/hmac-md5.c, hmac-sha1.c: Include memxor.h.
41632
41633 2005-10-18  Simon Josefsson  <jas@extundo.com>
41634
41635         * tests/test-md5.c: New file.
41636
41637         * modules/md5-tests: New file.
41638
41639 2005-10-18  Simon Josefsson  <jas@extundo.com>
41640
41641         * tests/test-md4.c: New file.
41642
41643         * modules/md4, modules/md4-tests: New files.
41644
41645 2005-10-18  Simon Josefsson  <jas@extundo.com>
41646
41647         * m4/md4.m4: New file.
41648
41649 2005-10-18  Simon Josefsson  <jas@extundo.com>
41650
41651         * lib/md4.h, lib/md4.c: New files, based on md5.?.
41652
41653 2005-10-17  Stepan Kasal  <kasal@ucw.cz>
41654
41655         * gnulib-tool (func_create_testdir): Omit the second check whether
41656         BUILT_SOURCES in nonempty.
41657
41658 2005-10-17  Simon Josefsson  <jas@extundo.com>
41659
41660         * tests/test-rijndael.c: New file.
41661
41662 2005-10-17  Simon Josefsson  <jas@extundo.com>
41663
41664         * modules/sha1: Depend on stdint instead of md5.
41665
41666         * modules/md5: Depend on stdint, remove uint32_t.
41667
41668 2005-10-17  Simon Josefsson  <jas@extundo.com>
41669
41670         * modules/gc-sha1-tests: New file.
41671
41672         * tests/test-gc-sha1.c: New file.
41673
41674 2005-10-17  Simon Josefsson  <jas@extundo.com>
41675
41676         * m4/md5.m4: Remove call to uint32_t.m4.
41677
41678 2005-10-17  Simon Josefsson  <jas@extundo.com>
41679
41680         * lib/sha1.c: Use uint32_t instead of md5_uint32.t
41681
41682         * lib/sha1.h: Use stdint.h and uint32_t instead of md5_uint32 from
41683         md5.h.
41684
41685         * lib/md5.c: Use uin32_t.  Fix non-gcc UNALIGNED_P macro.
41686
41687         * lib/md5.h: Use stdint.h and uint32_t.  Doc fix.
41688
41689 2005-10-17  Simon Josefsson  <jas@extundo.com>
41690
41691         * lib/gc.h, gc-libgcrypt.c: Add more hash types/functions.
41692
41693 2005-10-17  Simon Josefsson  <jas@extundo.com>
41694
41695         * lib/gc.h, gc-libgcrypt.c: Add ciphers.
41696
41697 2005-10-17  Simon Josefsson  <jas@extundo.com>
41698
41699         * lib/gc-libgcrypt.c (gc_hmac_sha1): Fix assert.
41700
41701         * lib/gc.h (gc_nonce, gc_pseudo_random, gc_random): Add prototypes.
41702
41703 2005-10-17  Bruno Haible  <bruno@clisp.org>
41704
41705         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Change the return statement so
41706         that it can also be used in a test.
41707
41708 2005-10-16  Bruno Haible  <bruno@clisp.org>
41709
41710         * gnulib-tool (func_emit_tests_Makefile_am): Also define
41711         TESTS_ENVIRONMENT, so that individual tests can augment it.
41712
41713         * gnulib-tool (func_create_testdir): Use an intermediate target for
41714         building $(BUILT_SOURCES). Needed because BUILT_SOURCES can contain
41715         macros, like $(ALLOCA_H), which cannot be passed through the command
41716         line.
41717
41718 2005-10-15  Simon Josefsson  <jas@extundo.com>
41719
41720         * modules/rijndael-tests: New file.
41721
41722         * modules/rijndael: New file.
41723
41724 2005-10-15  Simon Josefsson  <jas@extundo.com>
41725
41726         * m4/rijndael.m4: New file.
41727
41728 2005-10-15  Simon Josefsson  <jas@extundo.com>
41729
41730         * lib/rijndael-api-fst.h, lib/rijndael-api-fst.c: New files.
41731
41732         * lib/rijndael-alg-fst.h, lib/rijndael-alg-fst.c: New files.
41733
41734 2005-10-14  Simon Josefsson  <jas@extundo.com>
41735
41736         * tests/test-arcfour.c: New file.
41737
41738         * modules/arcfour, modules/arcfour-tests: New files.
41739
41740 2005-10-14  Simon Josefsson  <jas@extundo.com>
41741
41742         * m4/arcfour.m4: New file.
41743
41744 2005-10-14  Simon Josefsson  <jas@extundo.com>
41745
41746         * lib/arcfour.h, lib/arcfour.c: New files.
41747
41748 2005-10-14  Roland McGrath  <roland@redhat.com>
41749
41750         Import from libc.  [BZ #1331]
41751         * lib/obstack.h [!__STDC__] (obstack_int_grow_fast): Fix misnamed
41752         macro argument.
41753         Reported by Matej Vela <vela@debian.org>.
41754
41755 2005-10-14  Paul Eggert  <eggert@cs.ucla.edu>
41756
41757         * lib/obstack.c [defined _LIBC && defined USE_IN_LIBIO]: Don't
41758         include <wchar.h>; no longer needed.
41759
41760 2005-10-14  Paul Eggert  <eggert@cs.ucla.edu>
41761
41762         * config/srclist.txt: Add glibc bug 321 for obstack.c, obstack.h.
41763
41764 2005-10-14  Jakub Jelinek  <jakub@redhat.com>
41765         and  Ulrich Drepper  <drepper@redhat.com>
41766
41767         Import from libc.
41768         * lib/obstack.c (print_and_abort) [defined _LIBC]: Use __fxprintf
41769         instead of inline stream orientation test and two separate
41770         function calls.  Pay no attention to USE_IN_LIBIO.
41771
41772 2005-10-13  Simon Josefsson  <jas@extundo.com>
41773
41774         * modules/gc-hmac-md5-tests: New file.
41775
41776         * tests/test-gc-hmac-sha1.c: New file.
41777
41778         * tests/test-gc.c (main): Remove MD5 and HMAC-MD5 tests.
41779
41780         * modules/gc-hmac-md5-tests: New file.
41781
41782         * tests/test-gc-md5.c: New file.
41783
41784         * modules/gc-md5-tests: New file.
41785
41786 2005-10-13  Simon Josefsson  <jas@extundo.com>
41787
41788         * lib/gc-pbkdf2-sha1.c (gc_pbkdf2_sha1): Optimize CEIL computation.
41789         Move memory allocation outside of loop.
41790
41791 2005-10-13  Paul Eggert  <eggert@cs.ucla.edu>
41792
41793         * lib/mkdir-p.c (make_dir_parents): Don't report an error if an
41794         intermediate directory is in a read-only file system.  Problem
41795         reported by Eric Blake.
41796
41797 2005-10-13  Oskar Liljeblad  <oskar@osk.mine.nu>
41798
41799         * modules/human (Depends-on): Depend on xstrtoumax, not xstrtol.
41800
41801 2005-10-12  Simon Josefsson  <jas@extundo.com>
41802
41803         * tests/test-hmac-sha1.c: New file.
41804
41805         * modules/hmac-sha1-tests: New file.
41806
41807         * modules/hmac-sha1: New file.
41808
41809 2005-10-12  Simon Josefsson  <jas@extundo.com>
41810
41811         * modules/gc-sha1: New file.
41812
41813 2005-10-12  Simon Josefsson  <jas@extundo.com>
41814
41815         * modules/gc-pbkdf2-sha1, modules/gc-pbkdf2-sha1-tests: New files.
41816
41817         * tests/test-gc-pbkdf2-sha1.c: New file.
41818
41819 2005-10-12  Simon Josefsson  <jas@extundo.com>
41820
41821         * modules/gc-md5, modules/gc-hmac-md5: New files.
41822
41823         * modules/gc (Files): Remove md5, memxor and hmac files.
41824
41825 2005-10-12  Simon Josefsson  <jas@extundo.com>
41826
41827         * m4/gc-pbkdf2-sha1.m4: New file.
41828
41829         * m4/gc-hmac-sha1.m4: New file.
41830
41831         * m4/gc-sha1: New file.
41832
41833         * m4/hmac-sha1.m4: New file.
41834
41835 2005-10-12  Simon Josefsson  <jas@extundo.com>
41836
41837         * m4/gc-md5.m4, m4/gc-hmac-md5.m4: New files.
41838
41839         * m4/gc.m4: Don't call gl_MD5, gl_MEMXOR or gl_HMAC_MD5.
41840
41841 2005-10-12  Simon Josefsson  <jas@extundo.com>
41842
41843         * lib/gc.h, gc-gnulib.c, gc-libgcrypt.c: Use Gc_rc for return types,
41844         suggested by Bruno Haible <bruno@clisp.org>.
41845
41846 2005-10-12  Simon Josefsson  <jas@extundo.com>
41847
41848         * lib/gc.h, gc-gnulib.c, gc-libgcrypt.c: Support SHA-1.
41849
41850 2005-10-12  Simon Josefsson  <jas@extundo.com>
41851
41852         * lib/gc-pbkdf2-sha1.c: New file.
41853
41854         * lib/gc.h: Add gc_pbkdf2_sha1 prototype.
41855
41856 2005-10-12  Simon Josefsson  <jas@extundo.com>
41857
41858         * lib/gc-libgcrypt.c (gc_hmac_sha1): New function.
41859
41860         * lib/gc-gnulib.c (gc_hmac_sha1): New function.
41861
41862 2005-10-12  Simon Josefsson  <jas@extundo.com>
41863
41864         * lib/gc-gnulib.c: Condition MD5 and HMAC-MD5 use on GC_USE_MD5 and
41865         GC_USE_HMAC_MD5, respectively.
41866
41867         * lib/gc-libgcrypt.c (gc_md5): Fix assert call.
41868         (gc_md5): Fix typo.
41869
41870         * lib/gc.h (gc_hash_buffer): Use gc_hash in prototype.
41871
41872         * lib/gc-libgcrypt.c (gc_hash_buffer): Ditto.
41873
41874         * lib/gc-gnulib.c (gc_hash_buffer): Ditto.
41875
41876 2005-10-12  Bruno Haible  <bruno@clisp.org>
41877
41878         * m4/stdbool.m4 (gl_STDBOOL_H): Define as an alias of AM_STDBOOL_H.
41879         Reported by Stepan Kasal <kasal@ucw.cz>.
41880
41881 2005-10-11  Simon Josefsson  <jas@extundo.com>
41882
41883         * tests/test-crc.c: New file.
41884
41885         * modules/crc, modules/crc-tests: New files.
41886
41887 2005-10-11  Simon Josefsson  <jas@extundo.com>
41888
41889         * m4/crc.m4: New file.
41890
41891 2005-10-11  Simon Josefsson  <jas@extundo.com>
41892
41893         * lib/gc.h: Add gc_hash and gc_hash_buffer.
41894
41895         * lib/gc-gnulib.c (gc_hash_buffer): Add.  Reorder #include's.
41896
41897         * lib/gc-libgcrypt.c (gc_hash_buffer): Add.
41898
41899 2005-10-11  Simon Josefsson  <jas@extundo.com>
41900
41901         * lib/crc.h, lib/crc.c: New files.
41902
41903         * lib/gc.h (gc_hash_buffer): Add doc.
41904
41905 2005-10-11  Bruno Haible  <bruno@clisp.org>
41906
41907         * modules/c-strcasestr: New file.
41908         * MODULES.html.sh (String handling <string.h>): Add c-strcasestr.
41909
41910 2005-10-11  Bruno Haible  <bruno@clisp.org>
41911
41912         * modules/c-strcase: New file.
41913         * MODULES.html.sh (String handling <string.h>): Add c-strcase.
41914
41915 2005-10-11  Bruno Haible  <bruno@clisp.org>
41916
41917         * lib/strcasecmp.c: Include limits.h.
41918         (strcasecmp): Avoid integer overflow on exotic platforms.
41919         * lib/strncasecmp.c: Include limits.h.
41920         (strncasecmp): Avoid integer overflow on exotic platforms.
41921         Reported by Paul Eggert.
41922
41923 2005-10-11  Bruno Haible  <bruno@clisp.org>
41924
41925         * lib/c-strcasestr.h: New file, from GNU gettext.
41926         * lib/c-strcasestr.c: New file, from GNU gettext.
41927
41928 2005-10-11  Bruno Haible  <bruno@clisp.org>
41929
41930         * lib/c-strcase.h: New file, from GNU gettext.
41931         * lib/c-strcasecmp.c: New file, from GNU gettext.
41932         * lib/c-strncasecmp.c: New file, from GNU gettext.
41933
41934 2005-10-10  Paul Eggert  <eggert@cs.ucla.edu>
41935
41936         * modules/mempcpy (License): GPL -> LGPL.
41937         * modules/strchrnul (License): Likewise.
41938         * modules/sysexits (License): Likewise.
41939
41940 2005-10-08  Simon Josefsson  <jas@extundo.com>
41941
41942         * config/srclist.txt: Bug 1423 is closed, but 1439 remains.
41943
41944 2005-10-07  Simon Josefsson  <jas@extundo.com>
41945
41946         * m4/memxor.m4: Remove gl_C_RESTRICT call.
41947
41948 2005-10-06  Simon Josefsson  <jas@extundo.com>
41949
41950         * tests/test-hmac-md5.c: New file.
41951
41952         * modules/hmac-md5-tests: New file.
41953
41954         * modules/hmac-md5: New file.
41955
41956 2005-10-06  Simon Josefsson  <jas@extundo.com>
41957
41958         * m4/hmac-md5.m4: New file.
41959
41960         * m4/memxor.m4: Require gl_C_RESTRICT.
41961
41962 2005-10-06  Simon Josefsson  <jas@extundo.com>
41963
41964         * lib/memxor.c (memxor): Avoid casts and warnings.
41965
41966 2005-10-06  Simon Josefsson  <jas@extundo.com>
41967
41968         * lib/hmac-md5.c: New file.
41969
41970         * lib/hmac.h: New file.
41971
41972 2005-10-06  Paul Eggert  <eggert@cs.ucla.edu>
41973
41974         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Check that bool
41975         promotes to int, not unsigned int, to catch the AIX 5.3
41976         compiler bug.
41977
41978 2005-10-05  Simon Josefsson  <jas@extundo.com>
41979
41980         * modules/memxor: New file.
41981
41982         * modules/iconv (Files): Move config.rpath to havelib, it is used
41983         there.
41984
41985         * modules/havelib (Files): Add config.rpath.
41986
41987 2005-10-05  Simon Josefsson  <jas@extundo.com>
41988
41989         * m4/memxor.m4: New file.
41990
41991 2005-10-05  Simon Josefsson  <jas@extundo.com>
41992
41993         * lib/memxor.c (memxor): Fix compiler error.
41994
41995         * lib/md5.h (MD5_DIGEST_SIZE, MD5_BLOCK_SIZE): Add, see also
41996         <http://sourceware.org/bugzilla/show_bug.cgi?id=1423>.
41997
41998         * lib/memxor.h, lib/memxor.c: New files.
41999
42000         * lib/getaddrinfo.h: Don't protect sys/types.h with HAVE_SYS_TYPES_H,
42001         we assume all systems have it, suggested by Jim Meyering
42002         <jim@meyering.net>.  Remove HAVE_SYS_SOCKET_H test too, to see if
42003         any systems lack sys/socket.h; mingw32 is known to lack it, but we
42004         don't support it yet anyway.  Also remove HAVE_NETDB_H test, for
42005         same reasons.
42006
42007 2005-10-05  Simon Josefsson  <jas@extundo.com>
42008
42009         * config/srclist.txt: Add glibc bug 1423 for md5.h.
42010
42011 2005-10-05  Paul Eggert  <eggert@cs.ucla.edu>
42012
42013         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Don't check for
42014         sys/socket.h, netdb.h, sys/types.h; the checks areno longer
42015         needed, since the source code now assumes these .h files.
42016
42017 2005-10-05  Derek Price  <derek@ximbiot.com>
42018
42019         * lib/getdelim.c (SIZE_MAX): New macro, if not already defined.
42020
42021 2005-10-05  Bruno Haible  <bruno@clisp.org>
42022
42023         * modules/stdint (License): Change to LGPL.
42024
42025 2005-10-04  Simon Josefsson  <jas@extundo.com>
42026
42027         * lib/getaddrinfo.h: Move sys/types.h include first, reported by "Mark
42028         D. Baushke" <mdb@gnu.org>.
42029
42030 2005-10-04  Bruno Haible  <bruno@clisp.org>
42031
42032         * lib/verify.h (verify_true): Provide alternative definition for C++.
42033
42034 2005-10-03  Paul Eggert  <eggert@cs.ucla.edu>
42035
42036         * lib/getdelim.c: Include getdelim.h first.  Include <limits.h>.
42037         (SSIZE_MAX): New macro, if not already defined.
42038         (getdelim): Fix buffer overrun on 64-bit hosts with lines longer
42039         than 2 GiB.
42040
42041 2005-10-02  Paul Eggert  <eggert@cs.ucla.edu>
42042
42043         Sync from coreutils.
42044         * m4/openat.m4 (gl_FUNC_OPENAT): Check for fdopendir.
42045         * m4/ullong_max.m4 (gl_ULLONG_MAX): Simplify so that it merely
42046         defines ULONG_MAX_LT_ULLONG_MAX.  Thomas M.Ott reports that
42047         ULLONG_MAX doesn't work with 2.7.2.1.
42048
42049 2005-10-02  Paul Eggert  <eggert@cs.ucla.edu>
42050
42051         * modules/xreadlink (Makefile.am): Remove lib_SOURCES.
42052         From Ben Pfaff.
42053
42054         * modules/exclude (Depends-on): Depend on verify.
42055         * modules/strtoimax (Depends-on): Likewise.
42056         * modules/utimecmp (Depends-on): Likewise.
42057
42058 2005-10-02  Paul Eggert  <eggert@cs.ucla.edu>
42059
42060         * lib/exclude.c: Include verify.h.
42061         (verify): Remove.  All callers changed to use verify.h's version.
42062         * lib/strtoimax.c: Likewise.
42063         * lib/utimecmp.c: Likewis.e
42064
42065         Sync from coreutils.
42066         * lib/.cppi-disable: Add getaddrinfo.h, getdelim.h, getline.h,
42067         getpass.c, mbchar.h, mbuiter.h, strcase.h, strnlen.h, strnlen1.h.
42068         * lib/.cvsignore: Add fts.h, search.h, t-fpending.
42069         * lib/settime.c (settime): Fix { typo in previous patch.  Also, don't
42070         bother returning ENOSYS if settimeofday or stime fails; just let
42071         them return whatever errno they want to return.
42072         * lib/utimens.c: Include unistd.h, for dup2.
42073         (futimens): Fix typo: HAVE_FUTIMESAT was misspelled in an #if.
42074         (futimens) [! HAVE_FUTIMESAT]: If !file, set errno before returning -1.
42075
42076 2005-10-02  Jim Meyering  <jim@meyering.net>
42077
42078         Sync from coreutils.
42079         * m4/utimes.m4 (gl_FUNC_UTIMES): Detect the version of utimes
42080         from glibc-2.2.5 that fails for read-only files.
42081
42082 2005-10-02  Jim Meyering  <jim@meyering.net>
42083
42084         Sync from coreutils.
42085         * lib/fts-cycle.c [HAVE_CONFIG_H]: Include <config.h>.
42086         * lib/openat-die.c: Use `#ifdef HAVE_CONFIG_H', not
42087         `#if HAVE_CONFIG_H'.
42088         * lib/openat.c (fdopendir): Do not define if HAVE_FDOPENDIR.
42089         Remove AT_FDCWD test.
42090         Do not consume the fd unless successful.
42091         * lib/openat.h (fdopendir): Do not define if HAVE_FDOPENDIR.
42092         * lib/settime.c (settime): Move the HAVE_STIME block `up' into an #elif
42093         block, so that we don't even try to compile it if settimeofday is
42094         available.  This works around a compilation failure on OSF1 V5.1,
42095         due to stime requiring a `long int*' while tv_sec is `int'.
42096
42097 2005-10-02  Alfred M. Szmidt  <ams@gnu.org>
42098
42099         Sync from coreutils.
42100         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Compare $gl_have_path...
42101         against `yes', rather than just testing for nonempty.
42102
42103 2005-10-01  Simon Josefsson  <jas@extundo.com>
42104
42105         * m4/getaddrinfo.m4: Include sys/types.h for sys/socket.h, on FreeBSD
42106         and Darwin.
42107
42108         * m4/getaddrinfo.m4: Use AC_GNU_SOURCE, GNU only declare getaddrinfo
42109         as an (POSIX) extension.  Check for sys/types.h, sys/socket.h, and
42110         netdb.h too, needed by getaddrinfo.h.  Check if getaddrinfo,
42111         freeaddrinfo and gai_strerror are declared by the POSIX headers.
42112         Check if struct addrinfo is declared.
42113
42114 2005-10-01  Simon Josefsson  <jas@extundo.com>
42115
42116         * lib/getaddrinfo.h: Protect #include's of sys/socket.h and netdb.h.
42117         Only define struct addrinfo if !HAVE_STRUCT_ADDRINFO.  Protect
42118         AI_* and EAI_* definitions.  Protect function declarations.
42119
42120 2005-10-01  Jim Meyering  <jim@meyering.net>
42121
42122         Sync from coreutils.
42123
42124         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Look for getservbyname in these
42125         libraries [inet nsl socket xnet].  Nelson Beebe reported that with
42126         native cc on Solaris 7, getaddrinfo.c requires -lsocket.
42127         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Check for gethostbyname
42128         in the inet and nsl libraries.  Required on Solaris 5.7.
42129
42130 2005-10-01  Jim Meyering  <jim@meyering.net>
42131
42132         Sync from coreutils.
42133         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Check for gethostbyname
42134         in the inet and nsl libraries.  Required on Solaris 5.7.
42135
42136 2005-10-01  Eric Blake  <ebb9@byu.net>  (tiny change)
42137
42138         * lib/getdelim.c (getdelim): Remove unused variables.
42139
42140 2005-09-29  Paul Eggert  <eggert@cs.ucla.edu>
42141
42142         * lib/xtime.h (XTIME_PRECISION): Now of type int, not long long int,
42143         so that the code works even with ancient cpp.  Portability problem
42144         with GCC 2.7.2.1 reported by Thomas M.Ott.
42145
42146 2005-09-27  Paul Eggert  <eggert@cs.ucla.edu>
42147
42148         * modules/regex (Depends-on): Add strcase.
42149
42150         * modules/gethostname (Licence): Change from GPL to LGPL, since
42151         gethostname.c is a trivial implementation of a standard library
42152         function.
42153         * modules/poll (License): Change from GPL to LGPL, since it's
42154         derived from LGPL code.
42155
42156 2005-09-27  Jim Meyering  <jim@meyering.net>
42157
42158         * lib/getcwd.c: Change #ifdef<TAB>HAVE_CONFIG_H to #ifdef
42159         HAVE_CONFIG_H.
42160
42161         * lib/intprops.h (signed_type_or_expr__): Define.
42162         (INT_STRLEN_BOUND) [__GNUC__]: Use a slightly tighter bound
42163         for unsigned types.
42164
42165 2005-09-26  Paul Eggert  <eggert@cs.ucla.edu>
42166
42167         * lib/verify.h (verify_expr): Remove, replacing with:
42168         (verify_true): New macro that returns true instead of void.
42169         (verify_type__): Remove.
42170         (verify): Use verify_true rather than verify_type__.
42171
42172 2005-09-26  Bruno Haible  <bruno@clisp.org>
42173
42174         * modules/mbchar (Include): Mention that HAVE_WCHAR_H && HAVE_WCTYPE_H
42175         is necessary.
42176         (lib_SOURCES): Remove mbchar.c.
42177         * modules/mbfile (Include): Mention that HAVE_MBRTOWC is necessary.
42178         (Files): Add m4/mbrtowc.m4.
42179         * modules/mbiter: Likewise.
42180         * modules/mbuiter: Likewise.
42181
42182 2005-09-26  Bruno Haible  <bruno@clisp.org>
42183
42184         * m4/mbchar.m4 (gl_MBCHAR): Check for wchar.h and wctype.h. Don't
42185         compile mbchar.c if they are not both present.
42186         * m4/mbfile.m4 (gl_MBFILE): Require gl_FUNC_MBRTOWC.
42187         * m4/mbiter.m4 (gl_MBITER): Likewise.
42188         * m4/strstr.m4 (gl_PREREQ_STRSTR): Use AC_REQUIRE.
42189         * m4/strcasestr.m4 (gl_PREREQ_STRCASESTR): Likewise.
42190         * m4/strcase.m4 (gl_PREREQ_STRCASECMP): Likewise.
42191
42192 2005-09-25  Jim Meyering  <jim@meyering.net>
42193
42194         * modules/inet_ntop (Depends-on): Add socklen, since inet_ntop.c
42195         also uses socklen_t.
42196
42197 2005-09-24  Paul Eggert  <eggert@cs.ucla.edu>
42198
42199         * lib/utimens.c (ENOSYS): Define if not already defined.
42200         (futimens): Support having a null PATH if the file descriptor
42201         is nonnegative.
42202
42203         * lib/regex_internal.h (__GNUC_PREREQ, always_inline, inline, pure):
42204         Remove.
42205         (__attribute): Define to empty unless GCC 3.1 or later.
42206         This works around a core dump on OpenBSD 3.4, which has GCC
42207         2.95.3, which dumps core when given __attribute__(()).  It also
42208         simplifies other tests, since we really don't want to bother with
42209         worrying about which ancient version of GCC supported what.
42210         Original problem reported by Yoann Vandoorselaere, with part of
42211         the fix suggested by Derek Price.
42212
42213 2005-09-24  Jim Meyering  <jim@meyering.net>
42214
42215         * lib/verify.h (verify_type__): Use `unsigned int' as the bitfield type
42216         so we can once again use a positive bitfield width of 1 -- now we
42217         don't have to explain why we were using a bitfield width of 2.
42218
42219 2005-09-23  Paul Eggert  <eggert@cs.ucla.edu>
42220
42221         * m4/regex.m4 (gl_REGEX): If replacing, define regcomp to rpl_regcomp,
42222         and similarly for the other external symbols.  Problem reported
42223         by James Gallager.
42224
42225         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Catch Sun Studio 10u1 on Linux
42226         bug reported by Jim Meyering.
42227
42228         * m4/utimens.m4 (gl_UTIMENS): Check for futimesat.
42229         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Undo previous change;
42230         not needed, since socklen is a prerequisite module.
42231
42232 2005-09-23  Paul Eggert  <eggert@cs.ucla.edu>
42233
42234         * lib/getaddrinfo.c [HAVE_NETINET_IN_H]: Include <netinet/in.h>.
42235         Problem reported by Eric Blake.
42236         (getaddrinfo): Initialize se so that it's not garbage.
42237         Redo internal storage allocation so that it doesn't make unportable
42238         assumptions about alignment.
42239         Fix a memory leak.
42240
42241         * lib/utimens.c (futimens): Use futimesat if available.
42242         Prefer it to futimes since it doesn't have the futimes bug.
42243
42244         * lib/verify.h (GL_CONCAT0, GL_CONCAT): Remove.
42245         (verify): Don't use the __LINE__ trick, as it doesn't work in general.
42246         Instead, declare a function that returns a pointer to an array,
42247         and use verify_type__ to declare the size of the array.
42248         Problem and germ of a solution reported by Bruno Haible.
42249         (verify_type__): Use 2, not 1, for bitfield size, to avoid
42250         a warning with Irix 6.5 cc.  Problem reported by Bruno Haible.
42251
42252 2005-09-23  Jim Meyering  <jim@meyering.net>
42253
42254         Sync from coreutils.
42255         Correct build failure (socklen_t not defined) on at least
42256         mips-sgi-irix6.5 and alphaev67-dec-osf5.1.
42257         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Require gl_SOCKLEN_T.
42258
42259 2005-09-23  Jim Meyering  <jim@meyering.net>
42260
42261         * modules/getaddrinfo (Depends-on): Add socklen.
42262
42263 2005-09-23  Bruno Haible  <bruno@clisp.org>
42264
42265         * tests/test-verify.c: New file.
42266
42267 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
42268
42269         Sync from coreutils.
42270
42271         * modules/argmatch (Depends-on): Add verify.
42272         * modules/getloadavg (Depends-on): Depend on fcntl-safer, not
42273         unistd-safer.
42274         * modules/save-cwd (Depends-on): Likewise.
42275
42276         * modules/openat (Files): Add lib/openat-die.c.
42277         (Depends-on): Remove error, exitfail.
42278         Add dirname.
42279
42280         * modules/verify: New file.
42281         * MODULES.html.sh (Diagnostics <assert.h>): New section,
42282         with "verify" module.
42283
42284 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
42285
42286         Sync from coreutils.
42287
42288         * m4/backupfile.m4, calloc.m4, chown.m4, cloexec.m4, dup2.m4:
42289         * m4/fileblocks.m4, free.m4, ftruncate.m4, getcwd.m4, getpagesize.m4:
42290         * m4/getugroups.m4, group-member.m4, idcache.m4, link-follow.m4:
42291         * m4/mkstemp.m4, mktime.m4, mountlist.m4, nanosleep.m4, pathmax.m4:
42292         * m4/physmem.m4, posixver.m4, putenv.m4, safe-read.m4, same.m4:
42293         * m4/save-cwd.m4, stdio-safer.m4, unistd-safer.m4, unlinkdir.m4:
42294         * m4/userspec.m4, xgetcwd.m4, xreadlink.m4:
42295         Don't bother checking for string.h, stdlib.h, unistd.h.
42296         * m4/fts.m4 (gl_FUNC_FTS_CORE): Don't require
42297         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK; that's now the lstat
42298         module's job.
42299         * m4/jm-macros.m4 (gl_MACROS): Likewise.
42300         * m4/prereq.m4 (gl_PREREQ): Add gl_FUNC_LSTAT.
42301
42302         * m4/getdate.m4 (gl_C_COMPOUND_LITERALS): New macro.
42303         (gl_GETDATE): Use it.
42304
42305         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Don't bother checking for unistd.h.
42306
42307 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
42308
42309         Sync from coreutils.
42310
42311         * lib/.cppi-disable: Add regcomp.c, regex_internal.c, regex_internal.h,
42312         stat-time.h.
42313         * lib/argmatch.h: Include verify.h
42314         (ARGMATCH_VERIFY): Use verify rather than rolling our own.
42315         (ARGMATCH_ASSERT): Remove; unused.
42316         * lib/canonicalize.c: Assume STDC_HEADERS.
42317         * lib/exclude.c: Include "strcase.h".
42318         * lib/regex_internal.h [!defined _LIBC]: Likewise.
42319         * lib/getusershell.c: Include stdio--.h rather than stdio.h
42320         and stdio-safer.h.
42321         (getusershell): Call fopen, not fopen_safer.
42322         * lib/save-cwd.c: Include fcntl--.h rather than fcntl.h.
42323         Do not include unistd-safer.h.
42324         (save_cwd): Don't call fd_safer; no longer needed
42325         now that we include fcntl--.h.
42326
42327         * lib/getdate.y (relative_time): New type.
42328         (RELATIVE_TIME_0): New constant.
42329         (parser_control): Use relative_time instead of doing it ourselves.
42330         (%union): Add new relative_time rel member.
42331         (tYEAR_UNIT, tMONTH_UNIT, tHOUR_UNIT, tMINUTE_UNIT, tSEC_UNIT):
42332         Now typeless.
42333         (relunit, relunit_snumber): Now of type rel.
42334         (zone, rel, relunit, get_date): Adjust to above changes.
42335
42336         * lib/getloadavg.c: Include fcntl--.h rather than fcntl.h.
42337         Do not include unistd-safer.h.
42338         (getloadavg): Don't call fd_safer; no longer needed
42339         now that we include fcntl--.h.
42340
42341         * lib/mkdir-p.c (ENOSYS): Define to EEXIST if not defined.
42342         (make_dir_parents): Treat ENOSYS like EEXIST.
42343
42344         Improve quality of diagnostics on restore_cwd failure.
42345         * lib/mkdir-p.h (make_dir): Remove.  All uses replaced by mkdir.
42346         (make_dir_parents): Last arg is now int * (for errno), not bool *.
42347         * lib/mkdir-p.c (make_dir, make_dir_parents): Likewise.
42348         Rewrite "mkdir -p" algorithm to avoid the need for "stat"
42349         each time through the loop.  Do not diagnose restore_cwd failure;
42350         that is the caller's job (and perhaps the caller does not care).
42351
42352         * lib/mkdir-p.c (CLEANUP_CWD, CLEANUP): Remove.
42353         (make_dir_parents): Revamp to avoid need for CLEANUP_CWD, CLEANUP.
42354         If the file already exists but is not a directory, don't bother
42355         to try to make its parents.
42356         Close potential file descriptor leak if we can't chdir("/") (!).
42357         Don't always return true if chdir($PWD) fails; return true only
42358         if the requested action was done successfully (except for the
42359         chdir($PWD)).
42360         Don't log final directory unless we actually made it.
42361         Refactor to avoid duplicate code to fix up permissions.
42362         Don't attempt to fix up parent permissions if chdir($PWD) fails.
42363
42364         * lib/strftime.c (my_strftime): Rewrite the previous change slightly,
42365         to make it a bit faster and (I hope) clearer.
42366         * lib/strftime.c (my_strftime): Add support for %:z, %::z, %:::z.
42367         Fix bug in formats like %2N.
42368
42369         * lib/verify.h: New file.
42370
42371 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
42372
42373         Sync from coreutils.
42374         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Check for netinet/in.h.
42375
42376 2005-09-22  Jim Meyering  <jim@meyering.net>
42377
42378         Sync from coreutils.
42379
42380         * m4/lstat.m4 (gl_FUNC_LSTAT):
42381         Use AC_LIBSOURCES to require lstat.c and lstat.h.
42382         Remove obsolete comment.
42383         * m4/xreadlink.m4: Use AC_LIBSOURCES and AC_LIBOBJ.
42384         * m4/xstrtod.m4: Likewise.
42385
42386         * m4/openat.m4 (gl_FUNC_OPENAT): Add openat-die.c.
42387
42388 2005-09-22  Jim Meyering  <jim@meyering.net>
42389
42390         Sync from coreutils.
42391
42392         * lib/backupfile.c: Use ARGMATCH_VERIFY, just in case.
42393
42394         * lib/posixtm.c (posixtime) [lint]: Initialize *all* of tm0, not just
42395         the .tm_year member, since otherwise gcc-4.0 would now warn about
42396         tm_zone, tm_gmtoff, tm_isdst, tm_yday, tm_wday.
42397
42398         * lib/quotearg.c (quotearg_n_options): Change code to be suboptimal, in
42399         order to avoid an unsuppressible warning from gcc on 64-bit systems.
42400
42401         * lib/getdate.y (get_date): Undo part of the 2005-04-04 change, so that
42402         the command "date -d'2005-03-27 +1 day'" succeeds once again, even
42403         when run in a time zone for which daylight savings time is in effect
42404         for the starting date.
42405
42406         * lib/mkdir-p.c (make_dir_parents): Don't let a failed chdir($PWD)
42407         stop us from restricting permissions of just-created absolute-named
42408         directories.
42409         * lib/mkdir-p.c (CLEANUP_CWD): Return *true*, not false when failing
42410         to restore initial working directory.
42411         * lib/mkdir-p.c (make_dir_parents): New parameter:
42412         different_working_dir, to tell caller if/when we change the working
42413         directory and are unable to return to the initial one.
42414         * lib/mkdir-p.h (make_dir_parents): Update prototype.
42415         * lib/mkdir-p.c (CLEANUP_CWD): Change one more `return 1' to
42416         `return false'.  This fixes a bug introduced on 2004-07-30.
42417
42418         * lib/openat.c (fdopendir): Be sure to close the supplied
42419         file descriptor before returning.  This makes our replacement
42420         implementation a little closer to Solaris's, where fdopendir
42421         ties the file descriptor to the returned DIR* pointer.
42422         * lib/openat.c (unlinkat): New function.
42423         * lib/openat.h (unlinkat): Add prototype.
42424         * lib/openat-die.c (openat_save_fail): Rename from openat_save_die.
42425         (openat_restore_fail): Rename from openat_restore_die.
42426         * lib/openat.c, openat.h: Reflect s/_die/_fail/ renaming.
42427
42428         Provide an alternative to exiting immediately upon save_cwd or
42429         restore_cwd failure.  Now, an application can arrange e.g.,
42430         to perform a longjump in that case.
42431         * lib/openat.c: Include dirname.h.
42432         Use IS_ABSOLUTE_FILE_NAME rather than testing for leading slash.
42433         (rpl_openat, fdopendir, fstatat): Call openat_save_die
42434         and openat_restore_die rather than calling error directly.
42435         Don't include "error.h" or "exitfail.h"; they're no longer needed.
42436
42437         * lib/openat-die.c (openat_save_die, openat_restore_die): New file.
42438         * lib/openat.h (openat_save_die, openat_restore_die): Declare and
42439         define.
42440
42441         * lib/strftime.c [FPRINTFTIME] (fprintftime): Provide a new interface:
42442         size_t fprintftime (FILE *fp, char const *fmt, struct tm const *tm,
42443                             int utc, int nanoseconds);
42444         Background:
42445         date should not have to allocate a megabyte of virtual memory to
42446         handle a format argument like +%1048575T.  When implemented with
42447         strftime, it must allocate such a buffer, use strftime to fill it
42448         in, print it, then free it.
42449         With fprintftime, it simply prints everything and exits.
42450         With no need for memory allocation, that's one fewer way to fail.
42451         * lib/strftime.c (my_strftime): Parse the colons of %:::z *after* the
42452         optional field width, not before, so we accept %9:z, not %:9z.
42453         (my_strftime): Be sure to use L_('x') for literals.
42454
42455         * lib/backupfile.c, lib/canon-host.c, lib/canonicalize.c, lib/chown.c:
42456         * lib/cloexec.c, lib/dup-safer.c, lib/dup2.c, lib/euidaccess.c:
42457         * lib/fd-safer.c, lib/fileblocks.c, lib/fopen-safer.c, lib/fsusage.c:
42458         * lib/ftruncate.c, lib/getcwd.c, lib/getcwd.h, lib/getloadavg.c:
42459         * lib/getopt_.h, lib/getpagesize.h, lib/getugroups.c:
42460         * lib/group-member.c, lib/human.h, lib/idcache.c, lib/mkdir-p.c:
42461         * lib/mountlist.c, lib/nanosleep.c, lib/pathmax.h, lib/physmem.c:
42462         * lib/posixver.c, lib/putenv.c, lib/raise.c, lib/safe-read.c:
42463         * lib/same.c, lib/save-cwd.c, lib/setenv.c, lib/settime.c:
42464         * lib/tempname.c, lib/unlinkdir.c, lib/unsetenv.c, lib/userspec.c:
42465         * lib/xgethostname.c, lib/xreadlink.c:
42466         Assume HAVE_UNISTD_H, i.e., include <unistd.h> unconditionally.
42467
42468         * lib/chown.c, lib/cloexec.c, lib/dup-safer.c, lib/dup2.c:
42469         * lib/fsusage.c, lib/getcwd.c, lib/getloadavg.c, lib/mountlist.c:
42470         * lib/openat.h, lib/save-cwd.c, lib/tempname.c:
42471         Assume HAVE_FCNTL_H (i.e., include <fcntl.h> unconditionally,
42472         and don't include <sys/file.h>).
42473
42474 2005-09-22  Eric Blake  <ebb9@byu.net>  (tiny change)
42475
42476         Sync from coreutils.
42477
42478         * lib/getloadavg.c (getloadavg) [__CYGWIN__]: Port to cygwin.
42479         [__linux__]: Allocate a big enough buffer for /proc/loadavg.
42480         [!LDAV_DONE]: Avoid unused variable warning.
42481
42482 2005-09-21  Bruno Haible  <bruno@clisp.org>
42483
42484         * lib/unicodeio.h (unicode_to_mb): New declaration.
42485
42486 2005-09-20  Derek Price  <derek@ximbiot.com>
42487
42488         * lib/getaddrinfo.c: Don't include <netdb.h> included from
42489         getaddrinfo.h.
42490
42491 2005-09-20  Bruno Haible  <bruno@clisp.org>
42492
42493         * gnulib-tool: Remove trailing slashes from the values specified for
42494         --source-base, --m4-base, --tests-base, --aux-dir.
42495         Suggested by Simon Josefsson <jas@extundo.com>.
42496
42497 2005-09-20  Bruno Haible  <bruno@clisp.org>
42498
42499         * gnulib-tool (func_all_modules, func_modules_transitive_closure,
42500         func_modules_to_filelist, func_import, func_create_testdir): Make all
42501         sorting results locale-independent, so that gnulib-cache.m4 doesn't
42502         change when gnulib-tool is invoked in a different locale.
42503
42504 2005-09-19  Simon Josefsson  <jas@extundo.com>
42505
42506         * m4/socklen.m4: Fix typo.
42507
42508 2005-09-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
42509
42510         Use a consistent style for including <config.h>.
42511         * lib/__fpending.c, lib/acl.c, lib/argmatch.c, lib/argp-help.c,
42512         lib/argp-parse.c, lib/argp-pvh.c, lib/backupfile.c, lib/basename.c,
42513         lib/c-stack.c, lib/calloc.c, lib/check-version.c, lib/cloexec.c,
42514         lib/closeout.c, lib/copy-file.c, lib/creat-safer.c, lib/cycle-check.c,
42515         lib/dirfd.c, lib/dirname.c, lib/dup-safer.c, lib/dup2.c,
42516         lib/euidaccess.c, lib/exclude.c, lib/exitfail.c, lib/fatal-signal.c,
42517         lib/fd-safer.c, lib/file-type.c, lib/fileblocks.c, lib/filemode.c,
42518         lib/filenamecat.c, lib/findprog.c, lib/fnmatch.c, lib/fopen-safer.c,
42519         lib/free.c, lib/fsusage.c, lib/ftruncate.c, lib/full-write.c,
42520         lib/fwriteerror.c, lib/getaddrinfo.c, lib/getcwd.c, lib/getdelim.c,
42521         lib/getline.c, lib/getlogin_r.c, lib/getndelim2.c, lib/getnline.c,
42522         lib/getopt1.c, lib/getpass.c, lib/group-member.c, lib/hard-locale.c,
42523         lib/hash-pjw.c, lib/hash.c, lib/human.c, lib/idcache.c,
42524         lib/inet_ntop.c, lib/isdir.c, lib/long-options.c, lib/malloc.c,
42525         lib/memcasecmp.c, lib/memcmp.c, lib/memcoll.c, lib/memcpy.c,
42526         lib/memmove.c, lib/mkdir-p.c, lib/modechange.c, lib/mountlist.c,
42527         lib/open-safer.c, lib/physmem.c, lib/pipe-safer.c, lib/pipe.c,
42528         lib/poll.c, lib/posixver.c, lib/progname.c, lib/progreloc.c,
42529         lib/putenv.c, lib/quote.c, lib/quotearg.c, lib/readline.c,
42530         lib/readlink.c, lib/realloc.c, lib/regex.c, lib/rename.c, lib/rmdir.c,
42531         lib/rpmatch.c, lib/safe-read.c, lib/same.c, lib/save-cwd.c,
42532         lib/savedir.c, lib/sig2str.c, lib/strcspn.c, lib/strerror.c,
42533         lib/stripslash.c, lib/strncasecmp.c, lib/strndup.c, lib/strnlen.c,
42534         lib/strnlen1.c, lib/strsep.c, lib/strstr.c, lib/strtod.c,
42535         lib/strtoimax.c, lib/strtol.c, lib/strverscmp.c, lib/tempname.c,
42536         lib/time_r.c, lib/userspec.c, lib/utimecmp.c, lib/version-etc-fsf.c,
42537         lib/version-etc.c, lib/wait-process.c, lib/xalloc-die.c, lib/xgetcwd.c,
42538         lib/xmalloc.c, lib/xmemcoll.c, lib/xnanosleep.c, lib/xreadlink.c,
42539         lib/xsetenv.c, lib/xstrndup.c, lib/xstrtoimax.c, lib/xstrtol.c,
42540         lib/xstrtoumax.c, lib/yesno.c:
42541         Standardize inclusion of config.h.
42542         * lib/__fpending.h, lib/dirfd.h, lib/getdate.h, lib/human.h,
42543         lib/inttostr.h:  Removed inclusion of config.h from header files.
42544         * lib/inttostr.c:  Adjusted in-tree users.
42545         * lib/timespec.h: Remove superfluous warning to include config.h.
42546         * lib/atexit.c, lib/chdir-long.c, lib/chown.c, lib/fchown-stub.c,
42547         lib/getgroups.c, lib/gettimeofday.c, lib/lchown.c, lib/lstat.c,
42548         lib/mkdir.c, lib/mkstemp.c, lib/nanosleep.c, lib/openat.c, lib/raise.c,
42549         lib/readtokens0.c, lib/readutmp.c, lib/unlinkdir.c: Guard inclusion of
42550         config.h with HAVE_CONFIG_H.
42551
42552 2005-09-19  Jim Meyering  <jim@meyering.net>
42553
42554         * modules/pathmax (License): Change to LGPL.
42555
42556 2005-09-19  Derek Price  <derek@ximbiot.com>
42557
42558         * config/srclist.txt: glibc's glob.h is now in lib/glob-libc.h.
42559
42560 2005-09-19  Bruno Haible  <bruno@clisp.org>
42561
42562         * gnulib-tool (import): Provide default for --tests-base.
42563
42564 2005-09-19  Bruno Haible  <bruno@clisp.org>
42565
42566         * doc/quote.texi: New file, extracted from gnulib.texi.
42567         * doc/ctime.texi: New file, extracted from gnulib.texi.
42568         * doc/inet_ntoa.texi: New file, extracted from gnulib.texi.
42569         * doc/gnulib-tool.texi: New file, extracted from gnulib.texi.
42570         * doc/gnulib.texi: Include them.
42571
42572 2005-09-18  Bruno Haible  <bruno@clisp.org>
42573
42574         Portability fix.
42575         * gnulib-tool (func_readlink): New function.
42576         (func_ln_if_changed): Use it.
42577
42578 2005-09-18  Bruno Haible  <bruno@clisp.org>
42579
42580         * gnulib-tool: Support --with-tests also with --import.
42581         (func_emit_tests_Makefile_am): Use variables $m4base and $testsbase.
42582         (func_import): Use variables $testsbase and $inctests. Emit a
42583         gl_TESTS_BASE form into gnulib-cache.m4. Create $testsbase/Makefile.am.
42584         Remind the user to add AC_CONFIG_FILES($testsdir/Makefile) and
42585         SUBDIRS += $testsdir.
42586         (func_create_testdir): Update.
42587
42588 2005-09-18  Bruno Haible  <bruno@clisp.org>
42589
42590         * gnulib-tool: Revise --dry-run implementation. Use variable $doit
42591         instead of $dry_run.
42592         (func_cp_if_changed, func_mv_if_changed): Remove functions.
42593         (func_ln_if_changed): Don't handle dry-run here.
42594         (func_import): In dry-run mode, detect more precisely which actions
42595         would be performed, and don't use "...ing" verbs.
42596
42597 2005-09-18  Bruno Haible  <bruno@clisp.org>
42598
42599         * gnulib-tool (func_tmpdir): New function, taken from GNU gettextize.
42600         (func_import): Use join on two temporary files instead of three nested
42601         loops, in order to determine which files are new or old.
42602
42603 2005-09-18  Bruno Haible  <bruno@clisp.org>
42604
42605         * gnulib-tool (func_import): Comment out code that spits out the
42606         new files with --dry-run.
42607
42608 2005-09-18  Bruno Haible  <bruno@clisp.org>
42609
42610         * doc/gnulib.texi (Invoking gnulib-tool): 50% rewritten.
42611
42612 2005-09-16  Paul Eggert  <eggert@cs.ucla.edu>
42613
42614         * lib/stat-time.h: New file.
42615         * lib/timespec.h (ST_TIME_CMP_NS, ST_TIME_CMP, ATIME_CMP, CTIME_CMP):
42616         (MTIME_CMP, TIMESPEC_NS): Remove.  Now done by stat-time.h,
42617         in a different way.
42618         (timespec_cmp): New function.
42619         * lib/utimecmp.c: Include stat-time.h.
42620         (SYSCALL_RESOLUTION): Depend on whether various struct stat
42621         members exist, not on the obsolescent ST_MTIM_NSEC.
42622         (utimecmp): Use the new stat-time functions rater than TIMESPEC_NS.
42623
42624 2005-09-16  Paul Eggert  <eggert@cs.ucla.edu>
42625
42626         * config/srclist.txt: Remove glibc bug 1033 and uncomment mktime.c.
42627
42628 2005-09-16  Paul Eggert  <eggert@cs.ucla.edu>
42629
42630         * MODULES.html.sh (File system functions): Add stat-time.
42631         * modules/stat-time: New file.
42632         * modules/timespec (Files): Remove m4/st_mtim.m4; this
42633         is now done in a different way, by the stat-time module.
42634         * modules/utimecmp (Depends-on): Add stat-time.
42635
42636 2005-09-15  Paul Eggert  <eggert@cs.ucla.edu>
42637
42638         * m4/st_mtim.m4: Remove.  Superseded by...
42639         * m4/stat-time.m4: New file.
42640         * m4/timespec.m4 (gl_TIMESPEC): Require AC_C_INLINE.
42641         Do not invoke AC_STRUCT_ST_MTIM_NSEC; no longer needed.
42642
42643 2005-09-15  Derek Price  <derek@ximbiot.com>
42644
42645         * m4/strstr.m4 (gl_FUNC_STRSTR): Don't define strstr here.
42646
42647 2005-09-15  Derek Price  <derek@ximbiot.com>
42648
42649         * lib/regex_internal.h: Blank `pure' for GNUC < 3.
42650         * lib/regex_internal.c: Ditto, using this...
42651         (__GNUC_PREREQ): ...new macro.
42652         * lib/regcomp.c, regexec.c: Blank `always_inline' for GNUC < 3.1
42653         using...
42654         (__GNUC_PREREQ): ...this new macro.
42655
42656         * lib/strstr.h: Include string.h. Define strstr as a macro here.
42657
42658 2005-09-15  Derek Price  <derek@ximbiot.com>
42659             Paul Eggert  <eggert@cs.ucla.edu>
42660
42661         * lib/regcomp.c, regexec.c, regex_internal.c: Back out previous
42662         changes, consolidating in...
42663         * lib/regex_internal.h: ...this file.
42664
42665 2005-09-13  Jim Meyering  <jim@meyering.net>
42666
42667         * lib/canon-host.c: Filter through gnu indent and reword comments
42668         slightly.
42669         * lib/canon-host.h (ch_strerror_r): Tweak cpp indentation and spacing.
42670
42671 2005-09-13  Derek Price  <derek@ximbiot.com>
42672
42673         * lib/canon-host.c (canon_host_r): Set *cherror on memory allocation
42674         failure.
42675         Reported by Jim Meyering  <jim@meyering.net>.
42676
42677 2005-09-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
42678
42679         * lib/base64.c: Typo.
42680         (base64_encode): Put b64str in initialized data section.
42681
42682 2005-09-12  Paul Eggert  <eggert@cs.ucla.edu>
42683
42684         Merge glibc and coreutils changes into gnulib, plus a few
42685         extra fixes.
42686         * lib/md5.c: Use #error rather than a string.
42687         (CYCLIC): New macro, from glibc source.  Use it instead of rol.
42688         * lib/md5.h (__GNUC_PREREQ, __THROW): Define if not defined already.
42689         (__attribute__): Define to empty for non recent-GCC.
42690         (__md5_buffer, __md5_finish_ctx, __md5_init_ctx, __md5_process_block):
42691         (__md5_process_bytes, __md5_read_ctx, __md5_stream):
42692         Renamed from their non-__ counterparts, with new macros replacing
42693         them if not _LIBC.  Add __THROW attribute.
42694         (rol): Remove.
42695         (struct md5_ctx): Align buffer if using GCC.
42696         * lib/sha1.h (struct sha1_ctx): Likewise.
42697         * lib/sha1.c (SWAP): Renamed from the NOTSWAP.  All uses changed.
42698         The old name was backwards.
42699         (NOTSWAP): Remove; not used.
42700         (rol): New macro, moved here from md5.h.
42701         (sha1_process_block): Remove a FIXME that doesn't make sense.
42702
42703 2005-09-12  Derek Price  <derek@ximbiot.com>
42704
42705         Return usable errors from canon-host.
42706         * lib/canon-host.h: New file.
42707         * lib/canon-host.c (canon_host): Wrap...
42708         (canon_host_r): ...this new function, which now relies exclusively on
42709         getaddrinfo.
42710         (ch_strerror): New function.
42711         (last_cherror): New global.
42712         * lib/getaddrinfo.c: Move include of getaddrinfo.h first to test
42713         interface.
42714         (getaddrinfo): Add AI_CANONNAME functionality.  Don't do arithmetic on
42715         void *.
42716         (freeaddrinfo): Free ai->ai_canonname when set.
42717
42718 2005-09-12  Derek Price  <derek@ximbiot.com>
42719
42720         Make canon-host require getaddrinfo.
42721         * m4/canon-host.m4 (gl_CANON_HOST): Remove most dependencies.
42722         AC_LIBSOURCE canon-host.h.  Call...
42723         (gl_PREREQ_CANON_HOST): ...this new function, which requires
42724         gl_GETADDRINFO.
42725         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Compile gai_strerror when needed.
42726
42727 2005-09-12  Derek Price  <derek@ximbiot.com>
42728
42729         * modules/canon-host: Add canon-host.h.  Depend on getaddrinfo.  Make
42730         LGPL.
42731         * modules/getaddrinfo: Add link to opengroup spec.  Depend on strdup.
42732
42733 2005-09-12  Derek Price  <derek@ximbiot.com>
42734
42735         * lib/gai_strerror.c: Include config.h when available.  Include
42736         getaddrinfo.h before other headers to test interface.
42737         Reported by Larry Jones <lawrence.jones@ugs.com>.
42738
42739 2005-09-12  Derek Price  <derek@ximbiot.com>
42740             Paul Eggert  <eggert@cs.ucla.edu>
42741
42742         * modules/glob (Files): Add glob-libc.h.
42743
42744 2005-09-12  Derek Price  <derek@ximbiot.com>
42745             Paul Eggert  <eggert@cs.ucla.edu>
42746
42747         * m4/glob.m4 (gl_GLOB_SUBSTITUTE): AC_LIBSOURCES for glob.c,
42748         glob_.h, glob-libc.h.
42749         (gl_PREREQ_GLOB): Remove _SYS_CDEFS_H hack; no longer needed.
42750
42751 2005-09-12  Derek Price  <derek@ximbiot.com>
42752             Paul Eggert  <eggert@cs.ucla.edu>
42753
42754         * lib/glob-libc.h: Renamed from glob_.h.  The new version is
42755         taken from libc's glob.h, except with '#ifdef __GLOB_GNULIB'
42756         protecting things that should be done only in gnulib contexts.
42757         * lib/glob_.h: New file, containing only the glob things needed for
42758         gnulib.
42759         (GLOB_PREFIX): Remove.  All uses changed to look for __GLOB_GNULIB.
42760         (__GLOB_CONCAT, __GLOB_XCONCAT, __GLOB_ID): Remove; no longer needed.
42761         (glob, globfree, glob_pattern_p): Now defined simply in terms of
42762         rpl_glob, rpl_globfree, rpl_glob_pattern_p.
42763         (__GLOB_GNULIB): New macro, to keep the glob.h changes clearer
42764         and to respect the namespace rules better.
42765
42766 2005-09-08  Simon Josefsson  <jas@extundo.com>
42767
42768         * modules/socklen: New file.
42769
42770 2005-09-08  Simon Josefsson  <jas@extundo.com>
42771
42772         * m4/socklen.m4: New file.
42773
42774 2005-09-08  Paul Eggert  <eggert@cs.ucla.edu>
42775
42776         * modules/utimens (Files): Add m4/utimbuf.m4, since
42777         m4/utimens.m4 requires gl_CHECK_TYPE_STRUCT_UTIMBUF.
42778         Reported by Sergey Poznyakoff.
42779
42780 2005-09-08  Paul Eggert  <eggert@cs.ucla.edu>
42781
42782         * lib/glob.c (glob, globfree, __glob_pattern_p): Use old-style function
42783         definitions, since that's the preferred style in glibc.
42784         Fix a minor spacing issue, and update copyright notice to match
42785         glibc's.
42786
42787 2005-09-08  Paul Eggert  <eggert@cs.ucla.edu>
42788
42789         * config/srclist.txt: Remove glibc bug 1061; it's been fixed.
42790
42791 2005-09-06  Simon Josefsson  <jas@extundo.com>
42792
42793         * lib/getpass.c (getpass): Fix typo, test for HAVE_TCSETATTR and not
42794         TCSETATTR.  Reported by Derek Price <derek@ximbiot.com>.
42795
42796 2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
42797
42798         * lib/regex_internal.h (bitset_not): Add parens to avoid gcc -Wall
42799         warning.
42800
42801 2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
42802
42803         * config/srclist.txt: Add glibc bug 1302.
42804
42805 2005-09-05  Paul Eggert  <eggert@cs.ucla.edu>
42806
42807         Change bitset word type from unsigned int to unsigned long int,
42808         as this has better performance on typical 64-bit hosts.
42809         Port bitset code to hosts with unusual word sizes.
42810         * lib/regcomp.c (build_equiv_class, build_charclass, build_range_exp):
42811         (build_collating_symbol):
42812         Prefer bitset to re_bitset_ptr_t in prototypes, when the actual
42813         argument is a bitset.  This is merely a style issue, but it makes
42814         it clearer that an entire array is expected.
42815         (re_compile_fastmap_iter, init_dfa, init_word_char, optimize_subexps):
42816         * lib/regcomp.c (lower_subexp, parse_bracket_exp, built_charclass_op):
42817         Port to the case where bitset_word is not the same as unsigned int.
42818         * lib/regex_internal.h (bitset_set, bitset_clear, bitset_contain):
42819         (bitset_not, bitset_merge, bitset_set_all, bitset_mask):
42820         Likewise.
42821         * lib/regexec.c (check_dst_limits_calc_pos_1,
42822         check_subexp_matching_top):
42823         (build_trtable, group_nodes_into_DFAstates):
42824         Likewise.
42825         * lib/regcomp.c (re_compile_fastmap_iter, utf8_sb_map, optimize_utf8):
42826         Don't assume that SBC_MAX is a multiple of BITSET_WORD_BITS.
42827         * lib/regex_internal.h (bitset_set_all, bitset_not): Likewise.
42828         * lib/regexec.c (group_nodes_into_DFAstates): Likewise.
42829         * lib/regcomp.c (utf8_sb_map): Don't assume UINT_MAX == 0xffffffff.
42830         * lib/regcomp.c (optimize_subexps, lower_subexp):
42831         Work even if bitset_word has holes in its bitwise representation.
42832         * lib/regex_internal.h (BITSET_WORD_BITS): Likewise.
42833         * lib/regexec.c (check_dst_limits_calc_pos_1,
42834         check_subexp_matching_top):
42835         Likewise.
42836         * lib/regex_internal.c (re_string_reconstruct):
42837         Don't assume UCHAR_MAX == 255.
42838         * lib/regex_internal.h (bitset_set_all): Likewise.
42839         * lib/regex_internal.h (BITSET_WORD_BITS): Renamed from UINT_BITS.
42840         All uses changed.
42841         (BITSET_WORDS): Renamed from BITSET_UINTS.  All uses changed.
42842         (bitset_word): New type, replacing 'unsigned int' for bitset uses.
42843         All uses changed.
42844         (BITSET_WORD_MAX): New macro.
42845         (bitset_set, bitset_clear, bitset_contain, bitset_empty):
42846         (bitset_set_all, bitset_copy):  Now inline functions, not macros.
42847         (bitset_empty, bitset_copy):
42848         Prefer sizeof (bitset) to multiplying it out ourselves.
42849         (bitset_not_merge): Remove; unused.
42850         (bitset_contain): Return bool, not unsigned int with one bit on.
42851         All callers changed.
42852         * lib/regexec.c (build_trtable): Don't assume bitset has no stricter
42853         alignment than re_node_set; do this by defining a new internal
42854         type struct dests_alloc and using it to allocate memory.
42855
42856 2005-09-05  Bruno Haible  <bruno@clisp.org>
42857
42858         * gnulib-tool (func_import): Fix comparison in handling of symbolic
42859         links.
42860
42861 2005-09-04  Martin Lambers  <marlam@marlam.de>  (tiny change)
42862
42863         * modules/size_max (Makefile.am): Add size_max.h
42864
42865 2005-09-04  Derek Price  <derek@ximbiot.com>
42866
42867         * gnulib-tool (func_import): Fix reversed $symbolic logic.
42868
42869 2005-09-03  Simon Josefsson  <jas@extundo.com>
42870
42871         * gnulib-tool: Fix typo.
42872
42873 2005-09-03  Simon Josefsson  <jas@extundo.com>
42874
42875         * config/srclist.txt: Add glibc bug 1293.
42876
42877 2005-09-03  Derek Price  <derek@ximbiot.com>
42878
42879         * m4/getlogin_r (gl_GETLOGIN_R): Fix cut & paste error.
42880         From Larry Jones <lawrence.jones@ugs.com>.
42881
42882 2005-09-02  Simon Josefsson  <jas@extundo.com>
42883
42884         * modules/socklen: New file.
42885
42886 2005-09-02  Simon Josefsson  <jas@extundo.com>
42887
42888         * modules/havelib: New module.
42889
42890         * modules/gettext, modules/iconv, modules/lock, modules/readline:
42891         Use havelib.
42892
42893 2005-09-02  Paul Eggert  <eggert@cs.ucla.edu>
42894
42895         Check for arithmetic overflow when calculating sizes, to prevent
42896         some buffer-overflow issues.  These patches are conservative, in the
42897         sense that when I couldn't determine whether an overflow was possible,
42898         I inserted a run-time check.
42899         * lib/regex_internal.h (re_xmalloc, re_xrealloc, re_x2realloc): New
42900         macros.
42901         (SIZE_MAX) [!defined SIZE_MAX]: New macro.
42902         (re_alloc_oversized, re_x2alloc_oversized, re_xnmalloc):
42903         (re_xnrealloc, re_x2nrealloc): New inline functions.
42904         * lib/regcomp.c (init_dfa, analyze, build_range_exp,
42905         parse_bracket_exp):
42906         (build_equiv_class, build_charclass): Check for arithmetic overflow
42907         in size expression calculations.
42908         * lib/regex_internal.c (re_string_realloc_buffers):
42909         (build_wcs_upper_buffer, re_node_set_add_intersect):
42910         (re_node_set_init_union, re_node_set_insert, re_node_set_insert_last):
42911         (re_dfa_add_node, register_state): Likewise.
42912         * lib/regexec.c (re_search_stub, re_copy_regs, re_search_internal):
42913         (prune_impossible_nodes, push_fail_stack, set_regs, check_arrival):
42914         (build_trtable, extend_buffers, match_ctx_init, match_ctx_add_entry):
42915         (match_ctx_add_subtop, match_ctx_add_sublast): Likewise.
42916
42917 2005-09-02  Paul Eggert  <eggert@cs.ucla.edu>
42918
42919         * modules/inttostr (Files): Add m4/inttypes_h.m4, m4/stdint_h.m4,
42920         m4/ulonglong.m4.  Problem reported by Martin Lambers.
42921
42922 2005-09-02  Bruno Haible  <bruno@clisp.org>
42923
42924         Support for lib vs. lib64 distinction on biarch platforms.
42925         * m4/lib-prefix.m4 (AC_LIB_PREPARE_MULTILIB): New macro.
42926         (AC_LIB_PREFIX): Require it. Use $acl_libdirstem instead of 'lib'.
42927         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Likewise.
42928
42929 2005-09-02  Bruno Haible  <bruno@clisp.org>
42930
42931         * gnulib-tool (import): In the other first-use case, provide defaults
42932         as well.
42933
42934 2005-09-02  Bruno Haible  <bruno@clisp.org>
42935
42936         * config/srclist.txt: lib-link.m4 and lib-prefix.m4 currently have
42937         patches not yet found in the latest gettext release.
42938
42939 2005-09-01  Paul Eggert  <eggert@cs.ucla.edu>
42940
42941         * lib/glob.c (GET_LOGIN_NAME_MAX): Renamed from LOGIN_NAME_MAX,
42942         to avoid a collision with bits/local_lim.h in glibc.
42943         All uses changed.  Problem reported by Dmitry V. Levin in
42944         <http://sources.redhat.com/bugzilla/show_bug.cgi?id=1060>.
42945
42946         * lib/regex_internal.c (build_wcs_upper_buffer): Fix portability
42947         bugs in int versus size_t comparisons.
42948         (re_string_context_at): Fix bug where the code assumed that
42949         Idx is signed.
42950
42951         Use bool where appropriate.
42952         * lib/regcomp.c (re_set_fastmap): ICASE arg is bool, not int.
42953         All callers changed.
42954         (calc_eclosure_iter): Likewise, for ROOT arg.
42955         (parse_bracket_element): Likewise, for ACCEPT_HYPHEN arg.
42956         (build_charclass_op): Likewise, for NON_MATCH arg.
42957         * lib/regex_internal.c (re_string_allocate, re_string_construct):
42958         (re_string_construct_common): Likewise, for ICASE arg.
42959         * lib/regexec.c (re_search_2_stub, re_search_stub):
42960         Likewise, for RET_LEN arg.
42961         (check_matching): Likewise, for FL_LONGEST_MATCH arg.
42962         (set_regs): Likewise, for FL_BACKTRACK arg.
42963         * lib/regcomp.c (re_compile_fastmap_iter, optimize_utf8):
42964         (duplicate_node_closure, calc_inveclosure, calc_eclosure):
42965         (calc_eclosure_iter, parse_bracket_exp):
42966         Use bool for internal variables that are booleans.
42967         * lib/regexec.c (re_search_internal, check_matching,
42968         proceed_next_node):
42969         (set_regs, build_sifted_states, sift_states_bkref):
42970         (check_arrival_add_next_nodes, check_arrival_expand_ecl_sub):
42971         (expand_bkref_cache, build_trtable, group_nodes_into_DFAstates):
42972         (find_collation_sequence_value):
42973         Likewise.
42974         * lib/regex_internal.c (re_node_set_insert, re_node_set_insert_last):
42975         (re_node_set_compare):
42976         Return bool, not int. All callers changed.
42977         * lib/regexec.c (check_halt_node_context, check_dst_limits):
42978         (build_trtable, check_node_accept): Likewise.
42979         * lib/regex_internal.h: Include stdbool.h.
42980
42981         Fix bugs uncovered when converting to bool.
42982         * lib/regcomp.c (calc_eclosure_iter): Check for storage allocation
42983         failure instead of charging ahead blindly.
42984         * lib/regex_internal.c (register_state): Likewise.
42985         * lib/regexec.c (re_search_2_stub): Use simpler method than boolean
42986         for freeing internal storage.
42987         (group_nodes_into_DFA_states): Use unsigned int, not int, for
42988         bitset pieces used as boolean, to avoid undefined behavior
42989         on hosts that do int overflow checking.
42990
42991 2005-09-01  Paul Eggert  <eggert@cs.ucla.edu>
42992
42993         * config/srclist.txt: Add glibc bugs 1285-1287.
42994
42995 2005-09-01  Jim Meyering  <jim@meyering.net>
42996
42997         * m4/lchown.m4: Require gl_FUNC_CHOWN, for the definition of
42998         CHOWN_MODIFIES_SYMLINK, which is used by lchown.c.
42999         Require gl_STAT_MACROS, too.
43000
43001 2005-09-01  Bruno Haible  <bruno@clisp.org>
43002
43003         * gnulib-tool (import): In the first-use case, provide defaults.
43004
43005 2005-09-01  Bruno Haible  <bruno@clisp.org>
43006
43007         * gnulib-tool (func_import): Remove the .tmp files.
43008
43009 2005-09-01  Bruno Haible  <bruno@clisp.org>
43010
43011         * gnulib-tool (func_import): Fix handling of symbolic links.
43012
43013 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
43014
43015         On 64-bit hosts (where size_t is 64 bits and int is 32 bits), the
43016         old glibc regex code mishandles strings longer than 2**31 bytes.
43017         This patch fixes this when the regex code is used in gnulib
43018         (i.e., outside glibc).
43019
43020         This patch should not affect the use of the regex code inside
43021         glibc.  No doubt this problem also needs to be handled for glibc
43022         as well, but the result will be an incompatible change to the
43023         glibc ABI, and the old ABI will have to be supported too.  That
43024         can be the the subject for another patch.
43025
43026         * lib/regex.h (_REGEX_LARGE_OFFSETS): New feature-test macro,
43027         governing whether the rest of this patch is active.  By default,
43028         the macro is disabled and the patch has no effect.
43029         (regoff_t) [defined _REGEX_LARGE_OFFSETS]: Define to off_t, not int.
43030         (__re_idx_t, __re_size_t, __re_long_size_t): New types.
43031         (struct re_pattern_buffer, re_search, re_search_2, re_match):
43032         (re_match_2, re_set_registers): Use the new types.
43033         * lib/regex_internal.h (Idx, re_hashval_t): New types.
43034         (REG_MISSING, REG_ERROR, REG_VALID_INDEX, REG_VALID_NONZERO_INDEX):
43035         New macros.
43036         (re_node_set, re_charset_t, re_token_t, re_string_realloc_buffers):
43037         (re_string_context_at, bin_tree_t, re_dfastate_t):
43038         (struct re_state_table_entry, state_array_t, re_sub_match_last_t):
43039         (re_sub_match_top_t, re_match_context_t, re_sift_context_t):
43040         (struct re_fail_stack_ent_t, struct re_fail_stack_t, struct re_dfa_t):
43041         (re_string_char_size_at, re_string_wchar_at):
43042         (re_string_elem_size_at):
43043         Use the new types and macros to port to 64-bit hosts.
43044         Use unsigned types for internal values, so that the code
43045         mostly works even for arrays larger than SSIZE_MAX.
43046         * lib/regcomp.c (re_compile_internal, init_dfa, duplicate_node):
43047         (search_duplicated_node, calc_eclosure_iter, fetch_number):
43048         (parse_reg_exp, parse_branch, parse_expression, parse_sub_exp):
43049         (build_equiv_class, build_charclass, re_compile_fastmap_iter):
43050         (free_dfa_content, create_initial_state, optimize_utf8, analyze):
43051         (optimize_subexps, calc_first, link_nfa_nodes, duplicate_node_closure):
43052         (calc_inveclosure, parse_dup_op, build_range_exp):
43053         (build_collating_symbol, parse_bracket_exp, build_charclass_op):
43054         (fetch_number, create_token_tree, mark_opt_subexp):
43055         Likewise.
43056         * lib/regex_internal.c (re_string_construct_common,
43057         create_ci_newstate):
43058         (create_cd_newstate, re_string_allocate, re_string_construct):
43059         (re_string_realloc_buffers, build_wcs_upper_buffer):
43060         (re_string_skip_chars, build_upper_buffer, re_string_translate_buffer):
43061         (re_string_reconstruct, re_string_peek_byte_case):
43062         (re_string_fetch_byte_case, re_string_context_at):
43063         (re_node_set_alloc, re_node_set_init_1, re_node_set_init_2):
43064         (re_node_set_init_copy, re_node_set_add_intersect):
43065         (re_node_set_init_union, re_node_set_merge, re_node_set_insert):
43066         (re_node_set_insert_last, re_node_set_compare, re_node_set_contains):
43067         (re_node_set_remove_at, re_dfa_add_node, calc_state_hash):
43068         (re_acquire_state, re_acquire_state_context, register_state):
43069         Likewise.
43070         * lib/regex.c (match_ctx_init, match_ctx_add_entry,
43071         search_cur_bkref_entry):
43072         (match_ctx_add_subtop, match_ctx_add_sublast, sift_ctx_init):
43073         (re_search_internal, re_search_2_stub, re_search_stub)
43074         (re_copy_regs, check_matching, check_halt_state_context, update_regs):
43075         (push_fail_stack, sift_states_iter_mb, build_sifted_states):
43076         (update_cur_sifted_state, check_dst_limits):
43077         (check_dst_limits_calc_pos_1, check_dst_limits_calc_pos):
43078         (check_subexp_limits, sift_states_bkref, merge_state_array):
43079         (check_subexp_matching_top, get_subexp, get_subexp_sub):
43080         (find_subexp_node, check_arrival, check_arrival_add_next_nodes):
43081         (check_arrival_expand_ecl, check_arrival_expand_ecl_sub):
43082         (expand_bkref_cache, check_node_accept_bytes):
43083         (group_nodes_into_DFAstates, check_node_accept, regexec, re_match):
43084         (re_search, re_match_2, re_search_2, prune_impossible_nodes):
43085         (acquire_init_state_context, check_halt_node_context):
43086         (proceed_next_node, pop_fail_stack, set_regs, free_fail_stack_return):
43087         (sift_states_backward, clean_state_log_if_needed):
43088         (sub_epsilon_src_nodes, add_epsilone_src_nodes, merge_state_with_log):
43089         (find_recover_state, transit_state_sb, transit_state_mb):
43090         (transit_state_bkref, build_trtable, match_ctx_clean):
43091         Likewise.
43092         * lib/regcomp.c (parse_dup_op): Add an extra test if Idx is unsigned,
43093         to work around an assumption that REG_MISSING is negative.
43094
43095         * lib/regcomp.c (re_comp) [defined _REGEX_RE_COMP || defined _LIBC]:
43096         (seek_collating_symbol_entry) [defined _LIBC]:
43097         (lookup_collation_sequence_value) [defined _LIBC]:
43098         (build_range_exp, build_collating_symbol) [defined _LIBC]:
43099         Use prototypes rather than old-style function definitions.
43100         * lib/regexec.c (re_exec) [defined _REGEX_RE_COMP || defined _LIBC]:
43101         (transit_state_sb) [0]:
43102         (find_collation_sequence_value) [defined _LIBC]: Likewise.
43103
43104         * lib/regexec.c (re_search_internal): Simplify update of rm_so and
43105         rm_eo.
43106
43107         * lib/regcomp.c (re_compile_fastmap_iter, init_dfa, init_word_char):
43108         (optimize_subexps, lower_subexp):
43109         Don't assume 1<<31 has defined behavior on hosts with 32-bit int,
43110         since the signed shift might overflow.  Use 1u<<31 instead.
43111         * lib/regex_internal.h (bitset_set, bitset_clear, bitset_contain):
43112         Likewise.
43113         * lib/regexec.c (check_dst_limits_calc_pos_1,
43114         check_subexp_matching_top): Likewise.
43115
43116         * lib/regcomp.c (optimize_subexps, lower_subexp):
43117         Use CHAR_BIT rather than 8, for clarity.
43118         * lib/regexec.c (check_dst_limits_calc_pos_1):
43119         (check_subexp_matching_top): Likewise.
43120         * lib/regcomp.c (init_dfa): Make table_size unsigned, so that we don't
43121         have to worry about portability issues when shifting it left.
43122         Remove no-longer-needed test for table_size > 0.
43123         * lib/regcomp.c (parse_sub_exp): Do not shift more bits than there are
43124         in a word, as the resulting behavior is undefined.
43125         * lib/regexec.c (check_dst_limits_calc_pos_1): Likewise;
43126         in one case, a <= should have been an <, and in another case the
43127         whole test was missing.
43128         * lib/regex_internal.h (BYTE_BITS): Remove.  All uses changed to
43129         the standard name CHAR_BIT.
43130         * lib/regexec.c (match_ctx_add_entry): Don't assume that ~0 == -1;
43131         this is not true on one's complement and signed-magnitude hosts.
43132
43133         * lib/regex_internal.h (re_sub_match_top_t): Remove unused member
43134         next_last_offset.
43135         (struct re_dfa_t): Remove unused member states_alloc.
43136         * lib/regcomp.c (init_dfa): Don't initialize unused members.
43137
43138 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
43139
43140         * m4/regex.m4 (gl_REGEX): Require AC_SYS_LARGEFILE, Define
43141         _REGEX_LARGE_OFFSETS).  Test for regoff_t/off_t bug in 64-bit
43142         and large-file glibc and in 32-bit large-file Solaris.
43143
43144 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
43145
43146         * lib/regex_internal.c (re_string_reconstruct): Don't assume buffer
43147         lengths fit in regoff_t; this isn't true if regoff_t is the same
43148         width as size_t.
43149         * lib/regex.c (re_search_internal): 5th arg is LAST_START
43150         (= START + RANGE) instead of RANGE.  This avoids overflow
43151         problems when regoff_t is the same width as size_t.
43152         All callers changed.
43153         (re_search_2_stub): Check for overflow when adding the
43154         sizes of the two strings.
43155         (re_search_stub): Check for overflow when adding START
43156         to RANGE; if it occurs, substitute the extreme value.
43157
43158 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
43159
43160         * config/srclist.txt: Add glibc bugs 1273, 1278-1282, 1284.
43161
43162 2005-08-31  Jim Meyering  <jim@meyering.net>
43163
43164         * lib/regcomp.c (search_duplicated_node): Make first pointer arg
43165         a pointer-to-const.
43166         * lib/regex_internal.c (create_ci_newstate, create_cd_newstate):
43167         (register_state): Likewise.
43168         * lib/regexec.c (search_cur_bkref_entry, check_dst_limits):
43169         (check_dst_limits_calc_pos_1, check_dst_limits_calc_pos):
43170         (group_nodes_into_DFAstates): Likewise.
43171
43172 2005-08-31  Jim Meyering  <jim@meyering.net>
43173
43174         * check-module: Add a FIXME comment.
43175
43176 2005-08-31  Eric Blake  <ebb9@byu.net>
43177
43178         * modules/unistd-safer (Files): Add unistd--.h.
43179         * modules/stdio-safer (Files): Add stdio--.h.
43180
43181 2005-08-31  Derek Price  <derek@ximbiot.com>
43182
43183         * lib/getdelim.c (getdelim): Return EOF on EOF.
43184         Reported by Larry Jones <lawrence.jones@ugs.com>.
43185
43186 2005-08-31  Bruno Haible  <bruno@clisp.org>
43187
43188         Avoid unnecessary diffs in the generated lib/Makefile.am.
43189         * gnulib-tool (func_emit_lib_Makefile_am): Don't write the cmd into
43190         the generated files.
43191         (func_import): Don't set cmd.
43192
43193 2005-08-31  Bruno Haible  <bruno@clisp.org>
43194
43195         * lib/strstr.c: Include <stddef.h>, for NULL.
43196         * lib/strcasestr.c: Likewise.
43197         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
43198
43199 2005-08-31  Bruno Haible  <bruno@clisp.org>
43200
43201         * gnulib-tool: New option --macro-prefix.
43202         (func_import): Use macro_prefix.
43203         (import): Handle option --macro-prefix.
43204
43205 2005-08-31  Bruno Haible  <bruno@clisp.org>
43206
43207         * gnulib-tool (import): Rename most ac_* variables to cached_*.
43208         Also use new variables cached_lgpl, cached_libtool.
43209
43210 2005-08-31  Bruno Haible  <bruno@clisp.org>
43211
43212         * gnulib-tool (func_import): Require AC_GNU_SOURCE etc. instead of
43213         always instantiating them.
43214
43215 2005-08-31  Bruno Haible  <bruno@clisp.org>
43216
43217         * gnulib-tool (func_import): Read the previous cached settings
43218         from gnulib-cache.m4 and gnulib-comp.m4. Remove files that were
43219         earlier added by gnulib but are now dropped. Warn when a gnulib file
43220         overwrites a non-gnulib file.
43221
43222 2005-08-31  Bruno Haible  <bruno@clisp.org>
43223
43224         * gnulib-tool (func_import): Generate two files gnulib-cache.m4 and
43225         gnulib-comp.m4 instead of a single gnulib.m4, to make it easy for
43226         projects that don't keep autogenerated files in CVS. Put into
43227         actioncmd only the specified modules, not the transitive closure.
43228
43229 2005-08-31  Bruno Haible  <bruno@clisp.org>
43230
43231         * gnulib-tool (func_import): Fix defaulting of $libname and $libtool.
43232         Create directories that shall be filled.
43233         (import): Don't look for gl_* macros in configure.ac. Recurse across
43234         all directories containing a gnulib-cache.m4 files, if meaningful.
43235
43236 2005-08-31  Bruno Haible  <bruno@clisp.org>
43237
43238         * gnulib-tool (func_import): Emit also a stub for gl_LIBTOOL.
43239         (import): Set seen_libtool when we see gl_LIBTOOL.
43240
43241 2005-08-31  Bruno Haible  <bruno@clisp.org>
43242
43243         * gnulib-tool (func_import): Also copy m4/gnulib-tool.m4. Omit
43244         declaration macro definitions from generated gnulib.m4.
43245
43246 2005-08-30  Oskar Liljeblad  <oskar@osk.mine.nu>
43247
43248         * lib/iconvme.h: Add prototype for iconv_alloc.
43249
43250 2005-08-29  Simon Josefsson  <jas@extundo.com>
43251
43252         * lib/iconvme.c: Fix errno.
43253
43254 2005-08-29  Bruno Haible  <bruno@clisp.org>
43255
43256         * gnulib-tool: Enclose all occurrences of $destdir in "...", so
43257         that it works when the directory contains spaces.
43258
43259 2005-08-29  Bruno Haible  <bruno@clisp.org>
43260
43261         * gnulib-tool (import): Avoid unnecessary spaces in $avoidlist.
43262
43263 2005-08-29  Bruno Haible  <bruno@clisp.org>
43264
43265         * gnulib-tool (func_import): Emit more comments into gnulib.m4.
43266         Emit more advice.
43267
43268 2005-08-29  Bruno Haible  <bruno@clisp.org>
43269         and Stepan Kasal  <kasal@ucw.cz>
43270
43271         * check-module: If more parameters are given, check each of them
43272         separately; add more exceptions, as noted by Jim Meyering.
43273         (check_module): New procedure.
43274         (%exempt_header): Now contains all exceptions.
43275
43276 2005-08-29  Ben Pfaff  <blp@cs.stanford.edu>
43277
43278         * modules/byteswap (Makefile.am): Fix rule to not assume GNU make.
43279
43280 2005-08-29  Oskar Liljeblad  <oskar@osk.mine.nu>
43281
43282         * lib/iconvme.c: Split iconv_string into iconv_alloc.
43283
43284 2005-08-28  Bruno Haible  <bruno@clisp.org>
43285
43286         * m4/gnulib-tool.m4: New file.
43287
43288 2005-08-27  Jim Meyering  <jim@meyering.net>
43289
43290         * modules/unistd-safer (Files): Add pipe-safer.c.
43291         * modules/fcntl-safer (Files): Add creat-safer.c.
43292
43293 2005-08-27  Jim Meyering  <jim@meyering.net>
43294
43295         * m4/stdlib-safer.m4: New file.  From coreutils.
43296         * m4/stdio-safer.m4 (gl_STDIO_SAFER): Add stdio--.h.
43297         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Add creat-safer.c to the
43298         AC_LIBSOURCES list and arrange to compile it via AC_LIBOBJ.
43299         * m4/unistd-safer.m4 (gl_UNISTD_SAFER): Likewise, add pipe-safer.c.
43300         Add pipe-safer.c and unistd--.h to the AC_LIBSOURCES list.
43301
43302 2005-08-27  Jim Meyering  <jim@meyering.net>
43303
43304         * lib/fopen-safer.c: Merge minor changes from coreutils.
43305         * lib/dup-safer.c: Likewise.
43306         * lib/fd-safer.c: Likewise.
43307
43308         Merge from coreutils.
43309         * lib/stdio--.h: New file.
43310         * lib/stdlib--.h: New file.
43311         * lib/mkstemp-safer.c: New file.
43312
43313         GNU tar needs these.
43314         * lib/pipe-safer.c: New file.
43315         * lib/creat-safer.c: New file.
43316         * lib/fcntl--.h (creat): Define to creat_safer.
43317         * lib/fcntl-safer.h: Include <sys/types.h> and declare creat_safer.
43318         * lib/unistd--.h (pipe): Define to pipe_safer.
43319         * lib/unistd-safer.h: Declare pipe_safer.
43320
43321 2005-08-26  Simon Josefsson  <jas@extundo.com>
43322
43323         * lib/getpass.c: Use _WIN32 instead of WIN32, suggested by Bruno
43324         Haible <bruno@clisp.org>.
43325
43326 2005-08-26  Paul Eggert  <eggert@cs.ucla.edu>
43327
43328         * lib/regex_internal.h: Remove all references to
43329         RE_NO_INTERNAL_PROTOTYPES; no longer neeeded now that we assume C89
43330         or better.
43331         (bitset_not, bitset_merge, bitset_not_merge):
43332         (bitset_mask, re_string_allocate, re_string_construct):
43333         (re_string_reconstruct, re_string_destruct, re_string_elem_size_at):
43334         (re_string_char_size_at, re_string_wchar_at, re_string_peek_byte_case):
43335         (re_string_fetch_byte_case, re_node_set_alloc, re_node_set_init_1):
43336         (re_node_set_init_2, re_node_set_init_copy, re_node_set_add_intersect):
43337         (re_node_set_init_union, re_node_set_merge, re_node_set_insert):
43338         (re_node_set_insert_last, re_node_set_compare, re_node_set_contains):
43339         (re_node_set_remove_at, re_dfa_add_node, re_acquire_state):
43340         (re_acquire_state_context):
43341         Remove unnecessary forward decls.
43342         (re_string_char_size_at, re_string_wchar_at, re_string_elem_size_at):
43343         Put __attribute at function definition,
43344         now that the function decl has been removed.
43345         * lib/regex_internal.c (re_string_peek_byte_case):
43346         (re_string_fetch_byte_case, re_node_set_compare, re_node_set_contains):
43347         Likewise.
43348
43349 2005-08-25  Stepan Kasal  <kasal@ucw.cz>
43350
43351         * m4/regex.m4: Add AC_PREREQ(2.50).
43352         (gl_REGEX): If --with-included-regex was given, skip the autodetection.
43353
43354 2005-08-25  Simon Josefsson  <jas@extundo.com>
43355
43356         * m4/getpass.m4: Check for termios.h, tcgetattr, tcsetattr, and
43357         __fsetlocking.
43358
43359 2005-08-25  Simon Josefsson  <jas@extundo.com>
43360
43361         * lib/getpass.c: Add WIN32 implementation.  Conditionalize use of
43362         termios.h, tcgetattr, tcsetattr and __fsetlocking.  Remove some
43363         GLIBC specific code.
43364
43365 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
43366
43367         Make regex safe for g++.  This fixes one real bug (an "err"
43368         that should have been "*err").  g++ problem reported by
43369         Sam Steingold.
43370         * lib/regex_internal.h (re_calloc): New macro, consistent with
43371         re_malloc etc.  All callers of calloc changed to use re_calloc.
43372         * lib/regex_internal.c (build_wcs_upper_buffer): Return reg_errcode_t,
43373         not int.  All callers changed.
43374         * lib/regcomp.c (re_compile_fastmap_iter): Don't use
43375         alloca (mb_cur_max); just use an array of size MB_LEN_MAX.
43376         * lib/regexec.c (push_fail_stack): Use re_realloc, not realloc.
43377         (find_recover_state): Change "err" to "*err"; this fixes what
43378         appears to be a real bug.
43379         (check_arrival_expand_ecl_sub): Be consistent about reg_errcode_t
43380         versus int.
43381
43382 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
43383
43384         * modules/regex (Depends-on): Add malloc, since the code
43385         assumes that !malloc(0) means failure.
43386
43387 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
43388
43389         * lib/regexec.c (set_regs): Don't alloca with an unbounded size.
43390
43391         alloca modernization/simplification for regex.
43392         * lib/regex.c: Remove portability cruft for alloca.  This no longer
43393         needs to be at the start of the file, and can be moved into
43394         regex_internal.h and simplified.
43395         * lib/regex_internal.h: Include <alloca.h>.
43396         (__libc_use_alloca) [!defined _LIBC]: New macro.
43397         * lib/regexec.c (build_trtable): Remove "#ifdef _LIBC", since the code
43398         now works outside glibc.
43399
43400 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
43401
43402         * config/srclist.txt: Add glibc bugs 1241, 1245.
43403
43404 2005-08-25  Jim Meyering  <jim@meyering.net>
43405
43406         * lib/open-safer.c: Include <config.h>.
43407         Otherwise, we'd lose LARGEFILE support in any file using
43408         e.g. "fcntl--.h"
43409
43410 2005-08-25  Bruno Haible  <bruno@clisp.org>
43411
43412         * m4/minmax.m4: Require autoconf 2.52.
43413         (gl_MINMAX_IN_HEADER): Add comments. Use m4_pushdef/m4_popdef instead
43414         of define/undefine. Use AS_TR_SH and AS_TR_CPP as more robust
43415         alternatives of translit over the alphabet.
43416         Based on a patch from Stepan Kasal <kasal@ucw.cz>.
43417
43418 2005-08-24  Simon Josefsson  <jas@extundo.com>
43419
43420         * tests/test-getpass.c: New file.
43421
43422 2005-08-24  Paul Eggert  <eggert@cs.ucla.edu>
43423
43424         * m4/regex.m4 (gl_REGEX): Use POSIX-compliant spellings when testing
43425         for GNU regex features.
43426
43427 2005-08-24  Paul Eggert  <eggert@cs.ucla.edu>
43428
43429         * lib/regcomp.c (regerror): 2nd arg is 'restrict', as per POSIX.
43430         * lib/regex.h (regerror): Likewise.
43431
43432         * lib/regex.c: Do not include <sys/types.h>, as POSIX no longer
43433         requires this.  (The code never needed it.)
43434
43435         * lib/regcomp.c, regex_internal.c, regex_internal.h, regexec.c:
43436         All uses of recently-renamed identifiers changed to use the new,
43437         POSIX-compliant names.  The code will build and run just fine
43438         without these changes, but it's better to eat our own dog food
43439         and use the standard-conforming names.
43440
43441         * lib/regex.h: Fix a multitude of POSIX name space violations.
43442         These changes have an effect only for programs that define
43443         _POSIX_C_SOURCE, _POSIX_SOURCE, or _XOPEN_SOURCE; they
43444         do not change anything for programs compiled in the normal way.
43445         Also, there is no effect on the ABI.
43446
43447         (_REGEX_SOURCE): New macro.
43448         Do not include <stddef.h> if _XOPEN_SOURCE and VMS are both
43449         defined and _GNU_SOURCE is not; this fixes a name space violation.
43450
43451         Rename the following macros to obey POSIX requirements.
43452         The old names are still visible as macros if _REGEX_SOURCE is defined.
43453         (REG_BACKSLASH_ESCAPE_IN_LISTS): renamed from
43454         RE_BACKSLASH_ESCAPE_IN_LISTS.
43455         (REG_BK_PLUS_QM): renamed from RE_BK_PLUS_QM.
43456         (REG_CHAR_CLASSES): renamed from RE_CHAR_CLASSES.
43457         (REG_CONTEXT_INDEP_ANCHORS): renamed from RE_CONTEXT_INDEP_ANCHORS.
43458         (REG_CONTEXT_INDEP_OPS): renamed from RE_CONTEXT_INDEP_OPS.
43459         (REG_CONTEXT_INVALID_OPS): renamed from RE_CONTEXT_INVALID_OPS.
43460         (REG_DOT_NEWLINE): renamed from RE_DOT_NEWLINE.
43461         (REG_DOT_NOT_NULL): renamed from RE_DOT_NOT_NULL.
43462         (REG_HAT_LISTS_NOT_NEWLINE): renamed from RE_HAT_LISTS_NOT_NEWLINE.
43463         (REG_INTERVALS): renamed from RE_INTERVALS.
43464         (REG_LIMITED_OPS): renamed from RE_LIMITED_OPS.
43465         (REG_NEWLINE_ALT): renamed from RE_NEWLINE_ALT.
43466         (REG_NO_BK_BRACES): renamed from RE_NO_BK_BRACES.
43467         (REG_NO_BK_PARENS): renamed from RE_NO_BK_PARENS.
43468         (REG_NO_BK_REFS): renamed from RE_NO_BK_REFS.
43469         (REG_NO_BK_VBAR): renamed from RE_NO_BK_VBAR.
43470         (REG_NO_EMPTY_RANGES): renamed from RE_NO_EMPTY_RANGES.
43471         (REG_UNMATCHED_RIGHT_PAREN_ORD): renamed from
43472         RE_UNMATCHED_RIGHT_PAREN_ORD.
43473         (REG_NO_POSIX_BACKTRACKING): renamed from RE_NO_POSIX_BACKTRACKING.
43474         (REG_NO_GNU_OPS): renamed from RE_NO_GNU_OPS.
43475         (REG_DEBUG): renamed from RE_DEBUG.
43476         (REG_INVALID_INTERVAL_ORD): renamed from RE_INVALID_INTERVAL_ORD.
43477         (REG_IGNORE_CASE): renamed from RE_ICASE.  This renaming is a bit
43478         unusual, since we can't clash with the POSIX REG_ICASE.
43479         (REG_CARET_ANCHORS_HERE): renamed from RE_CARET_ANCHORS_HERE.
43480         (REG_CONTEXT_INVALID_DUP): renamed from RE_CONTEXT_INVALID_DUP.
43481         (REG_NO_SUB): renamed from RE_NO_SUB.
43482         (REG_SYNTAX_EMACS): renamed from RE_SYNTAX_EMACS.
43483         (REG_SYNTAX_AWK): renamed from RE_SYNTAX_AWK.
43484         (REG_SYNTAX_GNU_AWK): renamed from RE_SYNTAX_GNU_AWK.
43485         (REG_SYNTAX_POSIX_AWK): renamed from RE_SYNTAX_POSIX_AWK.
43486         (REG_SYNTAX_GREP): renamed from RE_SYNTAX_GREP.
43487         (REG_SYNTAX_EGREP): renamed from RE_SYNTAX_EGREP.
43488         (REG_SYNTAX_POSIX_EGREP): renamed from RE_SYNTAX_POSIX_EGREP.
43489         (REG_SYNTAX_ED): renamed from RE_SYNTAX_ED.
43490         (REG_SYNTAX_SED): renamed from RE_SYNTAX_SED.
43491         (_REG_SYNTAX_POSIX_COMMON): renamed from _RE_SYNTAX_POSIX_COMMON.
43492         (REG_SYNTAX_POSIX_BASIC): renamed from RE_SYNTAX_POSIX_BASIC.
43493         (REG_SYNTAX_POSIX_MINIMAL_BASIC): renamed from
43494         RE_SYNTAX_POSIX_MINIMAL_BASIC.
43495         (REG_SYNTAX_POSIX_EXTENDED): renamed from RE_SYNTAX_POSIX_EXTENDED.
43496         (REG_SYNTAX_POSIX_MINIMAL_EXTENDED): renamed from
43497         RE_SYNTAX_POSIX_MINIMAL_EXTENDED.
43498         (REG_DUP_MAX): renamed from RE_DUP_MAX.  No need to undef it.
43499         (REG_UNALLOCATED): Renamed from REGS_UNALLOCATED.
43500         (REG_REALLOCATE): Renamed from REGS_REALLOCATE.
43501         (REG_FIXED): Renamed from REGS_FIXED.
43502         (REG_NREGS): Renamed from RE_NREGS.
43503
43504         (REG_ICASE, REG_NEWLINE, REG_NOSUB): Do not depend on the values
43505         of other REG_* macros, since POSIX says the user is allowed to
43506         #undef these macros selectively.
43507
43508         (reg_errcode_t): Update comment stating what other tables need
43509         to be consistent.
43510
43511         Rename the following enum values to obey POSIX requirements.
43512         The old names are still visible as macros.
43513         (_REG_ENOSYS): Renamed from REG_ENOSYS.  Define even if _XOPEN_SOURCE
43514         is not defined, since GNU is supposed to be a superset of POSIX as
43515         much as possible, and since we want reg_errcode_t to be a signed
43516         type for implementation consistency.
43517         (_REG_NOERROR): Renamed from REG_NOERROR.
43518         (_REG_NOMATCH): Renamed from REG_NOMATCH.
43519         (_REG_BADPAT): Renamed from REG_BADPAT.
43520         (_REG_ECOLLATE): Renamed from REG_ECOLLATE.
43521         (_REG_ECTYPE): Renamed from REG_ECTYPE.
43522         (_REG_EESCAPE): Renamed from REG_EESCAPE.
43523         (_REG_ESUBREG): Renamed from REG_ESUBREG.
43524         (_REG_EBRACK): Renamed from REG_EBRACK.
43525         (_REG_EPAREN): Renamed from REG_EPAREN.
43526         (_REG_EBRACE): Renamed from REG_EBRACE.
43527         (_REG_BADBR): Renamed from REG_BADBR.
43528         (_REG_ERANGE): Renamed from REG_ERANGE.
43529         (_REG_ESPACE): Renamed from REG_ESPACE.
43530         (_REG_BADRPT): Renamed from REG_BADRPT.
43531         (_REG_EEND): Renamed from REG_EEND.
43532         (_REG_ESIZE): Renamed from REG_ESIZE.
43533         (_REG_ERPAREN): Renamed from REG_ERPAREN.
43534         (REG_ENOSYS, REG_NOERROR, REG_NOMATCH, REG_BADPAT, REG_ECOLLATE):
43535         (REG_ECTYPE, REG_EESCAPE, REG_ESUBREG, REG_EBRACK, REG_EPAREN):
43536         (REG_EBRACE, REG_BADBR, REG_ERANGE, REG_ESPACE, REG_BADRPT, REG_EEND):
43537         (REG_ESIZE, REG_ERPAREN): Now macros, not enum constants.
43538
43539         (_REG_RE_NAME, _REG_RM_NAME): New macros.
43540         (REG_TRANSLATE_TYPE): Renamed from RE_TRANSLATE_TYPE.  All uses
43541         changed.  But support the old name if the new one is not defined
43542         and if _REGEX_SOURCE.
43543
43544         Change the following member names in struct re_pattern_buffer.
43545         The old names are still supported if !_REGEX_SOURCE.
43546         The new names are always supported, regardless of _REGEX_SOURCE.
43547         (re_buffer): Renamed from buffer.
43548         (re_allocated): Renamed from allocated.
43549         (re_used): Renamed from used.
43550         (re_syntax): Renamed from syntax.
43551         (re_fastmap): Renamed from fastmap.
43552         (re_translate): Renamed from translate.
43553         (re_can_be_null): Renamed from can_be_null.
43554         (re_regs_allocated): Renamed from regs_allocated.
43555         (re_fastmap_accurate): Renamed from fastmap_accurate.
43556         (re_no_sub): Renamed from no_sub.
43557         (re_not_bol): Renamed from not_bol.
43558         (re_not_eol): Renamed from not_eol.
43559         (re_newline_anchor): Renamed from newline_anchor.
43560
43561         Change the following member names in struct re_registers.
43562         The old names are still supported if !_REGEX_SOURCE.
43563         The new names are always supported, regardless of _REGEX_SOURCE.
43564         (rm_num_regs): Renamed from num_regs.
43565         (rm_start): Renamed from start.
43566         (rm_end): Renamed from end.
43567
43568         (re_set_syntax, re_compile_pattern, re_compile_fastmap):
43569         (re_search, re_search_2, re_match, re_match_2, re_set_registers):
43570         Prepend __ to parameter names.
43571
43572         Undo yesterday's changes.
43573
43574 2005-08-24  Paul Eggert  <eggert@cs.ucla.edu>
43575
43576         * config/srclist.txt: Remove glibc bug 1233 and add 1236, which
43577         supersedes it. Add glibc bugs 1237, 1238, 1240.  Comment out
43578         lib/regex.c.
43579
43580 2005-08-24  Jim Meyering  <jim@meyering.net>
43581
43582         Sync from coreutils.
43583         * m4/fcntl-safer.m4: New file.
43584
43585         * m4/xgetcwd.m4: Use AC_LIBSOURCES and AC_LIBOBJ to indicate source
43586         and object files for this module.
43587
43588 2005-08-24  Jim Meyering  <jim@meyering.net>
43589
43590         Sync from coreutils.
43591         * lib/fcntl--.h, lib/fcntl-safer.h, lib/open-safer.c: New files.
43592
43593 2005-08-24  Jim Meyering  <jim@meyering.net>
43594
43595         * modules/xgetcwd (Makefile.am): Remove `lib_SOURCES += ...' line,
43596         now that xgetcwd.m4 requires xgetcwd.c and xgetcwd.h.
43597
43598 2005-08-24  Jim Meyering  <jim@meyering.net>
43599
43600         * modules/fcntl-safer: New module.
43601         * modules/fts (Depends-on): Add fcntl-safer.
43602         * MODULES.html.sh (File descriptor based Input/Output):
43603         Add fcntl-safer.
43604
43605 2005-08-24  Bruno Haible  <bruno@clisp.org>
43606
43607         Support for unit test modules.
43608         * modules/README: Mention tests modules.
43609         * modules/TEMPLATE-TESTS: New file.
43610         * gnulib-tool: New options --extract-tests-module, --with-tests and
43611         --tests-base (unused for the moment).
43612         (testsbase, inctests): New variables.
43613         (func_all_modules): Exclude TEMPLATE-TESTS and *-tests.
43614         (func_verify_module): Exclude TEMPLATE-TESTS.
43615         (func_verify_nontests_module, func_verify_tests_module): New functions.
43616         (func_get_dependencies): Add implicit dependency for tests modules.
43617         (func_get_tests_module): New function.
43618         (func_modules_transitive_closure): When --with-tests was specified,
43619         include the unit tests as well, unless explicitly avoided.
43620         (func_emit_lib_Makefile_am): Ignore the tests modules here.
43621         (func_emit_tests_Makefile_am): New function.
43622         (func_create_testdir): When --with-tests was specified, emit a
43623         tests/ directory.
43624         * MODULES.html.sh (Future developments): Update.
43625
43626 2005-08-24  Bruno Haible  <bruno@clisp.org>
43627
43628         * modules/tls-tests: New file.
43629         * tests/test-tls.c: New file, from GNU gettext.
43630
43631 2005-08-24  Bruno Haible  <bruno@clisp.org>
43632
43633         * modules/lock-tests: New file.
43634         * tests/test-lock.c: New file, from GNU gettext.
43635
43636 2005-08-24  Bruno Haible  <bruno@clisp.org>
43637
43638         * lib/lock.h: Add multiple inclusion guard.
43639         * lib/tls.h: Add multiple inclusion guard.
43640
43641 2005-08-24  Bruno Haible  <bruno@clisp.org>
43642
43643         * gnulib-tool: Add support for the --aux-dir option to
43644         --create-testdir, --create-megatestdir, --test, --megatest.
43645         (func_create_testdir, func_create_megatestdir): Optionally emit a
43646         AC_CONFIG_AUX_DIR directive.
43647         (create-testdir, create-megatestdir, test, megatest): Provide a
43648         default value for $auxdir.
43649
43650 2005-08-24  Bruno Haible  <bruno@clisp.org>
43651
43652         * gnulib-tool (import): Use compound statement instead of subshell
43653         where possible.
43654
43655 2005-08-24  Bruno Haible  <bruno@clisp.org>
43656
43657         * gnulib-tool (import): Change --aux-dir default to "build-aux".
43658
43659 2005-08-24  Bruno Haible  <bruno@clisp.org>
43660
43661         * gnulib-tool (func_version): Update.
43662
43663 2005-08-24  Bruno Haible  <bruno@clisp.org>
43664
43665         * gnulib-tool (func_import, func_create_testdir,
43666         func_create_megatestdir): Quote all autoconf macro arguments.
43667
43668 2005-08-24  Bruno Haible  <bruno@clisp.org>
43669
43670         * gnulib-tool (func_create_megatestdir): Call autoreconf without the
43671         option --force, because --force causes the aclocal.m4 of each
43672         subdirectory to be newer than the corresponding config.h.in.
43673
43674 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
43675
43676         * m4/regex.m4 (gl_INCLUDED_REGEX): Remove; no longer used.
43677         All contents moved to gl_REGEX.
43678         (gl_REGEX): Don't bother checking whether lib/regex.c exists;
43679         assume that it does.
43680
43681 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
43682
43683         * lib/regex.h (REG_NOSYS)
43684         [!defined _XOPEN_SOURCE && 200112L <= _POSIX_C_SOURCE]:
43685         Define, since POSIX requires it as of 2001.
43686         (_REG_ENOSYS)
43687         [! (defined _XOPEN_SOURCE || 200112L <= _POSIX_C_SOURCE)]:
43688         New private symbol, used to keep the enum signed in all cases.
43689         * lib/regex.h (RE_NO_EMPTY_RANGES): Fix doc bug reported by James
43690         Youngman in
43691         <http://lists.gnu.org/archive/html/bug-gnulib/2005-07/msg00132.html>.
43692
43693         * lib/regex_internal.c (re_string_skip_chars, register_state):
43694         (calc_state_hash):
43695         Remove forward decls; no longer needed now that we use prototypes.
43696         * lib/regexec.c (acquire_init_state_context, check_halt_node_context):
43697         (proceed_next_node, pop_fail_stack, sub_epsilon_src_nodes):
43698         (clean_state_log_if_needed): Likewise.
43699
43700 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
43701
43702         * config/srclist.txt: Add glibc bugs 1231-1233.
43703
43704 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
43705
43706         Fix problems reported by Sam Steingold in
43707         <http://lists.gnu.org/archive/html/bug-gnulib/2005-08/msg00007.html>.
43708         * lib/regexec.c (sift_states_bkref): Fix portability bug: the code
43709         assumed that reg_errcode_t is a signed type, which is not
43710         necessarily true if _XOPEN_SOURCE is not defined.
43711         * lib/regex_internal.c (calc_state_hash): Put 'inline' before type,
43712         since some compilers warn about it otherwise.
43713
43714 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
43715
43716         * lib/regcomp.c (create_initial_state): Remove duplicate decl.
43717         (init_word_char, create_initial_state, duplicate_node_closure):
43718         (fetch_token, peek_token_bracket, build_range_exp):
43719         (build_collating_symbol): Remove forward decls; no longer needed
43720         now that we use prototypes.
43721
43722         * lib/regcomp.c:
43723         (re_compile_pattern, re_set_syntax, re_compile_fastmap):
43724         (re_compile_fastmap_iter, regcomp, regerror, regfree):
43725         (re_compile_internal, init_dfa, init_word_char, free_workarea_compile):
43726         (create_initial_state, optimize_utf8, analyze, postorder, preorder):
43727         (optimize_subexps, lower_subexps, lower_subexp, calc_first, calc_next):
43728         (link_nfa_nodes, duplicate_node_closure, search_duplicated_node):
43729         (duplicate_node, calc_inveclosure, calc_eclosure, calc_eclosure_iter):
43730         (fetch_token, peek_token, peek_token_bracket, parse, parse_reg_exp):
43731         (parse_branch, parse_expression, parse_sub_exp, parse_dup_op):
43732         (build_range_exp, build_collating_symbol, parse_bracket_exp):
43733         (parse_bracket_element, parse_bracket_symbol, build_equiv_class):
43734         (build_charclass, build_charclass_op, fetch_number, create_tree):
43735         (create_token_tree, mark_opt_subexp, duplicate_tree):
43736         Use prototypes rather than old-style definitions.
43737
43738         * lib/regex_internal.c:
43739         (re_string_allocate, re_string_construct, re_string_realloc_buffers):
43740         (re_string_construct_common, build_wcs_buffer, build_wcs_upper_buffer):
43741         (re_string_skip_chars, build_upper_buffer, re_string_translate_buffer):
43742         (re_string_reconstruct, re_string_peek_byte_case):
43743         (re_string_fetch_byte_case, re_string_destruct, re_string_context_at):
43744         (re_node_set_alloc, re_node_set_init_1, re_node_set_init_2):
43745         (re_node_set_init_copy, re_node_set_add_intersect):
43746         (re_node_set_init_union, re_node_set_merge, re_node_set_insert):
43747         (re_node_set_insert_last, re_node_set_compare, re_node_set_contains):
43748         (re_node_set_remove_at, re_dfa_add_node, calc_state_hash):
43749         (re_acquire_state, re_acquire_state_context, register_state):
43750         (create_ci_newstate, create_cd_newstate, free_state):
43751         Likewise.
43752         * lib/regexec.c (regexec, re_match, re_search, re_match_2,
43753         re_search_2):
43754         (re_search_2_stub, re_search_stub, re_copy_regs, re_set_registers):
43755         (re_search_internal, prune_impossible_nodes):
43756         (acquire_init_state_context, check_matching, static):
43757         (check_halt_node_context, check_halt_state_context, proceed_next_node):
43758         (push_fail_stack, pop_fail_stack, set_regs, free_fail_stack_return):
43759         (update_regs, sift_states_backward, build_sifted_states):
43760         (clean_state_log_if_needed, merge_state_array):
43761         (update_cur_sifted_state, add_epsilon_src_nodes):
43762         (sub_epsilon_src_nodes, check_dst_limits, check_dst_limits_calc_pos_1):
43763         (check_dst_limits_calc_pos, check_subexp_limits, sift_states_bkref):
43764         (sift_states_iter_mb, transit_state, merge_state_with_log, static):
43765         (find_recover_state, check_subexp_matching_top, transit_state_mb):
43766         (transit_state_bkref, get_subexp, get_subexp_sub, find_subexp_node):
43767         (check_arrival, check_arrival_add_next_nodes):
43768         (check_arrival_expand_ecl, check_arrival_expand_ecl_sub):
43769         (expand_bkref_cache, build_trtable, group_nodes_into_DFAstates):
43770         (check_node_accept_bytes, check_node_accept, extend_buffers):
43771         (match_ctx_init, match_ctx_clean, match_ctx_free, match_ctx_add_entry):
43772         (search_cur_bkref_entry, match_ctx_add_subtop, match_ctx_add_sublast):
43773         (sift_ctx_init):
43774         Likewise.
43775
43776         * lib/regex_internal.h:
43777         (re_string_allocate, re_string_construct, re_string_reconstruct):
43778         (re_string_realloc_buffers, build_wcs_buffer, build_wcs_upper_buffer):
43779         (build_upper_buffer, re_string_translate_buffer, re_string_destruct):
43780         (re_string_elem_size_at, re_string_char_size_at, re_string_wchar_at):
43781         (re_string_context_at, re_string_peek_byte_case):
43782         (re_string_fetch_byte_case): Declare even if RE_NO_INTERNAL_PROTOTYPES
43783         is defined, since we now use prototypes always.
43784
43785         * lib/regex.h (_RE_ARGS): Remove.  No longer needed, since we assume
43786         C89 or better.  All uses removed.
43787
43788 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
43789
43790         * config/srclist.txt: Add glibc bugs 1220-1227.
43791
43792 2005-08-20  Jim Meyering  <jim@meyering.net>
43793
43794         * lib/regexec.c (regexec, re_search_stub) [!_LIBC]: Omit declaration
43795         of unused local, dfa.
43796
43797 2005-08-20  Bruno Haible  <bruno@clisp.org>
43798
43799         * m4/regex.m4 (gl_PREREQ_REGEX): Require AC_GNU_SOURCE.
43800
43801 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
43802
43803         * lib/regex_internal.c (re_string_realloc_buffers, re_node_set_insert):
43804         (re_node_set_insert_last, re_dfa_add_node):
43805         Rename local variables to avoid GCC shadowing warnings.
43806
43807 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
43808
43809         * lib/regex_internal.c (re_acquire_state, re_acquire_state_context)
43810         [defined lint]: Suppress bogus uninitialized-variable warnings.
43811
43812         * lib/regcomp.c (duplicate_node): Return new index, not an error code,
43813         and let the caller return REG_ESPACE if out of space.  This
43814         removes an uninitialied-variable warning with GCC 4.0.1, and also
43815         avoids taking the address of a local variable.  All callers
43816         changed.
43817
43818 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
43819
43820         * config/srclist.txt: Comment out $LIBCSRC/posix/regex_internal.c,
43821         $LIBCSRC/posix/regexec.c.
43822         Add glibc bug 1217 for regcomp.c.
43823
43824 2005-08-19  Jim Meyering  <jim@meyering.net>
43825
43826         * lib/regexec.c (proceed_next_node): Redo local variables to
43827         avoid GCC shadowing warnings.
43828
43829 2005-08-18  Bruno Haible  <bruno@clisp.org>
43830
43831         * lib/strstr.c (strstr): Fix return value in multibyte case.
43832         * lib/strcasestr.c (strcasestr): Likewise.
43833
43834 2005-08-17  Paul Eggert  <eggert@cs.ucla.edu>
43835
43836         * lib/regex.h: Remove useless space-before-tab.  From coreutils.
43837
43838 2005-08-17  Jim Meyering  <jim@meyering.net>
43839
43840         Make the %s format (seconds since the epoch) work for a negative
43841         number and when used with a zero-padded field width, e.g. %015s.
43842
43843         * lib/strftime.c (my_strftime): Move the `do_number_sign_and_padding'
43844         label so that it precedes the code to set `digits'.  Otherwise,
43845         %0Ns wouldn't work.  Before this change, `date -d @-22 +%05s' would
43846         print `00-22'.  Now, it prints `-0022', as it should.
43847
43848 2005-08-17  Bruno Haible  <bruno@clisp.org>
43849
43850         * modules/strstr (Files): Add m4/mbrtowc.m4.
43851         (Depends-on): Add mbuiter.
43852
43853 2005-08-17  Bruno Haible  <bruno@clisp.org>
43854
43855         * modules/strcasestr: New file.
43856         * MODULES.html.sh (String handling, based on ANSI C 89): Add
43857         strcasestr.
43858
43859 2005-08-17  Bruno Haible  <bruno@clisp.org>
43860
43861         * modules/strcase (Depends-on): Add mbuiter. Remove strnlen1, mbchar.
43862
43863 2005-08-17  Bruno Haible  <bruno@clisp.org>
43864
43865         * modules/mbuiter: New file.
43866         * MODULES.html.sh (Extended multibyte and wide character utilities):
43867         Add mbuiter.
43868
43869 2005-08-17  Bruno Haible  <bruno@clisp.org>
43870
43871         * m4/strstr.m4 (gl_FUNC_STRSTR): Use the replacement function always.
43872         (gl_PREREQ_STRSTR): Use gl_FUNC_MBRTOWC.
43873
43874 2005-08-17  Bruno Haible  <bruno@clisp.org>
43875
43876         * m4/strcasestr.m4: New file.
43877
43878 2005-08-17  Bruno Haible  <bruno@clisp.org>
43879
43880         * lib/strstr.h: Ignore HAVE_STRSTR, always declare the gnulib function.
43881         * lib/strstr.c: Completely rewritten, with multibyte locale support.
43882
43883 2005-08-17  Bruno Haible  <bruno@clisp.org>
43884
43885         * lib/strcasestr.h: New file.
43886         * lib/strcasestr.c: New file.
43887
43888 2005-08-17  Bruno Haible  <bruno@clisp.org>
43889
43890         * lib/strcasecmp.c: Use mbuiter.h.
43891
43892 2005-08-17  Bruno Haible  <bruno@clisp.org>
43893
43894         * lib/mbuiter.h: New file.
43895
43896 2005-08-16  Paul Eggert  <eggert@cs.ucla.edu>
43897
43898         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Do not override the results
43899         of gl_GETOPT_SUBSTITUTE.  That way, if both gl_GETOPT_SUBSTITUTE
43900         and gl_GETOPT are both invoked via different paths (as happens
43901         with GNU tar CVS because it uses both argp and getopt), the former
43902         wins.
43903
43904 2005-08-16  Bruno Haible  <bruno@clisp.org>
43905
43906         * modules/tls: New file.
43907         * MODULES.html.sh (Multithreading): Add tls.
43908
43909 2005-08-16  Bruno Haible  <bruno@clisp.org>
43910
43911         * modules/strnlen1: New file.
43912         * MODULES.html.sh (String handling): Add strnlen1.
43913
43914 2005-08-16  Bruno Haible  <bruno@clisp.org>
43915
43916         * modules/strcase (Files): Add m4/mbrtowc.m4.
43917         (Depends-on): Add strnlen1, mbchar.
43918
43919 2005-08-16  Bruno Haible  <bruno@clisp.org>
43920
43921         * modules/mbiter: New file.
43922         * MODULES.html.sh (Extended multibyte and wide character utilities):
43923         Add mbiter.
43924
43925 2005-08-16  Bruno Haible  <bruno@clisp.org>
43926
43927         * modules/mbfile: New file.
43928         * MODULES.html.sh (Extended multibyte and wide character utilities):
43929         Add mbfile.
43930
43931 2005-08-16  Bruno Haible  <bruno@clisp.org>
43932
43933         * modules/mbchar: New file.
43934         * MODULES.html.sh (Extended multibyte and wide character utilities):
43935         New section.
43936
43937 2005-08-16  Bruno Haible  <bruno@clisp.org>
43938
43939         * m4/tls.m4: New file, from GNU gettext.
43940
43941 2005-08-16  Bruno Haible  <bruno@clisp.org>
43942
43943         * m4/strcase.m4 (gl_FUNC_STRCASECMP): Use the replacement function
43944         always.
43945         (gl_PREREQ_STRCASECMP): Use gl_FUNC_MBRTOWC.
43946
43947 2005-08-16  Bruno Haible  <bruno@clisp.org>
43948
43949         * m4/mbiter.m4: New file.
43950
43951 2005-08-16  Bruno Haible  <bruno@clisp.org>
43952
43953         * m4/mbfile.m4: New file.
43954
43955 2005-08-16  Bruno Haible  <bruno@clisp.org>
43956
43957         * m4/mbchar.m4: New file.
43958
43959 2005-08-16  Bruno Haible  <bruno@clisp.org>
43960
43961         * lib/tls.h: New file, from GNU gettext.
43962         * lib/tls.c: New file, from GNU gettext.
43963
43964 2005-08-16  Bruno Haible  <bruno@clisp.org>
43965
43966         * lib/strnlen1.h: New file.
43967         * lib/strnlen1.c: New file.
43968
43969 2005-08-16  Bruno Haible  <bruno@clisp.org>
43970
43971         * lib/strcasecmp.c (struct mbiter_multi): Remove at_end field.
43972         (mbi_init): Update.
43973         (mbi_avail, mbi_advance): Let the iteration end before the terminating
43974         NUL byte, not after it.
43975
43976 2005-08-16  Bruno Haible  <bruno@clisp.org>
43977
43978         * lib/strcase.h (strcasecmp): Add note in comments.
43979         * lib/strncasecmp.c: Use code from strcasecmp.c.
43980         * lib/strcasecmp.c: Use mbchar module. Define private mbiter variant.
43981         (strcasecmp): Work correctly in multibyte locales.
43982
43983 2005-08-16  Bruno Haible  <bruno@clisp.org>
43984
43985         * lib/mbiter.h: New file.
43986
43987 2005-08-16  Bruno Haible  <bruno@clisp.org>
43988
43989         * lib/mbfile.h: New file.
43990
43991 2005-08-16  Bruno Haible  <bruno@clisp.org>
43992
43993         * lib/mbchar.h: New file.
43994         * lib/mbchar.c: New file.
43995
43996 2005-08-16  Bruno Haible  <bruno@clisp.org>
43997
43998         * lib/mbchar.h (mb_cmp, mb_casecmp): Order the invalid characters after
43999         the valid ones. Makes the comparison operations transitive:
44000         cmp (a, b) < 0 && cmp (b, c) < 0 ==> cmp (a, c) < 0.
44001         * lib/strcasecmp.c (strcasecmp): Use mb_casecmp.
44002
44003 2005-08-15  Simon Josefsson  <jas@extundo.com>
44004
44005         * modules/ssize_t (License): Change to 'unlimited'.
44006
44007         * gnulib-tool (sed_extract_prog): Recognize 'unlimited' license.
44008
44009 2005-08-15  Paul Eggert  <eggert@cs.ucla.edu>
44010
44011         * config/srclist.txt: Comment out $LIBCSRC/posix/regex.h.
44012         Add comments for each pending glibc patch.
44013
44014 2005-08-15  Bruno Haible  <bruno@clisp.org>
44015
44016         * lib/regex.h (__restrict_arr): Don't define to __restrict if
44017         __cplusplus is defined.
44018
44019 2005-08-14  Jim Meyering  <jim@meyering.net>
44020
44021         Sync from coreutils.
44022
44023         * lib/fts-cycle.c (setup_dir, enter_dir, leave_dir, free_dir):
44024         Use the hash-table-based cycle-detection code not just when
44025         FTS_TIGHT_CYCLE_CHECK if specified, but also with FTS_LOGICAL.
44026         Reported by James Youngman in
44027         <http://lists.gnu.org/archive/html/bug-gnulib/2005-08/msg00011.html>.
44028         * lib/fts_.h: Mention that with FTS_LOGICAL, we use
44029         FTS_TIGHT_CYCLE_CHECK.
44030         * lib/fts.c (fts_cross_check) [FTS_DEBUG]:
44031         s/active_dir_ht/fts_cycle.ht/. This lets us compile with -DFTS_DEBUG,
44032         once again.
44033         * lib/fts.c [! _LIBC]: Include "lstat.h" rather than rolling our own.
44034         * lib/fts.c (fd_safer): Remove decl.
44035         Include fcntl--.h rather than unistd-safer.h
44036         (fts_safe_changedir): Don't call fd_safer; no longer needed
44037         now that we include fcntl--.h.
44038
44039 2005-08-12  Simon Josefsson  <jas@extundo.com>
44040
44041         * modules/getndelim2: Use ssize_t module.
44042         * modules/getnline: Likewise.
44043         * modules/safe-read: Likewise.
44044         * modules/xreadlink: Likewise.
44045
44046         * modules/ssize_t: New file.
44047
44048 2005-08-12  Simon Josefsson  <jas@extundo.com>
44049
44050         * m4/readline.m4: Look for termcap, curses or ncurses if required.
44051
44052 2005-08-12  Simon Josefsson  <jas@extundo.com>
44053
44054         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
44055         ssize_t.
44056
44057 2005-08-12  Simon Josefsson  <jas@extundo.com>
44058
44059         * MODULES.html.sh (Extra functions based on ANSI C 89: Misc): Add
44060         readline, getdelim and check_version.
44061         (Support for systems lacking ISO C 99: Sizes of integer types):
44062         Add size_max.
44063
44064 2005-08-12  Bruno Haible  <bruno@clisp.org>
44065
44066         * m4/readline.m4 (gl_FUNC_READLINE): Look for ncurses first.
44067
44068 2005-08-11  Simon Josefsson  <jas@extundo.com>
44069
44070         * modules/readline: New file.
44071
44072         * modules/strnlen (Files): Add strnlen.h.
44073
44074 2005-08-11  Simon Josefsson  <jas@extundo.com>
44075
44076         * m4/readline.m4: New file.
44077
44078 2005-08-11  Simon Josefsson  <jas@extundo.com>
44079
44080         * lib/readline.h, readline.c: New file.
44081
44082 2005-08-11  Simon Josefsson  <jas@extundo.com>
44083
44084         * doc/gnulib.texi (Initial import, Finishing touches): Mention
44085         gl_AVOID.
44086
44087 2005-08-11  Bruno Haible  <bruno@clisp.org>
44088
44089         * lib/strnlen.h (strnlen): Change parameter name to match comment.
44090
44091 2005-08-10  Stepan Kasal  <kasal@ucw.cz>
44092
44093         * m4/onceonly_2_57.m4: Really require Autoconf 2.57.
44094
44095 2005-08-10  Simon Josefsson  <jas@extundo.com>
44096
44097         * tests/test-iconvme.c: New file.
44098
44099 2005-08-10  Simon Josefsson  <jas@extundo.com>
44100
44101         * m4/strnlen.m4: New file.
44102
44103         * m4/strndup.m4: Don't check for strnlen declaration, done in
44104         strnlen.m4.
44105
44106 2005-08-10  Simon Josefsson  <jas@extundo.com>
44107
44108         * lib/strndup.c: Use strnlen.h.
44109
44110         * lib/strnlen.h: New file.
44111
44112 2005-08-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
44113
44114         * README: Typos.
44115
44116 2005-08-02  Simon Josefsson  <jas@extundo.com>
44117
44118         * modules/readline: New file.
44119
44120 2005-08-02  Simon Josefsson  <jas@extundo.com>
44121
44122         * modules/getdelim: New file.
44123
44124         * modules/getline: Rewrite, don't use getndelim2.
44125
44126 2005-08-02  Simon Josefsson  <jas@extundo.com>
44127
44128         * m4/getline.m4: Separate out getdelim stuff into separate module.
44129
44130         * m4/getdelim.m4: New file.
44131
44132 2005-08-02  Simon Josefsson  <jas@extundo.com>
44133
44134         * lib/getline.h, getline.c: Rewrite.
44135
44136         * lib/getdelim.h, lib/getdelim.c: New files, ported from glibc.
44137
44138 2005-07-31  Bruno Haible  <bruno@clisp.org>
44139
44140         * lib/lock.h (gl_lock_initializer): New macro.
44141         (gl_lock_define_initialized): Use it.
44142         (gl_rwlock_initializer): New macro.
44143         (gl_rwlock_define_initialized): Use it.
44144         (gl_recursive_lock_initializer): New macro.
44145         (gl_recursive_lock_define_initialized): Use it.
44146
44147 2005-07-30  Karl Berry  <karl@gnu.org>
44148
44149         * doc/gnulib.texi (Initial import): mention -I$(top_builddir)/lib.
44150         Report from Ben Pfaff, regarding getopt.
44151
44152 2005-07-26  Paul Eggert  <eggert@cs.ucla.edu>
44153
44154         Add support to getopt for Emacs, which doesn't use LIBOBJS in the
44155         normal way.
44156         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE_HEADER): New macro.
44157         (gl_GETOPT_SUBSTITUTE): Use it.  Invoke gl_PREREQ_GETOPT.
44158         (gl_GETOPT_IFELSE, gl_GETOPT_CHECK_HEADERS): New macros.
44159         (gl_GETOPT): Use the new macros.  Most of the implementation
44160         is moved to the new macros.  This is for programs like Emacs
44161         that don't want all the functionality of gl_GETOPT.
44162
44163 2005-07-26  Bruno Haible  <bruno@clisp.org>
44164
44165         * m4/lock.m4: Update from GNU gettext.
44166
44167 2005-07-26  Bruno Haible  <bruno@clisp.org>
44168
44169         * lib/lock.h: Update from GNU gettext.
44170         * lib/lock.c: Update from GNU gettext.
44171
44172 2005-07-25  Paul Eggert  <eggert@cs.ucla.edu>
44173
44174         * m4/regex.m4 (gl_INCLUDED_REGEX): Use AC_RUN_IFELSE instead of the
44175         obsolescent AC_TRY_RUN.  Include the default includes files, for
44176         'exit'.
44177
44178 2005-07-24  Bruno Haible  <bruno@clisp.org>
44179
44180         * modules/visibility: New file.
44181         * MODULES.html.sh (Misc): Add visibility.
44182
44183 2005-07-24  Bruno Haible  <bruno@clisp.org>
44184
44185         * m4/visibility.m4: New file.
44186
44187 2005-07-24  Bruno Haible  <bruno@clisp.org>
44188
44189         * doc/visibility.texi: New file.
44190
44191 2005-07-22  Bruno Haible  <bruno@clisp.org>
44192
44193         * modules/alloca-opt (Makefile.am): Remove explicit dependency on
44194         $(ALLOCA_H), redundant through BUILT_SOURCES.
44195         * modules/argz (Makefile.am): Remove explicit dependency on $(ARGZ_H),
44196         redundant through BUILT_SOURCES.
44197         * modules/byteswap (Makefile.am): Remove explicit dependency on
44198         $(BYTESWAP_H), redundant through BUILT_SOURCES.
44199         * modules/fnmatch (Makefile.am): Remove explicit dependency on
44200         $(FNMATCH_H), redundant through BUILT_SOURCES.
44201         * modules/getopt (Makefile.am): Remove explicit dependency on
44202         $(GETOPT_H), redundant through BUILT_SOURCES.
44203         * modules/glob (Makefile.am): Remove explicit dependency on $(GLOB_H),
44204         redundant through BUILT_SOURCES.
44205         * modules/poll (Makefile.am): Remove explicit dependency on $(POLL_H),
44206         redundant through BUILT_SOURCES.
44207         * modules/stdbool (Makefile.am): Remove explicit dependency on
44208         $(STDBOOL_H), redundant through BUILT_SOURCES.
44209         * modules/stdint (Makefile.am): Remove explicit dependency on
44210         $(STDINT_H), redundant through BUILT_SOURCES.
44211         * modules/sysexits (Makefile.am): Add $(SYSEXITS_H) to BUILT_SOURCES.
44212         Remove explicit dependency on $(SYSEXITS_H).
44213         Reported by Alexandre Duret-Lutz <adl@src.lip6.fr>.
44214
44215 2005-07-18  Simon Josefsson  <jas@extundo.com>
44216
44217         * lib/check-version.c (check_version): Accept identical versions too.
44218
44219 2005-07-18  Bruno Haible  <bruno@clisp.org>
44220
44221         * modules/lock: New file.
44222         * MODULES.html.sh (Multithreading): New section.
44223
44224 2005-07-18  Bruno Haible  <bruno@clisp.org>
44225
44226         * m4/lock.m4: New file, from GNU gettext.
44227
44228 2005-07-18  Bruno Haible  <bruno@clisp.org>
44229
44230         * lib/lock.h: New file, from GNU gettext.
44231         * lib/lock.c: New file, from GNU gettext.
44232
44233 2005-07-18  Bruno Haible  <bruno@clisp.org>
44234
44235         * lib/lock.h (gl_once_t): New type.
44236         (gl_once_define, gl_once): New macros.
44237         * lib/lock.c (fresh_once): New variable.
44238         (glthread_once, glthread_once_call, glthread_once_singlethreaded): New
44239         functions.
44240
44241 2005-07-16  Simon Josefsson  <jas@extundo.com>
44242
44243         * doc/gnulib.texi (Library version handling): Add ELF symbol collision
44244         workaround, suggested by Bruno.
44245
44246 2005-07-15  Paul Eggert  <eggert@cs.ucla.edu>
44247
44248         * modules/xalloc (Depends-on): Add xalloc-die.
44249         * modules/xvasprintf (Depends-on): Add xalloc-die.
44250
44251 2005-07-15  Paul Eggert  <eggert@cs.ucla.edu>
44252
44253         * lib/quotearg.c: Add translator comment suggested by Bruno Haible,
44254         with a minor change.
44255
44256 2005-07-15  Bruno Haible  <bruno@clisp.org>
44257
44258         * m4/poll.m4 (gl_FUNC_POLL): Check against MacOS X 10.4 poll() bug.
44259         When using lib/poll.c, define poll as rpl_poll.
44260
44261 2005-07-14  Paul Eggert  <eggert@cs.ucla.edu>
44262
44263         * modules/argp (Depends-on): Remove unlocked-io.
44264
44265 2005-07-14  Derek Price  <derek@ximbiot.com>
44266
44267         * m4/glob.m4 (gl_GLOB): Cache glob interface check result.  Add check
44268         for glob symlink bug.
44269
44270 2005-07-14  Bruno Haible  <bruno@clisp.org>
44271
44272         * m4/argp.m4 (gl_ARGP): Remove invocation of gl_FUNC_GLIBC_UNLOCKED_IO.
44273         Instead, test for *_unlocked function declarations directly.
44274
44275 2005-07-11  Simon Josefsson  <jas@extundo.com>
44276
44277         * modules/size_max: New file.
44278
44279         * modules/xsize: Depend on size_max module for size_max.m4.
44280
44281 2005-07-11  Simon Josefsson  <jas@extundo.com>
44282
44283         * lib/size_max.h: New file.
44284
44285 2005-07-11  Paul Eggert  <eggert@cs.ucla.edu>
44286
44287         * lib/version-etc-fsf.c (version_etc_copyright): Parameterize the
44288         copyright symbol and the year.
44289         * lib/version-etc.c (COPYRIGHT_YEAR): New constant.
44290         (version_etc_va): Use parameterized copyright notice.
44291         Reword to conform to the current GNU coding standards.
44292
44293 2005-07-11  Karl Berry  <karl@gnu.org>
44294
44295         * doc/gnulib.texi (Quoting): new node.
44296         (Initial import): more info, from Patrice.
44297
44298 2005-07-11  Bruno Haible  <bruno@clisp.org>
44299
44300         * gnulib-tool (func_usage): Document option --avoid.
44301         (Command line options): Handle --avoid.
44302         (func_acceptable): New function.
44303         (func_modules_transitive_closure): Use it.
44304
44305 2005-07-11  Bruno Haible  <bruno@clisp.org>
44306
44307         * MODULES.html.sh: Use shortcut URLs to the www.opengroup.org site.
44308         Reported by Jim Meyering.
44309
44310 2005-07-10  Bruno Haible  <bruno@clisp.org>
44311
44312         * m4/size_max.m4 (gl_SIZE_MAX): Cast ~(size_t)0 back to size_t.
44313         Needed when size_t is smaller than 'unsigned int'.
44314         Reported by Paul Eggert.
44315
44316 2005-07-09  Sergey Poznyakoff  <gray@gnu.org.ua>
44317
44318         * modules/argp (Depends-on): Add unlocked-io
44319
44320 2005-07-09  Sergey Poznyakoff  <gray@gnu.org.ua>
44321
44322         * lib/argp-namefrob.h: Include unlocked-io.h. Removed unnecessary
44323         block of defines.
44324
44325 2005-07-08  Paul Eggert  <eggert@cs.ucla.edu>
44326
44327         * config/srclist.txt: Comment out regcomp.c, since we have a porting
44328         fix now.
44329
44330 2005-07-08  Eric Blake  <ebb9@byu.net>  (tiny change)
44331         and Paul Eggert  <eggert@cs.ucla.edu>
44332
44333         * lib/regcomp.c (init_dfa, build_range_exp): Store __btowc value
44334         in wint_t, not wchar_t.  Remove now-unnecessary cast.
44335
44336 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
44337
44338         * modules/regex (Files): Add lib/regex_internal.c,
44339         lib/regex_internal.h, lib/regexec.c, lib/regcomp.c, m4/codeset.m4.
44340         (Depends-on): Add extensions.
44341         (Makefile.am): Remove lib_SOURCES; now done by m4 code.
44342
44343 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
44344
44345         * m4/backupfile.m4 (gl_BACKUPFILE): Use AC_CHECK_FUNCS_ONCE on
44346         pathconf.
44347         * m4/same.m4 (gl_SAME): Likewise.
44348         Require AC_SYS_LONG_FILE_NAMES; bug reported by Gerrit P. Haase.
44349
44350         * m4/regex.m4: Adjust to new libc regex implementation.
44351         (gl_INCLUDED_REGEX): Add AC_LIBSOURCES for
44352         all the .c and .h parts of (the new) regex.
44353         Quote the m4 stuff better.
44354         Check for RE_ICASE bug of old gnulib.
44355         Check for REG_STARTEND of recent libc.
44356         Rename local variables from jm_* to gl_*.
44357         Quote operand of "test -f".
44358         Say "recent enough" version of libc, not "version 2".
44359         (gl_PREREQ_REGEX): Remove AC_FUNC_ALLOCA, since alloca is a
44360         prerequisite module.  Remove AC_HEADER_STDC; no longer needed.
44361         Check for locale.h, isblank, mbrtowc, wcrtomb, wcscoll.
44362         Remove check for btowc, isascii.
44363         Require AM_LANGINFO_CODESET.
44364
44365 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
44366
44367         * lib/regex.c, regex.h: Sync from libc.
44368         * lib/regcomp.c, lib/regexec_internal.c, lib/regex_internal.h:
44369         * lib/regexec.c:
44370         New files, synced from libc, except that regex_internal.h
44371         currently has a small porting fix.
44372
44373 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
44374
44375         * config/srclist.txt: Add regcomp.c, regex.c, regex.h,
44376         regex_internal.c, regexec.c.
44377         Add regex_internal.h too, but as a comment, since the libc version
44378         is currently broken in gnulib mode.
44379
44380 2005-07-06  Paul Eggert  <eggert@cs.ucla.edu>
44381
44382         Support programs like Emacs that use gnulib but not gettext.
44383         * MODULES.html.sh (Internationalization functions): Add gettext-h.
44384         * modules/gettext-h: New file.
44385         * modules/gettext (Files): Remove lib/gettext.h.
44386         (Depends-on): Add gettext-h.
44387         (Makefile.am): Remove lib_SOURCES.
44388         * modules/argmatch, modules/c-stack, modules/closeout:
44389         * modules/copy-file, modules/csharpcomp, modules/csharpexec:
44390         * modules/execute, modules/file-type, modules/getaddrinfo:
44391         * modules/getopt, modules/human, modules/javacomp:
44392         * modules/javaexec, modules/mkdir-p, modules/obstack:
44393         * modules/openat, modules/pagealign_alloc, modules/pipe:
44394         * modules/quotearg, modules/regex, modules/rpmatch:
44395         * modules/unicodeio, modules/userspec, modules/version-etc:
44396         * modules/wait-process, modules/xalloc-die, modules/xmemcoll:
44397         * modules/xsetenv:
44398         Depend on gettext-h, not gettext.
44399
44400 2005-07-05  Paul Eggert  <eggert@cs.ucla.edu>
44401
44402         * gnulib-tool (func_import): Add support for 'public domain' license.
44403         * modules/alloca, modules/atexit, modules/memmove:
44404         Now public domain, not GPL.
44405         * modules/dup2, modules/getpagesize, modules/malloc, modules/memset:
44406         * modules/realloc, modules/strerror, modules/strtod:
44407         Now LGPL, not GPL.
44408
44409 2005-07-05  Bruno Haible  <bruno@clisp.org>
44410
44411         * m4/mbrtowc.m4 (gl_FUNC_MBRTOWC): Upgrade to version from current
44412         autoconf CVS. Needed for mingw.
44413
44414 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
44415
44416         Remove the dependency of the strftime module on the tzset module.
44417         * modules/strftime (Depends-on): Remove dependency on tzset.
44418
44419 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
44420
44421         Remove the dependency of the strftime module on the tzset module.
44422         * m4/strftime.m4 (gl_FUNC_STRFTIME): Don't require
44423         gl_FUNC_TZSET_CLOBBER.
44424
44425 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
44426
44427         Remove the dependency of the strftime module on the tzset module.
44428         * lib/strftime.c (my_strftime)
44429         [! defined _LIBC && ! HAVE_RUN_TZSET_TEST]:
44430         Copy the input structure, to work around some of the bug with
44431         Solaris 2.5.1 and Solaris 2.6.  If you still care about these old
44432         Solaris releases, you should also use the tzset module, but we won't
44433         require it as a dependency any more since we don't want LGPLed code
44434         to depend on GPLed code.
44435
44436 2005-07-02  Jim Meyering  <jim@meyering.net>
44437
44438         * m4/chown.m4, cloexec.m4, dup2.m4, fsusage.m4:
44439         * m4/getcwd-path-max.m4, getcwd.m4, mkstemp.m4, mountlist.m4:
44440         * m4/pagealign_alloc.m4, save-cwd.m4, unistd-safer.m4:
44441         Don't check for fcntl.h, and don't test for HAVE_FCNTL_H.
44442
44443 2005-07-02  Jim Meyering  <jim@meyering.net>
44444
44445         * lib/backupfile.c (backup_args): Change a `0' to NULL.
44446
44447 2005-07-01  Paul Eggert  <eggert@cs.ucla.edu>
44448
44449         * lib/xnanosleep.c: Include timespec.h, since OpenBSD 3.4 <time.h>
44450         declares only 'struct timespec;' (!).
44451
44452 2005-07-01  Jim Meyering  <jim@meyering.net>
44453
44454         * lib/chown.c, cloexec.c, dup-safer.c, dup2.c, fsusage.c, getcwd.c:
44455         * lib/getloadavg.c, mountlist.c, openat.h, pagealign_alloc.c:
44456         * lib/save-cwd.c, tempname.c:
44457         Assume HAVE_FCNTL_H (i.e., include <fcntl.h> unconditionally,
44458         and don't include <sys/file.h>).
44459
44460 2005-06-29  Jim Meyering  <jim@meyering.net>
44461
44462         * lib/mkdir-p.c (make_dir_parents): Don't apply sizeof to a hard-coded
44463         type name.  Use the variable name instead.
44464         * lib/idcache.c (getuser, getuidbyname, getgroup, getgidbyname):
44465         Likewise.
44466
44467 2005-06-28  Simon Josefsson  <jas@extundo.com>
44468
44469         * modules/check-version (Files): Add check-version.m4.
44470
44471 2005-06-28  Simon Josefsson  <jas@extundo.com>
44472
44473         * m4/check-version.m4: New file, suggested by Jim Meyering
44474         <jim@meyering.net>.
44475
44476 2005-06-28  Simon Josefsson  <jas@extundo.com>
44477
44478         * lib/check-version.h, lib/check-version.c: New files.
44479
44480 2005-06-28  Simon Josefsson  <jas@extundo.com>
44481
44482         * lib/base64.c (base64_encode): Indent.  Rename 'b64' to avoid
44483         collision with global variable.  Better indentation.  Don't
44484         increment buffer pointer beyond buffer end.  Based on comments
44485         from Paul Eggert <eggert@cs.ucla.edu>.
44486
44487         * lib/base64.h: Indent.
44488
44489 2005-06-28  Simon Josefsson  <jas@extundo.com>
44490
44491         * doc/gnulib.texi (Library version handling): New section.
44492
44493 2005-06-28  Jim Meyering  <jim@meyering.net>
44494
44495         * check-module (find_included_lib_files): Hard-code another
44496         pair of exceptions: fts.c includes fts-cycle.c and unistd-safer.h
44497         but modules/fts-lgpl (correctly) does not list those files.
44498
44499         * modules/canonicalize (Files): Add lib/pathmax.h.
44500
44501 2005-06-25  Simon Josefsson  <jas@extundo.com>
44502
44503         * modules/check-version: New file.
44504
44505 2005-06-24  Paul Eggert  <eggert@cs.ucla.edu>
44506
44507         * lib/canon-host.c (canon-host): Append trailing "," to 0 in
44508         initializer of struct addrinfo, as an indication that we don't
44509         care how many members the structure has.
44510
44511 2005-06-24  Derek Price  <derek@ximbiot.com>
44512         and Bruno Haible  <bruno@clisp.org>
44513
44514         Remove stat module & update lstat.
44515         * m4/lstat.m4 (gl_FUNC_LSTAT): Drop AC_FUNC_LSTAT in favor of
44516         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
44517         * m4/stat.m4: Remove this file.
44518
44519 2005-06-24  Derek Price  <derek@ximbiot.com>
44520         and Bruno Haible  <bruno@clisp.org>
44521
44522         Remove stat module & update lstat.
44523         * lib/stat.c: Remove this file...
44524         (slash_aware_lstat): ...moving this content and its support...
44525         * lib/lstat.c (rpl_lstat): ...into here.
44526         * lib/lstat.h: New file.
44527
44528 2005-06-24  Derek Price  <derek@ximbiot.com>
44529         and Bruno Haible  <bruno@clisp.org>
44530
44531         Remove stat module & update lstat.
44532         * config/srclist.txt (libc sources): Remove stat.
44533
44534 2005-06-24  Derek Price  <derek@ximbiot.com>
44535         and Bruno Haible  <bruno@clisp.org>
44536
44537         Remove stat module & update lstat.
44538         * MODULES.html.sh (stat): Remove.
44539         * MODULES.html: Regenerated.
44540         * modules/lstat (Description): Correct function name.
44541         (Files): Add "lstat.h".
44542         (Depends-on): Remove stat, add xalloc, stat-macros.
44543         * modules/stat: Remove this file.
44544         (Include): Add "lstat.h", remove <sys/stat.h>.
44545
44546 2005-06-23  Paul Eggert  <eggert@cs.ucla.edu>
44547
44548         * lib/mktime.c: Include <string.h> even if !DEBUG.  (From glibc.)
44549         (ranged_convert): Don't save conversion in a temporary struct.
44550         This causes a warning with GCC 4.0.0, and anyway in the typical
44551         case it's not worth the extra 100 bytes or so of code.
44552         (ranged_convert, __mktime_internal): When calling a function via a
44553         pointer P, use P () rather than (*P) (), as we now assume C89 or
44554         better.
44555
44556 2005-06-22  Paul Eggert  <eggert@cs.ucla.edu>
44557
44558         * lib/readutmp.c (desirable_utmp_entry): Fix bug where "who -b" and
44559         "who -r" failed to give output.  Problem reported by Tim Waugh.
44560
44561         * lib/xmalloc.c (HAVE_GNU_CALLOC): New constant.
44562         (xcalloc): Use it to avoid needless tests.
44563         Problem reported by Jim Meyering.
44564
44565 2005-06-20  Derek Price  <derek@ximbiot.com>
44566
44567         * m4/bison.m4: Note that precious decls of YACC & YFLAGS will be
44568         unnecessary for Autoconfs > 2.59c.
44569
44570 2005-06-16  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
44571
44572         * lib/argp.h (__option_is_short): Check upper limit of
44573         __key. Isprint() requires its argument to have the value
44574         of an unsigned char or EOF.
44575
44576 2005-06-16  Jim Meyering  <jim@meyering.net>
44577
44578         * lib/calloc.c (rpl_calloc): Allocate a 1-byte buffer (not 1xS or Nx1)
44579         when either N or S is zero.
44580
44581 2005-06-16  Derek Price  <derek@ximbiot.com>
44582
44583         * m4/bison.m4: Declare YACC & YFLAGS precious.
44584
44585 2005-06-10  Paul Eggert  <eggert@cs.ucla.edu>
44586
44587         * lib/fnmatch.c (fnmatch): If there is an encoding error in a
44588         multibyte string or pattern, fall back on unibyte matching.
44589         Problem reported by James Youngman.
44590
44591 2005-06-08  Bruno Haible  <bruno@clisp.org>
44592
44593         * modules/csharpcomp: New file.
44594         * MODULES.html.sh (C#): Add csharpcomp.
44595
44596 2005-06-08  Bruno Haible  <bruno@clisp.org>
44597
44598         * m4/csharpcomp.m4: New file, from GNU gettext.
44599
44600 2005-06-08  Bruno Haible  <bruno@clisp.org>
44601
44602         * lib/csharpcomp.h: New file, from GNU gettext.
44603         * lib/csharpcomp.c: New file, from GNU gettext.
44604         * lib/csharpcomp.sh.in: New file, from GNU gettext.
44605
44606 2005-06-08  Bruno Haible  <bruno@clisp.org>
44607
44608         * lib/binary-io.h (fileno): Undefine before defining it. Avoids a gcc
44609         warning on mingw.
44610
44611 2005-06-07  Derek Price  <derek@ximbiot.com>
44612
44613         Sync from CVS.
44614         * lib/glob_.h: Indent nested #ifdef.
44615
44616 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
44617
44618         Sync from coreutils.
44619         Use "file name" when talking about file names, instead of "filename"
44620         or "path", as per the GNU coding standards.
44621         * lib/mkdir-p.c: Renamed from makepath.c.
44622         (make_dir_parents): Renamed from make_path.  All callers changed.
44623         * lib/mkdir-p.h: Likewise.  All includers changed.
44624         * lib/filenamecat.c: Renamed from path-concat.c.
44625         (file_name_concat): Renamed from path_concat.  All callers changed.
44626         [TEST_FILE_NAME_CONCAT]: Renamed from TEST_PATH_CONCAT.
44627         * lib/filenamecat.h: Likewise.  All includers changed.
44628         * lib/acl.c: Don't use "path" or "filename" to mean "file name"
44629         in comments or local variable names.
44630         * lib/basename.c: Likewise.
44631         * lib/canonicalize.c, canonicalize.h: Likewise.
44632         * lib/dirname.c, dirname.h: Likewise.
44633         * lib/euidaccess.c: Likewise.
44634         * lib/exclude.c: Likewise
44635         * lib/fnmatch_.h, fnmatch_loop.c: Likewise.
44636         * lib/fsusage.c, fsuage.h: Likewise.
44637         * lib/fts.c, fts_.h: Likewise.
44638         * lib/getcwd.c: Likewise.
44639         * lib/getloadavg.c: Likewise.
44640         * lib/mkstemp.c: Likewise.
44641         * lib/mountlist.c, mountlist.h: Likewise.
44642         * lib/openat.c, openat.h: Likewise.
44643         * lib/readlink-stub.c: Likewise.
44644         * lib/readutmp.c, readutmp.h: Likewise.
44645         * lib/rename.c: Likewise.
44646         * lib/rmdir.c: Likewise.
44647         * lib/same.c: Likewise.
44648         * lib/savedir.c: Likewise.
44649         * lib/stripslash.c: Likewise.
44650         * lib/tempname.c: Likewise.
44651         * lib/xreadlink.c: Likewise.
44652         * lib/exclude.c (excluded_file_name): Renamed from excluded_filename.
44653         All uses changed.
44654         * lib/exclude.h: Likewise.
44655
44656         * lib/euidaccess.c (getuid, getgid, getuid, getegid)
44657         [!defined _POSIX_VERSION]: Remove decls; not needed these days.
44658         * lib/idcache.c (getpwuid, getpwnam, getgrgid, getgrnam)
44659         [!defined _POSIX_VERSION]: Remove decls; not needed these days.
44660         * lib/pathmax.h: Include <limits.h> unconditionally, since other
44661         files have been getting away with it for years (MORE/BSD 4.3
44662         is extinct now).
44663         * lib/userspec.c (getpwnam, getgrnam, getgrgid)
44664         [!defined _POSIX_VERSION]: Remove decls; not needed these days.
44665
44666         * lib/pathmax.h (_POSIX_PATH_MAX) [!defined _POSIX_PATH_MAX]:
44667         Define to 256, not 255, as per modern POSIX.
44668
44669 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
44670
44671         Sync from coreutils.
44672         Use "file name" when talking about file names, instead of "filename"
44673         or "path", as per the GNU coding standards.
44674         * MODULES.html.sh: mkdir-p renamed from makepath.
44675         filenamecat renamed from path-concat.
44676         * modules/filenamecat: Renamed from modules/path-concat.
44677         (Files): filenamecat.h and filenamecat.c renamed from
44678         path-concat.h and path-concat.c.
44679         (configure.ac): gl_FILE_NAME_CONCAT, not gl_PATH_CONCAT.
44680         (Include): filenamecat.h, not path-concat.h.
44681         * modules/mkdir-p: Renamed from modules/makepath.
44682         (Files): mkdir-p.h and mkdir-p.c renamed from makepath.h and
44683         makepath.c.
44684         (configure.ac): gl_MKDIR_PARENTS, not gl_MAKEPATH.
44685         (Include): mkdir-p.h, not makepath.h.
44686
44687 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
44688
44689         Sync from coreutils.
44690         * m4/mkdir-p.m4: Renamed from makepath.m4.
44691         (gl_MKDIR_PARENTS): Renamed from gl_MAKEPATH.  All uses changed.
44692         Rename files from makepath.c to mkdir-p.c, and from
44693         makepath.h to mkdir-p.h.
44694         * m4/filenamecat.m4: Renamed from path-concat.m4.
44695         (gl_FILE_NAME_CONCAT): Renamed from gl_PATH_CONCAT.  All uses changed.
44696         Rename files from path-concat.c to filenamecat.c,
44697         and from path-concat.h to filenamecat.h.
44698         * m4/getcwd-path-max.m4: Don't use "path" or "filename" to mean
44699         "file name" in local variables or comments.
44700         * m4/rename.m4: Likewise.
44701
44702 2005-06-01  Bruno Haible  <bruno@clisp.org>
44703
44704         * modules/csharpexec: New file.
44705         * MODULES.html.sh (C#): New section.
44706
44707 2005-06-01  Bruno Haible  <bruno@clisp.org>
44708
44709         * m4/csharp.m4: New file, from GNU gettext.
44710         * m4/csharpexec.m4: New file, from GNU gettext.
44711
44712 2005-06-01  Bruno Haible  <bruno@clisp.org>
44713
44714         * lib/csharpexec.h: New file, from GNU gettext.
44715         * lib/csharpexec.c: New file, from GNU gettext.
44716         * lib/csharpexec.sh.in: New file, from GNU gettext.
44717
44718 2005-05-31  Derek Price  <derek@ximbiot.com>
44719             Paul Eggert  <eggert@cs.ucla.edu>
44720
44721         Sync from cvs.
44722         * m4/glob.m4: s/MISSING_SYS_CDEFS_H/_SYS_CDEFS_H/ and comment.
44723
44724 2005-05-31  Derek Price  <derek@ximbiot.com>
44725             Paul Eggert  <eggert@cs.ucla.edu>
44726
44727         Sync from cvs.
44728         * lib/glob_.h: s/MISSING_SYS_CDEFS_H/_SYS_CDEFS_H/ and comment.
44729
44730 2005-05-29  Derek Price  <derek@ximbiot.com>
44731
44732         * config/srclist.txt (glob_.h, glob.c): Add these files.
44733
44734 2005-05-29  Derek Price  <derek@ximbiot.com>
44735
44736         * MODULES.html.sh: Add glob to Enhanced POSIX.2001 section.
44737         * modules/glob: New file.
44738         * modules/getlogin_r: Add link to POSIX spec in description.
44739
44740 2005-05-29  Derek Price  <derek@ximbiot.com>
44741             Paul Eggert  <eggert@cs.ucla.edu>
44742
44743         * m4/glob.m4: New file.
44744
44745 2005-05-29  Derek Price  <derek@ximbiot.com>
44746             Paul Eggert  <eggert@cs.ucla.edu>
44747
44748         * lib/glob_.h, lib/glob.c: New files.
44749
44750 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
44751
44752         * modules/fts (Files): Remove m4/inttypes-pri.m4.
44753         * modules/fts-lgpl (Depends-on): Remove gettext.
44754
44755 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
44756
44757         * m4/fts.m4 (gl_FUNC_FTS_CORE): Don't check for inttypes.h or stdint.h,
44758         and don't require gt_INTTYPES_PRI.
44759
44760 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
44761
44762         * lib/getlogin_r.c (getlogin_r): Don't set errno to 0 on return.
44763
44764         * lib/fts.c: Don't worry about debugging on pre-C99-compatible hosts;
44765         the configuration hassle isn't worth it.
44766         Include inttypes.h and stdint.h unconditionally if FTS_DEBUG.
44767         (LONGEST_MODIFIER, PRIuMAX): Remove.
44768
44769 2005-05-27  Bruno Haible  <bruno@clisp.org>
44770
44771         * lib/getlogin_r.h: Remove second include of <stddef.h>.
44772
44773 2005-05-26  Paul Eggert  <eggert@cs.ucla.edu>
44774
44775         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Define
44776         _POSIX_PTHREAD_SEMANTICS for Solaris.
44777
44778 2005-05-25  Derek Price  <derek@ximbiot.com>
44779
44780         * MODULES.html.sh: Add getlogin_r to POSIX.2001 support section.
44781
44782 2005-05-25  Derek Price  <derek@ximbiot.com>
44783             Paul Eggert  <eggert@cs.ucla.edu>
44784
44785         * modules/getlogin_r, m4/getlogin_r.m4: New files.
44786         * lib/getlogin_r.c, getlogin_r.h: New files.
44787
44788 2005-05-25  Bruno Haible  <bruno@clisp.org>
44789             Derek Price  <derek@ximbiot.com>
44790
44791         * lib/getlogin_r.h: Simplify API documentation.
44792
44793 2005-05-23  Derek Price  <derek@ximbiot.com>
44794
44795         * modules/minmax (Files): Add m4/minmax.m4.
44796         (configure.ac): Add gl_MINMAX.
44797
44798 2005-05-22  Paul Eggert  <eggert@cs.ucla.edu>
44799
44800         * lib/fts.c (fd_safer) [_LGPL_PACKAGE]: New static function,
44801         so that unistd-safer.h (GPL'ed code) need not be included.
44802
44803 2005-05-22  Bruno Haible  <bruno@clisp.org>
44804
44805         * m4/minmax.m4: New file.
44806         Based on a patch by Derek Price <derek@ximbiot.com>.
44807
44808 2005-05-22  Bruno Haible  <bruno@clisp.org>
44809
44810         * lib/stdint_.h (_STDINT_H_HAVE_INT64): New macro. Use it in #ifdefs.
44811         (INT64_MIN): Fix definition.
44812         Suggested by Paul Eggert <eggert@cs.ucla.edu>.
44813
44814         * lib/stdint_.h (_STDINT_H_NEED_SIGNED_INT_TYPES): Renamed from
44815         NEED_SIGNED_INT_TYPES.
44816
44817         * lib/stdint_.h (_STDINT_H_HAVE_SYSTEM_INTTYPES): Renamed from
44818         HAVE_SYSTEM_INTTYPES.
44819
44820 2005-05-22  Bruno Haible  <bruno@clisp.org>
44821
44822         * lib/minmax.h: Include <limits.h> only when it defines MIN, MAX.
44823         Also include <sys/param.h> if it defines MIN, MAX.
44824         Based on a patch by Derek Price <derek@ximbiot.com>.
44825
44826 2005-05-21  Jim Meyering  <jim@meyering.net>
44827
44828         * modules/fts (Files): Add m4/inttypes-pri.m4.
44829         (Depends-on): Add lstat and remove gettext.  Alphabetize.
44830
44831 2005-05-20  Paul Eggert  <eggert@cs.ucla.edu>
44832
44833         New fts module.
44834         * lib/fts.c: Don't include "cycle-check.h" or "hash.h".
44835         (setup_dir, free_dir): New functions.
44836         (enter_dir, leave_dir): Define trivial
44837         alternatives of _LGPL_PACKAGE.  Move to fts-cycle.c if !_LGPL_PACKAGE.
44838         (HT_INITIAL_SIZE, ENTER_DIR): Remove.  All uses removed.
44839         (LEAVE_DIR): Fix typo: pass Fts and Ent to leave_dir.
44840         (struct Active_dir, AD_compare, AD_hash, enter_dir, leave_dir):
44841         Move to fts-cycle.c.
44842         (fts_open): Use setup_dir.
44843         (fts_close): Use free_dir.
44844         (fts_read): Have just one copy of the ENTER_DIR code rather than three.
44845         This adds a label and some gotos, but the alternatives were messier.
44846         Check for memory allocation failure when entering a dir.
44847         (fts_stat) [_LGPL_PACKAGE]: Bring back glibc cycle detection code.
44848         * lib/fts_.h (_LGPL_PACKAGE) [defined _LIBC]: New macro.
44849         (FTS): New member fts_cycle, that is a union that contains the
44850         old active_dir_ht and cycle_state.  All uses changed to mention
44851         fts_cycle.ht and fts_cycle.state.
44852         * lib/fts-cycle.c: New file, containing GPL'ed code migrated out of
44853         fts.c, with the following changes:
44854         (setup_dir, free_dir): New functions.
44855         (enter_dir): Now returns bool.  Return true if successful, false
44856         if memory exhausted.  All callers changed.
44857         Do not bother partly cleaning up on
44858         memory allocation failure; that is free_dir's job.
44859         However, free ad if hash_insert fails, to avoid memory leak.
44860         (enter_dir, leave_dir): Accommodate change to FTS by inspecting
44861         fts->fts_options to see which union member to use.
44862
44863 2005-05-20  Paul Eggert  <eggert@cs.ucla.edu>
44864
44865         * m4/fts.m4 (gl_FUNC_FTS_CORE): Renamed from gl_FUNC_FTS.
44866         (gl_FUNC_FTS, gl_FUNC_FTS_LGPL): New macros.
44867
44868 2005-05-20  Paul Eggert  <eggert@cs.ucla.edu>
44869
44870         * MODULES.html.sh (File system functions): Add fts, fts-lgpl.
44871
44872 2005-05-20  Jim Meyering  <jim@meyering.net>
44873
44874         * lib/unlinkdir.h (cannot_unlink_dir) [UNLINK_CANNOT_UNLINK_DIR]:
44875         Now a macro, to pacify GCC.
44876
44877 2005-05-20  Eric Blake  <ebb9@byu.net>  (tiny change)
44878
44879         * m4/chown.m4 (gl_FUNC_CHOWN): Correct sense of test for honoring IDs
44880         of -1.
44881
44882 2005-05-20  Eric Blake  <ebb9@byu.net>  (tiny change)
44883
44884         * lib/chown.c (rpl_chown): Return -1 on failure.
44885
44886 2005-05-18  Paul Eggert  <eggert@cs.ucla.edu>
44887
44888         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME]):
44889         Don't check for stddef.h.
44890         * m4/fts.m4 (gl_FUNC_FTS): Don't require AC_HEADER_STDC, as we
44891         don't use its results.
44892         Don't check for fcntl.h, stddef.h, stdlib.h, string.h, unistd.h,
44893         since we include them unconditionally.  Don't require
44894         AM_STDBOOL_H, since stdbool is a prerequisite.
44895         Don't require AC_C_CONST, AC_TYPE_SIZE_T or check for ptrdiff_t
44896         since we assume C89 or better.
44897         Don't require AC_FUNC_CLOSEDIR_VOID, AC_FUNC_LSTAT, or AC_FUNC_STAT,
44898         as we don't use their results.
44899         Don't check for fchdir, memmove, memset, strrchr, as we use
44900         them unconditionally.
44901         * m4/gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER): Don't define
44902         GETTIMEOFDAY_CLOBBERS_LOCALTIME_BUFFER, since nobody uses it.
44903
44904 2005-05-18  Paul Eggert  <eggert@cs.ucla.edu>
44905
44906         * lib/canonicalize.c: Include canonicalize.h first, to test interface.
44907         Include <stddef.h> unconditionally, since we assume C89 now.
44908         All uses of PTR_INT_TYPE replaced by ptrdiff_t.
44909         * lib/fts.c: Include fts_.h first, to check interface.
44910         Do not include intprops.h; no longer needed.
44911         Include cycle-check.h and hash.h, since fts_.h no longer does.
44912         Remove unnecessary casts of closedir to void.
44913         (fts_build): Use a simpler method (not involving TYPE_SIGNED) to
44914         decide whether to decrement nlinks.
44915         * lib/fts_.h: Do not include hash.h or cycle-check.h; no longer needed.
44916         (FTS): Use struct hash_table * instead of Hash_table, so that
44917         we no longer need to include hash.h here.
44918
44919 2005-05-18  Jim Meyering  <jim@meyering.net>
44920
44921         * modules/dirfd (License): Change to LGPL.  Most of the code
44922         is already in the public domain.
44923
44924 2005-05-18  Jim Meyering  <jim@meyering.net>
44925
44926         * m4/fts.m4 (AC_LIBSOURCES): Add intprops.h to the list.
44927         Reported by Yoann Vandoorselaere.
44928
44929 2005-05-17  Jim Meyering  <jim@meyering.net>
44930
44931         * m4/fts.m4: New file, from coreutils.
44932
44933 2005-05-17  Jim Meyering  <jim@meyering.net>
44934
44935         * lib/fts.c, lib/fts_.h: New files, from coreutils.
44936
44937 2005-05-14  Paul Eggert  <eggert@cs.ucla.edu>
44938
44939         Sync from coreutils.
44940         * m4/unlinkdir.m4: New file.
44941
44942 2005-05-14  Paul Eggert  <eggert@cs.ucla.edu>
44943
44944         Sync from coreutils.
44945         * lib/unlinkdir.c, lib/unlinkdir.h: New files.
44946         * lib/gethrxtime.c, lib/gethrxtime.h, lib/getpass.h, lib/mountlist.h,
44947         lib/path-concat.c, lib/regex.h, lib/unlocked-io.h, lib/xtime.h:
44948         White space changes only.
44949         * lib/makepath.c (make_path): Port to hosts where leading "//" is
44950         special.
44951         * lib/yesno.c: Include getline.h, not ctype.h.
44952         (yesno): Don't remove leading white space; POSIX doesn't allow it.
44953         Use getline to remove arbitrary restriction on response length.
44954
44955 2005-05-14  Paul Eggert  <eggert@cs.ucla.edu>
44956
44957         * config/srclist-update: Spell out "Street" in FSF postal
44958         mail address; this is the style the FSF seems to prefer.
44959
44960         * build-aux/depcomp, build-aux/install-sh, build-aux/mdate-sh,
44961         build-aux/missing, build-aux/mkinstalldirs: Sync from Automake;
44962         this updates FSF postal mail address.
44963
44964         Sync from coreutils.
44965         * modules/unlinkdir: New file.
44966         * modules/yesno (Depends-on): Add getline.
44967         * MODULES.html.sh (File system functions): Add unlinkdir.
44968
44969 2005-05-13  Paul Eggert  <eggert@cs.ucla.edu>
44970
44971         * lib/byteswap_.h, lib/getsubopt.h, lib/iconvme.h, lib/strsep.c,
44972         lib/strsep.h:
44973         Change the initial comment to refer to GPL, not LGPL.
44974         gnulib-tool will change it to LGPL as needed.
44975
44976         * lib/__fpending.c, lib/acl.c, lib/acl.h, lib/alloca_.h, lib/allocsa.c,
44977         lib/allocsa.h, lib/argmatch.c, lib/argmatch.h, lib/argp-ba.c,
44978         lib/argp-eexst.c, lib/argp-fmtstream.c, lib/argp-fmtstream.h,
44979         lib/argp-fs-xinl.c, lib/argp-help.c, lib/argp-namefrob.h,
44980         lib/argp-parse.c, lib/argp-pv.c, lib/argp-pvh.c, lib/argp-xinl.c,
44981         lib/argp.h, lib/argz.c, lib/argz_.h, lib/asnprintf.c, lib/asprintf.c,
44982         lib/atanl.c, lib/backupfile.c, lib/backupfile.h, lib/base64.c,
44983         lib/base64.h, lib/basename.c, lib/binary-io.h, lib/byteswap_.h,
44984         lib/c-ctype.c, lib/c-ctype.h, lib/c-stack.c, lib/c-stack.h,
44985         lib/c-strtod.c, lib/calloc.c, lib/canon-host.c, lib/canonicalize.c,
44986         lib/canonicalize.h, lib/ceill.c, lib/chdir-long.c, lib/chdir-long.h,
44987         lib/chown.c, lib/classpath.c, lib/classpath.h, lib/cloexec.c,
44988         lib/closeout.c, lib/closeout.h, lib/concatpath.c, lib/config.charset,
44989         lib/copy-file.c, lib/copy-file.h, lib/cycle-check.c, lib/cycle-check.h,
44990         lib/diacrit.c, lib/diacrit.h, lib/dirfd.c, lib/dirfd.h, lib/dirname.c,
44991         lib/dirname.h, lib/dummy.c, lib/dup-safer.c, lib/dup2.c, lib/eealloc.h,
44992         lib/error.c, lib/error.h, lib/euidaccess.c, lib/exclude.c,
44993         lib/exclude.h, lib/execute.c, lib/execute.h, lib/exit.h,
44994         lib/exitfail.c, lib/exitfail.h, lib/expl.c, lib/fatal-signal.c,
44995         lib/fatal-signal.h, lib/fd-safer.c, lib/file-type.c, lib/file-type.h,
44996         lib/fileblocks.c, lib/filemode.c, lib/filemode.h, lib/findprog.c,
44997         lib/findprog.h, lib/floorl.c, lib/fnmatch.c, lib/fnmatch_.h,
44998         lib/fnmatch_loop.c, lib/fopen-safer.c, lib/free.c, lib/frexpl.c,
44999         lib/fsusage.c, lib/fsusage.h, lib/full-read.c, lib/full-read.h,
45000         lib/full-write.c, lib/full-write.h, lib/fwriteerror.c,
45001         lib/fwriteerror.h, lib/gai_strerror.c, lib/gcd.c, lib/gcd.h,
45002         lib/getaddrinfo.c, lib/getaddrinfo.h, lib/getcwd.c, lib/getcwd.h,
45003         lib/getdate.h, lib/getdate.y, lib/getdomainname.c, lib/getdomainname.h,
45004         lib/getgroups.c, lib/gethostname.c, lib/gethrxtime.c, lib/gethrxtime.h,
45005         lib/getline.c, lib/getline.h, lib/getloadavg.c, lib/getndelim2.c,
45006         lib/getndelim2.h, lib/getnline.c, lib/getnline.h, lib/getopt.c,
45007         lib/getopt1.c, lib/getopt_.h, lib/getopt_int.h, lib/getpagesize.h,
45008         lib/getpass.c, lib/getpass.h, lib/getsubopt.c, lib/getsubopt.h,
45009         lib/gettext.h, lib/gettime.c, lib/gettimeofday.c, lib/getugroups.c,
45010         lib/getusershell.c, lib/group-member.c, lib/group-member.h,
45011         lib/hard-locale.c, lib/hard-locale.h, lib/hash-pjw.c, lib/hash-pjw.h,
45012         lib/hash.c, lib/hash.h, lib/human.c, lib/human.h, lib/iconvme.c,
45013         lib/iconvme.h, lib/idcache.c, lib/inet_ntop.h, lib/intprops.h,
45014         lib/inttostr.c, lib/inttostr.h, lib/isdir.c, lib/javacomp.c,
45015         lib/javacomp.h, lib/javacomp.sh.in, lib/javaexec.c, lib/javaexec.h,
45016         lib/javaexec.sh.in, lib/lbrkprop.h, lib/lchown.c, lib/ldexpl.c,
45017         lib/linebreak.c, lib/linebreak.h, lib/linebuffer.c, lib/linebuffer.h,
45018         lib/localcharset.c, lib/localcharset.h, lib/logl.c, lib/long-options.c,
45019         lib/long-options.h, lib/lstat.c, lib/makepath.c, lib/makepath.h,
45020         lib/malloc.c, lib/mathl.h, lib/mbswidth.c, lib/mbswidth.h, lib/md5.c,
45021         lib/md5.h, lib/memcasecmp.c, lib/memcasecmp.h, lib/memchr.c,
45022         lib/memcmp.c, lib/memcoll.c, lib/memcoll.h, lib/memcpy.c, lib/memmem.c,
45023         lib/memmem.h, lib/mempcpy.c, lib/mempcpy.h, lib/memrchr.c,
45024         lib/memrchr.h, lib/memset.c, lib/minmax.h, lib/mkdir.c, lib/mkdtemp.c,
45025         lib/mkdtemp.h, lib/mkstemp.c, lib/mktime.c, lib/modechange.c,
45026         lib/modechange.h, lib/mountlist.c, lib/mountlist.h, lib/nanosleep.c,
45027         lib/obstack.c, lib/obstack.h, lib/openat.c, lib/openat.h,
45028         lib/pagealign_alloc.c, lib/pagealign_alloc.h, lib/path-concat.c,
45029         lib/path-concat.h, lib/pathmax.h, lib/pathname.h, lib/physmem.c,
45030         lib/physmem.h, lib/pipe.c, lib/pipe.h, lib/poll.c, lib/poll_.h,
45031         lib/posixtm.c, lib/posixtm.h, lib/posixver.c, lib/printf-args.c,
45032         lib/printf-args.h, lib/printf-parse.c, lib/printf-parse.h,
45033         lib/progname.c, lib/progname.h, lib/progreloc.c, lib/putenv.c,
45034         lib/quote.c, lib/quote.h, lib/quotearg.c, lib/quotearg.h, lib/raise.c,
45035         lib/readlink.c, lib/readtokens.c, lib/readtokens.h, lib/readtokens0.c,
45036         lib/readtokens0.h, lib/readutmp.c, lib/readutmp.h, lib/realloc.c,
45037         lib/ref-add.sin, lib/ref-del.sin, lib/regex.c, lib/regex.h,
45038         lib/rename.c, lib/rmdir.c, lib/rpmatch.c, lib/safe-read.c,
45039         lib/safe-read.h, lib/safe-write.c, lib/safe-write.h, lib/same.c,
45040         lib/same.h, lib/save-cwd.c, lib/save-cwd.h, lib/savedir.c,
45041         lib/savedir.h, lib/setenv.c, lib/setenv.h, lib/settime.c,
45042         lib/sh-quote.c, lib/sh-quote.h, lib/sha1.c, lib/sha1.h, lib/sig2str.c,
45043         lib/sig2str.h, lib/sincosl.c, lib/snprintf.c, lib/snprintf.h,
45044         lib/sqrtl.c, lib/stat-macros.h, lib/stat.c, lib/stdbool_.h,
45045         lib/stdint_.h, lib/stdio-safer.h, lib/stpcpy.c, lib/stpcpy.h,
45046         lib/stpncpy.c, lib/stpncpy.h, lib/strcase.h, lib/strcasecmp.c,
45047         lib/strchrnul.c, lib/strchrnul.h, lib/strcspn.c, lib/strdup.c,
45048         lib/strdup.h, lib/strerror.c, lib/strftime.c, lib/strftime.h,
45049         lib/stripslash.c, lib/strndup.c, lib/strndup.h, lib/strnlen.c,
45050         lib/strpbrk.c, lib/strpbrk.h, lib/strsep.c, lib/strsep.h, lib/strstr.c,
45051         lib/strstr.h, lib/strtod.c, lib/strtoimax.c, lib/strtok_r.c,
45052         lib/strtok_r.h, lib/strtol.c, lib/strtoll.c, lib/strtoul.c,
45053         lib/strtoull.c, lib/strverscmp.c, lib/strverscmp.h, lib/sysexit_.h,
45054         lib/tempname.c, lib/time_r.c, lib/time_r.h, lib/timegm.c, lib/timegm.h,
45055         lib/timespec.h, lib/trigl.c, lib/trigl.h, lib/ucs4-utf16.h,
45056         lib/ucs4-utf8.h, lib/unicodeio.c, lib/unicodeio.h, lib/unistd-safer.h,
45057         lib/unlocked-io.h, lib/unsetenv.c, lib/userspec.c, lib/utf16-ucs4.h,
45058         lib/utf8-ucs4.h, lib/utime.c, lib/utimecmp.c, lib/utimecmp.h,
45059         lib/utimens.c, lib/vasnprintf.c, lib/vasnprintf.h, lib/vasprintf.c,
45060         lib/vasprintf.h, lib/version-etc-fsf.c, lib/version-etc.c,
45061         lib/version-etc.h, lib/vsnprintf.c, lib/vsnprintf.h, lib/w32spawn.h,
45062         lib/wait-process.c, lib/wait-process.h, lib/xalloc-die.c, lib/xalloc.h,
45063         lib/xallocsa.c, lib/xallocsa.h, lib/xasprintf.c, lib/xgetcwd.c,
45064         lib/xgetcwd.h, lib/xgetdomainname.c, lib/xgetdomainname.h,
45065         lib/xgethostname.c, lib/xmalloc.c, lib/xmemcoll.c, lib/xnanosleep.c,
45066         lib/xreadlink.c, lib/xreadlink.h, lib/xsetenv.c, lib/xsetenv.h,
45067         lib/xsize.h, lib/xstrndup.c, lib/xstrndup.h, lib/xstrtod.c,
45068         lib/xstrtod.h, lib/xstrtoimax.c, lib/xstrtol.c, lib/xstrtol.h,
45069         lib/xstrtoumax.c, lib/xtime.h, lib/xvasprintf.c, lib/xvasprintf.h,
45070         lib/yesno.c, lib/yesno.h:
45071         Update FSF postal mail address.
45072
45073 2005-05-13  Paul Eggert  <eggert@cs.ucla.edu>
45074
45075         * MODULES.html.sh, README, gnulib-tool, tests/test-base64.c,
45076         tests/test-memmem.c, tests/test-stpncpy.c:
45077         Update FSF postal mail address.
45078
45079 2005-05-13  Bruno Haible  <bruno@clisp.org>
45080
45081         * lib/stdint_.h (int64_t, uint64_t, int_least64_t, uint_least64_t,
45082         int_fast64_t, uint_fast64_t, intmax_t, uintmax_t, INT64_MIN, INT64_MAX,
45083         UINT64_MAX, INT_LEAST64_MIN, INT_LEAST64_MAX, UINT_LEAST64_MAX,
45084         INT_FAST64_MIN, INT_FAST64_MAX, UINT_FAST64_MAX, INTMAX_MIN,
45085         INTMAX_MAX, UINTMAX_MAX, INT64_C, UINT64_C, INTMAX_C, UINTMAX_C):
45086         Add support for 64-bit integers in the MSVC compiler.
45087
45088 2005-05-12  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
45089
45090         * modules/getdate (Makefile.am): Add getdate.c to EXTRA_DIST
45091
45092 2005-05-12  Eric Blake  <ebb9@byu.net>  (tiny change)
45093
45094         * gnulib-tool (func_import): Sort and uniquify recommended includes.
45095
45096 2005-05-11  Paul Eggert  <eggert@cs.ucla.edu>
45097
45098         * doc/getdate.texi (General date syntax): Don't say that date
45099         date --iso-8601=ns generates acceptable dates; it doesn't yet.
45100         Problem reported by Nic Ferrier.
45101
45102 2005-05-10  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
45103
45104         * lib/getaddrinfo.c: Don't fail when SOCK_STREAM or SOCK_DGRAM are
45105         specified in ai_socktype. Fix invalid ai_protocol
45106         check. ai_protocol is usually set to 0 or depending on
45107         ai_family/ai_socktype to IPPROTO_TCP / IPPROTO_UDP.  Checking for
45108         SOCK_STREAM / SOCK_DGRAM in ai_protocol was invalid.  Set
45109         ai_socktype / ai_protocol in the returned addrinfo structure.
45110
45111 2005-05-10  Simon Josefsson  <jas@extundo.com>
45112
45113         * m4/getaddrinfo.m4: Look in libnsl/libsocket for getaddrinfo, from
45114         Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
45115
45116 2005-05-10  Karl Berry  <karl@gnu.org>
45117
45118         * doc/fdl.texi, gpl.texi, lgpl.texi, COPYING: update FSF address
45119         (from http://www.gnu.org/licenses).
45120         * doc/COPYING.LIB: also rename to COPYING.LESSER.
45121         * doc/COPYING.DOC: remove; per rms, only needed in doc files, so
45122         fdl.texi suffices.
45123
45124 2005-05-10  Karl Berry  <karl@gnu.org>
45125
45126         * config/srclist.txt (COPYING.LESSER): rename from COPYING.LIB.
45127         (COPYING.DOC): remove.
45128
45129         * config/srclist-update: new FSF address.
45130
45131 2005-05-10  Derek Price  <derek@ximbiot.com>
45132
45133         * m4/getopt.m4 (gl_GETOPT): Check for Solaris 10 bug, not decl, when
45134         possible.
45135
45136 2005-05-09  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
45137             Bruno Haible  <bruno@clisp.org>
45138
45139         * modules/inet_ntop: New file.
45140         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
45141         inet_ntop.
45142
45143 2005-05-09  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
45144             Bruno Haible  <bruno@clisp.org>
45145
45146         * m4/inet_ntop.m4: New file.
45147
45148 2005-05-09  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
45149             Bruno Haible  <bruno@clisp.org>
45150
45151         * lib/inet_ntop.h: New file.
45152         * lib/inet_ntop.c: New file, from glibc with modifications.
45153
45154 2005-05-09  Paul Eggert  <eggert@cs.ucla.edu>
45155
45156         * modules/time_r (License): Change to LGPL.
45157         * modules/extensions (License): Change to LGPL.  Actually,
45158         the license is more permissive than that, but currently gnulib-tool
45159         doesn't know how to handle more-permissive licenses.
45160
45161         * modules/stat-macros (Depends-on): Don't depend on stat-macros (!).
45162         Problem reported by Dave Love.
45163
45164 2005-05-08  Jim Meyering  <jim@meyering.net>
45165
45166         * lib/classpath.c (PATH_SEPARATOR): Remove insignificant trailing
45167         blank.
45168
45169 2005-05-06  Paul Eggert  <eggert@cs.ucla.edu>
45170
45171         * modules/argmatch (Depends-on): Add stdbool.
45172         * modules/backupfile (Depends-on): Likewise.
45173         * modules/chdir-long (Depends-on): Likewise.
45174         * modules/closeout (Depends-on): Likewise.
45175         * modules/cycle-check (Depends-on): Likewise.
45176         * modules/dirname (Depends-on): Likewise.
45177         * modules/fnmatch (Depends-on): Likewise.
45178         * modules/fsusage (Depends-on): Likewise.
45179         * modules/fwriteerror (Depends-on): Likewise.
45180         * modules/getcwd (Depends-on): Likewise.
45181         * modules/getloadavg (Depends-on): Likewise.
45182         * modules/hard-locale (Depends-on): Likewise.
45183         * modules/makepath (Depends-on): Likewise.
45184         * modules/mountlist (Depends-on): Likewise.
45185         * modules/nanosleep (Depends-on): Likewise.
45186         * modules/posixtm (Depends-on): Likewise.
45187         * modules/quotearg (Depends-on): Likewise.
45188         * modules/readtokens (Depends-on): Likewise.
45189         * modules/readtokens0 (Depends-on): Likewise.
45190         * modules/readutmp (Depends-on): Likewise.
45191         * modules/save-cwd (Depends-on): Likewise.
45192         * modules/strftime (Depends-on): Likewise.
45193         * modules/userspec (Depends-on): Likewise.
45194         * modules/utimecmp (Depends-on): Likewise.
45195         * modules/xgetcwd (Depends-on): Likewise.
45196         * modules/xnanosleep (Depends-on): Likewise.
45197         * modules/xstrtod (Depends-on): Likewise.
45198         * modules/yesno (Depends-on): Likewise.
45199
45200 2005-05-05  Paul Eggert  <eggert@cs.ucla.edu>
45201
45202         * m4/getopt.m4 (gl_GETOPT): Check for Solaris 10 getopt, and avoid
45203         needless checks.
45204
45205 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
45206
45207         Merge from coreutils.  Among other things,
45208         add bulletproofing for cases where stdin, stdout, or stderr are closed.
45209         * lib/fd-safer.c: New file.
45210         * lib/fcntl-safer.h, open-safer.c: Remove.
45211         * lib/chdir-long.c: Fix comment "fetish" -> "coreutils".
45212         * lib/dup-safer.c: Include unistd-safer.h first.
45213         Don't include errno.h.
45214         (dup_safer) [!defined F_DUPFD]: Let fd_safer do the real work.
45215         * lib/file-type.h: Don't assume invoker included sys/stat.h first.
45216         * lib/file-type.c: Rely on file-type.h change.
45217         * lib/getloadavg.c: Include unistd-safer.h.
45218         (getloadavg): Use safer open.
45219         * lib/getusershell.c: Include "stdio-safer.h".
45220         (getusershell): Use safer fopen.
45221         * lib/long-options.c (long_options): Use NULL rather than 0.
45222         * lib/modechange.h (mode_free): Remove; all callers changed to invoke
45223         'free'.
45224         * lib/modechange.c: Likewise.
45225         xstrtol.h, stdbool.h, stddef.h: Don't include; no longer needed.
45226         (MODE_DONE): New constant.
45227         (struct mode_change): Remove 'next' member.
45228         (make_node_op_equals): New function; like the old one of the
45229         same name, except it allocates an array.
45230         (mode_compile, mode_create_from_ref): Use it.
45231         (mode_compile): Allocate result as an array, not a linked list.
45232         Parse octal string ourself, so that we catch mistakes like "+0".
45233         (mode_adjust): Arg is an array, not a linked list.
45234         * lib/modechange.c: Include stat-macros.h, xalloc.h.
45235         (S_ISDIR, S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IWUSR, S_IXUSR):
45236         (S_IRGRP, S_IWGRP, S_IXGRP, S_IROTH, S_IWOTH, S_IXOTH, S_IRXWU):
45237         (S_IRWXG, S_IRWXO, CHMOD_MODE_BITS):
45238         Remove.  This is now stat-macros.h's job.
45239         (talloc): Remove.  All callers replaced by xalloc, so that
45240         our invokers don't have to worry about reporting memory failures.
45241         (make_node_op_equals): Remove.
45242         (MODE_ORDINARY_CHAGE, MODE_X_IF_ANY_X, MODE_COPY_EXISTING):
45243         New constants.
45244         (struct mode_change): Moved here from modechange.h.
45245         (mode_append_entry): Remove.
45246         (mode_compile): Remove MASKED_OPS arg, since it encouraged
45247         apps to have incorrect behavior.  Use simpler algorithm for head
45248         and tail.  Don't futz with umask; that's now the job of mode_adjust.
45249         Detect more invalid usages rather than having somewhat-random behavior.
45250         Don't insert an "a=" action, as that leads to incorrect behavior.
45251         (mode_compile, mode_create_from_ref): Return NULL on error instead
45252         of an enum, since now there's only one way to have an error.  All
45253         callers changed.
45254         (mode_adjust): Accept new arg UMASK_VALUE, and interpret it
45255         at the correct time.  Simplify calculation of "+u" and its ilk.
45256         Don't mishandle "+X".
45257         (mode_free): Remove "register" and localize decls.
45258         * lib/modechange.h (MODE_X_IF_ANY_X, MODE_COPY_EXISTING):
45259         (struct mode_change): Move to modechange.c; callers don't
45260         need to see this stuff.
45261         (MODE_MASK_EQUALS, MODE_MASK_PLUS, MODE_MASK_MINUS, MODE_MASK_ALL):
45262         (MODE_INVALID, MODE_MEMORY_EXHAUSTED, MODE_BAD_REFERENCE): Remove.
45263         (mode_change, mode_adjust): Reflect the new signatures noted above.
45264         * lib/nanosleep.c (rpl_nanosleep): Include "timespec.h" before macros
45265         that might redefine system include files.
45266         (siginterrupt) [!HAVE_SIGINTERRUPT]: New macro.
45267         (my_usleep): Use NULL rather than (void *) 0.
45268         (rpl_nanosleep) [!defined SA_NOCLDSTOP]:
45269         Use siginterrupt to specify that system calls should be interrupted.
45270         (rpl_nanosleep): Move initialization of suspended closer to call of
45271         my_usleep.
45272         * lib/readutmp.h (read_utmp): New arg OPTIONS.  All uses changed.
45273         * lib/readutmp.c: Likewise.  Include signal.h, stdbool.h.
45274         (desirable_utmp_entry): New function.
45275         (read_utmp) [defined UTMP_NAME_FUNCTION]: Redo memory allocation
45276         using x2nrealloc, to simplify logic.
45277         (read_utmp) [!defined UTMP_NAME_FUNCTION]: Check for overflow in
45278         size calculation.  Do not assume utmp file is a regular file.
45279         * lib/readutmp.h (UT_PID): Moved here from ../src/who.c.
45280         (READ_UTMP_CHECK_PIDS): New constant.
45281         * lib/save-cwd.c: Include unistd-safer.h.
45282         (save_cwd): Use fd_safer.
45283         * lib/tempname.c (S_ISDIR, S_IRUSR, S_IRUSR, S_IWUSR, S_IXUSR): Remove.
45284         [!_LIBC] Include "stat-macros.h" instead.
45285         * lib/unistd-safer.h (fd_safer): New decl.
45286
45287 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
45288
45289         * modules/getloadavg (Depends-on): Add unistd-safer.
45290         * modules/getusershell (Depends-on): Add stdio-safer.
45291         * modules/lstat (Depends-on): Remove xalloc.
45292         * modules/mkstemp (Depends-on): Add stat-macros.
45293         * modules/modechange (Depends-on): Remove xstrtol.
45294         Add stat-macros, xalloc.
45295         * modules/save-cwd (Depends-on): Add unistd-safer.
45296         * modules/stdio-safer (Makefile.am): Remove lib_SOURCES.
45297         * modules/unistd-safer (Files): Add lib/fd-safer.c
45298         (Makefile.am): Remove lib_SOURCES.
45299
45300         * MODULES.html.sh (Enhancements for POSIX:2001 functions):
45301         Remove fcntl-safer; unistd-safer supersedes it.
45302
45303 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
45304
45305         * m4/euidaccess.m4 (gl_PREREQ_EUIDACCESS): Don't require
45306         AC_HEADER_STAT.
45307         * m4/lchown.m4 (gl_FUNC_CHOWN): Likewise.
45308         (gl_PREREQ_CHOWN): Remove.
45309         * m4/lstat.m4 (gl_FUNC_LSTAT): Require AC_FUNC_LSTAT instead of calling
45310         it.  Don't require AC_HEADER_STAT.
45311         (gl_PREREQ_LSTAT): Remove.
45312         * m4/mkstemp.m4 (gl_PREREQ_TEMPNAME): Check stdint.h only once.
45313         Don't require AC_HEADER_STAT.
45314         * m4/rmdir.m4 (gl_FUNC_RMDIR): Don't require AC_HEADER_STAT.
45315         (gl_PREREQ_RMDIR): Remove.
45316         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME): Don't
45317         mention stat-macros.h or AC_HEADER_STAT, since we'll make
45318         the stat-macros module a prerequisite.
45319         * m4/file-type.m4 (gl_FILE_TYPE): Likewise.
45320         * m4/filemode.m4 (gl_FILEMODE): Likewise.
45321         * m4/makepath.m4 (gl_MAKEPATH): Likewise.
45322         * m4/modechange.m4 (gl_MODECHANGE): Likewise.
45323         * m4/clock_time.m4 (gl_CLOCK_TIME): Use gl_ rather than fetish_ for
45324         variable names.
45325         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Renamed from
45326         fetish_FUNC_RMDIR_NOTEMPTY.  All uses changed.  Use gl_ for
45327         variable prefixes.
45328         * m4/fcntl-safer.m4: Remove.
45329         * m4/stdio-safer.m4 (gl_STDIO_SAFER): Use AC_LIBSOURCES and AC_LIBOBJ.
45330         * m4/unistd-safer.m4 (gl_UNISTD_SAFER): Likewise.
45331         Invoke gl_PREREQ_FD_SAFER.
45332         (gl_PREREQ_FD_SAFER): New macro.
45333         * m4/nanosleep.m4 (gl_PREREQ_NANOSLEEP): Check for siginterrupt.
45334         * m4/readutmp.m4 (gl_READUTMP): Require AC_C_INLINE.
45335         Use AC_CHECK_HEADERS_ONCE and AC_CHECK_FUNCS_ONCE when possible.
45336         Remove duplicate call to AC_LIBOBJ(readutmp).
45337         (gl_PREREQ_READUTMP): Remove.  All uses inlined.
45338
45339         * m4/mmap-anon.m4 (gl_FUNC_MMAP_ANON): Check for message, not for
45340         MAP_ANON.  Problem reported by Moriyoshi Koizumi to bug-cvs.
45341
45342 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
45343
45344         * MODULES.html.sh (Misc): Add byteswap.
45345
45346 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
45347
45348         * modules/getcwd (Depends-on): Add extensions.
45349         * modules/openat (Depends-on): Likewise.
45350
45351 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
45352
45353         * modules/byteswap: New file.
45354
45355 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
45356
45357         * m4/byteswap.m4: New file.
45358
45359 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
45360
45361         * lib/byteswap_.h: New file.
45362
45363 2005-04-25  Karl Berry  <karl@gnu.org>
45364
45365         * m4/gettext.m4: Update from GNU gettext 0.14.4.
45366
45367 2005-04-25  Albert Chin  <china@thewrittenword.com>
45368
45369         * lib/regex.c: Include <stdio.h>, as a workaround to a Compaq Desktop
45370         Toolkit C bug.
45371
45372 2005-04-21  Oskar Liljeblad  <oskar@osk.mine.nu>
45373
45374         * gnulib-tool (Options): Add -s for --symlink/--symbolic.
45375         (func_ln_if_changed) Remove forcibly for no error message
45376         in case file does not exist.
45377
45378 2005-04-19  Simon Josefsson  <jas@extundo.com>
45379
45380         * gnulib-tool (Options): Make --symlink mean --symbolic.
45381
45382 2005-04-18  Oskar Liljeblad  <oskar@osk.mine.nu>
45383
45384         * doc/gnulib.texi (Initial import): Fix.  Mention --aux-dir.
45385
45386 2005-04-16  Simon Josefsson  <jas@extundo.com>
45387
45388         * modules/getpass-gnu (Makefile.am): Don't mention getpass.h.
45389
45390 2005-04-15  Simon Josefsson  <jas@extundo.com>
45391
45392         * m4/getpass.m4 (gl_FUNC_GETPASS): Use AC_LIBSOURCES.
45393
45394 2005-04-15  Simon Josefsson  <jas@extundo.com>
45395
45396         * gnulib-tool: Rename --symlink to --symbolic.
45397
45398 2005-04-15  Oskar Liljeblad  <oskar@osk.mine.nu>
45399
45400         * gnulib-tool: Add -s, --symlink option to gnulib-tool to make
45401         symbolic links to files instead of copying/moving.  Add --aux-dir,
45402         specifying directory relative --dir where auxiliary build tools
45403         are placed.
45404
45405 2005-04-14  Bruno Haible  <bruno@clisp.org>
45406
45407         * modules/allocsa (License): Change to LGPL.
45408         Requested by Yoann Vandoorselaere <yoann@prelude-ids.org>.
45409
45410 2005-04-13  Paul Eggert  <eggert@cs.ucla.edu>
45411
45412         * lib/getdate.y (zone): Allow relunit_snumber after tZONE, so
45413         that "UTC +1 second" continues to work.  Problem reported
45414         by Dmitry V. Levin.
45415         (relunit_snumber): New rule.
45416         (relunit): Use it.
45417
45418 2005-04-12  Paul Eggert  <eggert@cs.ucla.edu>
45419
45420         * lib/getdate.y (universal_time_zone_table): New constant.
45421         (time_zone_table): Remove GMT, UT, UTC entries; they're now in
45422         universal_time_zone_table.
45423         (lookup_zone): Prefer universal_time_zone_table to
45424         local_time_zone_table, so that "GMT" time stamps are allowed in
45425         London during the summer.  Problem reported by Ian Abbott.
45426
45427 2005-04-12  Jim Meyering  <jim@meyering.net>
45428
45429         * lib/human.c (humblock): Set *options even when returning due to
45430         xstrtoumax conversion failure.  Thanks to a used-uninitialized
45431         warning from gcc-4.
45432
45433 2005-04-09  Jim Meyering  <jim@meyering.net>
45434
45435         * lib/posixtm.c (posixtime) [lint]: Avoid spurious warning from gcc-4's
45436         -Wuninitialized: initialize tm0.tm_year.
45437
45438 2005-04-04  Paul Eggert  <eggert@cs.ucla.edu>
45439
45440         * lib/getdate.y (parser_control): rels_seen is now a boolean, not a
45441         count, since there's no maximum.  All uses changed.
45442         Add member dsts_seen.
45443         (local_zone): Accumulate dsts_seen rather than relying on tm_isdst
45444         not being INT_MAX.
45445         (get_date): Initialize dsts_seen, and check that it doesn't go over 1.
45446         Use pc_rels_seen to decide whther a date is absolute.
45447
45448         * lib/getdate.y (number): Don't overwrite year.
45449         (get_date): Initialize pc.year.digits to 0, not 4, to enable above
45450         check.
45451
45452 2005-04-02  Simon Josefsson  <jas@extundo.com>
45453
45454         * lib/getaddrinfo.h: Fix OpenBSD compilation failure, inspired by tiny
45455         patch from Yoann Vandoorselaere <yoann@prelude-ids.org>.
45456
45457 2005-03-28  Eric Blake  <ebb9@byu.net>  (tiny change)
45458
45459         * m4/getcwd-path-max.m4: Return success on systems such as Cygwin
45460         where no absolute path name can be longer than PATH_MAX.
45461
45462 2005-03-27  Jim Meyering  <jim@meyering.net>
45463
45464         * lib/argmatch.c: Clarify comment: null-terminated -> NULL-terminated.
45465
45466 2005-03-26  Paul Eggert  <eggert@cs.ucla.edu>
45467
45468         * lib/intprops.h (INT_STRLEN_BOUND, INT_BUFSIZE_BOUND):
45469         "one's complement" -> "ones' complement" in comment, as per Knuth.
45470         "value of type" -> "type or expression" in comment.
45471         * lib/mktime.c, strftime.c: Propagate intprops.h comment nits.
45472
45473 2005-03-26  Jim Meyering  <jim@meyering.net>
45474
45475         Comment nits.
45476         * lib/intprops.h: Add the apostrophe in `(one|two)'s complement'.
45477         Correct typos: s/or/of/.
45478
45479 2005-03-26  Jim Meyering  <jim@meyering.net>
45480
45481         * modules/check-include-files: Move to ../ and rename to...
45482         * check-module: ...this.
45483
45484 2005-03-25  Jim Meyering  <jim@meyering.net>
45485
45486         * modules/xvasprintf (Files): Add xalloc.h.
45487
45488 2005-03-23  Paul Eggert  <eggert@cs.ucla.edu>
45489
45490         * modules/gettext (Files): config/config.rpath ->
45491         build-aux/config.rpath
45492         * modules/iconv (Files): Likewise.
45493         Problem reported by Oskar Liljeblad.
45494
45495 2005-03-23  Jim Meyering  <jim@meyering.net>
45496
45497         * modules/check-include-files: New script to check for
45498         missing dependencies, multiple includes, etc.
45499
45500         * modules/c-strtold (Depends-on): Add xalloc.
45501         * modules/c-strtod (Depends-on): Add xalloc.
45502         * modules/hash (Depends-on): Add xalloc.
45503         (Files): Remove lib/xalloc.h.
45504
45505         * modules/gethrxtime (Files): Add lib/gethrxtime.h.
45506         * modules/userspec (Files): Add lib/inttostr.h.
45507
45508 2005-03-23  Jim Meyering  <jim@meyering.net>
45509
45510         * lib/canonicalize.c: Remove duplicate `#include "stat-macros.h"'.
45511
45512 2005-03-22  Jim Meyering  <jim@meyering.net>
45513
45514         * modules/stat-macros: New module.
45515         * modules/canonicalize, modules/euidaccess, modules/file-type,
45516         * modules/filemode, modules/lchown, modules/makepath,
45517         * modules/rmdir, modules/stat: Depend on new stat-macros module
45518         rather than listing lib/stat-macros.h manually.
45519         Don't add stat-macros.h to lib_SOURCES or list it in Files: section.
45520
45521 2005-03-22  Jim Meyering  <jim@meyering.net>
45522
45523         * m4/stat-macros.m4 (gl_STAT_MACROS): New file/macro.
45524
45525 2005-03-22  Bruno Haible  <bruno@clisp.org>
45526
45527         * config/srclist.txt: Replace target directory 'config' with
45528         'build-aux'.
45529         * config/config.guess, config.sub, config.rpath, depcomp, install-sh:
45530         * config/mdate-sh, missing, mkinstalldirs, texinfo.tex: Move to
45531         ../build-aux/.
45532
45533 2005-03-21  Paul Eggert  <eggert@cs.ucla.edu>
45534
45535         * modules/chdir-long (Depends-on): Add mempcpy.
45536
45537         * modules/acl, modules/backupfile, modules/c-strtod,
45538         modules/c-strtold, modules/canon-host, modules/canonicalize,
45539         modules/cloexec, modules/closeout, modules/dirfd, modules/dirname,
45540         modules/exclude, modules/exitfail, modules/file-type,
45541         modules/filemode, modules/fpending, modules/fsusage, modules/getcwd,
45542         modules/getdate, modules/getline, modules/getpagesize,
45543         modules/getpass, modules/getugroups, modules/group-member,
45544         modules/hard-locale, modules/hash, modules/human, modules/idcache,
45545         modules/inttostr, modules/long-options, modules/makepath,
45546         modules/md5, modules/memcasecmp, modules/memcoll,
45547         modules/modechange, modules/mountlist, modules/path-concat,
45548         modules/pathmax, modules/physmem, modules/posixtm, modules/posixver,
45549         modules/quote, modules/quotearg, modules/readtokens, modules/readutmp,
45550         modules/safe-read, modules/safe-write, modules/same, modules/savedir,
45551         modules/settime, modules/sha1, modules/sig2str, modules/strdup,
45552         modules/strftime, modules/strndup, modules/strverscmp,
45553         modules/timespec, modules/unlocked-io, modules/userspec,
45554         modules/utimecmp, modules/utimens, modules/xalloc, modules/xstrtol,
45555         modules/yesno:
45556         Remove lib_SOURCES line from Makefile.am section, as this is now
45557         done automatically by the corresponding Autoconf macro.
45558
45559 2005-03-21  Jim Meyering  <jim@meyering.net>
45560
45561         Changes imported from coreutils.
45562
45563         * lib/cycle-check.c: Don't include xalloc.h.
45564
45565         * lib/path-concat.c: Don't include assert.h.
45566         (path_concat): Remove assertion that would have triggered
45567         for ABASE starting with more than one slash.
45568         Reported by Andreas Schwab.
45569
45570         * lib/path-concat.c (path_concat): Set *BASE_IN_RESULT
45571         properly when ABASE is an absolute file name.
45572         Correct the description of this function.
45573         Include <assert.h>.
45574         Add an assertion and a test driver.
45575         This fixes a bug introduced on 2004-07-02.
45576         Andreas Schwab reported the resulting failure of cp --parents:
45577         http://lists.gnu.org/archive/html/bug-coreutils/2005-01/msg00130.html
45578
45579 2005-03-21  Jim Meyering  <jim@meyering.net>
45580
45581         * m4/chdir-long.m4 (gl_PREREQ_CHDIR_LONG): Invoke gl_FUNC_MEMRCHR.
45582         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Check for memrchr decl.
45583
45584 2005-03-21  Jim Meyering  <jim@meyering.net>
45585         and  Paul Eggert  <eggert@cs.ucla.edu>
45586
45587         * m4/acl.m4, m4/backupfile.m4, m4/c-strtod.m4, m4/canon-host.m4,
45588         m4/canonicalize.m4, m4/cloexec.m4, m4/closeout.m4, m4/dirfd.m4,
45589         m4/dirname.m4, m4/exclude.m4, m4/exitfail.m4, m4/file-type.m4,
45590         m4/filemode.m4, m4/fpending.m4, m4/fsusage.m4, m4/getcwd.m4,
45591         m4/getdate.m4, m4/getline.m4, m4/getpagesize.m4, m4/getpass.m4,
45592         m4/getugroups.m4, m4/group-member.m4, m4/hard-locale.m4, m4/hash.m4,
45593         m4/human.m4, m4/idcache.m4, m4/inttostr.m4, m4/long-options.m4,
45594         m4/makepath.m4, m4/md5.m4, m4/memcasecmp.m4, m4/memcoll.m4,
45595         m4/modechange.m4, m4/mountlist.m4, m4/nanosleep.m4, m4/path-concat.m4,
45596         m4/pathmax.m4, m4/physmem.m4, m4/posixtm.m4, m4/posixver.m4,
45597         m4/quote.m4, m4/quotearg.m4, m4/readtokens.m4, m4/readutmp.m4,
45598         m4/safe-read.m4, m4/safe-write.m4, m4/same.m4, m4/savedir.m4,
45599         m4/settime.m4, m4/sha1.m4, m4/sig2str.m4, m4/strdup.m4, m4/strftime.m4,
45600         m4/strndup.m4, m4/strverscmp.m4, m4/timespec.m4, m4/unlocked-io.m4,
45601         m4/userspec.m4, m4/utimecmp.m4, m4/utimens.m4, m4/xalloc.m4,
45602         m4/xnanosleep.m4, m4/xstrtol.m4, m4/yesno.m4:
45603         Use AC_LIBSOURCES and AC_LIBOBJ to indicate source and object files
45604         for these modules.
45605
45606 2005-03-18  Paul Eggert  <eggert@cs.ucla.edu>
45607
45608         * lib/strftime.c (my_strftime): If the underlying strftime returns 0
45609         (which shouldn't happen), generate nothing instead of returning 0
45610         immediately, so that nstrftime (NULL, ...) doesn't return 0.
45611
45612 2005-03-16  Bruno Haible  <bruno@clisp.org>
45613
45614         * modules/stdint (Makefile.am): Use HAVE_LONG_LONG_64BIT instead of
45615         HAVE_LONGLONG_64BIT.
45616
45617 2005-03-16  Bruno Haible  <bruno@clisp.org>
45618
45619         * m4/stdint.m4 (gl_STDINT_H): Define HAVE_LONG_LONG_64BIT instead of
45620         HAVE_LONGLONG_64BIT.
45621
45622 2005-03-16  Bruno Haible  <bruno@clisp.org>
45623
45624         * lib/stdint_.h: Use HAVE_LONG_LONG_64BIT instead of
45625         HAVE_LONGLONG_64BIT.
45626
45627 2005-03-15  Paul Eggert  <eggert@cs.ucla.edu>
45628
45629         * lib/strftime.c (my_strftime): Prepend space to format so that we can
45630         reliably distinguish strftime failure from empty output on POSIX
45631         hosts.
45632
45633 2005-03-15  Paul Eggert  <eggert@cs.ucla.edu>
45634
45635         * lib/iconvme.c (SIZE_MAX): New macro, if not already defined.
45636         (iconv_string): Don't guess a size-zero buffer, as that might cause
45637         buffer overrun.  Instead, avoid multiplying by MB_LEN_MAX if the
45638         result would be 'too large', where 'too large' is (heuristically)
45639         the square root of SIZE_MAX, divided by MB_LEN_MAX to allay
45640         overflow concerns.  This will prevent some unwanted malloc failures
45641         when the inputs are very large.
45642
45643 2005-03-15  Karl Berry  <karl@gnu.org>
45644
45645         * config/srclist.txt (config.rpath): from gettext.
45646         * config/config.rpath: update.
45647
45648 2005-03-15  Bruno Haible  <bruno@clisp.org>
45649
45650         * lib/regex.c (byte_re_match_2_internal): Rename local variable 'not'
45651         to 'negate'.
45652
45653         * lib/regex.c (byte_re_match_2_internal): Reduce scope of same_str_p
45654         variable.
45655
45656         * lib/regex.c (EXTEND_BUFFER, regcomp): Cast the realloc/malloc
45657         results.
45658
45659 2005-03-14  Simon Josefsson  <jas@extundo.com>
45660
45661         * lib/timegm.h: Use proper prototype CPP guards, reported by Dave Love
45662         <fx@gnu.org>.
45663
45664 2005-03-14  Paul Eggert  <eggert@cs.ucla.edu>
45665
45666         * lib/mktime.c (TYPE_TWOS_COMPLEMENT, TYPE_ONES_COMPLEMENT,
45667         TYPE_SIGNED_MAGNITUDE, TYPE_MINIMUM, TYPE_MAXIMUM): Sync from
45668         intprops.h.
45669         * lib/strtol.c: Likewise.
45670
45671 2005-03-14  Jim Meyering  <jim@meyering.net>
45672
45673         * lib/strftime.c (my_strftime) [HAVE_STRFTIME && ! (_NL_CURRENT
45674         && HAVE_STRUCT_ERA_ENTRY)]: Initialize the first byte of ubuf[]
45675         to be nonzero so that we (and caller) can detect the difference
45676         between a valid zero-length expansion and an error return, even
45677         when the underlying strftime fails before writing anything into
45678         that location.
45679
45680 2005-03-14  Bruno Haible  <bruno@clisp.org>
45681
45682         * m4/lib-link.m4, gettext.m4, nls.m4, po.m4:
45683         Update from GNU gettext 0.14.3.
45684
45685 2005-03-10  Jim Meyering  <jim@meyering.net>
45686
45687         * m4/save-cwd.m4 (gl_SAVE_CWD): Check for fchdir.
45688
45689 2005-03-10  Jim Meyering  <jim@meyering.net>
45690
45691         * lib/save-cwd.c [!HAVE_FCHDIR]: Define open, fchdir, and chdir_long
45692         so that this module works on systems without fchdir.
45693
45694 2005-03-09  Paul Eggert  <eggert@cs.ucla.edu>
45695
45696         Factor int-properties macros into a single file, except for
45697         glibc-related files.
45698         * lib/intprops.h: New file.
45699         * lib/getloadavg.c: Include it instead of limits.h.
45700         (INT_STRLEN_BOUND): Remove.
45701         * lib/human.c: Include intprops.h.
45702         (group_number): Use INT_STRLEN_BOUND instead of rolling it ourself.
45703         * lib/human.h (LONGEST_HUMAN_READABLE): Use 146/485 rather than
45704         302/1000.
45705         * lib/inttostr.h: Include intprops.h instead of limits.h.
45706         (INT_STRLEN_BOUND, INT_BUFSIZE_BOUND): Remove.
45707         * lib/mktime.c (TYPE_IS_INTEGER, TYPE_TWOS_COMPLEMENT): New macros,
45708         for consistency with intprops.h.
45709         (time_t_is_integer, twos_complement_arithmetic): Use them.
45710         * lib/sig2str.h: Include <signal.h>, intprops.h.
45711         (INT_STRLEN_BOUND): Remove.
45712         * lib/strftime.c (TYPE_SIGNED): Remove.
45713         (INT_STRLEN_BOUND): Switch to same implementation as intprops.h.
45714         * lib/strtol.c: Adjust comments to match intprops.h.
45715         * lib/userspec.c: Include intprops.h.
45716         (TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Remove.
45717         * lib/utimecmp.c, xnanosleep.c, xstrtol.c: Likewise.
45718         * lib/utimecmp.c (utimecmp): Use TYPE_IS_INTEGER, TYPE_TWOS_COMPLEMENT
45719         instead of rolling our own expressions.
45720         * lib/xstrtol.c: Include xstrtol.h first, to test interface.
45721
45722         * lib/strftime.c: Include <stdbool.h>.  Use bool where appropriate,
45723         instead of int.
45724         (my_strftime): Do not mishandle years close to INT_MAX, by doing
45725         the right thing even if adding 1900 would overflow.  Similarly
45726         for tm_mon + 1 and tm_yday + 1.
45727         Make %Y always equivalent to %C%y, and similarly for %G and %g.
45728         (DO_NUMBER, DO_NUMBER_SPACEPAD): Set digits to d, not a conditional.
45729         (DO_SIGNED_NUMBER): New macro.
45730         (my_strftime) [HAVE_TZNAME]: Don't dump core if tp->tm_dst > 1.
45731
45732 2005-03-07  Bruno Haible  <bruno@clisp.org>
45733
45734         * m4/mmap-anon.m4 (MAP_FILE, MAP_FAILED): Remove definitions.
45735
45736 2005-03-07  Bruno Haible  <bruno@clisp.org>
45737
45738         * lib/pagealign_alloc.c (MAP_FILE, MAP_FAILED): Define fallbacks.
45739
45740 2005-03-04  Derek R. Price  <derek@ximbiot.com>
45741
45742         * gnulib-tool (func_cp_if_changed, func_mv_if_changed): New functions.
45743         (func_import): Only replace files via --import when they have actually
45744         changed.
45745
45746 2005-03-03  Derek R. Price  <derek@ximbiot.com>
45747
45748         * m4/mmap-anon.m4: New file.
45749         * m4/pagealign_alloc.m4: New file.
45750
45751 2005-03-03  Derek R. Price  <derek@ximbiot.com>
45752             Bruno Haible  <bruno@clisp.org>
45753
45754         * modules/pagealign_alloc: New file.
45755         * MODULES.html.sh (Memory management functions): Add pagealign_alloc.
45756
45757 2005-03-03  Derek R. Price  <derek@ximbiot.com>
45758             Bruno Haible  <bruno@clisp.org>
45759
45760         * lib/pagealign_alloc.h: New file.
45761         * lib/pagealign_alloc.c: New file.
45762
45763 2005-03-03  Bruno Haible  <bruno@clisp.org>
45764
45765         * m4/inttypes.m4, isc-posix.m4, once-only.m4:
45766         Use an all-permissive copyright notice, recommended by RMS.
45767
45768 2005-03-02  Bruno Haible  <bruno@clisp.org>
45769
45770         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Undo the replacement here. Because
45771         of AIX, the replacement has to be done only after <string.h> is
45772         included, therefore not in config.h. stpncpy.h does the replacement,
45773         and stpncpy.c uses it.
45774
45775 2005-03-02  Bruno Haible  <bruno@clisp.org>
45776
45777         * lib/stpncpy.h (stpncpy): Define as a macro without arguments, so that
45778         stpncpy.c uses it.
45779
45780 2005-03-01  Paul Eggert  <eggert@cs.ucla.edu>
45781
45782         Remove workaround for bug in Linux kernel 2.6.8 or thereabouts.
45783         The workaround isn't strictly needed for POSIX conformance, and
45784         it's too much of a pain to configure and maintain.  We'll ask
45785         people to fix their kernels instead.
45786         * lib/xnanosleep.c: Don't include gethrxtime.h or xtime.h.
45787         (NANOSLEEP_BUG_WORKAROUND): Remove.
45788         (xnanosleep): Remove the workaround.
45789
45790 2005-03-01  Paul Eggert  <eggert@cs.ucla.edu>
45791
45792         * modules/gettime (Makefile.am): Remove lib_SOURCES line.
45793         Reported by Derek Price.
45794         (Include): Add "timespec.h".
45795
45796         * modules/xnanosleep (Depends-on): Remove gethrxtime.
45797
45798 2005-03-01  Paul Eggert  <eggert@cs.ucla.edu>
45799
45800         * m4/xnanosleep.m4 (gl_XNANOSLEEP): Remove configuration attempting
45801         to detect nanosleep bug.
45802
45803 2005-03-01  Bruno Haible  <bruno@clisp.org>
45804
45805         * lib/vasnprintf.c (EOVERFLOW): Define to a fallback if needed.
45806
45807 2005-02-26  Paul Eggert  <eggert@cs.ucla.edu>
45808
45809         * modules/gethrxtime: New file.
45810         * modules/xnanosleep (Files): Add m4/xnanosleep.m4.
45811         (Depends-on): Add gethrxtime.
45812         (configure.ac): Add gl_XNANOSLEEP.
45813         (Makefile.am): Remove lib_SOURCES line.
45814
45815 2005-02-25  Paul Eggert  <eggert@cs.ucla.edu>
45816
45817         * m4/gethrxtime.m4, m4/xnanosleep.m4: New files.
45818         * m4/gettime.m4 (gl_GETTIME): Check for nanotime.
45819
45820 2005-02-25  Paul Eggert  <eggert@cs.ucla.edu>
45821
45822         * lib/gethrxtime.h, lib/gethrxtime.c, lib/xtime.h: New files.
45823         * lib/timespec.h (gettime): Return void, since it always
45824         succeeds now.  All uses changed.
45825         * lib/gettime.c (gettime) Likewise.
45826         [HAVE_NANOTIME]: Prefer nanotime.
45827         Assume gettimeofday succeeds, as POSIX requires.
45828         Assime time () succeeds, since other code already does.
45829         * lib/xnanosleep.c: Include xtime.h and gethrxtime.h, not xalloc.h.
45830         (timespec_subtract): Remove.
45831         (NANOSLEEP_BUG_WORKAROUND): New constant.
45832         (xnanosleep): Use gethrxtime rather than gettime; this simplifies
45833         things considerably.  Use it only on GNU/Linux hosts, since the
45834         workaround shouldn't be needed elsewhere.
45835
45836 2005-02-24  Bruno Haible  <bruno@clisp.org>
45837
45838         * modules/gettext (Files): Add m4/glibc2.m4.
45839
45840 2005-02-24  Bruno Haible  <bruno@clisp.org>
45841
45842         * m4/gettext.m4, intdiv0.m4, intmax.m4, inttypes-pri.m4, lcmessage.m4:
45843         * m4/lib-link.m4, lib-prefix.m4, nls.m4, po.m4, printf-posix.m4:
45844         * m4/progtest.m4:
45845         Update from GNU gettext 0.14.2.
45846         * m4/glibc2.m4: New file, from GNU gettext 0.14.2.
45847
45848 2005-02-24  Bruno Haible  <bruno@clisp.org>
45849
45850         * lib/localcharset.c: Update from GNU gettext 0.14.2.
45851         * lib/config.charset: Update from GNU gettext 0.14.2.
45852
45853 2005-02-24  Bruno Haible  <bruno@clisp.org>
45854
45855         * lib/gettext.h: Update from GNU gettext 0.14.2.
45856
45857 2005-02-23  Simon Josefsson  <jas@extundo.com>
45858
45859         * m4/iconvme.m4: New file.
45860
45861 2005-02-23  Jim Meyering  <jim@meyering.net>
45862
45863         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Revert yesteday's
45864         change.
45865         Thanks to Bruno Haible for catching it.
45866
45867 2005-02-22  Simon Josefsson  <jas@extundo.com>
45868
45869         * modules/iconvme: New file.
45870
45871         * MODULES.html.sh: Add iconvme.
45872
45873 2005-02-22  Simon Josefsson  <jas@extundo.com>
45874
45875         * lib/iconvme.h, lib/iconvme.c: New files, from libc.
45876
45877 2005-02-22  Simon Josefsson  <jas@extundo.com>
45878
45879         * config/srclist.txt: Sync iconvme.h, iconvme.c from libc.
45880
45881 2005-02-22  Jim Meyering  <jim@meyering.net>
45882
45883         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Fix typo:
45884         s/ifndef/ifdef/.
45885
45886 2005-02-20  Neil Conway  <neilc@samurai.com>
45887
45888         * lib/xgethostname.c (xgethostname): Check for ENOMEM, which is
45889         returned by OSX/Darwin if the specified buffer is not large
45890         enough for the hostname.
45891
45892 2005-02-03  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
45893
45894         * lib/argp-help.c (__argp_help): Create a fake struct argp_state and
45895         pass it to _help, otherwise the latter coredumps trying to
45896         dereference state.root_argp.
45897
45898 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
45899
45900         * modules/chdir-long (Depends-on): Add memrchr.
45901         * modules/memrchr (Files): Add lib/memrchr.h.
45902         (Include): "memrchr.h".
45903
45904 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
45905
45906         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Add AC_LIBSOURCES, for memrchr.h.
45907
45908 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
45909
45910         * lib/memrchr.h: New file.
45911         * lib/chdir-long.c: Include it.
45912         * lib/memrchr.c [!defined _LIBC]: Include it rather than <string.h>
45913         Don't bother including stddef.h.
45914
45915 2005-02-01  Paul Eggert  <eggert@cs.ucla.edu>
45916
45917         * lib/mountlist.h (MOUNTLIST_H_): New macro, to protect against double
45918         inclusion.
45919         Include <sys/types.h>, for dev_t.
45920         (ME_DUMMY, ME_REMOTE): Move from here....
45921         * lib/mountlist.c (ME_DUMMY, ME_REMOTE): To here.
45922         (ME_DUMMY): Count "subfs" as a dummy.  Problem reported by
45923         Dmitry V. Levin.
45924         Include mountlist.h first, to test the interface.
45925
45926 2005-01-29  Bruno Haible  <bruno@clisp.org>
45927
45928         * lib/progname.c (program_name): Initialize.
45929         Needed when linking statically on MacOS X.
45930
45931 2005-01-28  Paul Eggert  <eggert@cs.ucla.edu>
45932
45933         Sync from coreutils.
45934         * modules/getloadavg (Files): Remove m4/getloadavg.m4.
45935         (Depends-on): Add c-strtod.
45936         (configure.ac): Replace gl_FUNC_GETLOADAVG with AC_FUNC_GETLOADAVG.
45937
45938 2005-01-28  Paul Eggert  <eggert@cs.ucla.edu>
45939
45940         Sync from coreutils.
45941         * m4/getloadavg.m4, glibc.m4, search-libs.m4: Remove.
45942
45943         Remove files that are specific to coreutils.
45944         * m4/check-decl.m4, jm-macros.m4, lib-check.m4, prereq.m4: Remove.
45945
45946 2005-01-28  Bruno Haible  <bruno@clisp.org>
45947
45948         * modules/javacomp: New file.
45949         * MODULES.html.sh (Java): Add javacomp.
45950
45951 2005-01-28  Bruno Haible  <bruno@clisp.org>
45952
45953         * m4/javacomp.m4: New file, from GNU gettext.
45954
45955 2005-01-28  Bruno Haible  <bruno@clisp.org>
45956
45957         * lib/javacomp.sh.in: New file, from GNU gettext.
45958         * lib/javacomp.h: New file, from GNU gettext.
45959         * lib/javacomp.c: New file, from GNU gettext.
45960
45961 2005-01-26  Simon Josefsson  <jas@extundo.com>
45962
45963         * lib/gai_strerror.c: Use GPL in header.
45964
45965 2005-01-26  Bruno Haible  <bruno@clisp.org>
45966
45967         * modules/javaexec: New file.
45968         * MODULES.html.sh (Java): Add javaexec.
45969
45970 2005-01-26  Bruno Haible  <bruno@clisp.org>
45971
45972         * m4/javaexec.m4: New file, from GNU gettext.
45973
45974 2005-01-26  Bruno Haible  <bruno@clisp.org>
45975
45976         * lib/javaexec.sh.in: New file, from GNU gettext.
45977         * lib/javaexec.h: New file, from GNU gettext.
45978         * lib/javaexec.c: New file, from GNU gettext.
45979
45980 2005-01-24  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
45981
45982         * modules/lchown (Depends-on): Remove lchown.h
45983
45984 2005-01-24  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
45985
45986         * m4/sysexits.m4 (gl_SYSEXITS): Reverted logic. SYSEXITS_H
45987         must be defined if the header file was not found, in order
45988         to provide a replacement. Reported by Todd Vierling <tv@duh.org>
45989
45990 2005-01-24  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
45991
45992         * lib/argp-help.c (hol_entry_help): Avoid using non-constant
45993         initializers for struct pentry_state.
45994         (__argp_error): Check return value of __asprintf
45995         (__argp_failure): Translate error message
45996
45997         * lib/argp-parse.c: Removed braces around the expansion of N_()
45998
45999 2005-01-23  Paul Eggert  <eggert@cs.ucla.edu>
46000
46001         * m4/acl.m4, afs.m4, alloca.m4, argp.m4, assert.m4, atexit.m4,
46002         backupfile.m4, base64.m4, bison.m4, c-bs-a.m4, c-stack.m4,
46003         c-strtod.m4, calloc.m4, canon-host.m4, canonicalize.m4,
46004         clock_time.m4, cloexec.m4, closeout.m4, d-ino.m4, d-type.m4,
46005         dirfd.m4, dirname.m4, dos.m4, dup2.m4, error.m4, euidaccess.m4,
46006         exclude.m4, exitfail.m4, extensions.m4, fcntl-safer.m4,
46007         file-type.m4, fileblocks.m4, filemode.m4, fnmatch.m4, fpending.m4,
46008         free.m4, fstypename.m4, fsusage.m4, ftruncate.m4, getaddrinfo.m4,
46009         getcwd-path-max.m4, getcwd.m4, getdate.m4, getdomainname.m4,
46010         getgroups.m4, gethostname.m4, getline.m4, getndelim2.m4,
46011         getnline.m4, getopt.m4, getpagesize.m4, getpass.m4, getsubopt.m4,
46012         gettime.m4, gettimeofday.m4, getugroups.m4, getusershell.m4,
46013         group-member.m4, hard-locale.m4, hash.m4, host-os.m4, human.m4,
46014         idcache.m4, inttostr.m4, isdir.m4, jm-winsz1.m4, jm-winsz2.m4,
46015         link-follow.m4, long-options.m4, ls-mntd-fs.m4, lstat.m4,
46016         makepath.m4, mathl.m4, md5.m4, memcasecmp.m4, memchr.m4,
46017         memcmp.m4, memcoll.m4, memcpy.m4, memmem.m4, memmove.m4,
46018         memrchr.m4, memset.m4, mkdir-slash.m4, mkstemp.m4, mktime.m4,
46019         modechange.m4, mountlist.m4, nanosleep.m4, obstack.m4,
46020         path-concat.m4, pathmax.m4, perl.m4, physmem.m4, poll.m4,
46021         posixtm.m4, posixver.m4, putenv.m4, quote.m4, quotearg.m4,
46022         readdir.m4, readtokens.m4, readutmp.m4, regex.m4, rename.m4,
46023         restrict.m4, rmdir-errno.m4, rmdir.m4, rpmatch.m4, same.m4,
46024         savedir.m4, settime.m4, sha1.m4, sig2str.m4, snprintf.m4,
46025         sockpfaf.m4, st_dm_mode.m4, st_mtim.m4, stat.m4, stdint.m4,
46026         stdio-safer.m4, strchrnul.m4, strdup.m4, strerror.m4,
46027         strerror_r.m4, strftime.m4, strndup.m4, strnlen.m4, strsep.m4,
46028         strtod.m4, strtoimax.m4, strtok_r.m4, strtol.m4, strtoll.m4,
46029         strtoul.m4, strtoull.m4, strtoumax.m4, strverscmp.m4, sysexits.m4,
46030         time_r.m4, timegm.m4, timespec.m4, tm_gmtoff.m4, tzset.m4,
46031         uint32_t.m4, uintptr_t.m4, unistd-safer.m4, unlink-busy.m4,
46032         unlocked-io.m4, uptime.m4, userspec.m4, utimbuf.m4, utime.m4,
46033         utimecmp.m4, utimens.m4, utimes-null.m4, vsnprintf.m4, xalloc.m4,
46034         xgetcwd.m4, xreadlink.m4, xstrndup.m4, xstrtod.m4, xstrtoimax.m4,
46035         xstrtol.m4, xstrtoumax.m4, yesno.m4:
46036         Use an all-permissive copyright notice, recommended by RMS.
46037
46038 2005-01-21  Paul Eggert  <eggert@cs.ucla.edu>
46039
46040         * modules/chdir-long (Depends-on): Remove mempcpy.
46041
46042 2005-01-21  Jim Meyering  <jim@meyering.net>
46043
46044         * lib/openat.h (AT_SYMLINK_NOFOLLOW): Define to 4096, so it's the
46045         same value as for Solaris 9.
46046
46047         * lib/chdir-long.c (chdir_long): Rewrite to remove limitation on
46048         component length.  This included changing the parameter to be
46049         of type `char *' rather than `char const *'.
46050         * lib/chdir-long.h (chdir_long): Update prototype.
46051
46052         * lib/openat.c (fdopendir, fstatat): New functions.
46053         * lib/openat.h: Include headers required for use of DIR and struct
46054         stat.
46055         [AT_SYMLINK_NOFOLLOW]: Define.
46056         (fdopendir, fstatat): Add prototypes.
46057
46058 2005-01-21  Bruno Haible  <bruno@clisp.org>
46059
46060         * modules/classpath: New file.
46061         * MODULES.html.sh (Java): Add classpath.
46062
46063 2005-01-21  Bruno Haible  <bruno@clisp.org>
46064
46065         * lib/classpath.h: New file, from GNU gettext.
46066         * lib/classpath.c: New file, from GNU gettext.
46067
46068 2005-01-20  Simon Josefsson  <jas@extundo.com>
46069
46070         * modules/version-etc-fsf: New file.
46071
46072 2005-01-20  Simon Josefsson  <jas@extundo.com>
46073
46074         * lib/version-etc-fsf.c: New file, with version_etc_copyright.
46075         * lib/version-etc.c: Remove version_etc_copyright.
46076         * lib/version-etc.h (version_etc_copyright): Use [] instead of * in
46077         prototype, suggested by Paul Eggert <eggert@CS.UCLA.EDU>.
46078
46079 2005-01-20  Simon Josefsson  <jas@extundo.com>
46080
46081         * lib/base64.h (isbase64): Add.
46082
46083         * lib/base64.c (isb64): Rename to isbase64, use to_uchar instead of
46084         using a unsigned prototype, don't inline.
46085         (base64_decode): Use it.
46086
46087 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
46088
46089         * m4/save-cwd.m4 (gl_SAVE_CWD): Remove check for fcntl; we now assume
46090         it.
46091
46092 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
46093
46094         * lib/save-cwd.c (save_cwd): Remove code to support the case
46095         where fchdir is missing or flaky.
46096
46097 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
46098
46099         * MODULES.html.sh (Command-line arguments): Add version-etc-fsf.
46100
46101 2005-01-19  Paul Eggert  <eggert@cs.ucla.edu>
46102
46103         * modules/mempcpy (Makefile.am): Remove mention of mempcpy.h;
46104         AC_LIBSOURCES now does this.
46105         * MODULES.html.sh (Sizes of integer types <limits.h>): New element,
46106         with new ullong_max module.
46107
46108 2005-01-19  Bruno Haible  <bruno@clisp.org>
46109
46110         * modules/sh-quote: New file.
46111         * MODULES.html.sh (Executing programs): Add sh-quote.
46112
46113 2005-01-19  Bruno Haible  <bruno@clisp.org>
46114
46115         * lib/sh-quote.h: New file, from GNU gettext.
46116         * lib/sh-quote.c: New file, from GNU gettext.
46117
46118 2005-01-18  Paul Eggert  <eggert@cs.ucla.edu>
46119
46120         Merge from coreutils.
46121         * m4/ullong_max.m4: New file.
46122         * m4/jm-macros.m4 (gl_MACROS): Require gl_ULLONG_MAX.
46123         (gl_MACROS): Assume localeconv exists.
46124
46125 2005-01-18  Paul Eggert  <eggert@cs.ucla.edu>
46126
46127         Merge changes from coreutils, as described below in several
46128         changelogs dated today.
46129
46130         * lib/save-cwd.c: Include "save-cwd.h" before other include files.
46131         (O_DIRECTORY): Remove; not needed here, since "." must be
46132         a directory.  All uses removed.
46133         (save_cwd): Use __sgi || __sun, not sun || __sun.  __sun is
46134         universal on Suns, and we also need to test for IRIX.
46135         Revamp code to use 'if' rather than '#if'.
46136         Avoid unnecessary comparison of cwd->desc to 0.
46137
46138         * lib/utimens.c (futimens): Robustify the previous patch, by checking
46139         for known valid error numbers rather than observed invalid ones.
46140
46141 2005-01-18  Paul Eggert  <eggert@cs.ucla.edu>
46142
46143         * modules/ullong_max: New file.
46144
46145         * modules/chdir-long, modules/openat: New files.
46146         * modules/save-cwd (Depends-on): Depend on chdir-long.
46147         (Makefile.am): Remove lib_SOURCES; now handled by AC_LIBSOURCES.
46148
46149 2005-01-18  Jim Meyering  <jim@meyering.net>
46150
46151         Merge from coreutils.
46152         * m4/chdir-long.m4, m4/openat.m4: New files.
46153         * m4/save-cwd.m4 (gl_SAVE_CWD): Add AC_LIBSOURCES for save-cwd.c,
46154         save-cwd.h.  Add AC_LIBOBJ for save-cwd.
46155         * m4/chown.m4 (gl_FUNC_CHOWN): When cross-compiling, assume that chown
46156         is sane and DOES follow symlinks.  Besides, testing 20 different
46157         systems found no broken chown implementations.
46158         Prompted by a change in rsync's copy of this macro.
46159         * m4/jm-macros.m4 (gl_MACROS): Require gl_FUNC_CHDIR_LONG.
46160
46161         * m4/lchown.m4 (gl_FUNC_LCHOWN): Use AC_LIBSOURCES.
46162
46163         * m4/utimes.m4: Work around tests/touch/empty-file failure on a system
46164         (sparc64, Linux-2.4.28, glibc-2.3.3) that didn't honor utimes'
46165         NULL-means-set-to-current-time semantics.
46166         Remove temporary file immediately, rather than waiting
46167         for configure's at-exit trap code to do it.
46168
46169 2005-01-18  Jim Meyering  <jim@meyering.net>
46170
46171         * lib/version-etc.c (version_etc_copyright): Update copyright date.
46172
46173         * lib/utimens.c (futimens): Account for the fact that futimes
46174         can also fail with errno == ENOSYS or errno == ENOENT.
46175         Patch from Dmitry V. Levin.
46176
46177         Change the name of the robust chdir function from chdir to chdir_long.
46178         * lib/save-cwd.c: Include chdir-long.h rather than chdir.h.
46179         (restore_cwd): Use chdir_long, not chdir.
46180         * lib/chdir-long.c: Renamed from chdir.c.
46181         * lib/chdir-long.h: Renamed from chdir.h.
46182         [!defined PATH_MAX]: Define chdir_long to chdir on systems like the
46183         Hurd.
46184
46185 2005-01-18  Bruno Haible  <bruno@clisp.org>
46186
46187         * m4/allocsa.m4, m4/codeset.m4, m4/copy-file.m4, m4/eaccess.m4:
46188         * m4/eealloc.m4, m4/eoverflow.m4, m4/execute.m4, m4/fatal-signal.m4:
46189         * m4/findprog.m4, m4/glibc21.m4, m4/iconv.m4, m4/intmax_t.m4:
46190         * m4/inttypes_h.m4, m4/lib-ld.m4, m4/lib-link.m4, m4/lib-prefix.m4:
46191         * m4/linebreak.m4, m4/localcharset.m4, m4/longdouble.m4:
46192         * m4/longlong.m4, m4/mbrtowc.m4, m4/mbstate_t.m4, m4/mbswidth.m4:
46193         * m4/mkdtemp.m4, m4/pipe.m4, m4/readlink.m4, m4/safe-read.m4:
46194         * m4/safe-write.m4, m4/setenv.m4, m4/sig_atomic_t.m4:
46195         * m4/signalblocking.m4, m4/signed.m4, m4/size_max.m4, m4/ssize_t.m4:
46196         * m4/stdbool.m4, m4/stdint_h.m4, m4/stpcpy.m4, m4/stpncpy.m4:
46197         * m4/strcase.m4, m4/strcspn.m4, m4/strpbrk.m4, m4/strstr.m4:
46198         * m4/ucs4-utf.m4, m4/uintmax_t.m4, m4/ulonglong.m4, m4/unicodeio.m4:
46199         * m4/utf-ucs4.m4, m4/vasnprintf.m4, m4/vasprintf.m4:
46200         * m4/wait-process.m4, m4/wchar_t.m4, m4/wint_t.m4, m4/xsize.m4:
46201         Use an all-permissive copyright notice, recommended by RMS.
46202
46203 2005-01-18  Bob Proulx  <bob@proulx.com>
46204
46205         * lib/obstack.c [DEFAULT_ALIGNMENT]: Use an intermediate type to
46206         simplify offsetof() macro construct to avoid compile failure with
46207         native HP-UX 11.0 ANSI C compiler.
46208
46209 2005-01-17  Bruno Haible  <bruno@clisp.org>
46210
46211         * lib/stpncpy.c: Remove HAVE_STPNCPY and gnu_stpncpy renaming,
46212         redundant because stpncpy.m4 takes care of it.
46213
46214 2005-01-17  Bruno Haible  <bruno@clisp.org>
46215
46216         * lib/progreloc.c: Include xalloc.h instead of xmalloc.h.
46217
46218 2005-01-17  Bruno Haible  <bruno@clisp.org>
46219
46220         * lib/progreloc.c (xstrdup): Define as strdup if no xmalloc should be
46221         used.
46222
46223 2005-01-17  Bruno Haible  <bruno@clisp.org>
46224
46225         * lib/fwriteerror.h (fwriteerror): Change specification to include
46226         fclose.
46227         * lib/fwriteerror.c: Include <stdbool.h>.
46228         (fwriteerror): At the end, close the file stream. Record whether
46229         stdout was already closed.
46230
46231 2005-01-17  Bruno Haible  <bruno@clisp.org>
46232
46233         * lib/execute.c (environ): Declare if needed.
46234         * lib/pipe.c (environ): Likewise.
46235         Reported by Michael Schloh von Bennewitz <michael.schloh@cw.com>.
46236
46237 2005-01-11  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
46238
46239         * modules/argp: Depend on vsnprintf
46240
46241 2005-01-10  Jim Meyering  <jim@meyering.net>
46242
46243         * modules/closeout (Depends-on): Add atexit.
46244
46245 2005-01-06  Bruno Haible  <bruno@clisp.org>
46246
46247         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Rename stpncpy to gnu_stpncpy here.
46248
46249 2005-01-04  Paul Eggert  <eggert@cs.ucla.edu>
46250
46251         * lib/human.c (SIZE_MAX, UINTMAX_MAX): Move these conditional
46252         definitions to be after all include files, to avoid collisions.
46253         Problem reported by Bob Proulx.
46254
46255 2005-01-04  Jim Meyering  <jim@meyering.net>
46256
46257         Changes imported from coreutils.
46258         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Rather than using "conftestXXXXXX"
46259         as the mkstemp template, use a temporary directory and an
46260         8.3-friendly template to avoid trouble on systems like DJGPP.
46261         Reported by Juan M. Guerrero via Stepan Kasal.
46262         * m4/(gl_FUNC_MKSTEMP): Include <unistd.h> for the declaration of
46263         close. Remove the temporary directory right away, rather than waiting
46264         for configure's at-exit trap code to do it.
46265         Suggestion from Stepan Kasal.
46266
46267 2005-01-01  Simon Josefsson  <jas@extundo.com>
46268
46269         * gnulib-tool: Print #include directives when --import'ing.
46270
46271 2004-12-28  Simon Josefsson  <jas@extundo.com>
46272
46273         * tests/test-base64.c: Include required header files.  Remove
46274         unused variables.
46275
46276 2004-12-28  Paul Eggert  <eggert@cs.ucla.edu>
46277
46278         * modules/error (Depends-on): Remove gettext.
46279
46280 2004-12-28  Paul Eggert  <eggert@cs.ucla.edu>
46281
46282         * lib/error.c [!_LIBC && !ENABLE_NLS]: Do not include "gettext.h";
46283         not needed.  This removes a dependency on the gettext module.
46284         [defined _LIBC]: Do not include <libintl.h>; not needed.
46285
46286 2004-12-24  Paul Eggert  <eggert@cs.ucla.edu>
46287
46288         * m4/c-strtod.m4 (gl_C99_STRTOLD): New macro.
46289         (gl_C_STRTOD): Use it instead of AC_CHECK_DECLS_ONCE(strtold).
46290
46291 2004-12-24  Paul Eggert  <eggert@cs.ucla.edu>
46292
46293         * lib/c-strtod.c (STRTOD): Depend on HAVE_C99_STRTOLD, not
46294         HAVE_DECL_STRTOLD.
46295
46296 2004-12-23  Paul Eggert  <eggert@cs.ucla.edu>
46297
46298         * modules/getdate (Depends-on): Remove alloca-opt.
46299
46300 2004-12-23  Paul Eggert  <eggert@cs.ucla.edu>
46301
46302         * m4/getdate.m4 (gl_GETDATE): Remove AC_FUNC_ALLOCA.
46303
46304 2004-12-23  Paul Eggert  <eggert@cs.ucla.edu>
46305
46306         * lib/argp-parse.c: Include <stddef.h>.
46307         (alignof, alignto): New macros.
46308         (parser_init): Don't assume that void * is aligned sufficiently
46309         for struct option.
46310
46311         * lib/getdate.y (YYSTACK_USE_ALLOCA): Define to 0, since there's no
46312         need to extend the stack.
46313         (YYINITDEPTH): New macro, so that the initial stack isn't overly
46314         large.
46315
46316 2004-12-22  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
46317
46318         * lib/argp-parse.c (parser_init): Avoid arithmetics on void pointers.
46319
46320 2004-12-19  Paul Eggert  <eggert@cs.ucla.edu>
46321
46322         * modules/regex (lib_SOURCES): Remove regex.c, undoing previous
46323         (2004-10-24) change.  Apparently this was a false alarm.
46324
46325         * modules/getdate: Depend on alloca-opt, not alloca.
46326
46327 2004-12-19  Paul Eggert  <eggert@cs.ucla.edu>
46328
46329         * lib/alloca_.h: Conditionalize on _GNULIB_ALLOCA_H, not _ALLOCA_H.
46330         Remove now-obsolete comment about AIX.
46331         * lib/getdate.y: Include <alloca.h> only if HAVE_ALLOCA.
46332         (YYSTACK_USE_ALLOCA): Define to 0 if !HAVE_ALLOCA.
46333         (YYMAXDEPTH): New macro.
46334
46335 2004-12-18  Simon Josefsson  <jas@extundo.com>
46336
46337         * modules/alloca: Depend on alloca-opt, instead of duplicating it.
46338
46339 2004-12-18  Bruno Haible  <bruno@clisp.org>
46340
46341         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Also test for sigaction.
46342
46343 2004-12-18  Bruno Haible  <bruno@clisp.org>
46344
46345         * lib/fatal-signal.c (fatal_signals): Make non-const.
46346         (init_fatal_signals): New function.
46347         (uninstall_handlers, install_handlers): Ignore signals that were set to
46348         SIG_IGN.
46349         (at_fatal_signal): Call init_fatal_signals.
46350         (init_fatal_signal_set): Likewise. Ignore signals that were set to
46351         SIG_IGN.
46352         Reported by Paul Eggert.
46353
46354 2004-12-18  Bruno Haible  <bruno@clisp.org>
46355
46356         * doc/alloca.texi: New file.
46357         * doc/alloca-opt.texi: New file.
46358
46359 2004-12-17  Jim Meyering  <jim@meyering.net>
46360
46361         * config/install-sh: Use `(exit N); exit N', not `(exit N); exit'.
46362         Otherwise, install-sh could exit with improper exit status when
46363         exiting via a trapped interrupt.  Thanks to a report from Bob Proulx.
46364
46365 2004-12-16  Simon Josefsson  <jas@extundo.com>
46366
46367         * tests/test-base64.c: Add license.
46368
46369 2004-12-15  Stepan Kasal  <address@hidden>
46370
46371         * gnulib-tool (func_emit_lib_Makefile_am): Shorten a long sed command.
46372
46373 2004-12-12  Paul Eggert  <eggert@cs.ucla.edu>
46374
46375         * modules/getcwd (Files): Add m4/d-ino.m4.
46376         Suggested by Mark D. Baushke.
46377
46378 2004-12-08  Paul Eggert  <eggert@cs.ucla.edu>
46379
46380         * lib/getdate.y (textint): New member "negative".
46381         (time_zone_hhmm): New function.
46382         Expect 14 shift-reduce conflicts, not 13.
46383         (o_colon_minutes): New rule.
46384         (time, zone): Use it to add support for +HH:MM, UTC+HH:MM.
46385         (yylex): Set the "negative" member of signed numbers.
46386
46387 2004-12-08  Paul Eggert  <eggert@cs.ucla.edu>
46388
46389         * doc/getdate.texi (Time of day items, Time zone items):
46390         Describe new formats +00:00, UTC+00:00.
46391
46392 2004-12-07  Paul Eggert  <eggert@cs.ucla.edu>
46393
46394         * m4/ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): Fix typo in previous change:
46395         spurious "-l"s.  Problem reported by Stepan Kasal.
46396
46397 2004-12-06  Paul Eggert  <eggert@cs.ucla.edu>
46398
46399         * m4/ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): New macro, to work around bug
46400         in Autoconf 2.59.  Problem reported by Mark D. Baushke.
46401
46402 2004-12-04  Simon Josefsson  <jas@extundo.com>
46403
46404         * modules/getaddrinfo (License): Add LGPL, reported by Yoann
46405         Vandoorselaere <yoann@prelude-ids.org>.
46406
46407 2004-12-04  Paul Eggert  <eggert@cs.ucla.edu>
46408
46409         Changes imported from coreutils.
46410         * m4/hard-locale.m4 (gl_HARD_LOCALE): Assume locale.h and setlocale
46411         exist.
46412         * m4/human.m4 (gl_HUMAN): Assume locale.h and localeconv exist.
46413
46414 2004-12-04  Paul Eggert  <eggert@cs.ucla.edu>
46415
46416         Changes imported from coreutils.
46417         * lib/hard-locale.c: Assume <locale.h> exists.
46418         Include "strdup.h".
46419         (GLIBC_VERSION): New macro.
46420         (hard_locale): Assume setlocale exists.
46421         Rewrite to avoid #ifdef.
46422         Use strdup rather than malloc + strcpy.
46423         * lib/human.c: Assume <locale.h> exists.
46424         (human_readable): Assume localeconv exists.
46425
46426 2004-12-04  Paul Eggert  <eggert@cs.ucla.edu>
46427
46428         * modules/hard-locale (Depends-on): Add strdup.
46429
46430 2004-12-01  Jakub Jelinek  <jakub@redhat.com>
46431
46432         * lib/mktime.c (__mktime_internal): If SEC_REQUESTED != SEC,
46433         convert T2, not T.  (Imported from libc.)
46434
46435 2004-11-30  Simon Josefsson  <jas@extundo.com>
46436
46437         * modules/restrict (License): Change to LGPL.
46438
46439 2004-11-30  Simon Josefsson  <jas@extundo.com>
46440
46441         * m4/restrict.m4: Add copyright and copying conditions.
46442
46443 2004-11-30  Simon Josefsson  <jas@extundo.com>
46444
46445         * m4/base64.m4: New file.
46446
46447 2004-11-30  Simon Josefsson  <jas@extundo.com>
46448
46449         * MODULES.html.sh (Extra functions based on ANSI C 89): Add
46450         base64.
46451
46452         * tests/test-base64.c: New file.
46453
46454         * modules/base64: New file.
46455
46456 2004-11-30  Paul Eggert  <eggert@cs.ucla.edu>
46457
46458         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX):
46459         Define HAVE_PARTLY_WORKING_GETCWD if getcwd is partly working.
46460
46461         * m4/readutmp.m4 (gl_READUTMP): Don't check for sys/param.h.
46462
46463 2004-11-30  Paul Eggert  <eggert@cs.ucla.edu>
46464
46465         * lib/getcwd.c (is_ENAMETOOLONG): New macro.
46466         (__getcwd.c): Don't restore errno; glibc doesn't.
46467         [HAVE_PARTLY_WORKING_GETCWD && !defined AT_FDCWD]: Try system getcwd
46468         first, falling back to our code only if its results look suspicious.
46469         Ensure that the resulting buffer is only as large as necessary.
46470
46471         * lib/readutmp.c: Include readutmp.h first.
46472         Include <errno.h>, since readutmp.h no longer does that.
46473         * lib/readutmp.h: Don't include <errno.h>,
46474         <sys/param.h>, <time.h>; not needed to establish interface.
46475         (errno): Remove decl.
46476         (HAVE_STRUCT_XTMP_UT_TYPE): Remove; no longer needed.
46477         (UT_TYPE_EQ, UT_TYPE_NOT_DEFINED, UT_TYPE_BOOT_TIME,
46478         UT_TYPE_USER_PROCESS, IS_USER_PROCESS): New macros.
46479
46480 2004-11-28  Simon Josefsson  <jas@extundo.com>
46481
46482         * lib/base64.h, base64.c: New file.
46483
46484 2004-11-27  Paul Eggert  <eggert@cs.ucla.edu>
46485
46486         * lib/getcwd.h: New file, which I forgot to check in on 2004-11-25.
46487
46488 2004-11-26  Paul Eggert  <eggert@cs.ucla.edu>
46489
46490         * modules/getcwd (Files): Add lib/getcwd.h, m4/getcwd.m4.
46491         (Depends-on): Remove pathmax, same.  Add mempcpy.
46492         (configure.ac): GL_FUNC_GETCWD_PATH_MAX -> gl_FUNC_GETCWD.
46493         (Makefile.am): Append getcwd.h to lib_SOURCES.
46494         (Include): Add getcwd.h.
46495         (Maintainer): Change from Jim Meyering to "all, glibc",
46496         since getdate now uses intended-for-glibc code.
46497         * modules/xgetcwd (Files): Remove m4/getcwd.m4.
46498         (Depends-on): Depend on getcwd.  Do not depend on pathmax.
46499
46500 2004-11-25  Paul Eggert  <eggert@cs.ucla.edu>
46501
46502         Fix problems reported by Scott S. Tinsley for HP-UX 11.11 using
46503         HP's ANSI C compiler.
46504         * lib/fsusage.c (statvfs) [HAVE_SYS_STATVFS_H]: Remove decl.
46505         Declaring int functions causes warnings on some modern systems and
46506         shouldn't be needed to compile on ancient ones.
46507         * lib/same.c (MIN) [defined MIN]: Don't define, since it's already
46508         defined.
46509
46510         * lib/getcwd.c: Replace by a copy of glibc/sysdeps/posix/getcwd.c, but
46511         with the following changes.
46512         (__set_errno): Parenthesize properly.
46513         Include <stdbool.h>.
46514         (MIN, MAX, MATCHING_INO): New macros.
46515         (__getcwd): Define with prototype, not K&R form.
46516         Use heuristics to allocate default buffer on stack if possible.
46517         If AT_FDCWD is defined, use openat and fstatat to avoid O(N**2)
46518         behavior, and to avoid the PATH_MAX limit when computing
46519         ../../../../...
46520         Use MATCHING_INO to compare inode number to file.
46521         Check for arithmetic overflow in size calculations.
46522         Fix bug in reallocation of dot array that caused getcwd to fail
46523         on directories nested deeper than 75.
46524         Be more careful about saving errno on error.
46525         Do not use realloc; use only free+malloc, as this is a bit
46526         more flexible and avoids a needless copy operation.
46527         Do not inspect st_dev and st_ino for symbolic links; POSIX
46528         doesn't specify the latter.
46529         Check for closedir errors.
46530         Avoid needless casts.
46531         Use "#ifdef weak_alias" around weak_alias, to be like other
46532         glibc code.
46533         The following changes to getcwd.c have effect only when used in
46534         gnulib; they have no effect inside glibc proper.
46535         (#pragma alloca) [defined _AIX && !defined __GNUC__]: Remove,
46536         as alloca isn't used.
46537         (alloca, __alloca): Likewise.
46538         [!_LIBC]: Include "getcwd.h", "mempcpy.h".
46539         Include <stddef.h>, <stdlib.h>, <string.h>, <limits.h>
46540         unconditionally, as gnulib assumes C89 or better.
46541         Do not include <sys/param.h>.
46542         (errno) [!defined __GNU_LIBRARY__ && !defined STDC_HEADERS]: Remove
46543         no-longer-necessary 'extern int errno' decl; gnulib assumes C89 or
46544         better.
46545         (NULL) [!defined NULL]: Remove; we assume C89 or better.
46546         Include <dirent.h> in a way that is compatible with modern Autoconf.
46547         (_D_ALLOC_NAMELEN, _D_EXACT_NAMLEN):
46548         New macros, if not already defined.
46549         Include <unistd.h> if _LIBC, not if __GNU_LIBRARY__.
46550         Use "_LIBC", not "defined _LIBC", for consistency.
46551         (HAVE_MEMPCPY): Remove; no longer needed now that gnulib has
46552         a mempcpy module.
46553         (__lstat, __closedir, __opendir, __readdir) [!_LIBC]: New macros.
46554         (GETCWD_RETURN_TYPE): Remove.  All uses replaced by char *.
46555         * lib/xgetcwd.c: David MacKenzie's old code was removed, so give
46556         credit only to Jim Meyering and adjust the copyright dates.
46557         Do not include <limits.h>, <stdio.h>, <sys/types.h>,
46558         <stdlib.h>, <unistd.h>, "pathmax.h".
46559         Instead, include "xgetcwd.h" (first) and "getcwd.h".
46560         (INITIAL_BUFFER_SIZE): Remove.
46561         (xgetcwd): Rely on getcwd, since we now depend on a reliable one.
46562
46563 2004-11-25  Paul Eggert  <eggert@cs.ucla.edu>
46564
46565         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Renamed from
46566         GL_FUNC_GETCWD_PATH_MAX for consistency.  All uses changed.
46567         Use the _ONCE methods, for efficiency.
46568         Check for fcntl.h.  In test program, include <errno.h>
46569         and <fcntl.h> if available.  Remove old K&R cruft from
46570         test program.  Check for common errors in GNU/Linux,
46571         OpenBSD, and Solaris.  Just set gl_cv_func_getcwd_path_max;
46572         don't do AC_LIBOBJ, as that's getcwd.m4's job.
46573         * m4/getcwd.m4 (gl_FUNC_GETCWD_NULL): Renamed from
46574         AC_FUNC_GETCWD_NULL.  All used changed.  Change cache variable
46575         name accordingly.
46576         (gl_FUNC_GETCWD, gl_PREREQ_GETCWD): New macros.  Revamp to
46577         accommodate new getcwd.c.
46578         * m4/jm-macros.m4 (gl_MACROS): Don't require GL_FUNC_GETCWD_PATH_MAX.
46579         * m4/prereq.m4 (gl_PREREQ): Add gl_FUNC_MEMPCPY.
46580         * m4/xgetcwd.m4 (gl_XGETCWD): Replace with gl_FUNC_GETCWD, since
46581         that's all we need now.
46582
46583 2004-11-23  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
46584
46585         * m4/argp.m4 (gl_ARGP): Require gl_GETOPT_SUBSTITUTE unconditionally:
46586         argp-parse.c depends on getopt internals, that means we should
46587         always use our getopt, to be on the safe side.
46588         * m4/getopt.m4 (gl_GETOPT): Check if GETOPT_H is already set, in
46589         order not to spoil the result of an eventual previous invocation
46590         of gl_GETOPT_SUBSTITUTE.
46591
46592 2004-11-23  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
46593
46594         * lib/getopt_.h: Re-addition of __getopt_argv_const caused
46595         redefinition warnings. To avoid them, include the defines
46596         in `#if !defined __need_getopt ... #endif'. The only place
46597         where __getopt_argv_const is used is in definitions
46598         of getopt_long and getopt_long_only below, which are as well
46599         protected by `#ifndef __need_getopt'.
46600         [defined __GETOPT_PREFIX && !defined __need_getopt]: Undef
46601         __need_getopt after including <stdio.h> and <unistd.h> These
46602         headers might have defined it.
46603
46604 2004-11-23  Paul Eggert  <eggert@cs.ucla.edu>
46605
46606         * m4/utimens.m4 (gl_UTIMENS): Check for futimes function.
46607
46608 2004-11-23  Paul Eggert  <eggert@cs.ucla.edu>
46609
46610         * lib/utimens.c (__attribute__, ATTRIBUTE_UNUSED): New macros.
46611         (futimens): New function, which uses futimes if available.
46612         (futimens, utimens): Support timespec==NULL, with same semantics
46613         as utime and utimens.
46614         * lib/utimens.h (futimens): New decl.
46615
46616 2004-11-23  Jim Meyering  <jim@meyering.net>
46617
46618         * lib/getopt_.h: Remove trailing blanks.
46619
46620 2004-11-23  Jim Meyering  <jim@meyering.net>
46621
46622         * lib/__fpending.c: Add comment.
46623
46624 2004-11-22  Paul Eggert  <eggert@cs.ucla.edu>
46625
46626         * modules/canonicalize (Depends-on): Add xreadlink.
46627         Problem reported by James Youngman.
46628
46629 2004-11-20  Paul Eggert  <eggert@cs.ucla.edu>
46630
46631         * lib/getopt_.h (__GETOPT_CONCAT, __GETOPT_XCONCAT, __GETOPT_ID):
46632         New macros.
46633         (getopt, getopt_long, getopt_long_only, optarg, opterr, optind,
46634         optopt): Use them instead of invoking ## directly; otherwise, the
46635         symbols will be __GETOPT_PREFIXgetopt rather than rpl_getopt.
46636
46637 2004-11-19  Bruno Haible  <bruno@clisp.org>
46638
46639         * lib/strtok_r.c: Move comments from here...
46640         * lib/strtok_r.h: ... to here.
46641
46642 2004-11-17  Paul Eggert  <eggert@cs.ucla.edu>
46643
46644         * m4/calloc.m4 (_AC_FUNC_CALLOC_IF): Check for buggy calloc
46645         implementations that mishandle size_t overflow.
46646
46647 2004-11-17  Paul Eggert  <eggert@cs.ucla.edu>
46648
46649         * lib/realloc.c (rpl_realloc): Call 'free' if n==0, since realloc
46650         might fail.  Problem reported by Yoann Vandoorselaere.
46651         * lib/calloc.c (rpl_calloc): Defend against buggy calloc
46652         implementations that mishandle size_t overflow.
46653
46654 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
46655
46656         * modules/canon-host (Depends-on): Add strdup.
46657
46658 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
46659
46660         * m4/canon-host.m4 (gl_CANON_HOST): Check for getaddrinfo.
46661
46662 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
46663
46664         * lib/canon-host.c: Include "strdup.h".
46665         (canon_host): Use getaddrinfo if available, so that IPv6 works.
46666         Use strdup instead of malloc/strcpy to duplicate strings.
46667
46668         * lib/human.h (LONGEST_HUMAN_READABLE): Add 1 for space before unit.
46669         (human_space_before_unit): New constant.
46670         * lib/human.c (human_readable): Support it.
46671
46672         * lib/xgetcwd.c: Include <limits.h>, for PATH_MAX.
46673         (xgetcwd): Set errno correctly when failing.
46674         Work around Solaris 9 bug: getcwd sets errno==ERANGE even though
46675         the failure is actually due to a PATH_MAX problem.
46676
46677         Further getopt changes to make it more likely that glibc will
46678         buy the changes back.
46679         * lib/getopt.c (POSIXLY_CORRECT): New constant.
46680         (getopt): Use it, so to preserve glibc semantic
46681         * lib/getopt1.c (getopt_long, getopt_long_only): Arg is char * const *
46682         when compiling for libc.
46683         * lib/getopt_.h (__getopt_argv_const): Bring it back.
46684         (getopt_long, getopt_long_only): Use it.
46685
46686         * lib/getopt.c (_getopt_initialize, _getopt_internal_r,
46687         _getopt_internal): New arg POSIXLY_CORRECT.  All callers changed.
46688         (getopt): Argv is now char * const *, as per standard.
46689         (_getopt_internal_r, _getopt_internal): Argv is now char **,
46690         not char *__getopt_argv_const *.
46691         * lib/getopt1.c (getopt_long, _getopt_long_r, getopt_long_only,
46692         _getopt_long_only_r): Likewise.
46693         * lib/getopt_.h (getopt, getopt_long, geopt_long_only): Likewise.
46694         * lib/getopt_int.h (_getopt_internal, _getopt_internal_r,
46695         _getopt_long_r, _getopt_long_only_r): Likewise.
46696         * lib/getopt_.h (__getopt_argv_const): Remove.
46697         (getopt): Argv is now char * const *, as per standard.
46698
46699         * lib/getdate.y (tORDINAL): New token.
46700         (day, relunit): Allow it for relative times.
46701         (relative_time_table): Use tORDINAL for ordinals.
46702
46703 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
46704
46705         * doc/getdate.texi (General date syntax): "next" is 1, not 2.
46706         Document that "second" isn't allowed as an ordinal number.
46707
46708 2004-11-16  Jim Meyering  <jim@meyering.net>
46709
46710         * modules/closeout (Depends-on): Add fpending.
46711
46712 2004-11-15  Jim Meyering  <jim@meyering.net>
46713
46714         * lib/closeout.c: Include "__fpending.h" once again.
46715         Include <stdbool.h>.
46716         (close_stdout): Don't fail just because stdout was closed initially,
46717         since some programs don't write to stdout in the normal course of
46718         operation (other than --version and --help), and we don't want this
46719         function to make e.g. `touch file >&-' fail.
46720         But do fail if it was closed and someone has tried to write to it.
46721         E.g., `printf foo >&-' must fail.
46722
46723 2004-11-13  Jim Meyering  <jim@meyering.net>
46724
46725         * m4/jm-macros.m4: Do require gl_FUNC_FPENDING.
46726
46727 2004-11-12  Simon Josefsson  <jas@extundo.com>
46728
46729         * config/srclist.txt: Add strtok_r.c, glibc bought our changes, but a
46730         small doc fix is still pending.
46731
46732 2004-11-11  Simon Josefsson  <jas@extundo.com>
46733
46734         * modules/strtok_r: New file.
46735
46736         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
46737         strtok_r.
46738
46739 2004-11-11  Simon Josefsson  <jas@extundo.com>
46740
46741         * m4/strtok_r.m4: New file.
46742
46743         * m4/getopt.m4: Replace opterr.
46744
46745 2004-11-11  Simon Josefsson  <jas@extundo.com>
46746
46747         * lib/strtok_r.h, strtok_r.c: New file.
46748
46749 2004-11-11  Paul Eggert  <eggert@cs.ucla.edu>
46750
46751         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE): Define __GETOPT_PREFIX instead
46752         of replacing opterr, getopt, etc.  This should handle the
46753         powerpc-apple-darwin5.5 problem recently noted by Simon Josefsson.
46754
46755 2004-11-11  Paul Eggert  <eggert@cs.ucla.edu>
46756
46757         * lib/getopt_.h (__getopt_argv_const): New macro, to be used so that
46758         we can stop lying to compilers about the constness of argv when we
46759         are compiled outside glibc.
46760         (getopt, getopt_long, getopt_long_only): Use it.
46761         * lib/getopt.c (_getopt_initialize, _getopt_internal_r,
46762         _getopt_internal, getopt): Likewise.
46763         * lib/getopt1.c (getopt_long, _getopt_long_r, getopt_long_only,
46764         _getopt_long_only_r): Likewise.
46765         * lib/getopt_int.h (_getopt_internal, _getopt_internal_r,
46766         _getopt_long_r, _getopt_long_only_r): Likewise.
46767
46768         * lib/getopt_.h [defined __GETOPT_PREFIX && !defined __need_getopt]:
46769         Include <stdlib.h> and <stdio.h>, and <unistd.h> if available.
46770         Then rename getopt to __GETOPT_PREFIX##getopt, and so forth for
46771         the other external symbols.
46772         (getopt) [!defined __GNU_LIBRARY]: Use prototype, not old-style
46773         declaration, since the above renaming now works around collisions.
46774
46775 2004-11-11  Jim Meyering  <jim@meyering.net>
46776
46777         * lib/linebreak.c: Remove trailing blanks.
46778         * lib/alloca_.h: Likewise.
46779         * lib/acosl.c: Likewise.
46780         * lib/euidaccess.c: Likewise.
46781         * lib/allocsa.h: Likewise.
46782
46783 2004-11-10  Simon Josefsson  <jas@extundo.com>
46784
46785         * m4/getaddrinfo.m4: New file.
46786
46787 2004-11-10  Simon Josefsson  <jas@extundo.com>
46788
46789         * lib/getaddrinfo.h, lib/getaddrinfo.c: New files.
46790
46791 2004-11-10  Simon Josefsson  <jas@extundo.com>
46792
46793         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
46794         getaddrinfo.
46795
46796         * modules/getaddrinfo: New file.
46797
46798 2004-11-10  Paul Eggert  <eggert@cs.ucla.edu>
46799
46800         * m4/prereq.m4 (gl_PREREQ): Require gt_FUNC_SETENV.
46801
46802 2004-11-10  Paul Eggert  <eggert@cs.ucla.edu>
46803
46804         * lib/mktime.c (SHR): New macro, which is a portable
46805         substitute for >> that should work even on Crays.
46806         (TIME_T_MIDPOINT, ydhms_diff, __mktime_internal): Use it.
46807         Problem reported by Mark D. Baushke in
46808         <http://lists.gnu.org/archive/html/bug-gnulib/2004-11/msg00071.html>.
46809         * lib/getdate.y (SHR): Likewise.
46810         (tm_diff): Use it.
46811         * lib/strftime.c (SHR): Likewise.
46812         (tm_diff): Use it.
46813         * lib/quotearg.c (struct quoting_options): Use unsigned int for
46814         quote_these_too, so that right shifts are well defined.  All uses
46815         changed.
46816
46817 2004-11-10  Jim Meyering  <jim@meyering.net>
46818
46819         Ensure that no close failure goes unreported.
46820         * lib/closeout.c (close_stdout): Always close stdout.  I.e., don't
46821         return early when it seems there's nothing to flush.
46822         Don't include __fpending.h.
46823
46824 2004-11-10  Jim Meyering  <jim@meyering.net>
46825
46826         * modules/closeout (Depends-on): Remove fpending.
46827
46828 2004-11-10  Jim Meyering  <jim@meyering.net>
46829
46830         * m4/jm-macros.m4 (gl_MACROS): Don't require gl_FUNC_FPENDING.
46831
46832 2004-11-09  Paul Eggert  <eggert@cs.ucla.edu>
46833
46834         * m4/strftime.m4 (_gl_STRFTIME_PREREQS): Remove.  Move its body to
46835         gl_FUNC_STRFTIME.
46836         (gl_FUNC_STRFTIME): Use AC_CHECK_FUNCS_ONCE and AC_CHECK_HEADERS_ONCE
46837         and AC_REQUIRE when possible, to avoid duplicate checks.
46838         Check for <wchar.h>.
46839
46840 2004-11-09  Paul Eggert  <eggert@cs.ucla.edu>
46841
46842         * lib/strftime.c (DO_MULTIBYTE): Check for wchar.h, too.
46843
46844 2004-11-09  Bruno Haible  <bruno@clisp.org>
46845
46846         * m4/sockpfaf.m4: New file.
46847
46848 2004-11-05  Bruno Haible  <bruno@clisp.org>
46849
46850         * lib/readlink.c: Include stddef.h, needed for size_t on Woe32.
46851         Reported by Mark D. Baushke <mdb@cvshome.org>.
46852
46853 2004-11-04  Bruno Haible  <bruno@clisp.org>
46854
46855         2004-09-11  Bruno Haible  <bruno@clisp.org>
46856                 * allocsa.valgrind: New file.
46857         2004-02-06  Bruno Haible  <bruno@clisp.org>
46858                 * allocsa.h (sa_alignof): Define differently with HP-UX cc, to
46859                 avoid a bug of this cc on HP-UX 10.20 dealing with enums.
46860                 Reported by Christopher Seip <chris.seip@hp.com>.
46861
46862 2004-11-04  Bruno Haible  <bruno@clisp.org>
46863
46864         * modules/allocsa (Files): Add lib/allocsa.valgrind.
46865         (Makefile.am): Distribute it.
46866
46867 2004-11-03  Paul Eggert  <eggert@cs.ucla.edu>
46868
46869         * lib/xreadlink.c (xreadlink): AIX and HP-UX readlink return -1
46870         with errno == ERANGE if the buffer is too small.
46871         Problem reported by Mark D. Baushke.
46872
46873 2004-11-03  Albert Chin  <china@thewrittenword.com>
46874             Paul Eggert  <eggert@cs.ucla.edu>
46875
46876         * m4/uint32_t.m4 (gl_AC_TYPE_UINT32_T): When determining uint32_t
46877         equivalent, substitute $ac_type for equivalent type rather than
46878         blindly using uint32_t *always* which won't work if uint32_t is not
46879         available.  Define _UINT32_T to work around typedef of uint32_t if
46880         <sys/sched.h>, <pthread.h>, or <semaphore.h> used on Solaris
46881         2.5.1.
46882
46883 2004-11-02  Paul Eggert  <eggert@cs.ucla.edu>
46884
46885         * m4/jm-macros.m4: Sync from coreutils.
46886         (gl_MACROS): Check for mbrlen, for pathchk.
46887         (gl_CHECK_ALL_TYPES): Require AC_TYPE_MBSTATE_T, for pathchk.
46888
46889 2004-11-02  Paul Eggert  <eggert@cs.ucla.edu>
46890
46891         * lib/xreadlink.c (MAXSIZE): New macro.
46892         (xreadlink): Use it instead of SSIZE_MAX.  Ensure initial buffer
46893         size does not exceed MAXSIZE.  Avoid cast.
46894         As suggested by Mark D. Baushke in
46895         <http://lists.gnu.org/archive/html/bug-gnulib/2004-11/msg00009.html>,
46896         if readlink fails with buffer size just under MAXSIZE, try again
46897         with MAXSIZE.
46898
46899 2004-11-02  Paul Eggert  <eggert@cs.ucla.edu>
46900
46901         * config/srclist.txt: Add mktime.c; glibc bought all our changes.
46902
46903 2004-11-02  Derek R. Price  <derek@ximbiot.com>
46904         and  Paul Eggert  <eggert@cs.ucla.edu>
46905
46906         * lib/getdate.y [!TEST]: Include <stdio.h>, since we use sprintf now.
46907         (get_date): Overparenthesize to avoid GCC warning.
46908
46909 2004-11-02  Bruno Haible  <bruno@clisp.org>
46910
46911         * m4/setenv.m4 (gt_FUNC_SETENV): Define VOID_UNSETENV if unsetenv()
46912         returns void.
46913
46914 2004-11-02  Bruno Haible  <bruno@clisp.org>
46915
46916         * lib/setenv.h (unsetenv): Define as a macro if the system's unsetenv()
46917         function returns void.
46918
46919 2004-11-01  Paul Eggert  <eggert@cs.ucla.edu>
46920
46921         * m4/getpass.m4 (gl_PREREQ_GETPASS): Check for declarations of
46922         fflush_unlocked, flockfile, funlockfile, funlockfile,
46923         fputs_unlocked, putc_unlocked.
46924
46925 2004-11-01  Paul Eggert  <eggert@cs.ucla.edu>
46926
46927         * lib/getpass.c (fflush_unlocked, flockfile, funlockfile)
46928         (funlockfile, fputs_unlocked, putc_unlocked): Don't define if
46929         already declared.
46930
46931 2004-10-29  Paul Eggert  <eggert@cs.ucla.edu>
46932
46933         * modules/getdate (Files): Add doc/getdate.texi.
46934         (Depends-on): Add setenv, xalloc.
46935
46936 2004-10-29  Paul Eggert  <eggert@cs.ucla.edu>
46937
46938         * lib/getdate.y: Add support for TZ="foo" within a date string.
46939         Fix some bugs near time_t boundaries.  Reject dates with
46940         out-of-range components, e.g., "Sept 31".
46941         Include <stdlib.h>, "setenv.h", "xalloc.h".
46942         (ISDIGIT_LOCALE): Remove; unused.
46943         Note that the TZ and time functions used here are not reentrant.
46944         (mktime_ok, get_tz): New functions.
46945         (TZBUFSIZE): New constant.
46946         (get_date): Parse leading TZ="foo".  Reject out-of-range components;.
46947         This requires that we sometimes generate our own TZ="XXX..." setting.
46948
46949 2004-10-29  Paul Eggert  <eggert@cs.ucla.edu>
46950
46951         * doc/getdate.texi: New file, from coreutils with modifications for
46952         the new TZ parsing.
46953
46954 2004-10-27  Derek R. Price  <derek@ximbiot.com>
46955
46956         * lib/mktime.c (not_equal_tm): Remove redundant check.
46957
46958 2004-10-24  Paul Eggert  <eggert@cs.ucla.edu>
46959
46960         * modules/regex (lib_SOURCES): Add regex.c.
46961         Reported by James Youngman in
46962         <http://lists.gnu.org/archive/html/bug-gnulib/2004-10/msg00199.html>.
46963
46964 2004-10-24  Paul Eggert  <eggert@cs.ucla.edu>
46965
46966         * lib/getdate.y: Use Bison 1.875 features, and some minor
46967         code cleanups.  This change does not affect semantics.
46968         Don't include <stdlib.h>; no longer needed.
46969         Don't include unlocked-io.h; only the "#if TEST" code uses
46970         stdio, and performance isn't crucial there.
46971         (PC, YYLEX_PARAM, YYPARSE_PARAM): Remove; replaced by
46972         Bison 1.875 features as described below.
46973         All uses of "PC." replaced by "pc->".
46974         (YYSTYPE): Add a forward declaration.
46975         (yylex, yyerror): Use full prototypes in forward decls.
46976         Use "%pure-parser" rather than obsolescent "%pure_parser".
46977         Use %parse-param and %lex-param instead of obsolescent
46978         YYPARSE_PARAM and YYLEX_PARAM.
46979         (meridian_table, month_and_day_table, time_units_table,
46980         relative_time_table, time_zone_table, military_table,
46981         lookup_zone, lookup_word, get_date):
46982         Use NULL instead of 0 where appropriate.
46983         (to_hour): Avoid abort (), to avoid a dependency on
46984         stdlib.h.
46985         (yyerror, yylex): Now accepts parser_control * arg.
46986         (main) [TEST]: Use '\0' rather than 0 for char.
46987
46988 2004-10-22  Paul Eggert  <eggert@cs.ucla.edu>
46989
46990         * m4/getpagesize.m4 (gl_GETPAGESIZE): Check for <sys/param.h>.
46991
46992 2004-10-22  Paul Eggert  <eggert@cs.ucla.edu>
46993
46994         * lib/getpagesize.c (getpagesize): Don't assume <sys/param.h> exists.
46995         It's now the caller's responsibility to handle the case where
46996         !HAVE_GETPAGESIZE && !defined getpagesize.
46997
46998         * lib/mktime.c (leapyear): Arg is long int, not int.
46999
47000 2004-10-18  Paul Eggert  <eggert@cs.ucla.edu>
47001
47002         * lib/argp-fs-xinl.c, argp-xinl.c: Update from glibc.
47003
47004 2004-10-17  Paul Eggert  <eggert@cs.ucla.edu>
47005
47006         * gnulib-tool (func_emit_lib_Makefile_am): Fix typo: a $ was
47007         missing.  Problem reported by James Youngman.
47008
47009 2004-10-16  Simon Josefsson  <jas@extundo.com>
47010
47011         * gnulib-tool: Fix comments.  Fix parse problem.
47012         (func_emit_lib_Makefile_am): Don't hard code a in libgl_a_SOURCES.
47013
47014 2004-10-15  Paul Eggert  <eggert@cs.ucla.edu>
47015
47016         * m4/getopt.m4 (gl_GETOPT): Detect and reject the incompatible BSD
47017         implementation of getopt_long.  Problem reported by Alexander Taler in:
47018         http://lists.gnu.org/archive/html/bug-gnulib/2004-10/msg00103.html
47019
47020 2004-10-15  Bruno Haible  <bruno@clisp.org>
47021
47022         * gnulib-tool: Untabify. Initialize supplied_libname.
47023         (func_usage): More homogenous output.
47024         (func_modules_transitive_closure, func_modules_to_filelist,
47025         func_emit_lib_Makefile_am): New functions.
47026         (func_import): New function, extracted from big case statement. Use
47027         func_get_license, func_modules_transitive_closure,
47028         func_modules_to_filelist, func_emit_lib_Makefile_am. Initialize
47029         opt_lgpl. Don't use test -a, as it's not portable.
47030         (func_create_testdir): Use func_modules_transitive_closure,
47031         func_modules_to_filelist, func_emit_lib_Makefile_am.
47032
47033 2004-10-15  Bruno Haible  <bruno@clisp.org>
47034
47035         * gnulib-tool (func_import): Let gl_INIT define LTALLOCA when needed.
47036
47037 2004-10-15  Bruno Haible  <bruno@clisp.org>
47038
47039         * gnulib-tool (func_emit_lib_Makefile_am): Add markers to separate
47040         the portions belonging to each module.
47041         Suggested by Derek Robert Price <derek@ximbiot.com>.
47042
47043 2004-10-12  Simon Josefsson  <jas@extundo.com>
47044
47045         * lib/getpass.c (fflush_unlocked, flockfile, funlockfile)
47046         (fputs_unlocked, putc_unlocked) [!_LIBCS && !USE_UNLOCKED_IO]: Map
47047         to real functions.
47048
47049 2004-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
47050
47051         * modules/vsnprintf: New file.
47052
47053 2004-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
47054
47055         * m4/vsnprintf.m4: New file.
47056
47057 2004-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
47058
47059         * lib/vsnprintf.h: New file.
47060         * lib/vsnprintf.c: New file.
47061
47062 2004-10-11  Bruno Haible  <bruno@clisp.org>
47063
47064         * MODULES.html.sh (Support for systems lacking ISO C 99): Add
47065         vsnprintf.
47066
47067 2004-10-10  Paul Eggert  <eggert@cs.ucla.edu>
47068
47069         * config/srclistvars.sh: Add GNUSTANDARDS (for eggert only).
47070
47071 2004-10-07  Bruno Haible  <bruno@clisp.org>
47072
47073         * lib/snprintf.c (snprintf): Avoid a memory allocation if the result
47074         fits into the provided buffer.
47075
47076 2004-10-06  Paul Eggert  <eggert@cs.ucla.edu>
47077
47078         * lib/diacrit.c, diacrit.h: Add GPL notice.
47079
47080         * lib/atanl.c, logl.c: Add GPL notice, to match glibc's added LGPL
47081         notice.
47082         * lib/atanl.c (atanl): Keep the code as similar to glibc as possible.
47083         * lib/logl.c (logl): Keep the code as similar to glibc as possible.
47084         This avoids a potential constant-folding bug.
47085
47086 2004-10-05  Bruno Haible  <bruno@clisp.org>
47087
47088         * m4/strsep.m4 (gl_FUNC_STRSEP): Require AC_GNU_SOURCE. Don't check
47089         for the declaration of strsep.
47090
47091 2004-10-05  Bruno Haible  <bruno@clisp.org>
47092
47093         * lib/strsep.h: Don't declare strsep() if HAVE_STRSEP.
47094
47095 2004-10-04  Simon Josefsson  <jas@extundo.com>
47096
47097         * modules/memmem: New file.
47098         * tests/test-memmem.c: New file.
47099         * MODULES.html.sh (Extra functions based on ANSI C 89): Add memmem.
47100
47101 2004-10-04  Simon Josefsson  <jas@extundo.com>
47102
47103         * m4/memmem.m4: New file.
47104
47105 2004-10-04  Simon Josefsson  <jas@extundo.com>
47106
47107         * lib/memmem.h: New file.
47108         * lib/memmem.c: New file, taken from glibc.
47109
47110 2004-10-04  Simon Josefsson  <jas@extundo.com>
47111
47112         * lib/error.c, md5.c, regex.c: Use '#if USE_UNLOCKED_IO' instead of
47113         '#ifdef USE_UNLOCKED_IO'.
47114
47115 2004-10-04  Simon Josefsson  <jas@extundo.com>
47116
47117         * config/srclist.txt: Add memmem from glibc.
47118
47119 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
47120
47121         * modules/xalloc (Files, Makefile.am): Remove xstrdup.c.
47122
47123         * modules/argmatch, modules/argp, modules/closeout, modules/error,
47124         modules/exclude, modules/getdate, modules/getline,
47125         modules/getndelim2, modules/getpass, modules/getpass-gnu,
47126         modules/getusershell, modules/linebuffer, modules/md5,
47127         modules/mountlist, modules/posixtm, modules/readtokens,
47128         modules/readutmp, modules/regex, modules/sha1,
47129         modules/version-etc, modules/yesno:
47130         Remove dependency on unlocked-io.
47131
47132 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
47133
47134         * m4/xalloc.m4 (gl_PREREQ_XSTRDUP): Remove.  All uses removed.
47135
47136         * m4/unlocked-io.m4: Add copyright notice.
47137         (gl_FUNC_GLIBC_UNLOCKED_IO): Define USE_UNLOCKED_IO.
47138
47139 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
47140
47141         * lib/xalloc.h (xmemdup): Renamed from xclone.  All uses changed.
47142         * lib/xmalloc.c (xmemdup): Likewise.
47143         * lib/xalloc.h (CCLONE, CLONE, NEW, XCALLOC, XMALLOC, XREALLOC,
47144         XFREE): Remove these long-obsolescent macros.
47145         * lib/xmalloc.c (xstrdup): Implementation moved here from xstrdup.c
47146         * lib/xstrdup.c: Remove.
47147
47148         * lib/regex.c (re_comp): Cast gettext return value to char *,
47149         Problem reported by Martin Neitzel via Mark D. Baushke.
47150
47151 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
47152
47153         * lib/argmatch.c, closeout.c, error.c, exclude.c, getdate.y,
47154         getndelim2.c, getpass.c, getusershell.c, linebuffer.c,
47155         md5.c, mountlist.c, posixtm.c, readtokens.c, readutmp.c,
47156         regex.c, sha1.c, version-etc.c, yesno.c:
47157         Include "unlocked-io.h" only if USE_UNLOCKED_IO.
47158         * lib/unlocked-io.h: Don't worry about USE_UNLOCKED_IO; that's now
47159         the includer's responsibility.
47160
47161         Sync from coreutils.
47162
47163         * lib/modechange.c (mode_compile): Don't decrement a pointer that
47164         points to the start of a string, as the C Standard says the
47165         resulting behavior is undefined.
47166
47167         * lib/backupfile.h (enum backuptype): Rename none -> no_backups,
47168         simple -> simple_backups, numbered_existing ->
47169         numbered_existing_backups, numbered -> numbered_backups
47170         to avoid shadowing problems.  All uses changed.
47171         * lib/argmatch.c (enum backuptype) [defined TEST]: Likewise.
47172         * lib/backupfile.c (check_extension, numbered_backup):
47173         Rename locals to avoid shadowing 'basename'.
47174         * lib/backupfile.h (VALID_BACKUP_TYPE): Don't evaluate arg more than
47175         once.
47176
47177         * lib/.cppi-disable: Add getopt_.h, getopt_int.h.
47178         * lib/.cvsignore: Add getopt.h.
47179
47180 2004-10-04  Bruno Haible  <bruno@clisp.org>
47181
47182         * modules/README: New file.
47183         * gnulib-tool (func_all_modules, func_verify_module): modules/README is
47184         not a module.
47185
47186 2004-10-02  Jim Meyering  <jim@meyering.net>
47187
47188         * lib/dirfd.h, getpagesize.h: Add copyright notice.
47189
47190 2004-10-01  Yoann Vandoorselaere  <yoann@prelude-ids.org>
47191
47192         * modules/strsep: New file.
47193
47194 2004-10-01  Yoann Vandoorselaere  <yoann@prelude-ids.org>
47195
47196         * m4/strsep.m4: New file.
47197
47198 2004-10-01  Yoann Vandoorselaere  <yoann@prelude-ids.org>
47199
47200         * lib/strsep.h: New file.
47201         * lib/strsep.c: New file.
47202
47203 2004-10-01  Simon Josefsson  <jas@extundo.com>
47204
47205         * lib/snprintf.c (snprintf): Handle size==0.
47206
47207 2004-10-01  Simon Josefsson  <jas@extundo.com>
47208             Bruno Haible  <bruno@clisp.org>
47209
47210         * lib/snprintf.c: Include <stdarg.h>, <stdlib.h>, <string.h>.
47211         (snprintf): Declare 'args'.
47212
47213 2004-10-01  Paul Eggert  <eggert@cs.ucla.edu>
47214
47215         * lib/snprintf.c: Remove comments as to why each header is needed.
47216
47217 2004-10-01  Bruno Haible  <bruno@clisp.org>
47218
47219         * MODULES.html.sh: Add strsep.
47220
47221 2004-09-30  Simon Josefsson  <jas@extundo.com>
47222
47223         * modules/snprintf: New file.
47224
47225 2004-09-30  Simon Josefsson  <jas@extundo.com>
47226
47227         * m4/snprintf.m4: New file.
47228
47229 2004-09-30  Simon Josefsson  <jas@extundo.com>
47230
47231         * lib/snprintf.h, lib/snprintf.c: New files.
47232
47233 2004-09-30  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
47234
47235         * lib/argp-help.c (canon_doc_option): Fixed coredump if *name==NULL
47236         (hol_entry_help): Never translate an empty string.
47237         Do not translate option tag (opt->name) if OPTION_NO_TRANS is set
47238         * lib/argp.h (OPTION_NO_TRANS): New option.
47239
47240 2004-09-30  Paul Eggert  <eggert@cs.ucla.edu>
47241
47242         * modules/argp (Maintainer): Replace Simon Josefsson
47243         by Sergey Poznyakoff.
47244
47245 2004-09-30  Paul Eggert  <eggert@cs.ucla.edu>
47246
47247         * config/srclist.txt: Comment-out argp/argp.h, until we get the argp
47248         changes merged back into glibc.
47249
47250 2004-09-30  Paul Eggert  <eggert@cs.ucla.edu>
47251
47252         * MODULES.html.sh (Support for systems lacking ISO C 99): Add snprintf.
47253
47254 2004-09-29  Oskar Liljeblad  <oskar@osk.mine.nu>
47255
47256         * lib/xvasprintf.c: Include xalloc.h.
47257         (xvasprintf): Use xalloc_die, not xmalloc_die.
47258
47259 2004-09-29  Bruno Haible  <bruno@clisp.org>
47260
47261         * modules/alloca-opt: New file, derived from modules/alloca.
47262         * modules/allocsa: Depend on alloca-opt instead of alloca.
47263         * modules/setenv: Likewise.
47264         * modules/vasnprintf: Likewise.
47265         * MODULES.html.sh: Add alloca-opt.
47266
47267 2004-09-28  Simon Josefsson  <jas@extundo.com>
47268
47269         * gnulib-tool: New parameter --lgpl, to asseert that modules are
47270         LGPL, and to replace license template from GPL to LGPL.
47271
47272 2004-09-28  Paul Eggert  <eggert@cs.ucla.edu>
47273
47274         * modules/dummy: Change license to LGPL.
47275
47276 2004-09-28  Paul Eggert  <eggert@cs.ucla.edu>
47277
47278         * lib/dummy.c: Change copyright notice to FSF, and license to GPL.
47279
47280 2004-09-24  Simon Josefsson  <jas@extundo.com>
47281
47282         * modules/minmax (License): Change from GPL to LGPL.
47283
47284 2004-09-23  Simon Josefsson  <jas@extundo.com>
47285
47286         * gnulib-tool (--import): Typo.
47287
47288 2004-09-23  Simon Josefsson  <jas@extundo.com>
47289
47290         * gnulib-tool (--import): Make sure *.m4 end up in m4/ by default.
47291
47292 2004-09-22  Bruno Haible  <bruno@clisp.org>
47293
47294         * modules/*: Add 'License' field.
47295         * gnulib-tool: Accept --extract-license option.
47296         (func_get_license): New function.
47297
47298 2004-09-21  Bruno Haible  <bruno@clisp.org>
47299
47300         * modules/vasnprintf (Files): Add m4/stdint_h.m4, m4/inttypes_h.m4.
47301         Reported by Simon Josefsson.
47302
47303 2004-09-20  Paul Eggert  <eggert@cs.ucla.edu>
47304
47305         * modules/inttostr (Files): Add m4/longlong.m4, since it uses
47306         gl_AC_TYPE_LONG_LONG.
47307
47308 2004-09-20  Paul Eggert  <eggert@cs.ucla.edu>
47309
47310         * config/srclist.txt: Add getsubopt.c, since libc bought our changes.
47311
47312 2004-09-18  Simon Josefsson  <jas@extundo.com>
47313         and  Paul Eggert  <eggert@cs.ucla.edu>
47314
47315         * gnulib-tool: Replace various ad-hoc automake/autoconf/aclocal
47316         calls with autoreconf.  Define GL_LIB.
47317
47318 2004-09-14  Karl Berry  <karl@gnu.org>
47319
47320         * config/srclist.txt: unsync setenv.c, sigh.
47321
47322 2004-09-13  Paul Eggert  <eggert@cs.ucla.edu>
47323
47324         * lib/argp-pvh.c (argp_program_version_hook): Provide initial value.
47325         Problem reported by Bruno Haible in:
47326         http://lists.gnu.org/archive/html/bug-tar/2004-09/msg00023.html
47327
47328 2004-09-13  Paul Eggert  <eggert@cs.ucla.edu>
47329
47330         * config/srclist.txt: Comment out argp-pvh.c.
47331
47332 2004-09-11  Paul Eggert  <eggert@cs.ucla.edu>
47333
47334         * lib/mempcpy.h: Wrap the entire include file inside #ifndef mempcpy,
47335         in case some system header has #define'd it.  Problem reported by
47336         Soeren D. Schulze in
47337         <http://lists.gnu.org/archive/html/bug-gnulib/2004-09/msg00017.html>.
47338
47339 2004-09-09  Karl Berry  <karl@gnu.org>
47340
47341         * regex.[ch]: delete from the root.  These were supposed to be
47342                 synced with emacs cvs, but this has not happened for about
47343                 a year, and anyway nothing else uses emacs regex.[ch].
47344                 bug-gnulib mail from Jeff Bailey, 9 Sep 2004 15:49:24 -0700.
47345                 lib/regex[.ch] is untouched.
47346
47347 2004-09-09  Bruno Haible  <bruno@clisp.org>
47348
47349         * modules/vasnprintf (Files): Add m4/eoverflow.m4.
47350
47351 2004-09-09  Bruno Haible  <bruno@clisp.org>
47352
47353         * m4/eoverflow.m4: New file, taken from GNU libiconv eilseq.m4 with
47354         modifications.
47355         * m4/vasnprintf.m4 (gl_FUNC_VASNPRINTF): Require gl_EOVERFLOW.
47356
47357 2004-09-08  Oskar Liljeblad  <oskar@osk.mine.nu>
47358
47359         * modules/xvasprintf: New file.
47360         * MODULES.html.sh (Extra functions based on ANSI C 89): Add vasprintf.
47361
47362 2004-09-08  Oskar Liljeblad  <oskar@osk.mine.nu>
47363
47364         * lib/xvasprintf.h: New file.
47365         * lib/xvasprintf.c: New file.
47366         * lib/xasprintf.c: New file.
47367
47368 2004-09-08  Bruno Haible  <bruno@clisp.org>
47369
47370         * m4/stdint.m4: New file, taken from GNU clisp with modifications.
47371
47372 2004-09-08  Bruno Haible  <bruno@clisp.org>
47373
47374         * lib/vasnprintf.c (VASNPRINTF): Signal EOVERFLOW if the resulting
47375         length is > INT_MAX.
47376         * lib/vasprintf.c (vasprintf): Don't test for length > INT_MAX any
47377         more.
47378
47379 2004-09-08  Bruno Haible  <bruno@clisp.org>
47380
47381         * lib/stdint_.h: New file, taken from GNU clisp.
47382
47383 2004-09-08  Bruno Haible  <bruno@clisp.org>
47384             Oskar Liljeblad  <oskar@osk.mine.nu>
47385
47386         * modules/stdint: New file.
47387         * MODULES.html.sh (Support for systems lacking ISO C 99): Add stdint.
47388
47389 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
47390
47391         Import from coreutils.
47392         * lib/userspec.c: Don't use <alloca.h>, so that we don't use alloca on
47393         strings on unbounded length.  alloca's performance benefits aren't
47394         that important here.
47395         (V_STRDUP): Remove.
47396         (parse_with_separator): New function, with most of the internals
47397         of the old parse_user_spec.  Allow user to omit both user and group,
47398         for compatibility with FreeBSD.
47399         Clone only the user name, not the entire spec.
47400         Do not set *uid, *gid unless entirely successful.
47401         Avoid memory leak in some failing cases.
47402         Fix regression for USER.GROUP reported by Dmitry V. Levin in
47403         <http://lists.gnu.org/archive/html/bug-coreutils/2004-08/msg00102.html>
47404         (parse_user_spec): Rewrite to use parse_with_separator.
47405
47406 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
47407
47408         * modules/userspec: Don't depend on alloca.
47409
47410 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
47411
47412         * m4/userspec.m4 (gl_USERSPEC): Don't require AC_FUNC_ALLOCA.
47413
47414 2004-08-17  Paul Eggert  <eggert@cs.ucla.edu>
47415
47416         * MODULES.html.sh: Add xalloc-die, c-strtod, c-strtold, raise,
47417         readtokens0, getcwd, fcntl-safer, canonicalize, cycle-check,
47418         utimecmp, utimens, xnanosleep.  Rename sha to sha1.
47419
47420 2004-08-16  Simon Josefsson  <jas@extundo.com>
47421
47422         * gnulib-tool: Use sed instead of autoconf --trace, inspired by
47423         libtoolize behaviour by "Gary V. Vaughan" <gary@gnu.org>.
47424         Add --dry-run for --import.
47425         Let user provided command line parameters override configure.ac
47426         settings.
47427
47428 2004-08-12  Simon Josefsson  <jas@extundo.com>
47429
47430         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE): New macro,
47431         as discussed with Paul Eggert in threads rooted at
47432         <http://lists.gnu.org/archive/html/bug-gnulib/2004-06/msg00039.html>
47433         and
47434         <http://lists.gnu.org/archive/html/bug-gnulib/2004-07/msg00001.html>.
47435         Before, the test was empty, and relied on ELIDE_CODE in source
47436         code.)
47437         (gl_PREREQ_GETOPT): New macro.
47438         (gl_GETOPT): Use them.
47439
47440 2004-08-12  Simon Josefsson  <jas@extundo.com>
47441
47442         * lib/getopt.c, getopt1.c: Remove ELIDE_CODE hack.
47443         * lib/getopt_.h: Renamed from getopt.h.
47444
47445 2004-08-12  Simon Josefsson  <jas@extundo.com>
47446
47447         * gnulib-tool: Add --source-base, --m4-base, --libtool options.
47448         Change default library name from libfoo to libgnu.
47449         Now, if you have a configure.ac that says:
47450                 gl_SOURCE_BASE(gl)
47451                 gl_M4_BASE(gl/m4)
47452                 gl_MODULES(error getopt etcetera)
47453                 gl_INIT
47454         you can import all you need by running:
47455                 ../gnulib/gnulib-tool --import
47456
47457         * modules/getopt (Files): Rename getopt.h to getopt_.h.
47458         (Makefile.am): Rewrite, use logic from argz.
47459         (Include): Use <getopt.h> instead of "getopt.h".
47460
47461 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
47462
47463         * modules/argp (Files): Add m4/unlocked-io.m4.
47464         (Depends-on): Add extensions.
47465
47466 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
47467
47468         * m4/argp.m4 (gl_ARGP): Do not check for argp.h or argp_parse; nobody
47469         uses HAVE_ARGP_H or HAVE_ARGP_PARSE.
47470         Require gl_FUNC_GLIBC_UNLOCKED_IO, gl_USE_SYSTEM_EXTENSIONS.
47471         Check for program_invocation_name, program_invocation_short_name,
47472         flockfile, funlockfile, features.h, _getopt_long_only_r.
47473
47474 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
47475
47476         * lib/argp-help.c, argp-parse.c: Use "gettext.h" instead of
47477         its complicated substitute.
47478         * lib/argp-help.c: Include <errno.h>, for program_invocation_short_name
47479         and program_invocation_name.
47480         (__argp_basename) [!_LIBC]: Remove; the only use was
47481         replaced by its body.
47482         (__argp_short_program_name): Change condition from
47483         !defined __argp_short_program_name to
47484         ! (defined _LIBC || HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME),
47485         to match argp-namefrob.h.
47486         (__argp_failure): Don't assume strerror_r returns char *.
47487         * lib/argp-parse.c (N_): Define unconditionally.
47488         (argp_default_options): Fill out initializers with 0 to avoid
47489         gcc warnings.
47490
47491 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
47492
47493         * config/srclist.txt: Remove getopt.c, getopt.h (renamed to getopt_.h),
47494         getopt1.c.
47495
47496 2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
47497
47498         Merge from coreutils.
47499
47500         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for wmemchr and wmemcpy.
47501
47502         * m4/obstack.m4 (gl_PREREQ_OBSTACK): Require
47503         gl_AC_HEADER_INTTYPES_H, gl_AC_HEADER_STDINT_H, gl_AC_TYPE_UINTMAX_T.
47504
47505 2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
47506
47507         Merge from coreutils.
47508
47509         * lib/fnmatch.c (WIDE_CHAR_SUPPORT): Don't set to 1 if missing
47510         wmemchr or wmemcpy.  Problem reported by Robert Dahlem
47511         for Reliant Unix 5.43.
47512
47513         * lib/obstack.c: Include <inttypes.h> and <stdint.h> if available.
47514         (union fooround): Use uintmax_t, not long int.
47515         The rest is a merge from libc:
47516         [defined _LIBC]: Include <shlib-compat.h>.
47517         (_obstack) [defined _LIBC]: Remove after 2.3.4.
47518
47519         * lib/settime.c (settime): Recode to avoid warning with
47520         Sun Forte C 6U2.
47521
47522         * lib/strverscmp.c: Convert to UTF-8.
47523
47524 2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
47525
47526         * modules/obstack (Files): Add m4/inttypes_h.m4, m4/stdint_h.m4,
47527         m4/uintmax_t.m4.
47528
47529 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
47530
47531         * modules/xalloc-die: New file.
47532         * modules/xalloc: Remove dependencies on error, gettext, exitfail.
47533
47534         * modules/md5 (Files): Add m4/uint32_t.m4.
47535         * modules/sha1: Renamed from modules/sha.
47536         (Files):
47537         Rename lib/sha.h to lib/sha1.h.
47538         Rename lib/sha.c to lib/sha1.c.
47539         Rename m4/sha.m4 to m4/sha1.m4.
47540         (lib_SOURCES): Likewise.
47541         (configure.ac): Rename gl_SHA to gl_SHA1.
47542         (Include): sha.h -> sha1.h.
47543
47544 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
47545
47546         * m4/uint32_t.m4, m4/uintptr_t.m4: New files.
47547         * m4/sha1.m4: Renamed from sha.m4.
47548         (gl_SHA1): Renamed from gl_SHA.  All uses changed.
47549
47550 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
47551
47552         * lib/obstack.h (obstack_empty_p):
47553         Don't assume that chunk->contents is suitably aligned.
47554         * lib/obstack.c (_obstack_begin, _obstack_begin_1, _obstack_newchunk):
47555         Likewise. Problem reported by Benno in
47556         <http://sources.redhat.com/ml/libc-alpha/2004-08/msg00055.html>.
47557
47558         * lib/chown.c (rpl_chown): Work even if the file is writeable but not
47559         readable.  This could be improved further but it'd take some work.
47560
47561 2004-08-08  Simon Josefsson  <jas@extundo.com>
47562
47563         * modules/xgethostname (Depends-on): Remove exit and error (not
47564         used).
47565
47566         * modules/getpass-gnu: Add getpass.h.
47567         (Depends-on): Add stdbool.
47568         * modules/getpass: Add getpass.h.
47569
47570 2004-08-08  Simon Josefsson  <jas@extundo.com>
47571
47572         * m4/getpass.m4 (gl_FUNC_GETPASS, gl_FUNC_GETPASS_GNU):
47573         Check getpass declaration.
47574
47575 2004-08-08  Simon Josefsson  <jas@extundo.com>
47576
47577         * lib/xgethostname.c: Don't include error.h (not used).
47578
47579         * lib/getpass.h: Add.
47580         * lib/getpass.c: Include getpass.h first.
47581
47582 2004-08-08  Paul Eggert  <eggert@cs.ucla.edu>
47583
47584         * lib/xalloc-die.c: New file.
47585         * lib/xalloc.h (xalloc_fail_func, xalloc_msg_memory_exhausted): Remove.
47586         All uses removed.
47587         * lib/xmalloc.c (xalloc_fail_func, xalloc_msg_memory_exhausted):
47588         Likewise. Move inclusions of gettext.h, error.h, exitfail.h to
47589         xalloc-die.c.
47590         (_, N_, xalloc_die): Move to xalloc-die.c.
47591         * lib/userspec.c (parse_user_spaec): Use xstrdup rather than strdup,
47592         so that we needn't mess with xalloc_msg_memory_exhausted.
47593
47594         * lib/sha1.h: Renamed from sha.h.
47595         (SHA1_H): Renamed from _SHA_H.
47596         (sha1_ctx): Renamed from sha_ctx.
47597         (sha1_init_ctx): Renamed from sha_init_ctx.
47598         (sha1_process_block): Renamed from sha_process_block.
47599         (sha1_process_bytes): Renamed from sha_process_bytes.
47600         (sha1_finish_ctx): Renamed from sha_finish_ctx.
47601         (sha1_read_ctx): Renamed from sha_read_ctx.
47602         (sha1_stream): Renamed from sha_stream.
47603         (sha1_buffer): Renamed from sha_buffer.
47604         * lib/sha1.c: Likewise; renamed from sha.c.
47605         Do not include <sys/types.h>.
47606         Include <stddef.h> rather than <stdlib.h>.
47607
47608 2004-08-08  Bruno Haible  <bruno@clisp.org>
47609
47610         * lib/pathname.h (FILE_SYSTEM_PREFIX_LEN): Renamed from
47611         FILESYSTEM_PREFIX_LEN.
47612         * lib/progreloc.c: Likewise.
47613         * lib/concatpath.c (concatenated_pathname): Use FILE_SYSTEM_PREFIX_LEN.
47614
47615 2004-08-06  Simon Josefsson  <jas@extundo.com>
47616
47617         * modules/progname (Depends-on): Don't depend on stdbool.
47618
47619 2004-08-06  Simon Josefsson  <jas@extundo.com>
47620
47621         * modules/getsubopt: New file.
47622         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
47623         getsubopt.
47624
47625 2004-08-06  Paul Eggert  <eggert@cs.ucla.edu>
47626
47627         More merge from coreutils.
47628
47629         * m4/utimens.m4, m4/utimecmp.m4: New files.
47630         * m4/backupfile.m4, euidacces.m4, acl.m4, afs.m4, calloc.m4, dirfd.m4,
47631         fsusage.m4, jm-macros.m4, ls-mntd-fs.m4, md5.m4, mountlist.m4,
47632         prereq.m4, sha.m4: Import changes from coreutils.
47633
47634 2004-08-06  Paul Eggert  <eggert@cs.ucla.edu>
47635
47636         More merge from coreutils.
47637         * modules/raise, modules/readtokens0, modules/utimens:
47638         * modules/utimecmp, module/xnanosleep: New files.
47639         * modules/strftime: Add lib/strftime.h.
47640         Change include from <time.h> to "strftime.h".
47641         * modules/yesno: Add lib/yesno.h.
47642         * modules/backupfile: Remove lib/addext.c.
47643         * modules/euidaccess: Add stat-macros.h.
47644         * modules/canonicalize, modules/euidaccess,
47645         modules/filemode, modules/lchown, modules/makepath,
47646         modules/rmdir, modules/stat: Likewise.
47647
47648 2004-08-06  Paul Eggert  <eggert@cs.ucla.edu>
47649
47650         Merge from tar.
47651         * lib/argp-help.c (make_hol, hol_append): Don't assume that
47652         SIZE_MAX is a valid preprocessor constant.
47653         (__argp_basename): Change from "#ifndef _LIBC"
47654         to "#ifndef __argp_short_program_name", so that
47655         we don't compile these functions for tar.
47656
47657         More merges from coreutils.
47658         * lib/raise.c, lib/readtokens0.h, lib/readtokens0.c, lib/strftime.h:
47659         * lib/utimens.h, lib/utimens.c, lib/utimecmp.h, lib/utimecmp.c:
47660         * lib/xnanosleep.h, lib/xnanosleep.c, lib/yesno.h: New files.
47661         * lib/addext.c: Remove; no longer needed.
47662         * lib/yesno.c, lib/argmatch.h, lib/argmatch.c, lib/backupfile.h,
47663         lib/backupfile.c, lib/euidaccess.c, lib/filemode.c, lib/closeout.c,
47664         lib/dup2.c, lib/exclude.c, lib/fileblocks.c, lib/filemode.c,
47665         lib/fnmatch.c, lib/fnmtahc_loop.c, lib/fopen-safer.c, lib/fsusage.c,
47666         lib/fsusage.h, lib/ftruncate.c, lib/full-write.c, lib/getdate.y,
47667         lib/getloadavg.c, lib/getugroups.c, lib/hard-locale.c,
47668         lib/hard-locale.h, lib/hash.c, lib/human.c, lib/human.h, lib/lchown.c,
47669         lib/lchown.h, lib/makepath.c, lib/makepath.h, lib/md5.c, lib/md5.h,
47670         lib/memchr.c, lib/memcoll.c, lib/memrchr.c, lib/modechange.c,
47671         lib/modechange.h, lib/mountlist.c, lib/mountlist.h, lib/nanosleep.c,
47672         lib/posixtm.c, lib/putenv.c, quotearg.c, lib/quotearg.h,
47673         lib/readtokens.c, lib/readutmp.c, lib/readutmp.h, lib/rmdir.c,
47674         lib/safe-read.c, lib/save-cwd.c, lib/savedir.c, lib/setenv.c,
47675         lib/sig2str.c, lib/stat.c, lib/strtoimax.c, lib/strverscmp.c,
47676         lib/userspec.c, lib/utime.c, lib/version-etc.c., lib/xgethostname.c,
47677         lib/xmemcoll.c, lib/xreadlink.c, lib/xstrtod.c, lib/xstrtod.h,
47678         lib/xstrtoimax.c, lib/xstrtol.c, lib/xstrtol.h, lib/xstrtoumax.c:
47679         Import changes from coreutils.
47680
47681 2004-08-05  Simon Josefsson  <jas@extundo.com>
47682
47683         * m4/strdup.m4: Always run gl_PREREQ_STRDUP, since strdup.h need it.
47684
47685 2004-08-05  Simon Josefsson  <jas@extundo.com>
47686
47687         * m4/getsubopt.m4: New file.
47688
47689 2004-08-05  Paul Eggert  <eggert@cs.ucla.edu>
47690
47691         Merge from coreutils.
47692
47693         * m4/c-strtod.m4, m4/canonicalize.m4, m4/fcntl-safer.m4:
47694         * m4/getcwd-path-max.m4: New files.
47695
47696         * m4/dos.m4 (gl_AC_DOS): filesystem -> file system renaming.
47697         FILESYSTEM_PREFIX_LEN ->
47698         FILE_SYSTEM_PREFIX_LEN.
47699         FILESYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX ->
47700         FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX.
47701         FILESYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR ->
47702         FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR.
47703
47704         * m4/path-concat.m4 (gl_PATH_CONCAT): Don't require gl_AC_DOS, the
47705         prerequisite modules now handle the DOS stuff.
47706         Don't check for unistd.h.
47707
47708 2004-08-05  Paul Eggert  <eggert@cs.ucla.edu>
47709
47710         Merge from coreutils.
47711
47712         * lib/.gdb-history: Remove; this doesn't belong here.
47713
47714         * lib/c-strtod.c, lib/c-strtod.h, lib/c-strtold.c, lib/cycle-check.c:
47715         * lib/cycle-check.h, lib/dev-ino.h, lib/canonicalize.h:
47716         * lib/canonicalize.c, lib/fcntl-safer.h, lib/fcntl-safer.c:
47717         * lib/getcwd.c: New files.
47718
47719         * lib/dirname.h: Include <stdbool.h>.
47720         (FILE_SYSTEM_PREFIX_LEN): Renamed from FILESYSTEM_PREFIX_LEN,
47721         for consistency with POSIX terminology.  All uses changed.
47722         (IS_ABSOLUTE_FILE_NAME, IS_RELATIVE_FILE_NAME): New macros.
47723         (strip_trailing_slashes): Use bool for booleans.
47724         * lib/stripslash.c (strip_trailing_slashes): Likewise.
47725
47726         * lib/error.c: Work around bug in OpenBSD 3.4 sterror_r: it
47727         sometimes returns a positive errno value even when it succeeds.
47728         (print_errno_message) [!LIBC]: Fall back on strerror if
47729         __strerror_r fails.
47730
47731         * lib/path-concat.c (mempcpy): Don't define if a system header defines
47732         it. Don't include stdio.h, stdlib.h, unistd.h, strdup.h.
47733         (longest_relative_suffix): New function.
47734         (path_concat): Use it.  Assume first argument is not NULL.
47735         Port to DOS.  Omit redundant separators.
47736         Report an error instead of returning NULL.
47737         Use mempcpy instead of memcpy.
47738         (xpath_concat): Remove: not declared or used.
47739
47740         * lib/same.h: Include <stdbool.h>
47741         (same_name): Return bool, not int.
47742         * lib/same.c (same_name): Likewise.
47743         (errno): Don't declare; we assume C89 or better now.
47744
47745         * lib/stat-macros (S_ISCTG, S_ISOFD, S_ISOFL): New macros,
47746         if not already defined.
47747
47748         * lib/xgetcwd.c (errno): Don't declare; we assume C89 or better now.
47749         * lib/dup-safer.c (errno): Likewise.
47750
47751 2004-08-05  Paul Eggert  <eggert@cs.ucla.edu>
47752
47753         Merge from coreutils.
47754         * modules/c-strtod, modules/c-strtold, modules/canonicalize:
47755         * modules/cycle-check, modules/fcntl-safer, modules/getcwd: New files.
47756         * modules/path-concat: Don't depend on strdup.
47757
47758 2004-08-03  Simon Josefsson  <jas@extundo.com>
47759
47760         * lib/strdup.h: Only use HAVE_DECL_STRDUP if defined.
47761         * lib/progname.h: Don't include stdbool.h.
47762
47763 2004-08-03  Paul Eggert  <eggert@cs.ucla.edu>
47764
47765         * modules/fatal: Remove, as the "fatal" module wasn't used or working.
47766         * MODULES.html.sh (func_all_modules): Remove fatal.
47767
47768 2004-08-03  Paul Eggert  <eggert@cs.ucla.edu>
47769
47770         * m4/fatal.m4: Remove, as the "fatal" module wasn't used or working.
47771
47772 2004-08-03  Paul Eggert  <eggert@cs.ucla.edu>
47773
47774         * lib/fatal.c, fatal.h: Remove as the "fatal" module wasn't used or
47775         working.
47776
47777 2004-08-02  Simon Josefsson  <jas@extundo.com>
47778
47779         * lib/getsubopt.h: New file, with comments from Bruno Haible.
47780         * lib/getsubopt.c: New file, from glibc, but slightly modified based on
47781         suggestions from Paul Eggert <eggert@cs.ucla.edu>.
47782
47783 2004-08-01  Simon Josefsson  <jas@extundo.com>
47784
47785         * lib/xgetdomainname.c: Include stdlib.h, for free().
47786
47787 2004-07-19  Bruno Haible  <bruno@clisp.org>
47788
47789         * MODULES.html.sh (func_all_modules): Add dummy.
47790
47791 2004-07-16  Simon Josefsson  <jas@extundo.com>
47792
47793         * modules/dummy: New file.
47794
47795 2004-07-16  Simon Josefsson  <jas@extundo.com>
47796
47797         * lib/dummy.c: New file.
47798
47799 2004-07-16  Bruno Haible  <bruno@clisp.org>
47800
47801         * lib/backupfile.h: Add extern "C" for C++.
47802         * lib/closeout.h: Likewise.
47803         * lib/copy-file.h: Likewise.
47804         * lib/findprog.h: Likewise.
47805         * lib/full-write.h: Likewise.
47806         * lib/pathname.h: Likewise.
47807         * lib/progname.h: Likewise.
47808         * lib/stpcpy.h: Likewise.
47809         * lib/stpncpy.h: Likewise.
47810         * lib/strcase.h: Likewise.
47811         * lib/strstr.h: Likewise.
47812         * lib/xalloc.h: Likewise.
47813
47814         * lib/mbswidth.h: Add extern "C" for C++.
47815         Reported by Albert Chin-A-Young <china@thewrittenword.com>.
47816
47817 2004-07-13  Robert Millan  <robertmh@gnu.org>
47818
47819         * m4/host-os.m4: s/KNetBSD/kNetBSD/g and s/KFreeBSD/kFreeBSD/g.
47820
47821 2004-07-09  Simon Josefsson  <jas@extundo.com>
47822
47823         * lib/getndelim2.c: Include stddef.h, for ptrdiff_t.  (FreeBSD 4.9
47824         failed without this.)
47825
47826 2004-07-09  Paul Eggert  <eggert@cs.ucla.edu>
47827
47828         * modules/chown (Files): Add lib/fchown-stub.c, since
47829         gl_PREREQ_CHOWN invokes AC_LIBOBJ(fchown-stub).
47830
47831 2004-07-09  Paul Eggert  <eggert@cs.ucla.edu>
47832
47833         * lib/fchown-stub.c: New file.
47834
47835 2004-06-24  Jim Meyering  <jim@meyering.net>
47836
47837         * lib/obstack.h (obstack_base): Cast to (void *), per documentation.
47838
47839 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
47840
47841         * modules/argz: Omit "#include".
47842
47843         * MODULES.html.sh (func_all_modules): Add calloc, to match
47844         2004-06-01 addition of calloc module.
47845
47846 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
47847
47848         * m4/argz.m4: New file, which is autoupdated from libtool.
47849
47850 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
47851
47852         * lib/argz.c, lib/argz_.h: New files, which are autoupdated from
47853         libtool.
47854
47855 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
47856
47857         * config/srclist-update: Don't insist on "USA." before the
47858         close-comment, as libtool omits the period and puts the */ on a
47859         separate line.
47860         * config/srclist.txt: Add argz.c, argz_.h, argz.m4.
47861         * config/srclistvars.sh: Add LIBTOOL (for eggert only).
47862
47863 2004-06-22  Gary V. Vaughan  <gary@gnu.org>
47864
47865         * modules/argz: New file.
47866         * MODULES.html.sh (func_all_modules): Add argz.
47867
47868 2004-06-12  Jim Meyering  <jim@meyering.net>
47869         and  Paul Eggert  <eggert@cs.ucla.edu>
47870
47871         * modules/hash (Files): Add lib/xalloc.h.
47872         * modules/pipe (Depends-on): Add wait-process.
47873         * modules/stat (Depends-on): Add xalloc.
47874         * modules/userspec (Files): Add lib/userspec.h.
47875         * modules/xstrto
47876
47877         Upgrade from gettext-0.13.
47878         * modules/gettext (Files): Add m4/intmax.m4, m4/longdouble.m4,
47879         m4/longlong.m4, m4/printf-posix.m4, m4/signed.m4, m4/size_max.m4,
47880         m4/wchar_t.m4, m4/wint_t.m4, m4/xsize.m4.
47881
47882 2004-06-10  Jim Meyering  <jim@meyering.net>
47883
47884         * lib/calloc.c: New file.
47885
47886 2004-06-06  Paul Eggert  <eggert@cs.ucla.edu>
47887
47888         * lib/getdate.y (yylex): Allow space between sign and number.
47889         Problem reported by Dan Jacobson.
47890
47891 2004-06-01  Paul Eggert  <eggert@cs.ucla.edu>
47892
47893         Merge from coreutils CVS.
47894
47895         * m4/backupfile.m4, dirname.m4, human.m4, inttypes.m4, longlong.m4,
47896         makepath.m4, memchr.m4, memcmp.m4, mountlist.m4, path-concat.m4,
47897         putenv.m4, quotearg.m4, readutmp.m4, strtoimax.m4, strtoll.m4,
47898         strtoull.m4, strtoumax.m4, ulonglong.m4, vasnprintf.m4,
47899         xstrtol.m4: Fix copyright date and/or serial number.
47900
47901         * m4/chown.m4 (gl_PREREQ_CHOWN): Check for fcntl.h.
47902         See if we need an fchown replacement.
47903         (gl_FUNC_CHOWN_FOLLOWS_SYMLINK): New macro.
47904         (gl_FUNC_CHOWN): Require gl_FUNC_CHOWN_FOLLOWS_SYMLINK,
47905         and use the replacement function if we detect either defect.
47906
47907         * m4/prereq.m4 (gl_PREREQ): Add gl_ALLOCSA, gl_CLOEXEC, gl_INTTOSTR,
47908         gl_UTIMECMP.
47909
47910 2004-06-01  Paul Eggert  <eggert@cs.ucla.edu>
47911         and  Jim Meyering  <jim@meyering.net>
47912
47913         Merge from coreutils CVS.
47914
47915         * lib/stat-macros.h: New file, with contents from file-type.h
47916         and coreutils' system.h.
47917         * lib/file-type.c: Include "stat-macros.h".
47918         * lib/file-type.h (file_type): Move all macro definitions to new file,
47919         stat-macros.h.
47920
47921         * lib/chown.c (rpl_chown) [CHOWN_FAILS_TO_HONOR_ID_OF_NEGATIVE_ONE]:
47922         Wrap old code with this conditional.
47923         [CHOWN_MODIFIES_SYMLINK]: Try to work around a chown
47924         function that does not dereference symlinks.
47925         * lib/lchown.c (lchown) [CHOWN_MODIFIES_SYMLINK]: Just call chown.
47926
47927         * lib/xreadlink.c: Include xreadlink.h first, to catch .h file
47928         dependency problems.
47929         (xreadlink): Accept new arg SIZE, for efficiency.
47930         All decls and uses changed.
47931         * lib/xreadlink.h: Include <stddef.h>, for size_t.
47932
47933         * lib/.cppi-disable: Add alloca_.h, allocsa.h, exit.h, getndelim2.h,
47934         gettext.h, localcharset.h, strdup.h, strndup.h, strtoul.c, time_r.h.
47935
47936         * lib/.cvsignore: Add alloca.h, fnmatch.h, poll.h, stdbool.h,
47937         sysexits.h.
47938
47939 2004-06-01  Jim Meyering  <jim@meyering.net>
47940
47941         * m4/calloc.m4: New file.
47942
47943 2004-05-31  Paul Eggert  <eggert@cs.ucla.edu>
47944
47945         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Detect _Bool bug in HP aC++/ANSI
47946         C B3910B A.05.55 [Dec 04 2003].  Problem reported by Jim Meyering.
47947         Also, fix a typo in a diagnostic.
47948
47949 2004-05-30  Paul Eggert  <eggert@cs.ucla.edu>
47950
47951         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Do not require AC_FUNC_MALLOC
47952         or AC_FUNC_REALLOC.
47953
47954 2004-05-30  Paul Eggert  <eggert@cs.ucla.edu>
47955
47956         * lib/xmalloc.c (HAVE_MALLOC, HAVE_REALLOC): Do not require these
47957         macros to be defined.
47958         (xnmalloc_inline, xnrealloc_inline, xcalloc): Do not die if
47959         the allocator returns NULL because the requested size is zero.
47960
47961 2004-05-20  Paul Eggert  <eggert@cs.ucla.edu>
47962
47963         * lib/malloc/obstack.c (_obstack) [defined _LIBC]: Bring back this
47964         var.  Add comment explaining why libc still defines it.  This
47965         merges the following patch from glibc:
47966         http://sources.redhat.com/ml/libc-alpha/2004-05/msg00157.html
47967
47968 2004-05-20  Andreas Schwab  <schwab@suse.de>
47969
47970         * m4/free.m4: Replace free if it not known to work, not the other
47971         way round.
47972
47973 2004-05-19  Paul Eggert  <eggert@cs.ucla.edu>
47974
47975         * lib/obstack.c (_obstack): Remove unused variable.  It hasn't been
47976         present in glibc since revision 1.1 of this file.
47977         * lib/obstack.h (_obstack_free, obstack_1grow, obstack_1grow_fast,
47978         obstack_alignment_mask, obstack_alloc, obstack_base,
47979         obstack_blank, obstack_blank_fast, obstack_chunk_size,
47980         obstack_copy, obstack_copy0, obstack_finish, obstack_grow,
47981         obstack_grow0, obstack_init, obstack_int_grow,
47982         obstack_int_grow_fast, obstack_make_room, obstack_memory_used,
47983         obstack_next_free, obstack_object_size, obstack_ptr_grow,
47984         obstack_ptr_grow_fast, obstack_room): Remove declarations of
47985         nonexistent functions.
47986
47987 2004-05-18  Karl Berry  <karl@gnu.org>
47988
47989         * config/srclist.txt: break link for vasnprintf.c.
47990
47991 2004-05-17  Paul Eggert  <eggert@cs.ucla.edu>
47992
47993         Port obstack to the AS/400, where pointers are 16 bytes wide and
47994         you cannot cast an integer to a valid pointer.  This patch is
47995         currently waiting to be integrated into glibc; see
47996         <http://sources.redhat.com/ml/libc-alpha/2004-05/msg00073.html>.
47997
47998         * lib/obstack.h (__PTR_TO_INT, __INT_TO_PTR): Remove.
47999         All uses of __INT_TO_PTR (PTR_TO_INT ...) replaced by __PTR_ALIGN.
48000         (__BPTR_ALIGN, __PTR_ALIGN): New macros.
48001         (struct obstack): temp member is now a union of a pointer and
48002         an integer, instead of an integer.  All integer uses changed.
48003         This does not affect the physical layout of struct obstack,
48004         except on hosts (like the AS/400) where the size or alignment of
48005         void * is greater than that of ptrdiff_t.
48006         (obstack_finish) [! (defined __GNUC__ && defined __STDC__ &&
48007         __STDC__)]: Store temporary in pointer member of union, not
48008         integer member.
48009         * lib/obstack.c: Include <stddef.h>, for offsetof.
48010         (struct fooalign): Remove; it doesn't need a name.
48011         (union fooround): Change double to long double, and add void *.
48012         (DEFAULT_ALIGNMENT): Use offsetof to compute.
48013         (DEFAULT_ALIGNMENT, DEFAULT_ROUNDING): Now an enum constant,
48014         not a macro.  Hence the values are always int; so remove all
48015         casts-to-int in uses.
48016
48017 2004-05-17  Paul Eggert  <eggert@cs.ucla.edu>
48018
48019         * config/srclist.txt: Break link for argp-help.c and argp-parse.c until
48020         we can get this patch merged into glibc.
48021
48022 2004-05-17  Derek R. Price  <derek@ximbiot.com>
48023             Paul Eggert  <eggert@cs.ucla.edu>
48024
48025         * m4/argp: Depend on alloca.
48026
48027 2004-05-17  Derek R. Price  <derek@ximbiot.com>
48028             Paul Eggert  <eggert@cs.ucla.edu>
48029
48030         * lib/argp-help.c, argp-parse.c: Assume <alloca.h> rather than
48031         freecoding.
48032
48033 2004-05-17  Bruno Haible  <bruno@clisp.org>
48034
48035         * lib/vasnprintf.c (VASNPRINTF): Correctly handle the case of a
48036         precision that consists of a '.' followed by an empty digit string.
48037         Patch by Tor Lillqvist <tml@iki.fi>.
48038
48039 2004-05-16  Paul Eggert  <eggert@cs.ucla.edu>
48040
48041         * m4/alloca.m4 (gl_FUNC_ALLOCA): Define HAVE_ALLOCA_H always,
48042         for backward compatibility with older code.  We need our own
48043         alloca.h if _AIX is defined.  Define HAVE_ALLOCA if we discover
48044         it under some other name, and our alloca.h will define it.
48045
48046 2004-05-16  Paul Eggert  <eggert@cs.ucla.edu>
48047             Derek Price  <derek@ximbiot.com>
48048
48049         * lib/alloca.c: Include <alloca.h>, to get our interface.
48050         * lib/alloca_.h: Use __alloca on AIX, so that we don't have to
48051         include <alloca.h> first.  Use C89 prototype for alloca; this
48052         requires including <stddef.h> for size_t.  Use extern "C" if C++.
48053         Use #elif for simplicity, since we can assume C89 now.
48054         Don't try to source the system alloca.h since it will not be found
48055         and to prevent recursively including its replacement.
48056         * lib/fnmatch.c: Include <alloca.h> instead of opencoding.
48057         * lib/regex.c: Likewise.
48058
48059 2004-05-16  Derek Price  <derek@ximbiot.com>
48060             Paul Eggert  <eggert@cs.ucla.edu>
48061
48062         getline cleanup.  This changes the getndelim2 API: both order of
48063         arguments, and meaning of delim2 (now uses EOF, not 0, to indicate
48064         no delimiter).
48065
48066         * lib/getline.c: Don't include stddef.h or stdio.h, since our
48067         interface does that.
48068         (getline): Always use getdelim, so that we don't have two
48069         copies of this code.
48070         * lib/getndelim2.c: Include <limits.h>, <inttypes.h>, <stdint.h>
48071         if available.
48072         (PTRDIFF_MAX, SIZE_MAX, SSIZE_MAX): Define if not defined.
48073         (GETNDELIM2_MAXIMUM): New macro.
48074         (getndelim2): Reorder arguments.  delim==EOF now means no delimiter,
48075         instead of the old practice of delim2==0.  All callers changed.
48076         Return -1 on overflow, instead of returning junk.
48077         Do not set *linesize unless allocation succeeds.
48078         * lib/getndelim2.h: Do not include stddef.h; no longer needed, now
48079         that we include sys/types.h.
48080         * lib/getnline.h: Likewise.
48081         * lib/getndelim2.h (GETNLINE_NO_LIMIT): New macro.
48082         (getndelim2): Reorder arguments.
48083         * lib/getnline.c (getnline, getndelim):
48084         Don't discard the NMAX argument.
48085         (getnline): Invoke getndelim, to avoid code duplication.
48086         * lib/getnline.h (GETNLINE_NO_LIMIT): New macro, used instead
48087         of (size_t) -1 by callers of the getnline family.
48088
48089 2004-05-13  Paul Eggert  <eggert@cs.ucla.edu>
48090
48091         * m4/gettime.m4 (gl_GETTIME): Require gl_TIMESPEC.
48092         Check for gettimeofday.
48093         * m4/settime.m4 (gl_SETTIME): Require gl_TIMESPEC.
48094         Check for settimeofday, stime.
48095
48096 2004-05-13  Paul Eggert  <eggert@cs.ucla.edu>
48097
48098         * lib/nanosleep.c (suspended): Change its type from int to
48099         sig_atomic_t volatile.
48100         (first_call): Make it private to rpl_nanosleep, and have it
48101         be zero initially as that's a bit faster.
48102         (my_usleep): Round up fractional times instead of truncating them,
48103         as this is the usual meaning for 'sleep'.
48104
48105         * lib/gettime.c (gettime): Fall back on `time' if `gettimeofday'
48106         doesn't work.
48107         * lib/settime.c: Include <unistd.h>, for stime (on Solaris 8, anyway).
48108         (ENOSYS): Define if not defined.
48109         (settime): Fall back on stime if it exists and settimeofday fails.
48110         But don't bother with fallbacks if a method fails with errno == EPERM.
48111
48112 2004-05-11  Jim Meyering  <jim@meyering.net>
48113
48114         Prior to this change, the save_cwd caller required read access to the
48115         current directory on most systems (ones with the fchdir function).
48116
48117         * lib/save-cwd.c (save_cwd) [HAVE_FCHDIR]: If opening `.' read-only
48118         fails, try write-only, and finally, resort to using xgetcwd.
48119
48120 2004-05-06  Paul Eggert  <eggert@cs.ucla.edu>
48121
48122         * lib/obstack.c, obstack.h: Import changes from libc.
48123
48124 2004-04-28  Bruno Haible  <bruno@clisp.org>
48125
48126         * lib/findprog.c (find_in_path): Treat Cygwin like Windows, since it
48127         also implicitly appends .exe to executables.
48128         * lib/localcharset.c (ISSLASH): Treat Cygwin like Windows, since it now
48129         accepts Windows pathnames.
48130         * lib/pathname.h (ISSLASH, IS_PATH_WITH_DIR, FILESYSTEM_PREFIX_LEN):
48131         Treat Cygwin like Windows, since it now accepts Windows pathnames.
48132         * lib/progreloc.c (ISSLASH, IS_PATH_WITH_DIR, FILESYSTEM_PREFIX_LEN):
48133         Treat Cygwin like Windows, since it now accepts Windows pathnames.
48134         Reported by Derek Robert Price <derek@ximbiot.com>.
48135
48136 2004-04-21  Karl Berry  <karl@gnu.org>
48137
48138         * config/srclist.txt (localcharset.c): break sync.
48139
48140 2004-04-20  Paul Eggert  <eggert@twinsun.com>
48141
48142         * m4/host-os.m4: Add a copyright notice.
48143
48144 2004-04-20  Jim Meyering  <jim@meyering.net>
48145
48146         Change UTILS_ to gl_ in AC_DEFINE'd names.
48147         Change utils_- and jm_-prefixed variables, too.
48148         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Renamed from
48149         UTILS_FUNC_MKDIR_TRAILING_SLASH.
48150         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Renamed from UTILS_FUNC_MKSTEP.
48151
48152         * m4/dirfd.m4 (gl_FUNC_DIRFD): Rename from UTILS_FUNC_DIRFD.
48153         Don't emit trailing blanks.
48154         Also rename jm_-prefixed variables to have gl_ prefix.
48155
48156         * m4/host-os.m4 (gl_HOST_OS): Rename from UTILS_HOST_OS.
48157         Also rename jm_-prefixed variables to have gl_ prefix.
48158
48159         * m4/jm-macros.m4: Reflect the renamings.
48160         * m4/prereq.m4: Likewise.
48161
48162 2004-04-20  Jim Meyering  <jim@meyering.net>
48163
48164         * lib/getndelim2.c (getndelim2): Upon realloc failure, don't leak
48165         memory.
48166
48167 2004-04-20  Jim Meyering  <jim@meyering.net>
48168             Bruno Haible  <bruno@clisp.org>
48169
48170         * lib/localcharset.c (get_charset_aliases) [!VMS && !WIN32]: Don't leak
48171         memory when realloc fails.
48172
48173 2004-04-19  Jim Meyering  <jim@meyering.net>
48174
48175         * m4/readutmp.m4 (gl_PREREQ_READUTMP): Require gl_FUNC_FREE,
48176         now that readutmp.c may call `free (0)'.
48177
48178 2004-04-19  Bruno Haible  <bruno@clisp.org>
48179
48180         * m4/mbrtowc.m4: Change jm_ to gl_ in cache variables as well.
48181         * m4/inttypes_h.m4: Likewise.
48182         * m4/stdint_h.m4: Likewise.
48183         * m4/intmax_t.m4: Likewise.
48184         * m4/uintmax_t.m4: Likewise.
48185
48186 2004-04-18  Jim Meyering  <jim@meyering.net>
48187
48188         * m4/prereq.m4: Don't forbid jm_ prefix.
48189
48190         * m4/afs.m4, m4/allocsa.m4, m4/assert.m4, m4/backupfile.m4:
48191         * m4/bison.m4, m4/check-decl.m4, m4/chown.m4, m4/d-ino.m4:
48192         * m4/d-type.m4, m4/dirname.m4, m4/dos.m4, m4/error.m4, m4/fpending.m4:
48193         * m4/fstypename.m4, m4/fsusage.m4, m4/ftruncate.m4, m4/getdate.m4:
48194         * m4/getgroups.m4, m4/gettext.m4, m4/glibc21.m4, m4/group-member.m4:
48195         * m4/human.m4, m4/intmax.m4, m4/intmax_t.m4, m4/inttostr.m4:
48196         * m4/inttypes.m4, m4/inttypes_h.m4, m4/jm-macros.m4, m4/jm-winsz1.m4:
48197         * m4/jm-winsz2.m4, m4/lchown.m4, m4/lib-check.m4, m4/link-follow.m4:
48198         * m4/localcharset.m4, m4/longlong.m4, m4/ls-mntd-fs.m4, m4/lstat.m4:
48199         * m4/makepath.m4, m4/mbrtowc.m4, m4/mbswidth.m4, m4/memchr.m4:
48200         * m4/memcmp.m4, m4/mkdtemp.m4, m4/mkstemp.m4, m4/mountlist.m4:
48201         * m4/nanosleep.m4, m4/path-concat.m4, m4/perl.m4, m4/prereq.m4:
48202         * m4/putenv.m4, m4/quotearg.m4, m4/regex.m4, m4/stat.m4:
48203         * m4/stdint_h.m4, m4/strftime.m4, m4/strtoimax.m4, m4/strtoll.m4:
48204         * m4/strtoull.m4, m4/strtoumax.m4, m4/timespec.m4, m4/uintmax_t.m4:
48205         * m4/ulonglong.m4, m4/unlink-busy.m4, m4/unlocked-io.m4, m4/uptime.m4,
48206         * m4/utimbuf.m4, m4/utime.m4, m4/utimes-null.m4, m4/vasnprintf.m4:
48207         * m4/xstrtoimax.m4, m4/xstrtol.m4, m4/xstrtoumax.m4:
48208         Change jm_ to gl_ in AC_DEFINE'd names. Update all uses.
48209
48210 2004-04-18  Jim Meyering  <jim@meyering.net>
48211
48212         * lib/readutmp.c (read_utmp) [UTMP_NAME_FUNCTION]: Upon realloc
48213         failure, don't leak memory and do call END_UTMP_ENT.
48214
48215 2004-04-16  Jim Meyering  <jim@meyering.net>
48216
48217         * m4/prereq.m4 (jm_PREREQ_STAT): Remove macro.  It is specific to
48218         coreutils' stat program.
48219         (gl_PREREQ): Don't require jm_PREREQ_STAT.
48220
48221 2004-04-11  Paul Eggert  <eggert@twinsun.com>
48222
48223         * lib/inttostr.h: Include <limits.h> unconditionally, since we assume
48224         C89.
48225         (CHAR_BIT): Remove, since we assume C89.
48226         Include <stdint.h> if available, as per current Autoconf CVS advice.
48227
48228 2004-03-31  Jim Meyering  <jim@meyering.net>
48229
48230         * m4/prereq.m4: Require AC_FUNC_MALLOC, not jm_FUNC_MALLOC.
48231         Require AC_FUNC_REALLOC, not jm_FUNC_REALLOC.
48232         * m4/xalloc.m4: Likewise.
48233
48234 2004-03-30  Paul Eggert  <eggert@twinsun.com>
48235
48236         Merge from coreutils.
48237
48238         * m4/inttostr.m4: New file.
48239         * m4/getdate.m4 (gl_GETDATE): Remove time-related stuff.
48240         Require AM_STDBOOL_H and gl_TIMESPEC instead.
48241         Require gl_CLOCK_TIME.
48242         * m4/clock_time.m4 (gl_CLOCK_TIME): Require AC_GNU_SOURCE.
48243
48244 2004-03-30  Paul Eggert  <eggert@twinsun.com>
48245
48246         * lib/cloexec.h, cloexec.c (set_cloexec_flag): Return int
48247         not bool, to be more consistent with Unix conventions.
48248         Suggested by Bruno Haible.
48249
48250         Merge from coreutils.
48251
48252         * lib/imaxtostr.c, lib/inttostr.c, lib/inttostr.h, lib/offtostr.c:
48253         * lib/umaxtostr.c: New files.
48254
48255         * lib/getdate.h: Include stdbool.h, and timespec.h instead of
48256         the usual <time.h> dance.
48257         (get_date): Change signature to support fractional time stamps.
48258         All callers changed.
48259         * lib/getdate.y: Include "getdate.h" first, as we can now
48260         assume C89 and don't need to worry about 'const'.
48261         Similarly, include "unlocked-io.h" near start, not in middle.
48262         Include <limits.h>.
48263         (textint.value): Use long int rather than int.
48264         (textint.digits): Use size_t rather than int.
48265         (BILLION, LOG10_BILLION): New constants.
48266         (parser_control): New member rel_ns.  Members day_ordinal,
48267         time_zone, month, day, hour, minutes, rel_year, rel_month,
48268         rel_day, rel_hour, rel_minutes, rel_seconds
48269         are now long int, not int.  Member seconds is now struct timespec,
48270         not int.  New member timespec_seen.  Members dates_seen, days_seen,
48271         local_zones_seen, rels_seen, times_seen, zones_seen are now size_t,
48272         not int.
48273         (%union.intval): Now long int, not int.
48274         New member timespec.
48275         (tSDECIMAL_NUMBER, tUDECIMAL_NUMBER): New tokens.
48276         (seconds, signed_seconds, unsigned_seconds): New nonterminals.
48277         (spec): Now is a timespec or an item list.
48278         (timespec, items): New nonterminals.
48279         (time, rel, relunit, number, get_date):
48280         Add support for fractional seconds.
48281         (time): Fix bug: seconds weren't cleared in "00:00 +0000" syntax.
48282         (gmtime, localtime, mktime): Remove decls; not needed with C89.
48283         (to_hour): First arg is now long int, not int.
48284         (to_year): Returns long int, not int.
48285         Don't treat year -70 like 70.
48286         (tm_diff): Returns long int, not int.
48287         (lookup_word): Use bool instead of int when appropriate.
48288         (yylex): Use size_t for count, not int.
48289         Detect overflow when parsing large integer constants.
48290         Add support for fractions.
48291         (get_date): Make pointers 'const' if possible.
48292         Use more-portable code to detect integer overflow.
48293         (main) [TEST]: Adjust to above changes.  Test for localtime failure.
48294         Don't use ctime; it's not reliable if the year has >4 digits.
48295
48296         * lib/human.c (humblock): Inspect BLOCKSIZE if BLOCK_SIZE isn't set.
48297         This is for compatibility with BSD.
48298
48299         * lib/timespec.h (ST_TIME_CMP_NS, ST_TIME_CMP): Define.
48300         (ATIME_CMP, CTIME_CMP, MTIME_CMP, TIMESPEC_NS): Likewise.
48301         From coreutils' system.h.
48302
48303         * lib/userspec.c: Don't include "posixver.h".
48304         (parse_user_spec): Fall back on USER.GROUP parsing, regardless
48305         of POSIX version, as POSIX 1003.1-2001 allows that behavior as a
48306         compatible extension.  Simplify code by removing a boolean int
48307         that was always nonzero if a string was nonnull.
48308
48309 2004-03-30  Jim Meyering  <jim@meyering.net>
48310
48311         Merge from coreutils.
48312
48313         Avoid a configure-time warning about sys/ucred.h on OSF V4.0.
48314         * m4/ls-mntd-fs.m4: Test for sys/ucred.h separately, since
48315         on some systems one must include <grp.h> before it.
48316         Reported by Christian Krackowizer.
48317
48318 2004-03-30  Jim Meyering  <jim@meyering.net>
48319
48320         Merge from coreutils.
48321
48322         * lib/mountlist.c [HAVE_SYS_UCRED_H]: Include grp.h before sys/ucred.h.
48323
48324         * lib/readtokens.c (readtoken): Don't leak 64 bytes when reading
48325         an empty input stream.
48326
48327         * lib/readtokens.c: Include <stdbool.h>.
48328         (readtoken): Use `size_t' rather than int/long.
48329         All callers adjusted.
48330         Use `bool' rather than `int' where appropriate.
48331         Use memset rather than an explicit loop.
48332         Use x2nrealloc rather than xrealloc.
48333         Allow the use of `\0' as a delimiter.
48334         (readtokens): Likewise.
48335         * lib/readtokens.h (readtoken, readtokens): Update prototypes.
48336
48337 2004-03-30  Jim Meyering  <jim@meyering.net>
48338
48339         * m4/realloc.m4: Remove file, since now it does no more than
48340         AC_REQUIRE([AC_FUNC_REALLOC]), and that can be done via
48341         the `configure.ac' section of module/realloc.
48342         * m4/malloc.m4: Likewise, but for AC_FUNC_MALLOC.
48343
48344 2004-03-30  Bruno Haible  <bruno@clisp.org>
48345
48346         * lib/getloadavg.c (getloadavg): Don't assume setlocale returns
48347         nonnull.
48348
48349 2004-03-29  Paul Eggert  <eggert@twinsun.com>
48350
48351         Merge changes to getloadavg.c from coreutils and Emacs.
48352
48353         * lib/getloadavg.c [!defined HAVE_SETLOCALE] (setlocale):
48354         Define to an expression, not to the empty string.
48355         Include cloexec.h and xalloc.h.
48356         (getloadavg): Restore LC_NUMERIC locale after setting it temporarily.
48357         Use set_cloexec_flag rather than rolling our own.
48358         * lib/cloexec.c, lib/cloexec.h: New files.
48359
48360 2004-03-29  Paul Eggert  <eggert@twinsun.com>
48361
48362         * m4/cloexec.m4: New file.
48363
48364 2004-03-18  Paul Eggert  <eggert@twinsun.com>
48365
48366         * lib/getopt.h: Sync with libc CVS.
48367
48368 2004-03-18  Paul Eggert  <eggert@twinsun.com>
48369             Bruno Haible  <bruno@clisp.org>
48370
48371         * m4/mbswidth.m4 (gl_MBSWIDTH): Also test whether <wchar.h> declares
48372         mbswidth.
48373
48374 2004-03-18  Paul Eggert  <eggert@twinsun.com>
48375             Bruno Haible  <bruno@clisp.org>
48376
48377         * lib/mbswidth.h: Include <wchar.h> only if
48378         HAVE_DECL_MBSWIDTH_IN_WCHAR_H, not on all platforms that have
48379         <wchar.h>.
48380         * lib/mbswidth.c: Include <stdio.h> and <time.h> before <wchar.h>.
48381
48382 2004-03-09  Paul Eggert  <eggert@twinsun.com>
48383
48384         * lib/argp-parse.c, getopt.c, getopt.h, getopt1.c:
48385         Sync with libc CVS.
48386         * lib/getopt_int.h: New file, also synced from libc.
48387
48388 2004-03-09  Paul Eggert  <eggert@twinsun.com>
48389
48390         * config/srclistvars.sh: Add GNUWWWLICENSES for eggert.
48391         * config/srclist.txt: Sync getopt with libc.  Add getopt_int.h.
48392         Bring back getopt.c, getopt.h, getopt1.c.
48393
48394 2004-03-07  Paul Eggert  <eggert@twinsun.com>
48395
48396         * m4/c-stack.m4 (gl_PREREQ_C_STACK): Renamed from jm_PREREQ_C_STACK.
48397         All uses changed.  Check for sa_sigaction member; this fixes
48398         a bug first reported by Jason Andrade in
48399         <http://mail.gnu.org/archive/html/bug-textutils/2003-03/msg00027.html>.
48400
48401 2004-03-07  Paul Eggert  <eggert@twinsun.com>
48402
48403         * lib/c-stack.c (SIGACTION_WORKS): New macro.  Use it instead of long
48404         '#if' expressions.  Unlike the code it replaces, it does not
48405         depend on (defined _SC_PAGESIZE).  However, it does depend on
48406         HAVE_STRUCT_SIGACTION_SA_SIGACTION; this last change fixes a bug
48407         first reported by Jason Andrade in
48408         <http://mail.gnu.org/archive/html/bug-textutils/2003-03/msg00027.html>.
48409
48410 2004-02-25  Simon Josefsson  <jas@extundo.com>
48411
48412         * m4/strdup.m4 (gl_PREREQ_STRDUP): Check whether strdup is declared.
48413
48414 2004-02-25  Simon Josefsson  <jas@extundo.com>
48415
48416         * lib/strdup.h: New file.
48417         * lib/strdup.c: Include it.
48418         * lib/path-concat.c: Include strdup.h. Drop strdup declaration.
48419         * lib/userspec.c: Include strdup.h. Drop strdup declaration.
48420
48421 2004-02-23  Karl Berry  <karl@gnu.org>
48422
48423         * doc/maintain.texi, doc/standards.texi, doc/make-stds.texi: new files
48424         (from fencepost.gnu.org:/gd/gnuorg).
48425
48426 2004-02-23  Karl Berry  <karl@gnu.org>
48427
48428         * config/srclistvars.sh (GNUORG) [karl]: redefine.
48429         * config/srclist.txt: add maintain/standards documents.
48430
48431 2004-02-18  Bruno Haible  <bruno@clisp.org>
48432
48433         * m4/xsize.m4 (gl_XSIZE): Require AC_C_INLINE.
48434         Reported by Derek Robert Price <derek@ximbiot.com>.
48435
48436 2004-02-16  Karl Berry  <karl@gnu.org>
48437
48438         * config/mkinstalldirs, install-sh: update from automake.
48439
48440 2004-02-06  Karl Berry  <karl@gnu.org>
48441
48442         * m4/po.m4: update from gettext 0.14.1.
48443
48444 2004-02-06  Karl Berry  <karl@gnu.org>
48445
48446         * lib/config.charset: update from gettext 0.14.1.
48447
48448 2004-02-05  Paul Eggert  <eggert@twinsun.com>
48449
48450         Add comments and code, prompted by suggestions from Bruno Haible
48451         for sh-quote.
48452         * lib/quotearg.h (quotearg_alloc): New decl.  Improve the comments
48453         describing the enum quoting_style values.
48454         * lib/quotearg.c (quotearg_alloc): New function.
48455         (quotearg_buffer_restyled): Treat lone { and } as special.
48456         Treat = as special.  Work around bug with older shells
48457         that "see" a '\' that is really the 2nd byte of a multibyte char.
48458         Quote empty string with shell_quoting_style.
48459
48460 2004-02-03  Bruno Haible  <bruno@clisp.org>
48461
48462         * m4/pipe.m4: New file, from GNU gettext.
48463
48464 2004-02-03  Bruno Haible  <bruno@clisp.org>
48465
48466         * lib/pipe.h: New file, from GNU gettext.
48467         * lib/pipe.c: New file, from GNU gettext.
48468
48469 2004-01-27  Bruno Haible  <bruno@clisp.org>
48470
48471         * m4/execute.m4: New file, from GNU gettext.
48472
48473 2004-01-27  Bruno Haible  <bruno@clisp.org>
48474
48475         * lib/execute.h: New file, from GNU gettext.
48476         * lib/execute.c: New file, from GNU gettext.
48477         * lib/w32spawn.h: New file, from GNU gettext.
48478
48479 2004-01-24  Paul Eggert  <eggert@twinsun.com>
48480
48481         Merge from diffutils.
48482
48483         * lib/file-type.c (file_type): Add typed memory objects.
48484         * lib/file-type.h (S_TYPEISTMO): New macro.
48485
48486         * lib/c-stack.h (c_stack_action): Remove argv argument.
48487         * lib/c-stack.c (c_stack_action): Likewise.  All uses changed.
48488         (die): Don't calculate message unless segv_action returns.
48489         (get_stack_location, min_address_from_argv, max_address_from_argv,
48490         volatile stack_base, volatile_stack_size): Remove.
48491         (segv_handler): If ! HAVE_XSI_STACK_OVERFLOW_HEURISTIC, assume
48492         that every segmentation violation is a stack overflow.  (Ouch!)
48493         See Debian bug 136249 (still outstanding) for more info about why
48494         HAVE_XSI_STACK_OVERFLOW_HEURISTIC fails on Linux kernels.
48495
48496 2004-01-24  Paul Eggert  <eggert@twinsun.com>
48497
48498         Exit-status fix from coreutils.
48499
48500         Use exit_failure consistently in place of EXIT_FAILURE,
48501         so that program exit statuses are consistent on failure.
48502
48503         * lib/argmatch.c (ARGMATCH_DIE) [! defined ARGMATCH_DIE]:
48504         Include "exitfail.h", and use exit_failure rather than EXIT_FAILURE.
48505         * lib/argmatch.h: Comment fix to match the above.
48506         * lib/obstack.c (obstack_exit_failure) [!defined _LIBC]:
48507         Now a macro referring to exit_failure, instead of a separate
48508         variable.  Include "exitfail.h" to get it.
48509         * lib/xstrtol.h: Include "exitfail.h".
48510         (STRTOL_FATAL_ERROR): Exit with status exit_failure, not 2.
48511
48512         * lib/long-options.c (parse_long_options): Use prototype
48513         for usage function arg.  Pass it EXIT_SUCCESS rather than 0,
48514         for clarity.
48515
48516 2004-01-21  Jim Meyering  <jim@meyering.net>
48517
48518         * lib/mktime.c (__mktime_internal) [!_LIBC]: Define to mktime_internal
48519         so as not to conflict with a different-sized __mktime_internal
48520         function in GNU libc.
48521         * lib/timegm.c (__mktime_internal) [!_LIBC]: Likewise.
48522         Problem building statically-linked `ls' reported by Michael Brunnbauer.
48523
48524 2004-01-20  Karl Berry  <karl@gnu.org>
48525
48526         * config/config.guess: update from config.
48527
48528         * config/srclistvars.sh: GNUWWWLICENSES for karl.
48529
48530 2004-01-20  Bruno Haible  <bruno@clisp.org>
48531
48532         Safer stack allocation.
48533         * lib/setenv.c: Include allocsa.h.
48534         (alloca): Remove fallback definition.
48535         (freea): Remove macro.
48536         (__add_to_environ) [!_LIBC]: Use allocsa instead of alloca. Use freesa
48537         instead of freea.
48538
48539 2004-01-20  Bruno Haible  <bruno@clisp.org>
48540
48541         * m4/eealloc.m4: New file, from GNU gettext.
48542
48543 2004-01-20  Bruno Haible  <bruno@clisp.org>
48544
48545         * m4/allocsa.m4: New file, from GNU gettext.
48546
48547 2004-01-20  Bruno Haible  <bruno@clisp.org>
48548
48549         * lib/xallocsa.h: New file, from GNU gettext.
48550         * lib/xallocsa.c: New file, from GNU gettext.
48551
48552 2004-01-20  Bruno Haible  <bruno@clisp.org>
48553
48554         * lib/wait-process.c: On Windows, include windows.h. Needed on mingw.
48555
48556 2004-01-20  Bruno Haible  <bruno@clisp.org>
48557
48558         * lib/wait-process.c (wait_subprocess): Add ignore_sigpipe argument.
48559         * lib/wait-process.c (wait_subprocess): Likewise. Handle SIGPIPE
48560         specially.
48561
48562 2004-01-20  Bruno Haible  <bruno@clisp.org>
48563
48564         * lib/wait-process.c (wait_process): Disable the 2003-10-31 waitid()
48565         patch.
48566
48567 2004-01-20  Bruno Haible  <bruno@clisp.org>
48568
48569         * lib/wait-process.c (cleanup_slaves): Use ANSI C declaration.
48570
48571 2004-01-20  Bruno Haible  <bruno@clisp.org>
48572
48573         * lib/eealloc.h: New file.
48574
48575 2004-01-20  Bruno Haible  <bruno@clisp.org>
48576
48577         * lib/binary-io.h: Avoid warnings on Cygwin.
48578
48579 2004-01-20  Bruno Haible  <bruno@clisp.org>
48580
48581         * lib/allocsa.h: New file, from GNU gettext.
48582         * lib/allocsa.c: New file, from GNU gettext.
48583
48584 2004-01-18  Karl Berry  <karl@gnu.org>
48585
48586         * doc/gpl.texi, doc/lgpl.texi: new files.
48587
48588 2004-01-18  Karl Berry  <karl@gnu.org>
48589
48590         * config/srclistvars.sh (GNUWWWLICENSES): new variable.
48591         * config/srclist.txt ({fdl,gpl,lgpl}.text): get from there.
48592
48593 2004-01-15  Paul Eggert  <eggert@twinsun.com>
48594
48595         Merge from coreutils.
48596
48597         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Check for uintptr_t.
48598         * m4/posixver.m4 (gl_POSIXVER): Require gl_DEFAULT_POSIX2_VERSION.
48599         (gl_DEFAULT_POSIX2_VERSION): Move
48600         the documentation from 'configure' into 'config.hin',
48601         so that 'configure --help' isn't burdened by it and
48602         we don't have to worry about its formatting there.
48603         Reword the documentation so that it's more succinct
48604         and can be run together into a single paragraph.
48605         * m4/same.m4 (gl_SAME): Check for pathconf.
48606
48607 2004-01-15  Paul Eggert  <eggert@twinsun.com>
48608
48609         Merge from coreutils.
48610
48611         * lib/posixver.c: Include posixver.h.
48612
48613         * lib/same.c: Include <stdbool.h>, <limits.h>.
48614         (_POSIX_NAME_MAX): Define if not defined.
48615         (MIN): New macro.
48616         (same_name): If file names are silently truncated, report
48617         that the file names are the same if they are the same after
48618         the silent truncation.
48619
48620         * lib/xstrtod.h (xstrtod): Accept an extra arg, specifying the
48621         conversion function.
48622         * lib/xstrtod.c (xstrtod): Likewise.  All callers changed to
48623         include c-strtod.h and use c_strtod.  Don't include stdlib.h; no
48624         longer needed.
48625
48626 2004-01-15  Jim Meyering  <jim@meyering.net>
48627
48628         Merge from coreutils.
48629
48630         * m4/clock_time.m4 (gl_CLOCK_TIME): Don't set LIB_CLOCK_GETTIME
48631         if no library is required.
48632         * m4/jm-macros.m4: Don't require UTILS_SYS_OPEN_MAX.
48633         * m4/jm-macros.m4 (jm_MACROS): Require gl_FUNC_FREE.
48634         * m4/jm-macros.m4 (jm_MACROS): Require autoconf-2.58.
48635         (AC_LANG_SOURCE): Remove definition, now that we require autoconf-2.58.
48636         * m4/jm-macros.m4 (jm_MACROS): Don't require AC_FUNC_FTW.
48637         * m4/lib-check.m4 (jm_LIB_CHECK): Do not set LIB_CRYPT to the
48638         value, $ac_cv_search_crypt, if it's "none required".
48639         * m4/posixver.m4 (gl_DEFAULT_POSIX2_VERSION): New macro.
48640         * m4/prereq.m4 (jm_PREREQ): Require AC_FUNC_GETLOADAVG,
48641         not gl_FUNC_GETLOADAVG.
48642         * m4/prereq.m4 (jm_PREREQ): Require gl_READTOKENS, gl_MD5, gl_MAKEPATH,
48643         gl_LONG_OPTIONS, and gl_IDCACHE, gl_GETUGROUPS.
48644
48645 2004-01-15  Jim Meyering  <jim@meyering.net>
48646
48647         Merge from coreutils.
48648
48649         * lib/md5.h (rol) [__GNUC__ && __i386__]: Don't use `asm' code.  These
48650         days, gcc-3.x does better all by itself.  Patch from Dean Gaudet:
48651         http://mail.gnu.org/archive/html/bug-coreutils/2003-11/msg00144.html
48652
48653         * lib/posixver.c (DEFAULT_POSIX2_VERSION): Use definition of new,
48654         optional configure-time default.
48655
48656         * lib/version-etc.c (version_etc_copyright): Update copyright date.
48657
48658         * lib/xreadlink.c (xreadlink): Correct outdated comment.
48659
48660 2004-01-15  Alexandre Duret-Lutz  <adl@gnu.org>
48661
48662         Merge from coreutils.
48663
48664         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Do not set LIB_NANOSLEEP to the
48665         value, $ac_cv_search_nanosleep, if it's "none required".
48666
48667 2004-01-14  Paul Eggert  <eggert@twinsun.com>
48668
48669         * lib/fnmatch_loop.c (ALLOCA_LIMIT): Remove macro, which collided
48670         with like-named macro in fnmatch.c.
48671         (EXT): Use an internal constant instead.
48672
48673         Merge fnmatch patches from glibc.
48674         * lib/fnmatch.c (mbsinit): Remove define.
48675         Add libc_hidden_ver (__fnmatch, fnmatch).
48676         * lib/fnmatch_loop.c (FCT): Cast to int32_t and UCHAR when appropriate.
48677         Adjust to renaming of collseq_table_lookup to __collseq_table_lookup.
48678
48679 2004-01-14  Karl Berry  <karl@gnu.org>
48680
48681         * config/install-sh: update from automake.
48682
48683 2004-01-13  Karl Berry  <karl@gnu.org>
48684
48685         * config/install-sh: update from automake.
48686
48687 2004-01-09  Karl Berry  <karl@gnu.org>
48688
48689         * config/install-sh: update from automake.
48690
48691 2004-01-05  Karl Berry  <karl@gnu.org>
48692
48693         * config/config.{sub,guess}: update from config.
48694
48695 2003-12-31  Karl Berry  <karl@gnu.org>
48696
48697         * config/depcomp: update from automake.
48698
48699 2003-12-14  Karl Berry  <karl@gnu.org>
48700
48701         * lib/config.charset: update from gettext-runtime.
48702
48703 2003-12-03  Paul Eggert  <eggert@twinsun.com>
48704
48705         * lib/getgroups.c (getgroups): xmalloc takes one argument, not two.
48706         Bug reported by Alfred M. Szmidt.
48707
48708 2003-12-03  Bruno Haible  <bruno@clisp.org>
48709
48710         * m4/gettext.m4: Upgrade from gettext-0.13.
48711         * m4/po.m4: Upgrade from gettext-0.13.
48712         * m4/size_max.m4 (gl_SIZE_MAX): Don't use the _ONCE macros here.
48713         * m4/intmax.m4: New file, from gettext-0.13.
48714         * m4/printf-posix.m4: New file, from gettext-0.13.
48715
48716 2003-11-29  Karl Berry  <karl@gnu.org>
48717
48718         * lib/argp-{help.c,parse.c,namefrob.h}, argp.h: update from libc.
48719
48720 2003-11-25  Paul Eggert  <eggert@twinsun.com>
48721             Bruno Haible  <bruno@clisp.org>
48722
48723         * lib/printf-parse.h: Don't include sys/types.h.
48724         (ARG_NONE): New macro.
48725         (char_directive): Change type of *arg_index fields to size_t.
48726         * lib/printf-parse.c: Don't include sys/types.h.
48727         (SSIZE_MAX): Remove macro.
48728         (PRINTF_PARSE): Change the type of the arg_index variables to size_t.
48729         Remove unnecessary overflow check.
48730         * lib/vasnprintf.c (VASNPRINTF): Update for type change of *arg_index
48731         fields.
48732
48733 2003-11-25  Bruno Haible  <bruno@clisp.org>
48734
48735         * modules/vasnprintf (Files): Remove m4/ssize_t.m4.
48736
48737 2003-11-25  Bruno Haible  <bruno@clisp.org>
48738
48739         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_PARSE): Don't require
48740         gt_TYPE_SSIZE_T.
48741
48742 2003-11-24  Paul Eggert  <eggert@twinsun.com>
48743
48744         * modules/alloca: Remove dependency on xalloc.
48745
48746 2003-11-24  Paul Eggert  <eggert@twinsun.com>
48747
48748         * lib/alloca.c: Remove dependency on xalloc module.
48749         (xalloc_die): Remove.
48750         (memory_full) [!defined emacs]: New macro.
48751         [!defined emacs]: Don't include xalloc.h.
48752         (alloca): Invoke memory_full, not xalloc_die, if malloc fails or
48753         address arithmetic overflows.  Change datatypes a bit to avoid
48754         unnecessary casts.
48755
48756 2003-11-22  Jim Meyering  <jim@meyering.net>
48757
48758         * lib/xmalloc.c (x2nrealloc_inline): Fix typos in comments:
48759         s/size/size_t/.
48760
48761 2003-11-21  Karl Berry  <karl@gnu.org>
48762
48763         * config/config.{sub,guess}: update from config.
48764
48765 2003-11-18  Karl Berry  <karl@gnu.org>
48766
48767         * config/config.{sub,guess}: update from config.
48768
48769         * config/(printf-{parse,args}.[ch]): sync broken, sigh.
48770
48771 2003-11-17  Paul Eggert  <eggert@twinsun.com>
48772
48773         * README: Mention that S+T cannot overflow if S is the size of
48774         an existing object and T is sufficiently small.
48775
48776 2003-11-17  Jim Meyering  <jim@meyering.net>
48777
48778         On systems without utime and without a utimes function capable of
48779         dealing with a NULL struct utimbuf* argument, this utime replacement
48780         could -- in unusual circumstances -- leak a file descriptor.
48781         * lib/utime.c: Include <unistd.h> and <errno.h>.
48782         (utime_null): Be sure to close `fd' and to preserve errno.
48783         Reported by Geoff Collyer via Arnold Robbins.
48784
48785 2003-11-17  Bruno Haible  <bruno@clisp.org>
48786
48787         * modules/vasnprintf (Files): Add m4/ssize_t.m4.
48788         (Depends-on): Add xsize.
48789
48790 2003-11-17  Bruno Haible  <bruno@clisp.org>
48791
48792         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_PARSE): Require gt_TYPE_SSIZE_T.
48793
48794 2003-11-17  Bruno Haible  <bruno@clisp.org>
48795
48796         * lib/vasnprintf.c (alloca): Remove fallback definition.
48797         (freea): Remove definition.
48798         (VASNPRINTF): Use alloca only for small sizes, say <= 4000 bytes.
48799         Reported by Paul Eggert.
48800
48801 2003-11-16  Paul Eggert  <eggert@twinsun.com>
48802             Bruno Haible  <bruno@clisp.org>
48803
48804         Protect against address arithmetic overflow.
48805         * lib/printf-args.h: Include stddef.h.
48806         (arguments): Change type of field 'count' to size_t.
48807         * lib/printf-args.c (printf_fetchargs): Use size_t instead of
48808         'unsigned int' where appropriate.
48809         * lib/printf-parse.h: Include sys/types.h.
48810         (char_directive): Change type of *arg_index fields to ssize_t.
48811         (char_directives): Change type of fields 'count', max_*_length to
48812         size_t.
48813         * lib/printf-parse.c: Include sys/types.h and xsize.h.
48814         (SSIZE_MAX): Define fallback value.
48815         (PRINTF_PARSE): Use size_t instead of 'unsigned int' and ssize_t
48816         instead of 'int' where appropriate. Check a_allocated, d_allocated
48817         against overflow. Reject %m$ argument numbers > SSIZE_MAX + 1.
48818         * lib/vasnprintf.c: Include xsize.h.
48819         (VASNPRINTF): Use size_t instead of 'unsigned int' where appropriate.
48820         Check alloca, malloc, realloc, ENSURE_ALLOCATION arguments against
48821         overflow. Avoid wraparound when converting a width or precision from
48822         decimal to binary.
48823
48824 2003-11-16  Bruno Haible  <bruno@clisp.org>
48825
48826         Update from GNU gettext.
48827         * lib/printf-parse.c: Generalize to it can be compiled for wide
48828         strings.
48829         (PRINTF_PARSE, CHAR_T, DIRECTIVE, DIRECTIVES): New macros.
48830         * lib/vasnprintf.c: Generalize to it can be compiled for wide strings.
48831         (VASNPRINTF, CHAR_T, DIRECTIVE, DIRECTIVES, PRINTF_PARSE, USE_SNPRINTF,
48832         SNPRINTF): New macros.
48833         Don't include <alloca.h> if the file is used inside libintl.
48834         (local_wcslen): New function, for Solaris 2.5.1.
48835         (VASNPRINTF): Use it instead of wcslen.
48836
48837 2003-11-16  Bruno Haible  <bruno@clisp.org>
48838
48839         * lib/xsize.h (xmax): New function.
48840         (xsum, xsum3, xsum4): Declare as "pure" functions.
48841
48842 2003-11-12  Paul Eggert  <eggert@twinsun.com>
48843
48844         * modules/xalloc (Files): Undo latest change, since xalloc.h
48845         no longer needs SIZE_MAX or PTRDIFF_MAX.
48846
48847 2003-11-12  Paul Eggert  <eggert@twinsun.com>
48848
48849         * m4/xalloc.m4 (gl_PREREQ_XALLOC): Do not require gl_SIZE_MAX or
48850         gl_PTRDIFF_MAX.
48851
48852 2003-11-12  Paul Eggert  <eggert@twinsun.com>
48853
48854         * lib/xstrtol.c (__xstrtol): Remove "break" immediately after
48855         "return", to pacify some unknown compiler.  Problem reported
48856         by Joerg Schilling.
48857
48858 2003-11-12  Paul Eggert  <eggert@twinsun.com>
48859
48860         * lib/xalloc.h: Do not include <limits.h> or <stdint.h>.
48861         (xalloc_oversized): Use sizeof (ptrdiff_t) and sizeof (size_t) for
48862         the heuristic, rather than PTRDIFF_MAX and SIZE_MAX.  This
48863         heuristic is just as accurate as far as we know, and it removes a
48864         dependency on size_max.m4 and ptrdiff_max.m4.
48865
48866 2003-11-11  Bruno Haible  <bruno@clisp.org>
48867
48868         * modules/xsize (Files): Add m4/size_max.m4.
48869         * modules/xalloc (Files): Add m4/size_max.m4, m4/ptrdiff_max.m4.
48870
48871 2003-11-11  Bruno Haible  <bruno@clisp.org>
48872
48873         * m4/size_max.m4: New file.
48874         * m4/ptrdiff_max.m4: New file.
48875         * m4/xsize,m4 (gl_XSIZE): Require gl_SIZE_MAX.
48876         * m4/xalloc.m4 (gl_PREREQ_XALLOC): New macro.
48877         (gl_XALLOC): Invoke it.
48878
48879 2003-11-11  Bruno Haible  <bruno@clisp.org>
48880
48881         * lib/xsize.h (SIZE_MAX): Remove fallback definition.
48882         * lib/xalloc.h: Include limits.h. Assume SIZE_MAX and PTRDIFF_MAX are
48883         defined.
48884
48885 2003-11-10  Paul Eggert  <eggert@twinsun.com>
48886
48887         * lib/xalloc.h (xalloc_oversized): [! (defined PTRDIFF_MAX &&
48888         PTRDIFF_MAX < SIZE_MAX)]: Fix off-by-one error that would have
48889         rejected some allocations of exactly SIZE_MAX - 2 bytes.
48890         From Bruno Haible.
48891         [defined PTRDIFF_MAX && PTRDIFF_MAX < SIZE_MAX]: Use SIZE_MAX,
48892         not (size_t) -1, since it's defined here.
48893
48894 2003-11-09  Karl Berry  <karl@gnu.org>
48895
48896         * config/mkinstalldirs, depcomp, mdate-sh: update from automake.
48897
48898 2003-11-06  Paul Eggert  <eggert@twinsun.com>
48899
48900         * lib/xalloc.h [HAVE_STDINT_H]: Include <stdint.h>.
48901         (xalloc_oversized) [! (PTRDIFF_MAX < SIZE_MAX)]:
48902         Reject sizes of exactly SIZE_MAX bytes.
48903         * lib/xreadlink.c: Include "xalloc.h" before checking whether SIZE_MAX
48904         is defined, since "xalloc.h" now defines SIZE_MAX on modern hosts.
48905
48906 2003-11-05  Bruno Haible  <bruno@clisp.org>
48907
48908         * lib/xsize.h: Include limits.h, to avoid a possible collision with
48909         SIZE_MAX defined in <limits.h> on Solaris.
48910
48911 2003-11-04  Jim Meyering  <jim@meyering.net>
48912
48913         * modules/sysexits: Use the `$(VAR)' notation for AC_SUBST'd
48914         variable names, rather than @VAR@.
48915         * modules/poll: Likewise.
48916
48917 2003-11-04  Bruno Haible  <bruno@clisp.org>
48918
48919         * modules/xsize: New file.
48920         * modules/linebreak: Depend on xsize.
48921         * MODULES.html.sh (func_all_modules): Add xsize.
48922
48923 2003-11-04  Bruno Haible  <bruno@clisp.org>
48924
48925         * m4/xsize.m4: New file.
48926
48927 2003-11-04  Bruno Haible  <bruno@clisp.org>
48928
48929         * lib/xsize.h: New file.
48930         * lib/linebreak.c: Include xsize.h.
48931         (mbs_possible_linebreaks, mbs_width_linebreaks): Check malloc()
48932         argument for overflow.
48933         Suggested by Paul Eggert.
48934
48935 2003-11-03  Karl Berry  <karl@gnu.org>
48936
48937         * config/config.{guess,sub}: update from config.
48938
48939 2003-11-03  Jim Meyering  <jim@meyering.net>
48940
48941         * modules/userspec (lib_SOURCES): Add userspec.h.
48942         (Include): Add "userspec.h".
48943         Improve description.
48944
48945 2003-11-03  Jim Meyering  <jim@meyering.net>
48946
48947         * lib/userspec.c: Include "userspec.h".
48948         * lib/userspec.h: New file.
48949
48950 2003-11-03  Bruno Haible  <bruno@clisp.org>
48951
48952         * m4/wait-process.m4 (gl_WAIT_PROCESS): Also check for waitid.
48953
48954 2003-11-03  Bruno Haible  <bruno@clisp.org>
48955
48956         * lib/wait-process.c (wait_process): Use waitid with WNOWAIT if
48957         available, to avoid (extremely rare) race condition.
48958         Suggested by Paul Eggert.
48959
48960 2003-11-02  Karl Berry  <karl@gnu.org>
48961
48962         * config/srclist.txt (vasprintf.c): sync broken, sigh.
48963
48964 2003-10-31  Paul Eggert  <eggert@twinsun.com>
48965
48966         * lib/mountlist.h (struct mount_entry.me_type_malloced): New member.
48967         * lib/mountlist.c (SIZE_MAX): Define if not defined already.
48968         (read_filesystem_list): Set and use me_type_malloced.
48969         Use "sizeof *me" rather than "sizeof (struct mount_entry)" (or
48970         whatever the type happens to be), for brevity and consistency.
48971         Check for size calculation overflow on Alphas running OSF/1.
48972
48973 2003-10-31  Jim Meyering  <jim@meyering.net>
48974
48975         * lib/hash.c: Include "xalloc.h" for use of xalloc_oversized.
48976
48977         * lib/linebuffer.c: Include <string.h> for declaration of memset.
48978
48979 2003-10-30  Paul Eggert  <eggert@twinsun.com>
48980             Bruno Haible  <bruno@clisp.org>
48981
48982         * lib/vasprintf.c: Include <limits.h>, <stdlib.h>.
48983         (vasprintf): Fail if the resulting length doesn't fit in an 'int'.
48984
48985 2003-10-30  Paul Eggert  <eggert@cs.ucla.edu>
48986
48987         * m4/host-os.m4 (UTILS_HOST_OS): Change netbsd*-gnu pattern back to
48988         netbsd*-gnu*.  Suggested by Robert Millan.
48989
48990 2003-10-29  Paul Eggert  <eggert@twinsun.com>
48991
48992         * modules/group-member: Depend on stdbool.
48993
48994 2003-10-29  Paul Eggert  <eggert@twinsun.com>
48995
48996         * m4/xalloc.m4 (gl_XALLOC): Undo previous change.
48997
48998 2003-10-29  Paul Eggert  <eggert@twinsun.com>
48999
49000         * m4/host-os.m4 (UTILS_HOST_OS): Resurrect netbsd*-gnu.  Add comments
49001         to it, and to knetbsd*-gnu and kfreebsd*-gnu.  Remove the '*' from
49002         after the 'gnu' in these cases.  This fixes some bugs in the
49003         previous change, and is based on suggestions by Robert Millan.
49004
49005 2003-10-29  Paul Eggert  <eggert@twinsun.com>
49006
49007         * lib/xalloc.h (xalloc_oversized): Now a macro, not a function,
49008         so that it works even if SIZE_MAX < N.  Do not include <stdbool.h>;
49009         no longer needed.
49010         * lib/quotearg.c (quotearg_n_options): Use it.
49011         * lib/group-member.c: Include <stdbool.h>.
49012         (free_group_info): Arg is now const *; don't free arg.
49013         (get_group_info): Now returns bool and accepts struct group_info *,
49014         rather than returning a malloc'ed struct group_info *.
49015         All uses changed.  Check for overflow in internal size calculation.
49016
49017         * lib/getusershell.c (readname): Simplify the code by using x2nrealloc
49018         rather than xmalloc/xrealloc.
49019         * lib/linebuffer.c (initbuffer, readlinebuffer): Simplify the code by
49020         using x2realloc rather than xmalloc/xrealloc.  Also, fix a C
49021         conformance bug: the old code used a pointer after freeing the
49022         storage that it addressed.
49023         * lib/hash.c (hash_initialize): Simplify the code by using
49024         xalloc_oversized rather than doing it by hand.
49025         * lib/getgroups.c (getgroups): Don't use xrealloc, since we don't need
49026         the buffer preserved.  Use free and xmalloc instead.
49027         * lib/quotearg.c (quotearg_n_options): Likewise.
49028         Use a simpler test for size overflow.  Don't use xalloc_oversized
49029         because unsigned int might be wider than size_t (!); this suggests
49030         that we should switch from unsigned int to size_t for slot numbers.
49031
49032 2003-10-28  Paul Eggert  <eggert@twinsun.com>
49033
49034         * m4/host-os.m4 (UTILS_HOST_OS): Identify GNU/KFreeBSD and
49035         GNU/KNetBSD.  These implementations use glibc atop the FreeBSD and
49036         NetBSD kernels.  Requested by Richard Stallman.
49037
49038 2003-10-27  Paul Eggert  <eggert@twinsun.com>
49039
49040         * lib/exclude.c (new_exclude): Use xzalloc rather than xmalloc
49041         to allocate the returned structure.  Do not allocate a subarray,
49042         as x2nrealloc will do that.
49043         (add_exclude): Use x2nrealloc to reallocate ex->exclude,
49044         instead of xnrealloc.
49045         (add_exclude_file): Use x2realloc instead of malloc + xnrealloc.
49046
49047 2003-10-27  Bruno Haible  <bruno@clisp.org>
49048
49049         * lib/stdbool_.h: Better support for BeOS.
49050
49051 2003-10-26  Paul Eggert  <eggert@twinsun.com>
49052
49053         * m4/xalloc.m4 (gl_XALLOC): Requore AC_C_INLINE, since xalloc.h
49054         now uses inline.
49055
49056 2003-10-26  Paul Eggert  <eggert@twinsun.com>
49057
49058         * lib/xalloc.h (xalloc_oversized): New static inline function, for
49059         callers that want to do their own size-overflow checking.  Include
49060         <stdbool.h>, since xalloc_oversized returns bool.
49061         * lib/xalloc.c (array_size_overflow): Remove.  All callers changed
49062         to use xalloc_oversized.
49063
49064         Add two functions x2realloc, x2nrealloc, for programs that grow
49065         arrays dynamically by doubling their sizes.
49066         * lib/xalloc.h (x2realloc, x2nrealloc): New decls.
49067         * lib/xmalloc.c (x2nrealloc_inline, x2nrealloc, x2realloc):
49068         New functions.
49069
49070         Port to C99 semantics for 'inline' of external functions.
49071         Bug reported by Bruno Haible.
49072         * lib/xmalloc.c (xnmalloc_inline): New static inline function,
49073         with the old contents of xnmalloc.
49074         (xnmalloc, xmalloc): Use it.
49075         (xnrealloc_inline): New static inline function,
49076         with the old contents of xnrealloc.
49077         (xnrealloc, xrealloc): Use it.
49078
49079         * lib/alloc.c (alloca): xmalloc cannot return NULL, so don't test for
49080         that.
49081
49082 2003-10-26  Karl Berry  <karl@gnu.org>
49083
49084         * config/srclist.txt (COPYING.DOC): no longer available from
49085         /gd/gnuorg; don't know where the ultimate source is.
49086
49087 2003-10-25  Paul Eggert  <eggert@twinsun.com>
49088
49089         Fix several address-calculation bugs in the hash modules,
49090         plus some minor code cleanup.
49091
49092         * lib/hash.h: Include <stdbool.h>, for bool.
49093         * lib/hash.c: Don't include <stdbool.h>, since hash.h does it now.
49094         * lib/hash.h (Hash_hasher, hash_get_n_buckets, hash_get_n_buckets_used,
49095         hash_get_n_entries, hash_get_max_bucket_length,
49096         hash_get_entries, hash_do_for_each, hash_string, hash_initialize,
49097         hash_rehash): Use size_t rather than unsigned.
49098         * lib/hash.c (struct hash_table, hash_get_n_buckets,
49099         hash_get_n_buckets_used, hash_get_n_entries,
49100         hash_get_max_bucket_length, hash_table_ok, hash_print_statistics,
49101         hash_get_entries, hash_do_for_each, hash_string, is_prime,
49102         next_prime, hash_initialize, hash_rehash, hash_delete, hash_print):
49103         Likewise.
49104         (SIZE_MAX): Define if not defined.
49105         (hash_get_max_bucket_length, hash_table_ok, hash_lookup,
49106         hash_get_first, hash_get_next, hash_get_entries, hash_do_for_each,
49107         hash_print):
49108         Use const * when possible.
49109         (hash_string): Use (unsigned char) *P rather than *(unsigned char *) P.
49110         (check_tuning): Fix bug: if tuning parameters were very close to
49111         0 or 1, rounding errors could have caused subscript violations.
49112         (hash_initialize, allocate_entry, hash_print): Remove unnecessary cast.
49113         (hash_initialize): Add 'fail:' label
49114         to free table and return NULL, and use it to simplify code.
49115         Use calloc rather than clearing the storage ourself.
49116         (hash_initialize, hash_rehash): Check for arithmetic overflow in
49117         buffer size calculations.
49118         * lib/hash-pjw.h (hash_pjw): Use size_t, not unsigned.
49119         Include <stddef.h>, for size_t.
49120         * lib/hash-pjw.c (hash_pjw): Likewise.
49121         Switch to method described by Bruno Haible.
49122         Include <limits.h>, for CHAR_BIT.
49123         (SIZE_BITS): New macro.
49124
49125 2003-10-23  Paul Eggert  <eggert@twinsun.com>
49126
49127         * m4/getline.m4 (AM_FUNC_GETLINE):
49128         Don't include getndelim2.o twice into LIBOBJS; this breaks on some
49129         hosts.  Problem reported by Derek Robert Price in
49130         <http://mail.gnu.org/archive/html/bug-gnulib/2003-10/msg00092.html>.
49131         This patch can be withdrawn after Autoconf 2.58 is required for gnulib.
49132         * m4/getndelim2.m4 (gl_GETNDELIM2): Likewise.
49133
49134 2003-10-21  Paul Eggert  <eggert@twinsun.com>
49135
49136         * lib/getndelim2.c (getndelim2): When size calculation overflows,
49137         ceiling the allocation at NMAX bytes rather than silently
49138         discarding input bytes before NMAX is reached.  This makes
49139         a difference only if NMAX exceeds SIZE_MAX / 2.
49140
49141         * lib/obstack.c: Merge from glibc.
49142         [defined _LIBC]: Include <obstack.h>, not "obstack.h".
49143         Add libc_hidden_def (_obstack_newchunk).
49144         (_obstack_free) [! defined _LIBC]: Remove.
49145         [defined _LIBC]: Make a strong alias from obstack_free, rather than
49146         a clone of the function body.
49147         (fputs) [defined _LIBC && defined USE_IN_LIBIO]: Remove.
49148         [defined _LIBC && !defined USE_IN_LIBIO]: Include <libio/iolibio.h>.
49149
49150         * lib/obstack.h: Indenting cleanup, to make it easier to merge with
49151         glibc.
49152         (obstack_grow, obstack_grow0): Remove unnecessary parentheses around
49153         arg to memcpy.
49154
49155         * lib/obstack.h (obstack_1grow_fast): Properly parenthesize arg.
49156         (obstack_ptr_grow_fast, obstack_int_grow_fast):
49157         Don't use lvalue casts, as GCC plans to remove support for them
49158         in GCC 3.5.  Reported by Joseph S. Myers.  This bug
49159         was also present in the non-GCC version, indicating that this
49160         code had always been buggy and had never been widely used.
49161         (obstack_1grow, obstack_ptr_grow, obstack_int_grow, obstack_blank):
49162         Use the fast variant of each macro, rather than copying the
49163         definiens of the fast variant; that way, we'll be more likely to
49164         catch future bugs in the fast variants.
49165
49166 2003-10-20  Bruno Haible  <bruno@clisp.org>
49167
49168         * modules/wait-process: New file.
49169         * MODULES.html.sh (func_all_modules): Add wait-process.
49170
49171 2003-10-20  Bruno Haible  <bruno@clisp.org>
49172
49173         * m4/wait-process.m4: New file.
49174
49175 2003-10-20  Bruno Haible  <bruno@clisp.org>
49176
49177         * lib/wait-process.h: New file, from GNU gettext.
49178         * lib/wait-process.c: New file, from GNU gettext.
49179
49180 2003-10-19  Jim Meyering  <jim@meyering.net>
49181
49182         * lib/vasnprintf.c (vasnprintf): Work around losing snprintf on
49183         HPUX 10.20.
49184
49185 2003-10-18  Karl Berry  <karl@gnu.org>
49186
49187         * config/config.guess: update from config.
49188
49189 2003-10-16  Paul Eggert  <eggert@twinsun.com>
49190
49191         * lib/getgroups.c: Include <errno.h>, <stdlib.h>.
49192         (getgroups): First arg is int, not size_t.
49193         Don't let 'free' mangle errno.
49194
49195 2003-10-16  Paul Eggert  <eggert@twinsun.com>
49196
49197         * README: Mention that gnulib assumes that (foo *) NULL + 0 == NULL.
49198
49199 2003-10-16  Karl Berry  <karl@gnu.org>
49200
49201         * config/config.{guess,sub}: update from config.
49202
49203 2003-10-16  Jim Meyering  <jim@meyering.net>
49204
49205         * lib/xmalloc.c: Include <string.h>, for declarations of memset and
49206         memcpy.
49207
49208 2003-10-15  Paul Eggert  <eggert@twinsun.com>
49209
49210         * lib/exclude.c: Do not include <inttypes.h> or <stdint.h>.
49211         (SIZE_MAX): Remove.
49212         (new_exclude, add_exclude_file): Initial size no longer needs to
49213         be a power of 2.
49214         (add_exclude, add_exclude_file): Use xnrealloc instead of rolling
49215         our own address arithmetic overflow checking.
49216
49217         * lib/fnmatch.c (SIZE_MAX): Define if standard headers don't.
49218         (fnmatch): Do not alloca more than 2000 wide characters;
49219         instead, use malloc for large buffers.
49220         Check for address arithmetic overflow, and return -1
49221         with errno set to ENOMEM in that case.
49222         * lib/fnmatch_loop.c (ALLOCA_LIMIT): New macro.
49223         (NEW_PATTERN): Do not alloca more than 8000 bytes;
49224         instead, return -1.  Check for address arithmetic overflow.
49225
49226 2003-10-14  Paul Eggert  <eggert@twinsun.com>
49227
49228         Handle invalid suffixes and overflow independently, so that
49229         callers can treat them independently as needed.  Fix some bugs in
49230         suffix handling, e.g., "100k@" was not diagnosed as an invalid
49231         suffix for a human-readable blocksize.  The major caller-visible
49232         change is the addition of a new
49233         LONGINT_INVALID_SUFFIX_CHAR_WITH_OVERFLOW enum value, indicating
49234         that both overflow and suffix chars were found.
49235
49236         * lib/human.c (humblock): Don't check separately for invalid suffix
49237         char; that is xstrtoumax's job (now that its bug is fixed).
49238         * lib/xstrtoimax.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM) [defined
49239         INTMAX_MAX]: New macros.
49240         * lib/xstrtol.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM, TYPE_MINIMUM,
49241         TYPE_MAXIMUM): New macros.
49242         (bkm_scale, bkm_scale_by_power): Return strtol_error, not int.
49243         (bkm_scale, bkm_scale_by_power, __xstrtol): Return maximal values
49244         if overflow occurs, as it's what __strtol does and it's more useful
49245         in practice.
49246         (__xstrtol): If __strtol reports some error other than ERANGE,
49247         reflect it to the caller as LONGINT_INVALID.  If it reports
49248         ERANGE, continue the rest of parsing, and report LONGINT_OVERFLOW
49249         | LONGINT_INVALID_SUFFIX_CHAR if both errors occur.
49250         * lib/xstrtol.h (LONGINT_INVALID_SUFFIX_CHAR_WITH_OVERFLOW): New enum
49251         value.
49252         (_STRTOL_ERROR): Handle it.  Abort when given unknown error codes.
49253         * lib/xstrtoul.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM): New macros.
49254         * lib/xstrtoumax.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM)
49255         [defined UINTMAX_MAX]: New macros.
49256
49257 2003-10-14  Bruno Haible  <bruno@clisp.org>
49258
49259         * modules/fatal-signal: Add m4/sig_atomic_t.m4 to file list.
49260
49261 2003-10-14  Bruno Haible  <bruno@clisp.org>
49262
49263         * m4/sig_atomic_t: New file, from GNU gettext.
49264         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Require gt_TYPE_SIG_ATOMIC_T.
49265
49266 2003-10-14  Bruno Haible  <bruno@clisp.org>
49267
49268         * lib/fatal-signal.h: Improved comments. Suggested by Paul Eggert.
49269         * lib/fatal-signal.c: Use sig_atomic_t. Suggested by Paul Eggert.
49270         Also use volatile where needed.
49271
49272 2003-10-12  Paul Eggert  <eggert@twinsun.com>
49273
49274         * modules/xalloc: Do not depend on 'exit'.  Depend on 'stdbool'.
49275         Change maintainer from Bruno Haible to 'all'.
49276
49277 2003-10-12  Paul Eggert  <eggert@twinsun.com>
49278
49279         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Require AC_C_INLINE.
49280
49281 2003-10-12  Paul Eggert  <eggert@twinsun.com>
49282
49283         * lib/xalloc.h (xnmalloc, xzalloc, xnrealloc, xclone): New decls.
49284         (XMALLOC, XCALLOC, XREALLOC, XFREE, CCLONE, CLONE): Deprecate,
49285         and define in terms of the other primitives.
49286         * lib/xmalloc.c: Include stdbool.h; do not include exit.h.
49287         (SIZE_MAX): Define if not already defined.
49288         (array_size_overflow): New function.
49289         (xalloc_die): Abort instead of exiting if 'error' returns.
49290         (xnmalloc, xnrealloc, xzalloc, xclone): New functions.
49291         (xmalloc, xrealloc): Use them.
49292         (xcalloc): Check for address arithmetic overflow.
49293         * lib/xstrdup.c (xstrdup): Use xclone, since memcpy should be
49294         a bit faster than strcpy.
49295
49296 2003-10-10  Simon Josefsson  <jas@extundo.com>
49297
49298         * modules/argp (Depends-on): Add restrict and strcase.
49299
49300 2003-10-10  Simon Josefsson  <jas@extundo.com>
49301
49302         * m4/argp.m4: Add AC_C_INLINE.
49303
49304 2003-10-08  Paul Eggert  <eggert@twinsun.com>
49305
49306         Merge getpass from libc, plus a few fixes.
49307
49308         * lib/getpass.c (HAVE_STDIO_EXT) [_LIBC]: Define to 1.
49309         Include <stdbool.h>.
49310         Include <stdio_ext.h> if HAVE_STDIO_H, otherwise define
49311         __fsetlocking to empty.
49312         [_LIBC]: Do not include "getline.h" or "unlocked-io.h", but
49313         do include <bits/libc-lock.h>.
49314         Do not include <fcntl.h>; not needed.
49315         [_LIBC]: Include <wchar.h>.
49316         (NOTCANCEL_MODE): New macro.
49317         (flockfile, funlockfile) [_LIBC]: New macros.
49318         (__libc_cleanup_push, __libc_cleanup_pop, __getline, __tcgetattr)
49319         [!_LIBC]: New macros.
49320         (call_fclose): New function.
49321         (getpass): Use it.  Save tty stream separately; this simplifies the
49322         code and makes it more reliable if stdin happens to equal stdout.
49323         Invoke __fsetlocking on tty.
49324         Handle thread cancellation if needed.
49325         Namespace cleanup (use __tcgetattr, __getline).
49326         Use bool for Booleans.
49327         [USE_IN_LIBIO]: Handle wide streams.
49328         [!_LIBC]: Unconditionally do the fseek, since we don't know what
49329         stream might go where.
49330
49331         * lib/unlocked-io.h: Include <stdio.h>, so that the caller
49332         doesn't have to include <stdio.h> before us.
49333         (clearerr_unlocked, feof_unlocked, ferror_unlocked,
49334         fflush_unlocked, fgets_unlocked, fputc_unlocked, fputs_unlocked,
49335         fread_unlocked, fwrite_unlocked, getc_unlocked, getchar_unlocked,
49336         putc_unlocked, putchar_unlocked): Define to the unlocked counterpart
49337         if not declared, so that we can use getpass.c code from libc without
49338         rewriting it.
49339         (flockfile, ftrylockfile, funlockfile): New macros.
49340
49341 2003-10-08  Paul Eggert  <eggert@twinsun.com>
49342
49343         * modules/getpass: Depend on stdbool.
49344
49345 2003-10-08  Paul Eggert  <eggert@twinsun.com>
49346
49347         * m4/getpass.m4 (gl_PREREQ_GETPASS): Check for stdio_ext.h.
49348
49349 2003-10-07  Karl Berry  <karl@gnu.org>
49350
49351         * config/config.{guess,sub}: update from config.
49352
49353 2003-10-06  Jim Meyering  <jim@meyering.net>
49354             Bruno Haible  <bruno@clisp.org>
49355
49356         This lets translators provide better translations for the
49357         "Written by ..." part of --version output.
49358         * lib/version-etc.h: Include stdarg.h.
49359         (version_etc_copyright): Declare as readonly.
49360         (version_etc): Make this function variadic with a NULL-terminated list
49361         of author name strings.
49362         (version_etc_va): New declaration.
49363         * lib/version-etc.c: Include stdarg.h, stdlib.h.
49364         (version_etc_copyright): Declare as readonly.
49365         (version_etc_va): New function. Provide a different translatable string
49366         for each possible number of authors < 10. Abbreviate when there are 10
49367         authors or more.
49368         (version_etc): Make this function variadic. Call version_etc_va.
49369         Suggestion from Gary V. Vaughan.
49370
49371         * lib/long-options.h (parse_long_options): Change prototype: the
49372         authors string is moved to the end and becomes variadic.
49373         * lib/long-options.c: Include stdarg.h.
49374         (parse_long_options): Make this function variadic, too.
49375         Call version_etc_va, not version_etc.
49376
49377 2003-10-06  Bruno Haible  <bruno@clisp.org>
49378
49379         * modules/version-etc-2: Remove file.
49380         * MODULES.html.sh (func_all_modules): Remove version-etc-2.
49381
49382 2003-10-06  Bruno Haible  <bruno@clisp.org>
49383
49384         * modules/fatal-signal: New file.
49385         * MODULES.html.sh (func_all_modules): Add fatal-signal.
49386
49387 2003-10-06  Bruno Haible  <bruno@clisp.org>
49388
49389         * m4/fatal-signal.m4: New file.
49390         * m4/signalblocking.m4: New file, from GNU gettext.
49391
49392 2003-10-06  Bruno Haible  <bruno@clisp.org>
49393
49394         * lib/version-etc-2.h: Remove file.
49395         * lib/version-etc-2.c: Remove file.
49396
49397 2003-10-06  Bruno Haible  <bruno@clisp.org>
49398
49399         * lib/fatal-signal.h: New file, from GNU gettext.
49400         * lib/fatal-signal.c: New file, from GNU gettext.
49401
49402 2003-10-05  Paul Eggert  <eggert@twinsun.com>
49403
49404         * README: Rework advice for preventing empty .o files.
49405         Don't recommend ELIDE constructs.  Recommend <stddef.h>,
49406         not <sys/types.h>.
49407
49408 2003-10-04  Karl Berry  <karl@gnu.org>
49409
49410         * lib/argp*: update from libc.
49411
49412 2003-10-04  Karl Berry  <karl@gnu.org>
49413
49414         * config/config.{guess,sub}: update from config.
49415
49416 2003-10-02  Bruno Haible  <bruno@clisp.org>
49417
49418         * modules/lchown (Include): Add lchown.h.
49419         * modules/time_r (Include): Use "..." syntax.
49420         * modules/xgetdomainname (Include): Add xgetdomainname.h.
49421
49422 2003-10-01  Simon Josefsson  <jas@extundo.com>
49423
49424         * MODULES.html.sh (func_all_modules): Move gethostname from section
49425         'based on' to section 'lacking' POSIX:2001.
49426
49427 2003-10-01  Larry Jones  <lawrence.jones@eds.com>
49428
49429         * lib/getpass.c (getpass): Use a no-op fseek when switching from input
49430         to output mode on the same stream.
49431
49432 2003-09-29  Paul Eggert  <eggert@twinsun.com>
49433
49434         * lib/strftime.c (tm_diff) [! HAVE_TM_GMTOFF]:
49435         Fix arg typo in previous patch.
49436
49437 2003-09-28  Jim Meyering  <jim@meyering.net>
49438
49439         * lib/error.c: Correct cpp indentation.
49440
49441 2003-09-27  Paul Eggert  <eggert@twinsun.com>
49442
49443         * modules/free: New file.
49444
49445 2003-09-27  Paul Eggert  <eggert@twinsun.com>
49446
49447         * m4/free.m4: New file.
49448
49449 2003-09-27  Paul Eggert  <eggert@twinsun.com>
49450
49451         * lib/minmax.h (MIN, MAX)
49452         [__STDC__ && defined __GNUC__ && __GNUC__ >= 2]:
49453         Omit the special code that used __typeof__, since we worry that
49454         it could be more trouble than it's worth.  See:
49455         http://mail.gnu.org/archive/html/bug-gnulib/2003-01/msg00090.html
49456         http://mail.gnu.org/archive/html/bug-gnulib/2003-01/msg00095.html
49457
49458         * lib/free.c: New file.
49459
49460 2003-09-27  Oskar Liljeblad  <oskar@osk.mine.nu>
49461
49462         Trivial fixes to Makefile.am parts of module listings.
49463         * modules/strstr: Append strstr.h to lib_SOURCES.
49464         * modules/strcase: Likewise, for strcase.h.
49465
49466 2003-09-27  Karl Berry  <karl@gnu.org>
49467
49468         * config/mkinstalldirs: update from automake.
49469
49470 2003-09-26  Paul Eggert  <eggert@twinsun.com>
49471
49472         * lib/error.c (SIZE_MAX) [!defined SIZE_MAX]: Define.
49473         (error_tail): Do not loop, reallocating temporary buffer, since
49474         the output cannot contain more wide characters than the input
49475         contains bytes, the size must be big enough already.  This avoids
49476         one potential size overflow calculation.  Check for size overflow
49477         when calculating temporary buffer size.  Free temporary buffer
49478         when done, if it was allocated with malloc; this plugs a memory
49479         leak.  Remove casts from void * to pointers, that are no longer
49480         needed now that we're assuming C89 or better.
49481
49482         Merge error changes from glibc.
49483
49484         * lib/error.c, error.h: Update copyright notice header to match glibc.
49485         * lib/error.c [defined _LIBC]: Include <errno.h>, <bits/libc-lock.h>.
49486         (error, error_at_line) [defined _LIBC && defined __libc_ptf_call]:
49487         Disable cancellation while printing error.
49488         * lib/error.h: Prepend __ to parameter names.
49489
49490 2003-09-26  Jim Meyering  <jim@meyering.net>
49491
49492         * lib/error.c (error_tail): Move some declarations
49493         into inner scope where the local variables are used.
49494
49495 2003-09-26  Bruno Haible  <bruno@clisp.org>
49496
49497         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Add comments about the AIX
49498         stpncpy().
49499         Don't define stpncpy through config.h; it's now done through stpncpy.h.
49500
49501 2003-09-26  Bruno Haible  <bruno@clisp.org>
49502
49503         * lib/stpncpy.h (gnu_stpncpy): New declaration.
49504         (stpncpy): Define as alias for gnu_stpncpy.
49505         * lib/stpncpy.c [!_LIBC]: Define gnu_stpncpy, not stpncpy.
49506
49507 2003-09-25  Simon Josefsson  <jas@extundo.com>
49508
49509         * lib/xgetdomainname.h: New file.
49510         * lib/xgetdomainname.c: New file.
49511
49512 2003-09-25  Simon Josefsson  <jas@extundo.com>
49513             Bruno Haible  <bruno@clisp.org>
49514
49515         * modules/getdomainname: New file.
49516         * modules/xgetdomainname: New file.
49517         * MODULES.html.sh (func_all_modules): Add getdomainname,
49518         xgetdomainname.
49519
49520 2003-09-25  Simon Josefsson  <jas@extundo.com>
49521             Bruno Haible  <bruno@clisp.org>
49522
49523         * m4/getdomainname.m4: New file.
49524
49525 2003-09-25  Simon Josefsson  <jas@extundo.com>
49526             Bruno Haible  <bruno@clisp.org>
49527
49528         * lib/getdomainname.h: New file.
49529         * lib/getdomainname.c: New file.
49530
49531 2003-09-25  Karl Berry  <karl@gnu.org>
49532
49533         * lib/argp-fmtstream.c, argp-help.c: update from libc.
49534
49535 2003-09-25  Karl Berry  <karl@gnu.org>
49536
49537         * config/install-sh: update from automake.
49538
49539 2003-09-25  Bruno Haible  <bruno@clisp.org>
49540
49541         * modules/version-etc-2: New file, from modules/version-etc with
49542         modifications.
49543         * MODULES.html.sh (func_all_modules): Add version-etc-2.
49544
49545 2003-09-25  Bruno Haible  <bruno@clisp.org>
49546
49547         * lib/version-etc-2.h: New file, from version-etc.h with modifications.
49548         * lib/version-etc-2.c: New file, from version-etc.c with modifications.
49549
49550 2003-09-24  Simon Josefsson  <jas@extundo.com>
49551
49552         * modules/xgethostname: Add xgethostname.h.
49553
49554 2003-09-24  Paul Eggert  <eggert@twinsun.com>
49555
49556         * lib/linebuffer.c (freebuffer): Don't free the argument, just
49557         the buffer associated with the argument.  Bug reported by
49558         Simon Josefsson.
49559
49560 2003-09-24  Paul Eggert  <eggert@twinsun.com>
49561
49562         * README: Document assumptions that 'int' is at least 32 bits
49563         wide, that integer arithmetic is 2's complement without overflow,
49564         that there are no holes in integer values, that adding sizes of
49565         two nonoverlapping objects can't overflow, and that all-bits-zero
49566         yields scalar zero.  Fix spelling and capitalization typos.
49567
49568 2003-09-19  Karl Berry  <karl@gnu.org>
49569
49570         * lib/argp.h: update from libc.
49571
49572 2003-09-17  Paul Eggert  <eggert@twinsun.com>
49573
49574         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Call AC_BEFORE first,
49575         to avoid spurious warnings like "AC_RUN_IFELSE was called before
49576         gl_USE_SYSTEM_EXTENSIONS" from autoreconf.
49577
49578 2003-09-17  Paul Eggert  <eggert@twinsun.com>
49579
49580         * gnulib-tool: Use "test -h", not "test -L", for portability
49581         to Solaris 8 /bin/sh.  (This bug is fixed in Solaris 9.)
49582         (tags_regexp): Remove, since \| doesn't conform to POSIX.
49583         (sed_extract_prog): Issue s commands one-by-one, rather than
49584         using \| in one s command.
49585
49586 2003-09-16  Paul Eggert  <eggert@twinsun.com>
49587
49588         * lib/linebuffer.c (readlinebuffer): Return NULL immediately upon
49589         input error, instead of returning NULL the next time we are called
49590         (and therefore losing track of errno).
49591
49592 2003-09-16  Bruno Haible  <bruno@clisp.org>
49593
49594         * gnulib-tool (func_create_testdir): Warn about duplicated
49595         dependencies.
49596
49597 2003-09-15  Paul Eggert  <eggert@twinsun.com>
49598
49599         * modules/argmatch, modules/fatal, modules/obstack,
49600         modules/xalloc, modules/xgethostname: Sort dependencies by
49601         importance, not alphabetically.
49602
49603 2003-09-15  Paul Eggert  <eggert@twinsun.com>
49604
49605         * lib/getndelim2.c (getndelim2): Don't trash errno when a read
49606         fails, so that the caller gets the proper errno.
49607
49608         * lib/readutmp.c (read_utmp): Likewise.
49609         Check for fstat error.  Close stream and free storage
49610         when failing.
49611
49612 2003-09-14  Karl Berry  <karl@gnu.org>
49613
49614         * config/srclist.txt (strdup.c): disable for c89 changes.
49615
49616 2003-09-14  Jim Meyering  <jim@meyering.net>
49617
49618         * lib/getloadavg.c: Correct cpp indentation.
49619         * lib/strdup.c: Likewise.
49620         * lib/vasnprintf.c: Likewise.
49621
49622 2003-09-14  Bruno Haible  <bruno@clisp.org>
49623
49624         * modules/fwriteerror: New file.
49625         * MODULES.html.sh (func_all_modules): Add fwriteerror.
49626
49627 2003-09-14  Bruno Haible  <bruno@clisp.org>
49628
49629         * lib/fwriteerror.h: New file.
49630         * lib/fwriteerror.c: New file.
49631
49632 2003-09-12  Paul Eggert  <eggert@twinsun.com>
49633
49634         * modules/argmatch, modules/exitfail, modules/fatal, modules/obstack,
49635         modules/xgethostname, modules/xalloc: Depend on exit.
49636
49637 2003-09-12  Paul Eggert  <eggert@twinsun.com>
49638
49639         * m4/error.m4: Require AC_FUNC_STRERROR_R rather than invoking it.
49640
49641         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Require AC_AIX
49642         and AC_MINIX, too, so that their extensions are available.
49643
49644         * m4/prereq.m4 (jm_PREREQ_ADDEXT): Remove.  All uses removed.
49645         This macro has been superseded by gl_BACKUPFILE.
49646
49647         More patches to assume C89 or better.
49648
49649         * m4/error.m4 (gl_ERROR): Don't check for vprintf.
49650
49651         * m4/check-decl.m4 (jm_CHECK_DECLS): Include <string.h>, <stdlib.h>
49652         unconditionally.
49653         * m4/closeout.m4 (gl_CLOSEOUT): Don't check for stdlib.h.
49654         * m4/gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER):
49655         Include <string.h>, <stdlib.h> unconditionally.
49656         * m4/lstat.m4 (gl_PREREQ_LSTAT): Don't check for stdlib.h, free.
49657         * m4/readdir.m4 (GL_FUNC_READDIR): Don't check for string.h.
49658         * m4/readutmp.m4 (gl_PREREQ_READUTMP): Don't check for standard C
49659         headers or for string.h.
49660         * m4/strtoumax.m4 (gl_PREREQ_STRTOUMAX): Don't check for stdlib.h
49661         or strtoul.
49662
49663         * m4/mkstemp.m4 (jm_PREREQ_TEMPNAME): Do not require standard C
49664         headers.
49665         * m4/strdup.m4 (gl_PREREQ_STRDUP): Likewise.
49666         * m4/userspec.m4 (gl_USERSPEC): Likewise.
49667         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Likewise.
49668         * m4/xstrtod.m4 (gl_XSTRTOD): Likewise.
49669         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
49670         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Don't check for limits.h,
49671         memcpy, memset.
49672         (jm_FUNC_GNU_STRFTIME): Don't require standard C headers.
49673         * m4/strtod.m4 (gl_FUNC_STRTOD): Do not check for float.h.
49674         * m4/strtoimax.m4 (gl_PREREQ_STRTOIMAX): Do not check for stdlib.h,
49675         strtol.
49676         * m4/strtol.m4 (gl_FUNC_STRTOL): Do not check for limits.h.
49677         * m4/userspec.m4 (gl_USERSPEC): Do not check for string.h.
49678         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Do not check for string.h, strtol,
49679         strtoul.
49680
49681 2003-09-12  Paul Eggert  <eggert@twinsun.com>
49682
49683         * lib/argmatch.c, fatal.c, xgethostname.c, xmalloc.c: Include exit.h.
49684         * lib/obstack.c [!defined _LIBC]: Likewise.
49685         * lib/argmatch.c (EXIT_FAILURE): Remove; now done by exit.h
49686         * lib/exitfail.c, fatal.c, xgethostname.c, xmalloc.c: Likewise.
49687         * lib/exitfail.c: Don't include stdlib.h; no longer needed.
49688
49689         More changes to assume C89 or better.
49690
49691         * lib/error.c (error_tail): Assume vprintf.
49692
49693         * lib/argmatch.c (getenv): Remove decl.
49694         * lib/progreloc.c (get_full_program_name): Define via prototype.
49695         * lib/setenv.c (clearenv): Likewise.
49696         * lib/stpncpy.c: Do not include <string.h> or <sys/types.h>; not
49697         needed.
49698         * lib/strdup.c: Include <stdlib.h>, <string.h> unconditionally.
49699         (malloc, memcpy): Remove decls.
49700         * lib/strftime.c (HAVE_LIMITS_H, STDC_HEADERS) [defined _LIBC]: Remove.
49701         (HAVE_MEMCPY) [defined emacs && !defined HAVE_BCOPY]: Remove.
49702         Include <limits.h>, <stddef.h>, <stdlib.h>, <string.h> unconditionally.
49703         (memcpy): Remove macro.
49704         (MEMCPY) [!defined COMPILE_WIDE]: Define to memcpy unconditionally.
49705         (__P): Remove.  All uses removed.
49706         (PTR): Remove.  All uses changed to void *.
49707         (CHAR_BIT, NULL): Remove.
49708         (spaces, zeros, memset_space, memset_zero)
49709         [!defined memset && !defined HAVE_MEMSET && !defined _LIBC]:
49710         Remove.
49711         (LOCALE_PARAM, LOCALE_PARAM_DECL): Remove.
49712         (memcpy_lowcase, memcpy_uppcase, tm_diff, iso_week_days):
49713         Define with prototype.
49714         Remove now-unnecessary prototype decl.
49715         (extra_args_spec): Assume ANSI C.  All uses changed.
49716         (extra_args_spec_iso): Remove.
49717         (my_strftime, emacs_strftimeu): Define via prototype.
49718         * lib/strtod.c: Include <float.h>, <stdlib.h>, <string.h>
49719         unconditionally.
49720         (DBL_MAX, DBL_MIN, HUGE_VAL, NULL): Remove decls.
49721         * lib/strtoimax.c: Include <stdlib.h> unconditionally.
49722         (strtoul, strtol): Remove decls.
49723         * lib/strtol.c (STDC_HEADERS, HAVE_LIMITS_H, NULL, ULONG_MAX,
49724         LONG_MAX): Remove.
49725         Include <limits.h>, <stddef.h>, <stdlib.h>, <string.h> unconditionally.
49726         (LOCALE_PARAM_DECL): Remove.  All uses changed to LOCALE_PARAM_PROTO.
49727         (LOCALE_PARAM_PROTO): New macro.
49728         (INTERNAL, INTERNAL1, WEAKNAME): Assume ANSI C, not K&R.
49729         (INTERNAL (strtol), strtol): Define with a prototype.
49730         (PARAMS): Remove.  All uses removed.
49731         * lib/tempname.c: Include <string.h> unconditionally.
49732         * lib/userspec.c: Include <stdlib.h>, <string.h> unconditionally.
49733         * lib/xgethostname.c (main): Define with a prototype.
49734         * lib/xmalloc.c: Include "xalloc.h" first, to check interface.
49735         Include <stdlib.h> unconditionally.
49736         (calloc, malloc, realloc, free): Remove decls.
49737         * lib/xstrtod.c: Include "xstrtod.h" first, to check interface.
49738         Include <stdlib.h> unconditionally.  Sort include file names.
49739         (strtod): Remove.
49740         (xstrtod): Define with a prototype.
49741         * lib/xstrtol.c: Include <stdlib.h>, <string.h> unconditionally.
49742         (strtol, strtoul): Remove decls.
49743
49744 2003-09-11  Paul Eggert  <eggert@twinsun.com>
49745
49746         More patches to assume C89 or better.
49747         * m4/strndup.m4 (gl_PREREQ_STRNDUP): Remove STDC_HEADERS check.
49748         * m4/strnlen.m4 (gl_PREREQ_STRNLEN): Don't check for memory.h,
49749         string.h, memchr, STDC_HEADERS.
49750
49751 2003-09-11  Paul Eggert  <eggert@twinsun.com>
49752
49753         * lib/strndup.c: Don't include <stdio.h>, <sys/types.h>.
49754         Include <stdlib.h>, <string.h> unconditionally.
49755         Remove now-unnecessary cast to char *.
49756         * lib/strnlen.c: Include <string.h> unconditionally.
49757         * lib/yesno.c (yesno): Define with a prototype.
49758
49759 2003-09-11  Bruno Haible  <bruno@clisp.org>
49760
49761         * config/srclist.txt (setenv.c, unsetenv.c): Disable for the moment.
49762
49763 2003-09-10  Jim Meyering  <jim@meyering.net>
49764
49765         * lib/error.c: Correct indentation of cpp directives.
49766
49767 2003-09-10  Bruno Haible  <bruno@clisp.org>
49768
49769         * m4/strcspn.m4 (gl_PREREQ_STRCSPN): Remove <string.h> check.
49770         * m4/strpbrk.m4 (gl_PREREQ_STRPBRK): Remove <string.h> check.
49771         * m4/strstr.m4 (gl_PREREQ_STRSTR): Remove <string.h> check.
49772         * m4/unicodeio.m4 (gl_UNICODEIO): Remove <string.h> check.
49773         * m4/setenv.m4 (gl_PREREQ_SETENV, gl_PREREQ_UNSETENV): Remove
49774         <stdlib.h> and <string.h> checks.
49775         * m4/xreadlink.m4 (gl_XREADLINK): Remove <stdlib.h> check.
49776         * m4/yesno.m4 (gl_YESNO): Remove <stdlib.h> check.
49777
49778 2003-09-10  Bruno Haible  <bruno@clisp.org>
49779
49780         * lib/strcspn.c: Include <string.h> unconditionally.
49781         * lib/strpbrk.c: Include <string.h> unconditionally.
49782         * lib/strstr.c: Include <string.h> unconditionally.
49783         * lib/unicodeio.c: Include <string.h> unconditionally.
49784         * lib/setenv.c: Include <stdlib.h> and <string.h> unconditionally.
49785         * lib/unsetenv.c: Likewise.
49786         * lib/xreadlink.c: Include <stdlib.h> unconditionally.
49787         * lib/yesno.c: Include <stdlib.h> unconditionally.
49788         (rpmatch): Add prototype.
49789
49790 2003-09-09  Paul Eggert  <eggert@twinsun.com>
49791
49792         More patches to assume C89 or better.
49793         * m4/getcwd.m4 (AC_FUNC_GETCWD_NULL): Don't check for stdlib.h.
49794         * m4/getopt.m4 (gl_GETOPT): Don't check for string.h.
49795         * m4/getugroups.m4 (gl_GETUGROUPS): Do not check for standard C headers
49796         or for string.h.
49797         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Do not check for
49798         stdlib.h.
49799         * m4/group-member.m4 (gl_PREREQ_GROUP_MEMBER): Do not require standard
49800         C headers.
49801         * m4/hard-locale.m4 (gl_HARD_LOCALE): Do not check for stdlib.h,
49802         string.h.
49803         * m4/hash.m4 (gl_HASH): Do not check for stdlib.h, malloc, free.
49804         * m4/human.m4 (gl_HUMAN): Do not check for stdlib.h, string.h, getenv.
49805         * m4/idcache.m4 (gl_IDCACHE): Do not check for standard C headers,
49806         or for string.h.
49807         * m4/long-options.m4 (gl_LONG_OPTIONS): Do not check for stdlib.h.
49808         * m4/makepath.m4 (gl_MAKEPATH): Do not check for string.h or standard
49809         C headers.
49810         * m4/md5.m4 (gl_MD5): Don't check for limits.h, standard C headers,
49811         memcpy.
49812         * m4/sha.m4 (gl_SHA): Don't check for standard Cheaders, memcpy.
49813         * m4/memchr.m4 (jm_PREREQ_MEMCHR): Don't check for limits.h, stdlib.h.
49814         * m4/memcmp.m4 (gl_PREREQ_MEMCMP): Don't check for string.h.
49815         * m4/memcoll.m4 (gl_MEMCOLL): Likewise.
49816         * m4/memrchr.c (gl_PREREQ_MEMRCHR): Don't check for limits.h.
49817         * m4/mkdir-slash.m4 (gl_PREREQ_MKDIR): Don't check for stdlib.h,
49818         string.h, free.
49819         * m4/mktime.m4 (gl_PREREQ_MKTIME): Don't check for standard C headers.
49820         * m4/modechange.m4 (gl_MODECHANGE): Don't check for standard C headers.
49821         * m4/mountlist.m4 (gl_PREREQ_MOUNTLIST_EXTRA): Don't check for standard
49822         C headers, or for string.h.
49823         * m4/obstack.m4 (gl_OBSTACK): Don't check for stddefe.h, string.h.
49824         (gl_PREREQ_OBSTACK): Don't check for stdlib.h.
49825         * m4/path-concat.m4 (gl_PATH_CONCAT): Don't check for standard C
49826         headers, memory.h, stdlib.h, string.h, strings.h.
49827         * m4/posixtm.m4 (gl_POSIXTM): Don't check for stdlib.h, string.h.
49828         * m4/posixver.m4 (gl_POSIXVER): Don't check for getenv.
49829         * m4/putenv.m4 (gl_PREREQ_PUTENV): Don't check for string.h, memcpy,
49830         strchr.
49831         * m4/readtokens.m4 (gl_READTOKENS): Don't check for standard C
49832         headers, memory.h, string.h.
49833         * m4/regex.m4 (jm_PREREQ_REGEX): Do not check for limits.h, string.h.
49834         * m4/rename.m4 (gl_PREREQ_RENAME): Do not check for stdlib.h, string.h,
49835         free.
49836         * m4/rpmatch.m4 (gl_PREREQ_RPMATCH): Don't check for standard C
49837         headers.
49838         * m4/same.m4 (gl_SAME): Don't check for stdlib.h, string.h, free.
49839         * m4/save-cwd.m4 (gl_SAVE_CWD): Don't check for standard C headers.
49840         * m4/savedir.m4 (gl_SAVEDIR): Don't check for standard C headers.
49841         * m4/strchrnul.m4 (gl_PREREQ_STRCHRNUL): Don't check for string.h.
49842         * m4/xgetcwd.m4 (gl_XGETCWD): Don't check for stdlib.h.
49843
49844 2003-09-09  Paul Eggert  <eggert@twinsun.com>
49845
49846         More K&R removal.
49847
49848         * lib/acosl.c (main): Use a prototype.
49849         * lib/asinl.c, cosl.c, expl.c, frexpl.c, ldexpl.c, sinl.c,
49850         tanl.c: Likewise.
49851
49852         * lib/getloadavg.c (getloadavg, main): Define via prototypes.
49853
49854         * lib/getopt.h (struct option.name): Assume C89, and use 'const'.
49855         (getopt, etopt_long, getopt_long_only, _getopt_internal)
49856         [defined __GNU_LIBRARY__]: Assume C89, so we can always declare
49857         with a prototype.
49858         * lib/getopt.c (const): Remove macro.
49859         Include <string.h> unconditionally.
49860         (my_index): Remove; all uses changed to strchr.
49861         (strlen): Remove decl.
49862         (exchange): Remove forward decl; no longer needed.
49863         (exchange, _getopt_initialize, _getopt_internal, getopt, main):
49864         Define with prototype.
49865         * lib/getopt1.c (const): Remove macro.
49866         (getopt_long, getopt_long_only, main): Define with prototype.
49867
49868         * lib/getugroups.c: Include <string.h> unconditionally.
49869
49870         * lib/getusershell.c: Include <stdlib.h> unconditionally.
49871         (getusershell, setusershell, endusershell, readname, main):
49872         Define with prototypes.
49873
49874         * lib/group-member.c: Include group-member.h first.
49875         Include <stdlib.h> unconditionally.
49876
49877         * lib/hard-locale.c: Include hard-locale.h first.
49878         Include <stdlib.h>, <string.h> unconditionally.
49879
49880         * lib/hash.c (free, malloc): Remove decls.
49881         Include <stdlib.h> unconditionally.
49882
49883         * lib/human.c: Include <stdlib.h>, <string.h> unconditionally.
49884         (getenv): Do not declare.
49885
49886         * lib/idcache.c: Include <string.h> unconditionally.
49887
49888         * lib/long-options.c: Include long-options.h first, to test interface.
49889         Include <stdlib.h> unconditionally.
49890
49891         * lib/makepath.c: Include makepath.h first, to test interface.
49892         Include <stdlib.h> and <string.h> unconditionally.
49893
49894         * lib/linebuffer.c: Include <stdlib.h>.
49895         (free): Remove decl.
49896
49897         * lib/malloc.c: Include <stdlib.h>, for malloc; don't bother with
49898         stddef.h. rpl_malloc returns void *, not char *.
49899         * lib/realloc.c (rpl_realloc): Likewise.  Also, define with a
49900         prototype.
49901
49902         * lib/md5.h: Include <limits.h> unconditionally.
49903         (UINT_MAX_32_BITS): Don't worry about non-__STDC__ case.
49904         (__P): Remove; all uses removed.
49905         * lib/md5.c: Include "md5.h" first.
49906         (md5_init_ctx, md5_read_ctx, md5_finish_ctx, md5_stream,
49907         md5_buffer, md5_process_bytes, md5_process_block):
49908         Define with prototypes.
49909         * lib/sha.h (__P): Remove all uses.  (It wasn't defined??)
49910         * lib/sha.c: Include "sha.h" first.
49911         Include <stdlib.h>, <string.h> unconditionally.
49912
49913         * lib/memchr.c (__ptr_t): Remove; all uses changed to void *.
49914         * lib/memcmp.c (__ptr_t): Likewise.
49915         * lib/memrchr.c (__ptr_t): Likewise.
49916         * lib/memchr.c, memcmp.c, memcoll.c, memrchr.c:
49917         Include <string.h> unconditionally.
49918         * lib/memchr.c, memrchr.c: Include <limits.h> unconditionally.
49919         * lib/memchr.c: Include <stdlib.h> unconditionally.
49920         * lib/memchr.c (LONG_MAX): Remove.
49921         * lib/memrchr.c (LONG_MAX): Likewise.
49922         * lib/memchr.c (__memchr): Define via a prototype.
49923         * lib/memrchr.c (__memrchr): Likewise.
49924         * lib/memcmp.c (__P): Remove, and remove all uses.
49925         (memcmp_bytes, memcmp_common_alignment, memcmp_not_common_alignment):
49926         Remove forward decls; no longer needed.
49927         * lib/memcpy.c, memmove.c, memset.c: Include <stddef.h>.
49928         Use types required by C89 in prototype.
49929
49930         * lib/mkdir.c: Include <stdlib.h>, <string.h> unconditionally.
49931         * lib/savedir.c: Likewise.
49932         * lib/mkdir.c (free): Remove decl.
49933         * lib/rmdir.c (rmdir): Define with a prototype.
49934         * lib/savedir.c: Include savedir.h first, to test interface.
49935
49936         * lib/mktime.c (STDC_HEADERS): Remove.
49937         Include <stdlib.h>, <string.h> unconditionally.
49938
49939         * lib/modechange.c: Include <stdlib.h> unconditionally.
49940         (malloc): Remove decl.
49941
49942         * lib/mountlist.c: Include <stdlib.h>, <string.h> unconditionally.
49943         (free): Remove decl.
49944
49945         * lib/obstack.h (PTR_INT_TYPE) [!defined __PTRDIFF_TYPE__]:
49946         Define to ptrdiff_t, without bothering to check HAVE_STDDEF_H.
49947         (This type really should be intptr_t, but that's a C99ism.)
49948         (_obstack_memcpy): Remove: all uses changed to memcpy.
49949         Include <string.h> unconditionally.
49950         (struct obstack): Assume __STDC__ for types of members
49951         chunkfun, freefun, extra_arg.
49952         (_obstack_newchunk, _obstack_free, _obstack_begin, _obstack_begin_1,
49953         _obstack_memory_used, obstack_alloc_failed_handler, obstack_init,
49954         obstack_begin, obstack_specify_allocation,
49955         obstack_specify_allocation_with_arg, obstack_chunkfun,
49956         obstack_freefun, obstack_free) [! (defined __STDC__ && __STDC__)]:
49957         Remove unprototyped decls and the macros that use them.
49958         * lib/obstack.c (POINTER): Remove.  All uses changed to void *.
49959         (obstack_alloc_failed_handler, CALL_CHUNKFUN, CALL_FREEFUN,
49960         _obstack_begin, _obstack_begin_1, _obstack_allocated_p)
49961         (defined __STDC__ && __STDC__)]:
49962         Remove nonprototyped code.
49963         Include <stdlib.h> unconditionally.
49964         (_obstack_begin, _obstack_begin_1, _obstack_newchunk,
49965         _obstack_allocated_p, _obstack_free, obstack_free,
49966         _obstack_memory_used, print_and_abort):
49967         Define using prototypes.
49968         (obstack_1grow, obstack_1grow_fast, obstack_alloc, obstack_base,
49969         obstack_blank, obstack_blank_fast, obstack_copy, obstack_copy0,
49970         obstack_finish, obstack_grow, obstack_grow0, obstack_make_room,
49971         obstack_next_free, obstack_object_size, obstack_room) [0]:
49972         Remove unused, unprototyped code.
49973
49974         * lib/path-concat.c: Include <stdlib.h>, <string.h> unconditionally.
49975
49976         * lib/physmem.c (physmem_total, physmem_available, main): Define
49977         with prototypes.
49978
49979         * lib/posixtm.c: Include <stdlib.h>, <string.h> unconditionally.
49980         (main): Define with a prototype.
49981
49982         * lib/posixver.c (getenv): Remove decl.
49983
49984         * lib/putenv.c (malloc): Returns void *, not char *.
49985         Include <string.h> unconditionally.
49986         (strchr, memcpy, NULL): Do not define.
49987
49988         * lib/readtokens.c: Include readtokens.h first, to test interface.
49989         Include <stdlib.h>, <string.h> unconditionally.
49990         (init_tokenbuffer): Define with a prototype.
49991
49992         * lib/regex.c (PARAMS): Remove.  All uses removed.
49993         All uses of _RE_ARGS removed, too.
49994         Include <stddef.h>, <stdlib.h>, <string.h>, <limits.h>
49995         unconditionally.
49996         (bzero): Assume memset exists.
49997         (memcmp, memcpy, NULL): Remove.
49998         (SIGN_EXTEND_CHAR): Remove; all uses replaced by casts to signed
49999         char, or assignments to local vars of type signed char.
50000         (init_syntax_once, PREFIX(extract_number_and_incr),
50001         PREFIX(print_partial_compiled_pattern),
50002         PREFIX(print_compiled_pattern), PREFIX(print_double_string),
50003         convert_mbs_to_wcs, print_fastmap, re_set_syntax,
50004         PREFIX(regex_grow_registers), PREFIX(regex_compile),
50005         PREFIX(store_op1), PREFIX(store_op2), PREFIX(insert_op1),
50006         PREFIX(insert_op2), PREFIX(at_begline_loc_p),
50007         PREFIX(at_endline_loc_p), group_in_compile_stack, insert_space,
50008         wcs_compile_range, byte_compile_range, truncate_wchar,
50009         PREFIX(re_compile_fastmap), re_compile_fastmap, re_set_registers,
50010         re_search, re_search_2, PREFIX(re_search_2), re_match, re_match_2,
50011         count_mbs_length, wcs_re_match_2_internal,
50012         byte_re_match_2_internal, PREFIX(group_match_null_string_p),
50013         PREFIX(alt_match_null_string_p),
50014         PREFIX(common_op_match_null_string_p), PREFIX(bcmp_translate),
50015         re_compile_pattern, re_comp, re_exec, regcomp, regexec, regerror,
50016         regfree, PREFIX(extract_number)): Define with prototype.  Remove
50017         now-unnecessary declaration, if any.
50018         (byte_compile_range, PREFIX(regex_compile), re_comp, re_exec,
50019         regcomp, regexec):
50020         Remove now-unnecessary casts among pointer types.
50021         * lib/regex.h (_RE_ARGS): Remove.  All uses removed.
50022
50023         * lib/rename.c: Include <stdlib.h>, <string.h> unconditionally.
50024         (free): Remove decl.
50025
50026         * lib/rpmatch.c: Include <stdlib.h> unconditionally.
50027
50028         * lib/same.c: Include <stdlib.h>, <string.h> unconditionally.
50029         (free): Remove decl.
50030
50031         * lib/save-cwd.c: Include <stdlib.h> unconditionally.
50032         * lib/xgetcwd.c: Likewise.
50033
50034         * lib/stat.c: Include <stdlib.h>, <string.h> unconditionally.
50035         (free): Remove decl.
50036
50037         * lib/strchrnul.c (strchrnul): Define with a prototype.
50038         Fix bug: c_in was not converted to char before searching.
50039
50040         The following changes are not K&R related:
50041
50042         * lib/group-member.h: Include <sys/types.h>, so that this file is
50043         self-contained.
50044         * lib/makepath.h: Likewise.
50045
50046         * lib/getusershell.c (readname, default_index, line_size, readname):
50047         Use size_t, not int, for sizes.
50048         (readname): If the size overflows, report an error instead of
50049         looping forever.
50050
50051 2003-09-09  Paul Eggert  <eggert@twinsun.com>
50052
50053         * config/srclist.txt: Do not get getopt.h, getopt1.c, or regex.h from
50054         libc.
50055
50056 2003-09-09  Paul Eggert  <eggert@twinsun.com>
50057
50058         * README: New section: portability guidelines.
50059
50060 2003-09-09  Derek Robert Price  <derek@ximbiot.com>
50061
50062         * m4/getndelim2.m4 (gl_PREREQ_GETNDELIM2): Assume stdlib.h per the
50063         C89 spec.
50064
50065 2003-09-09  Derek Robert Price  <derek@ximbiot.com>
50066
50067         * lib/getndelim2.c: Assume stdlib.h per the C89 spec.
50068
50069 2003-09-08  Paul Eggert  <eggert@twinsun.com>
50070
50071         Assume C89 or better; remove K&R cruft.
50072         A few of these changes were first proposed by Derek Robert Price
50073         in <http://mail.gnu.org/archive/html/bug-gnulib/2003-07/msg00105.html>.
50074
50075         * lib/addext.c: Include <string.h> unconditionally.
50076         * lib/backupfile.c: Include <string.h>, <stdlib.h> unconditionally.
50077         Don't declare getenv or malloc.
50078
50079         * lib/alloca.c: Include <string.h>, <stdlib.h> unconditionally.
50080         (POINTER_TYPE, pointer): Remove; all uses changed to void *.
50081         (NULL): Remove.
50082         (find_stack_direction, alloca): Use prototypes.
50083
50084         * lib/atexit.c (atexit): Define using a prototype.
50085
50086         * lib/basename.c, dirname.c, stripslash.c:
50087         Include <string.h> unconditionally.
50088
50089         * lib/bcopy.c: Include <stddef.h>.
50090         (bcopy): Define with prototype, using 'const' and 'void' and 'size_t'.
50091
50092         * lib/canon-host.c: Include <stdlib.h>, <string.h> unconditionally.
50093
50094         * lib/error.h (error, error_at_line, error_print_progname)
50095         [! (defined (__STDC__) && __STDC__)]: Remove decls.
50096         * lib/error.c: Include error.h first, to check interface.
50097         Include <stdarg.h>, <stdlib.h>, <string.h> unconditionally.
50098         (VA_START): Remove; all uses changeed to va_start.
50099         (exit, strerror): Remove decls.
50100         (error_print_progname): Prototype uncondionally.
50101         Don't include <errno.h>; no longer needed.
50102         (private_strerror): Remove.
50103         (error_tail): Always define.
50104         (error, error_at_line): Assume C89 or better; always use prototypes.
50105         * lib/fatal.c: Include "fatal.h" first, to test interface.
50106         Include <stdarg.h>, <stdlib.h>, <string.h> unconditionally.
50107         (VA_START): Remove; all uses changed to va_start.
50108         [! (HAVE_VPRINTF || HAVE_DOPRNT || _LIBC)]: Remove support for
50109         this case.
50110         (exit): Remove decl.
50111         (fatal): Prototype unconditionally.  Assume va_start works.
50112         Abort at end, to pacify gcc.
50113
50114         * lib/euidaccess.c (main): Define with a prototype.
50115
50116         * lib/exclude.c: Include <stdlib.h>, <string.h> unconditionally.
50117
50118         * lib/exitfail.c: Include <stdlib.h> unconditionally.
50119
50120         * lib/fnmatch_.h (__P): Remove.  All uses changed to assume
50121         prototypes.
50122         * lib/fnmatch.c: Include fnmatch.h first, to test interface.
50123         Include <string.h>, <stddef.h>, <stdlib.h> unconditionally.
50124         (getenv): Remove decl.
50125         (fnmatch): Define using a prototype.
50126         * lib/fnmatch_loop.c (FCT): Remove forward decl; no longer needed.
50127         (FCT): Define using a prototype.
50128
50129         * lib/getdate.y: Include <stdlib.h>, <string.h> unconditionally.
50130
50131         * lib/gethostname.c: Include <stddef.h>.
50132         (gethostname): Define with prototype.  Length is size_t, not int.
50133
50134 2003-09-08  Paul Eggert  <eggert@twinsun.com>
50135
50136         Assume C89 or better; remove K&R cruft.
50137         * m4/alloca.m4 (gl_PREREQ_ALLOCA): Don't check for stdlib.h, string.h.
50138         * m4/backupfile.m4 (gl_BACKUPFILE): Don't check for stdlib.h,
50139         string.h, getenv, malloc.
50140         * m4/dirname.m4 (gl_DIRNAME): Don't check for string.h or C standard
50141         headers.
50142         * m4/canon-host.m4 (gl_CANON_HOST): Don't check for string.h, stdlib.h.
50143         * m4/error.m4 (jm_PREREQ_ERROR): Do not require STDC headers, and
50144         do not check for strerror.
50145         * m4/exclude.m4: Do not check for stdlib.h, string.h, strings.h.
50146         * m4/exitfail.m4 (gl_EXITFAIL): Do not check for stdlib.h.
50147         * m4/fatal.m4 (gl_FATAL): Do not require STDC headers, and
50148         do not check for doprnt or vprintf.
50149         * m4/fnmatch.m4 (gl_PREREQ_FNMATCH_EXTRA): Remove.  All uses removed.
50150         * m4/getdate.m4 (gl_GETDATE): Don't check for stdlib.h or string.h.
50151
50152 2003-09-08  Paul Eggert  <eggert@twinsun.com>
50153
50154         * lib/getversion.c: Remove; was migrated to backupfile.c in 1997.
50155         getversion.c should have been removed then, but was accidentally
50156         preserved.
50157
50158         * lib/utime.c [!HAVE_UTIMES_NULL]: Include <sys/stat.h>, <fcntl.h>.
50159         (utime_null): Fix typo: 'st' was sometimes called 'sb'.
50160
50161 2003-09-08  Karl Berry  <karl@gnu.org>
50162
50163         * config/config.sub, config.guess, srclistvars.sh: update from savannah
50164                 config, forget about prep.
50165
50166         * config/depcomp, missing: update from automake.
50167
50168 2003-09-07  Paul Eggert  <eggert@twinsun.com>
50169
50170         * modules/time_r: Depend on 'restrict'.  Fix from Simon Josefsson in
50171         <http://mail.gnu.org/archive/html/bug-gnulib/2003-09/msg00028.html>.
50172
50173 2003-09-07  Paul Eggert  <eggert@twinsun.com>
50174
50175         * lib/time_r.c (gmtime_r, localtime_r): Fix silly typo: missing arg to
50176         copy_tm_result.  Bug reported by Simon Josefsson in
50177         <http://mail.gnu.org/archive/html/bug-gnulib/2003-09/msg00028.html>.
50178
50179 2003-09-06  Paul Eggert  <eggert@twinsun.com>
50180
50181         * m4/time_r.m4: New file.
50182         * m4/mktime.m4 (gl_PREREQ_MKTIME): Remove check for limits.h.
50183         * m4/timegm.m4 (gl_FUNC_TIMEGM): Assume that timegm is buggy if mktime
50184         is. Check for timegm declaration.
50185         (gl_PREREQ_TIMEGM): Require gl_FUNC_MKTIME.
50186         Do not check for gmtime_r.
50187         Replace mktime if __mktime_internal does not exist and if mktime
50188         hasn't been replaced already.
50189
50190 2003-09-06  Paul Eggert  <eggert@twinsun.com>
50191
50192         * lib/time_r.c, lib/time_r.h: New files.
50193
50194         * lib/mktime.c (my_mktime_localtime_r): Remove; all uses changed to
50195         __localtime_r.
50196         (__localtime_r) [!defined _LIBC]: New macro.  Include <time_r.h>.
50197         (__mktime_internal) [!defined _LIBC]: Now extern, not static.
50198
50199         * lib/strftime.c (my_strftime_gmtime_r): Remove; all uses changed to
50200         __gmtime_r.
50201         (my_strftime_localtime_r): Remove; all uses changed to __localtime_r.
50202         (__gtime_r, __localtime_r) [!HAVE_TM_GMTOFF]: New macros.
50203         Include <time_r.h>.
50204
50205         * lib/timegm.c: Switch to glibc implementation, with the following
50206         changes:
50207         [defined HAVE_CONFIG_H]: Include <config.h>.
50208         [!defined _LIBC]: Include "timegm.h" rather than <time.h>.
50209         (__mktime_internal) [!defined _LIBC]: New decl.
50210         (__gmtime_r) [!defined _LIBC]: New macro and function.
50211         (timegm): Use a prototype, since gnulib assumes C89.
50212         Do not bother declaring tmp to be const, as it's not really usefu.
50213         * lib/timegm.h: Hoist "#include <time.h>" out of #ifdef.
50214         (timegm): Declare only if HAVE_DECL_TIMEGM.
50215
50216 2003-09-06  Paul Eggert  <eggert@twinsun.com>
50217
50218         * MODULES.html.sh (func_all_modules): Add time_r.
50219         * modules/time_r: New file.
50220         * modules/mktime, modules/strftime, modules/timegm: Depend on time_r.
50221         * modules/timegm: Depend on mktime.  Change maintainer to "all, glibc".
50222
50223 2003-09-03  Paul Eggert  <eggert@twinsun.com>
50224
50225         * lib/human.c (human_readable): Fix bug that rounded 10501 to 10k.
50226         Bug reported by Lute Kamstra in
50227         <http://mail.gnu.org/archive/html/bug-gnulib/2003-09/msg00003.html>.
50228
50229         * lib/getdate.y (relative_time_table): Use tDAY_UNIT for "tomorrow",
50230         "yesterday", "today", and "now" rather than tMINUTE_UNIT.  Of
50231         course with correspondingly smaller numbers for tomorrow and
50232         yesterday.  From Tadayoshi Funaba.  Originally installed into
50233         sh-utils on 1999-08-07, but the patch got lost (I guess during the
50234         coreutils merge?).
50235
50236 2003-08-31  Simon Josefsson  <jas@extundo.com>
50237
50238         * modules/timegm: New file.
50239         * MODULES.html.sh (func_all_modules): Add timegm.
50240
50241 2003-08-31  Simon Josefsson  <jas@extundo.com>
50242
50243         * m4/timegm.m4: New file.
50244
50245 2003-08-31  Simon Josefsson  <jas@extundo.com>
50246
50247         * lib/timegm.h: New file.
50248         * lib/timegm.c: New file.  Based on
50249         wget-1.8.2/src/http.c:mktime_from_utc.
50250
50251 2003-08-31  Karl Berry  <karl@gnu.org>
50252
50253         * lib/argp.h: update from libc.
50254
50255 2003-08-28  Bruno Haible  <bruno@clisp.org>
50256
50257         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Remove AC_DEFINE of fnmatch here.
50258         This avoids havoc on compilers for which '#define fnmatch rpl_fnmatch'
50259         followed by '#define fnmatch fnmatch_posix' gives an error.
50260
50261 2003-08-28  Bruno Haible  <bruno@clisp.org>
50262
50263         * lib/binary-io.h: Undefine O_BINARY before defining it. This avoids a
50264         warning on QNX, which defines O_BINARY to 000000.
50265
50266 2003-08-27  Jim Meyering  <jim@meyering.net>
50267
50268         * m4/mkstemp.m4: Require that the system mkstemp be able to create
50269         70 temporary files, not just 30.  Tru64 V4.0F's mkstemp function
50270         would fail after 32.  Reported by Danny Levinson.  Details here:
50271         http://mail.gnu.org/archive/html/bug-coreutils/2003-08/msg00124.html
50272
50273 2003-08-24  Bruno Haible  <bruno@clisp.org>
50274
50275         * lib/binary-io.h: Include <stdio.h>, to avoid a compilation error when
50276         MSVC7 <stdio.h> is included later.
50277
50278 2003-08-22  Simon Josefsson  <jas@extundo.com>
50279
50280         * modules/strndup (Makefile.am): Add strndup.h to lib_SOURCES.
50281
50282 2003-08-20  Karl Berry  <karl@gnu.org>
50283
50284         * m4/lib-ld.m4: serial 1003 from gettext, no changes besides serial.
50285
50286 2003-08-20  Bruno Haible  <bruno@clisp.org>
50287
50288         * modules/progname: New file.
50289         * MODULES.html.sh (func_all_modules): Add progname.
50290
50291 2003-08-20  Bruno Haible  <bruno@clisp.org>
50292
50293         * lib/progname.h: New file, from GNU gettext.
50294         * lib/progname.c: New file, from GNU gettext.
50295         * lib/progreloc.c: New file, from GNU gettext.
50296
50297 2003-08-19  Jim Meyering  <jim@meyering.net>
50298
50299         * m4/lib-ld.m4: Revert yesterday's change, per Bruno's request here:
50300         http://mail.gnu.org/archive/html/bug-gnulib/2003-08/msg00155.html
50301
50302 2003-08-19  Bruno Haible  <bruno@clisp.org>
50303
50304         * m4/xalloc.m4 (gl_PREREQ_XSTRDUP): Don't check for <string.h> any
50305         more.
50306
50307 2003-08-19  Bruno Haible  <bruno@clisp.org>
50308
50309         * lib/xstrdup.c: Assume <string.h> exists.
50310
50311 2003-08-18  Paul Eggert  <eggert@twinsun.com>
50312
50313         * modules/stdbool: Add BUILT_SOURCES.  Prefer $@ to target name
50314         in makefile rules.
50315
50316 2003-08-18  Jim Meyering  <jim@meyering.net>
50317
50318         * m4/getloadavg.m4: Use [\t ], not [ \t] (where \t is a literal TAB).
50319         * m4/lib-ld.m4: Likewise.
50320
50321 2003-08-18  Jim Meyering  <jim@meyering.net>
50322
50323         * lib/setenv.h: Indent nested cpp directive.
50324         * lib/vasnprintf.c: Remove trailing blanks.
50325
50326 2003-08-17  Simon Josefsson  <jas@extundo.com>
50327
50328         * modules/xstrndup: New file.
50329         * MODULES.html.sh (func_all_modules): Add xstrndup.
50330
50331 2003-08-17  Simon Josefsson  <jas@extundo.com>
50332
50333         * modules/argp: Fix autoconf macro name. Add more dependencies.
50334
50335 2003-08-17  Simon Josefsson  <jas@extundo.com>
50336
50337         * m4/xstrndup.m4: New file.
50338
50339 2003-08-17  Simon Josefsson  <jas@extundo.com>
50340
50341         * m4/argp.m4: New file.
50342
50343 2003-08-17  Simon Josefsson  <jas@extundo.com>
50344             Bruno Haible  <bruno@clisp.org>
50345
50346         * lib/xstrndup.h: New file.
50347         * lib/xstrndup.c: New file.
50348
50349 2003-08-17  Bruno Haible  <bruno@clisp.org>
50350
50351         * modules/strndup (Files, Include): Add lib/strndup.h.
50352
50353 2003-08-17  Bruno Haible  <bruno@clisp.org>
50354
50355         * modules/euidaccess (Files): Add lib/euidaccess.h.
50356
50357 2003-08-17  Bruno Haible  <bruno@clisp.org>
50358
50359         * lib/strndup.h: New file.
50360
50361 2003-08-17  Bruno Haible  <bruno@clisp.org>
50362
50363         * gnulib-tool (func_create_testdir): Handle gl_USE_SYSTEM_EXTENSIONS
50364         like AC_GNU_SOURCE.
50365         * modules/extensions (configure.ac): Comment out the invocation of
50366         gl_USE_SYSTEM_EXTENSIONS.
50367
50368 2003-08-16  Paul Eggert  <eggert@twinsun.com>
50369
50370         Merges from coreutils, etc.
50371         * m4/rpmatch.m4 (gl_PREREQ_RPMATCH): Insert ':' to prevent a syntax
50372         error in gl_FUNC_MATCH.  This fixes a bug I introduced on 2003-05-28.
50373         * m4/readlink.m4 (gl_PREREQ_READLINK): Renamed from gl_PREREQ_READLINE,
50374         fixing a typo.
50375         * m4/host-os.m4 (UTILS_HOST_OS): Add GNU/NetBSD, GNU/FreeBSD.
50376         * m4/hash.m4 (gl_HASH): Use AM_STDBOOL_H, not AC_HEADER_STDBOOL.
50377
50378 2003-08-16  Paul Eggert  <eggert@twinsun.com>
50379
50380         Document merge from coreutils.
50381         * modules/alloca: Append $(ALLOCA_H) to BUILT_SOURCES.
50382         * modules/fnmatch: Append $(FNMATCH_H) to BUILT_SOURCES.
50383         * modules/utime: Add m4/utimes-null.m4.
50384
50385 2003-08-16  Paul Eggert  <eggert@twinsun.com>
50386
50387         * lib/regex.h, strdup.c, strtoll.c, strtoul.c: Do not normalize white
50388         space, undoing this 2003-08-12 change:
50389         <http://mail.gnu.org/archive/html/bug-gnulib/2003-08/msg00080.html>
50390
50391 2003-08-16  Paul Eggert  <eggert@twinsun.com>
50392
50393         * config/srclist.txt: Get regex.h, strdup.c, strtoll.c,
50394         strtoul.c from libc, undoing this 2003-08-12 change:
50395         <http://mail.gnu.org/archive/html/bug-gnulib/2003-08/msg00080.html>
50396
50397 2003-08-16  Jim Meyering  <jim@meyering.net>
50398
50399         Merges from coreutils.
50400         * m4/readdir.m4 (GL_FUNC_READDIR): Change name to have GL_ (not jm_)
50401         prefix.  Adjust cache variables similarly.  Create 500 rather than
50402         just 300 files, to exercise bug on Darwin6.5, too.
50403         * m4/perl.m4 (jm_PERL): Use $am_missing_run, not undefined
50404         $missing_dir.
50405         * m4/jm-winsz1.m4: Require AC_SYS_POSIX_TERMIOS, not
50406         AM_SYS_POSIX_TERMIOS.
50407         Reported by mkc@mathdogs.com.
50408         Also change use of $am_cv_sys_posix_termios
50409         to $ac_cv_sys_posix_termios.  Reported by Andreas Schwab.
50410         * m4/getgroups.m4 (jm_FUNC_GETGROUPS): Rewrite to use AC_FUNC_GETGROUPS
50411         and (if needed) to call AC_LIBOBJ and to set GETGROUPS_LIB.
50412         * m4/fsusage.m4 [__GLIBC__]: GNU libc's statvfs stats each mount point
50413         in /proc/mounts until it finds one with matching device number.  This
50414         is unnecessary when the FILE argument *is* a mount point.  No stat call
50415         is necessary in that case.  So, disable the statvfs-testing code on
50416         systems with GNU libc.  Reported by Andrei Gaponenko via Tim Waugh
50417         as RedHat bug# 84846.
50418         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Limit stack size
50419         to 1MB, so as not to render systems with no stack size limit (e.g.,
50420         linux-2.2.x) unusable.  Suggestion and code from Bruno Haible.
50421         Include <unistd.h>.  On some systems,
50422         it is required for the definition of _SC_PAGESIZE.
50423
50424 2003-08-16  Jim Meyering  <jim@meyering.net>
50425
50426         Merge from coreutils.
50427         * lib/xstrtoimax.c: #else #if -> #elif.
50428         * lib/xstrtoumax.c: Likewise.
50429
50430 2003-08-16  Jim Meyering  <jim@meyering.net>
50431
50432         * m4/utimes.m4 (gl_FUNC_UTIMES): New file.
50433         * m4/utimes.m4: Removed.
50434         * m4/utimes-null.m4: Renamed from utimes.m4.
50435
50436         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Limit stack size
50437         to 1MB, so as not to render systems with no stack size limit (e.g.,
50438         linux-2.2.x) unusable.  Suggestion and code from Bruno Haible.
50439         Include <unistd.h>.  On some systems,
50440         it is required for the definition of _SC_PAGESIZE.
50441
50442 2003-08-16  Jim Meyering  <jim@meyering.net>
50443         and Paul Eggert  <eggert@cs.ucla.edu>
50444
50445         Merges from coreutils, etc.
50446
50447         * m4/jm-macros.m4 (AC_LANG_SOURCE(C)): New macro, undefine, then define
50448         using the latest version from cvs.  This avoids problems with #line
50449         directives using a vendor (Sun) compiler.
50450         (jm_MACROS): Bump prerequisite from 2.52g to 2.57.
50451         Don't set GETGROUPS_LIB here; now it's
50452         done via getgroups.m4's wrapper function.
50453         AC_SUBST OPTIONAL_BIN_PROGS, OPTIONAL_BIN_ZCRIPTS, and MAN here,
50454         rather than just in sh-util/configure.in, so that the
50455         now-shared-by-fileutils-and-textutils lib/Makefile.am are all the
50456         same.
50457         Use AC_CONFIG_LIBOBJ_DIR(lib) to tell the new
50458         AC_FUNC_GETLOADAVG where to find getloadavg.c.
50459         Require AC_FUNC_FTW, gt_INTTYPES_PRI, gl_CLOCK_TIME,
50460         UTILS_SYS_OPEN_MAX, GL_FUNC_GETCWD_PATH_MAX, GL_FUNC_READDIR,
50461         gl_FSUSAGE, gl_MOUNTLIST, AC_FUNC_CANONICALIZE_FILE_NAME.
50462         Remove code that is now done by the newly-required macros.
50463         Append $(EXEEXT) to DF_PROG.
50464         AC_LIBOBJ fchdir-stub if fchdir doesn't exist; similarly for fchown.
50465         Do not invoke or require the following here,
50466         since prereq.m4 or some gnulib .m4 now does this for us:
50467         gl_REGEX, UTILS_FUNC_MKDIR_TRAILING_SLASH, jm_BISON, gl_FUNC_MKTIME,
50468         jm_FUNC_LSTAT, jm_FUNC_STAT, jm_FUNC_REALLOC, jm_FUNC_MALLOC,
50469         jm_FUNC_NANOSLEEP, jm_FUNC_READDIR, jm_FUNC_MEMCMP,
50470         jm_FUNC_GLIBC_UNLOCKED_IO, AC_FUNC_FNMATCH_GNU, jm_FUNC_PUTENV,
50471         jm_AC_PREREQ_XSTRTOUMAX, jm_AC_PREREQ_XSTRTOIMAX,
50472         AC_FUNC_ERROR_AT_LINE, jm_FUNC_GNU_STRFTIME, AC_FUNC_VPRINTF,
50473         vb_FUNC_RENAME, UTILS_FUNC_MKSTEP, jm_FUNC_UTIME, AM_FUNC_GETLINE,
50474         AC_FUNC_OBSTACK.
50475         Do not replace the following functions, as this is now the job
50476         of some gnulib .m4: strcasecmp, strncasecmp, dup2, gethostname,
50477         getusershell, sig2str, strcspn, stpcpy, strstr, strtol, strtoul
50478         strpbrk, euidaccess, memcmp, rmdir, rpmatch, strndup, strverscmp,
50479         atexit getpass, strdup, getpagesize.
50480         Replace 'raise'.
50481         Do not check for the following functions, as this is now the job
50482         of some gnulib .m4: bcopy, canonicalize_file_name, fchdir, ftime,
50483         getcwd, getmntinfo, resolvepath.  But check for sysctl, setreuid,
50484         setregid.
50485         (jm_CHECK_ALL_HEADERS): Do not check for fenv.h.
50486         Check for sys/sysctl.h.
50487         (jm_CHECK_ALL_TYPES): Do not require AC_STRUCT_TM, AC_STRUCT_TIMEZONE,
50488         jm_CHECK_TYPE_STRUCT_TIMESPEC.  Invoke gt_TYPE_SSIZE_T instead
50489         of checking for ssize_t ourselves.
50490
50491         * m4/prereq.m4 (jm_PREREQ): Don't invoke macros; AC_REQUIRE them.
50492         Require every macro that gnulib/modules/* suggests for us.
50493         (jm_PREREQ_ADDEXT): New macro.
50494         (jm_PREREQ_STAT): Check for 'struct statfs' on Ultrix 4.4.
50495         Require jm_AC_TYPE_LONG_LONG instead of invoking it.
50496
50497         * m4/physmem.m4 (gl_SYS__SYSTEM_CONFIGURATION): New macro.
50498         (gl_PHYSMEM): Use it.
50499         Also check for `table' function.
50500         Check for new headers and functions.
50501         Add check for sys/sysmp.h.
50502         With suggestions from Kaveh Ghazi.
50503         Ignore headers that are present but cannot be compiled.  This
50504         avoids spurious warnings on Solaris 9 sparc with Forte Developer 7
50505         C 5.4.
50506
50507 2003-08-15  Paul Eggert  <eggert@twinsun.com>
50508
50509         Document merge from coreutils.
50510         * modules/userspec: Depend on posixver.
50511         * modules/strftime: Depend on tzset.
50512
50513 2003-08-15  Paul Eggert  <eggert@twinsun.com>
50514
50515         * lib/config.charset, ref-add.sin, ref-del.sin: Use three spaces,
50516         rather than tab, after '#' in shell-script copyright notices.
50517         Suggested by Bruno Haible.
50518
50519 2003-08-15  Paul Eggert  <eggert@twinsun.com>
50520
50521         * config/srclist-update: Use three spaces, rather than tab, after '#'
50522         in shell-script copyright notices.  Suggested by Bruno Haible.
50523         Remove unnecessary parenthesization in regular expression.
50524
50525 2003-08-15  Jim Meyering  <jim@meyering.net>
50526
50527         Merge from coreutils.
50528         * lib/xgethostname.c: Include <stdlib.h>.
50529         (xghostname): Don't exit for anything other than memory-related
50530         failure; just return NULL.
50531         * lib/userspec.c: Include "posixver.h".
50532         (parse_user_spec): Accept `.' as a separator only
50533         in pre-POSIX-200112 mode.
50534         * lib/strtoimax.c: Use #elif rather than #else #if.
50535         * lib/strftime.c (my_strftime) [!_LIBC && HAVE_TZNAME && HAVE_TZSET]:
50536         Remove function, now that we can rely on a working tzset function.
50537         [!_LIBC]: Ensure that the required autoconf test has been run.
50538         [!defined _NL_CURRENT && HAVE_STRFTIME]:
50539         Use underlying_strftime for %r.
50540         * lib/sha.c: Merge in some clean-up and optimization changes from
50541         glibc.
50542         * lib/sha.c (sha_stream) [BLOCKSIZE]: Move definition to top of file.
50543         Ensure that it is a multiple of 64.
50544         Rearrange loop exit tests so as to avoid performing an
50545         additional fread after encountering an error or EOF.
50546         * lib/realloc.c: Update copyright date.
50547
50548 2003-08-15  Jim Meyering  <jim@meyering.net>
50549         and Paul Eggert  <eggert@twinsun.com>
50550
50551         Merge from coreutils.
50552         * lib/readutmp.h (HAVE_UTMPX_H): Undef if struct utmp has the ut_exit
50553         member but strut utmpx does not.  Needed for AIX 4.3.3.
50554         (UT_EXIT_E_TERMINATION, UT_EXIT_E_EXIT): Define.
50555
50556 2003-08-15  Jim Meyering  <jim@meyering.net>
50557         and Paul Eggert  <eggert@cs.ucla.edu>
50558
50559         Merges from coreutils, etc.
50560         * m4/strftime.m4 (_jm_STRFTIME_PREREQS):
50561         Require gl_FUNC_TZSET_CLOBBER.
50562         * m4/readutmp.m4 (gl_READUTMP): Check for ut_exit.ut_exit,
50563         ut_exit.e_exit, ut_exit.ut_termination, and ut_exit.e_termination
50564         members.
50565
50566 2003-08-14  Paul Eggert  <eggert@twinsun.com>
50567
50568         Help the merge from coreutils.
50569         * m4/gettimeofday.m4 (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): New macro.
50570         (AC_FUNC_GETTIMEOFDAY_CLOBBER): Use it.
50571         * m4/tzset.m4: Use it too.
50572
50573 2003-08-14  Paul Eggert  <eggert@twinsun.com>
50574
50575         * modules/tzset: New file.
50576
50577 2003-08-14  Jim Meyering  <jim@meyering.net>
50578
50579         Merges from coreutils.
50580         * modules/fnmatch: Use the `$(FNMATCH_H)' notation for AC_REPLACED
50581         variable names, rather than @FNMATCH_H@.
50582         * modules/alloca: Likewise for $(ALLOCA_H).
50583
50584         * modules/fnmatch (fnmatch.h): Use `$@' in the commands, in place of
50585         the three copies of the literal target, `fnmatch.h'.
50586         * modules/alloca (alloca.h): Likewise.
50587
50588 2003-08-14  Jim Meyering  <jim@meyering.net>
50589
50590         Merge from coreutils.
50591         * m4/tzset.m4: New file.
50592         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Move the
50593         MOUNTED_VMOUNT test to precede the MOUNTED_GETMNTENT1 tests, since
50594         otherwise, AIX 5.1 systems would end up using the latter.
50595         MOUNTED_GETMNTENT1 support is inadequate on such systems: 1) detecting
50596         whether a file system is remote doesn't work  2) the MOUNTED_VMOUNT
50597         code reports the HOSTNAME:/MOUNT_POINT, while the MOUNTED_GETMNTENT1
50598         code reports merely /MOUNT_POINT.  Reported by Mike Jetzer.
50599
50600 2003-08-14  Jim Meyering  <jim@meyering.net>
50601
50602         Merge from coreutils.
50603         * lib/obstack.h: Whitespace changes.
50604         * lib/mountlist.c: Remove anachronistic casts of xmalloc, xrealloc,
50605         and xcalloc return values.
50606         (read_filesystem_list) [MOUNTED_GETFSSTAT]:
50607         Use MNT_NOWAIT, rather than MNT_WAIT.  Otherwise, `df DIR' could
50608         hang on OSF/1 5.1 for DIR on both local and remote file systems.
50609         Reported by (and fix confirmed by) Nelson H. F. Beebe.
50610         (read_filesystem_list) [MOUNTED_VMOUNT]: Detect any
50611         error from mntctl.
50612         Use mntctl's return value to drive the entry-processing loop, since
50613         we can't rely on the value of the vmt_length member in the last
50614         entry.  On some systems doing so could result in exhausting
50615         virtual memory.  Based in part on a patch from Mike Jetzer.
50616
50617 2003-08-14  Jim Meyering  <jim@meyering.net>
50618         and Paul Eggert  <eggert@twinsun.com>
50619
50620         Merges from coreutils, plus other fixes.
50621         * lib/physmem.c: Merge in portability changes from gcc/libiberty
50622         to support AIX, IRIX, Tru64, and Windows.  See the ChangeLog there
50623         for credits and details.  Thanks to Kaveh Ghazi for helping
50624         to keep these files in sync.
50625         (ARRAY_SIZE): Define it.
50626         (physmem_total, physmem_available): Add comments. From Kaveh Ghazi.
50627         * lib/memcasecmp.c: Remove unnecessary parentheses after 'defined'.
50628         (memcasecmp): Don't assume size_t fits in unsigned int.
50629         Remove casts and duplicate code.
50630         * lib/md5.c: Include <string.h> and <stdlib.h> unconditionally.
50631         (memcpy): Remove definition.
50632         Merge in some clean-up and optimization changes from glibc.
50633         [BLOCKSIZE]: Move definition to top of file.
50634         Ensure that it is a multiple of 64.
50635         Rearrange loop exit tests so as to avoid performing an
50636         additional fread after encountering an error or EOF.
50637         * lib/md5.h (md5_uintptr): Define.
50638         * lib/makepath.c (CLEANUP_CWD): Report an error if we failed to
50639         return to the initial working directory.  Preserve errno
50640         for caller.
50641         * lib/idcache.c: Include "xalloc.h".
50642         (xmalloc, xrealloc): Remove decls.
50643         (getuser): Remove casts no longer required in C89.
50644         * lib/human.c: Include stdio.h, for sprintf.
50645         * lib/group-member.c: Include "xalloc.h".
50646         (xmalloc, xrealloc): Remove decls.
50647         (get_group_info): Remove casts no longer required in C89.
50648         * lib/getusershell.c (readname): Remove casts no longer required in
50649         C89.
50650         * lib/gettimeofday.c (rpl_gmtime, rpl_tzset): New functions.
50651         * lib/getline.c: Whitespace fix, from coreutils.
50652
50653 2003-08-13  Paul Eggert  <eggert@twinsun.com>
50654
50655         * m4/exclude.m4 (gl_EXCLUDE): Require AC_C_INLINE, AC_HEADER_STDC.
50656         Check for isascii.
50657
50658         * m4/gettext.m4, iconv.m4, intdiv0.m4, inttypes-pri.m4, lib-link.m4,
50659         lib-prefix.m4, longdouble.m4, po.m4, progtest.m4, signed.m4:
50660         Undo previous (whitespace-only) change.
50661
50662 2003-08-13  Paul Eggert  <eggert@twinsun.com>
50663
50664         * lib/exclude.c: Include <ctype.h>
50665         (IN_CTYPE_DOMAIN): New macro.
50666         (is_space): New fn.
50667         (add_exclude_file): If LINE_END is a space, ignore trailing spaces
50668         and empty lines.
50669
50670         * lib/argp-help.c, argp-parse.c, config.charset, getopt.h:
50671         Undo previous (whitespace-only) change.
50672
50673 2003-08-13  Paul Eggert  <eggert@twinsun.com>
50674
50675         * config/srclist-update: Change update back to the old behavior,
50676         leaving whitespace alone.  Use one 'sed' command rather than a
50677         pipeline.
50678         (fixlicense): Now a variable, not a function.
50679         (remove_trailing_blanks): Remove.
50680         (fixfile): Don't invoke unexpand or cat, or remove trailing blanks.
50681         * config/config.guess, config.sub, install-sh, missing, texinfo.tex:
50682         Undo previous (whitespace-only) change.
50683
50684 2003-08-12  Paul Eggert  <eggert@twinsun.com>
50685
50686         Merge from coreutils.
50687         * modules/euidaccess: Add lib_SOURCES, include for new
50688         file euidaccess.h
50689
50690 2003-08-12  Paul Eggert  <eggert@twinsun.com>
50691
50692         * m4/gettext.m4, iconv.m4, intdiv0.m4, inttypes-pri.m4, lib-link.m4,
50693         lib-prefix.m4, longdouble.m4, po.m4, progtest.m4, signed.m4:
50694         Normalize leading white space and remove trailing white space.
50695
50696         Merge from coreutils
50697         * m4/euidaccess.m4 (gl_FUNC_EUIDACCESS): Check for euidaccess decl.
50698
50699         * m4/lib-ld.m4, lib-link.m4, lib-prefix.m4: Regenerate from gettext
50700         0.12.1.  These files are now being upgraded automatically by
50701         ../config/srclist-update.
50702
50703 2003-08-12  Paul Eggert  <eggert@twinsun.com>
50704
50705         * lib/argp-help.c, argp-parse.c, config.charset, getopt.h:
50706         Normalize leading white space and remove trailing white space.
50707         * lib/ref-add.sin, ref-del.sin: Use '#' before empty line in copyright
50708         notice, as per ../config/srclist-update.
50709
50710         Merge from coreutils.
50711         * lib/euidaccess.h: New file.
50712         * lib/euidaccess.c: Include it.
50713         * lib/.cppi-disable: Add printf-args.h, printf-parse.h, stdbool_.h,
50714         vasnprintf.h, vasprintf.h.  Remove strdup.c, gettext.h.
50715         * lib/regex.h, strdup.c, strtoll.c, strtoul.c: Normalize white space.
50716
50717 2003-08-12  Paul Eggert  <eggert@twinsun.com>
50718
50719         * config/srclist-update: Add copyright notice.
50720         (remove_id_lines, remove_trailing_blanks): New constants.
50721         (fixfile): Use them to normalize spacing a bit in copied files.
50722         * config/config.guess, config.sub, install-sh, missing, texinfo.tex:
50723         Normalize leading white space and remove trailing white space.
50724
50725         * config/texinfo.tex: Sync with texinfo.
50726
50727         * config/srclist.txt: Don't get regex.h, strdup.c, strtoll.c,
50728         strtoul.c from libc, to merge coreutils whitespace changes.
50729
50730         * config/srclist.txt: Get the following m4 files from gettext:
50731         codeset.m4, gettext.m4, glibc21.m4, iconv.m4, intdiv0.m4,
50732         inttypes-pri.m4, lcmessage.m4, lib-ld.m4, lib-link.m4, lib-prefix.m4,
50733         longdouble.m4, nls.m4, po.m4, progtest.m4, signed.m4, wchar_t.m4,
50734         wint_t.m4.
50735
50736 2003-08-12  Karl Berry  <karl@gnu.org>
50737
50738         * config/srclist.txt: can't sync vasnprintf.c any more, changes have
50739         been made.
50740
50741 2003-08-11  Paul Eggert  <eggert@twinsun.com>
50742
50743         * modules/gnu-source, m4/gnu-source.m4:
50744         Remove; we're assuming Autoconf 2.54 or later now.
50745         Suggested by Bruno Haible.
50746         * MODULES.html.sh (func_all_modules): Remove gnu-source.
50747
50748 2003-08-11  Bruno Haible  <bruno@clisp.org>
50749
50750         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF): Also check for wcslen.
50751
50752 2003-08-11  Bruno Haible  <bruno@clisp.org>
50753
50754         * lib/vasnprintf.c (local_wcslen): New function, for Solaris 2.5.1.
50755         (vasnprintf): Use it instead of wcslen.
50756
50757 2003-08-11  Bruno Haible  <bruno@clisp.org>
50758
50759         * lib/stdbool_.h (_Bool): Undo last change; instead use a negative enum
50760         value to ensure that _Bool promotes to int. Use #define for _Bool when
50761         using the Solaris C compiler. Adds comments suggested by Paul Eggert.
50762
50763 2003-08-10  Karl Berry  <karl@gnu.org>
50764
50765         * lib/regex.h: update from libc (whitespace fix).
50766
50767 2003-08-09  Paul Eggert  <eggert@twinsun.com>
50768
50769         Merge some files from coreutils.  These changes were
50770         originally made by Jim Meyering.
50771         * lib/acl.c: Include <sys/types.h> before <sys/stat.h>;
50772         many older Unixes require this.
50773         * lib/alloca.c (alloca): Remove cast to argument of free;
50774         no longer needed in C89.
50775         * lib/alloca_.h, regex.h: Fix white space to match
50776         what GNU indent does.
50777
50778 2003-08-09  Paul Eggert  <eggert@twinsun.com>
50779
50780         * m4/regex.m4 (jm_INCLUDED_REGEX): Change "\201" to "\371";
50781         apparently Emacs's Unicode mode got confused before my 2003-08-05
50782         checkin.
50783
50784 2003-08-08  Paul Eggert  <eggert@twinsun.com>
50785
50786         * m4/extensions.m4: New file.
50787         * m4/timespec.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC):
50788         Require gl_USE_SYSTEM_EXTENSIONS.
50789         * m4/unlocked-io.m4 (jm_FUNC_GLIBC_UNLOCKED_IO):
50790         Require gl_USE_SYSTEM_EXTENSIONS rather than AC_GNU_SOURCE.
50791
50792 2003-08-08  Paul Eggert  <eggert@twinsun.com>
50793
50794         * MODULES.html.sh (func_all_modules): Add extensions, gnu-source.
50795         * modules/extensions, modules/gnu-source: New files.
50796         * modules/timespec, modules/unlocked-io: Depend on extensions.
50797
50798 2003-08-07  Paul Eggert  <eggert@twinsun.com>
50799
50800         * modules/restrict: New file.
50801         * MODULES.html.sh (func_all_modules): Add restrict.
50802         * modules/regex: Depend on restrict.
50803
50804 2003-08-07  Paul Eggert  <eggert@twinsun.com>
50805
50806         * m4/restrict.m4: New file.
50807         * m4/regex.m4 (jm_PREREQ_REGEX): Add gl_C_RESTRICT.
50808
50809 2003-08-07  Bruno Haible  <bruno@clisp.org>
50810
50811         * modules/getndelim2 (Makefile.am): Add the files to EXTRA_DIST, not
50812         lib_SOURCES, because getndelim2.m4 now uses AC_LIBOBJ(getndelim2).
50813
50814 2003-08-07  Bruno Haible  <bruno@clisp.org>
50815
50816         * m4/getndelim2.m4 (gl_GETNDELIM2): Use AC_LIBOBJ(getndelim2). This
50817         makes the module 'getndelim2' compatible with the module 'getline'.
50818
50819 2003-08-05  Paul Eggert  <eggert@twinsun.com>
50820
50821         * m4/regex.m4 (jm_INCLUDED_REGEX): Replace a single non-ASCII
50822         byte with "\201" to avoid glitches when editing that source file
50823         with multi-gnome-terminal.
50824
50825 2003-08-05  Paul Eggert  <eggert@twinsun.com>
50826
50827         * lib/bumpalloc.h: Remove.
50828
50829 2003-08-05  Paul Eggert  <eggert@twinsun.com>
50830
50831         * MODULES.html.sh (func_all_modules): Remove bumpalloc.
50832         * modules/bumpalloc: Remove.
50833
50834 2003-08-04  Paul Eggert  <eggert@twinsun.com>
50835
50836         * lib/getloadavg.c: Change copyright notice and spacing to conform to
50837         GNU coding style.
50838
50839         Merge from coreutils.
50840         * lib/error.c [!USE_IN_LIBIO]: Omit this case; assume USE_IN_LIBIO is
50841         1. From glibc.
50842         * lib/getdate.y (date): Also accept dates like May-23-2003; suggestion
50843         from Karl Berry, implemented by Jim Meyering.
50844         * lib/getgroups.c: Include "xalloc.h" instead of declaring xalloc fns;
50845         from Dmitry V. Levin.
50846         Remove anachronistic cast of xrealloc.
50847         * lib/fnmatch_.h (__const): Remove.  Use 'const'.
50848         * lib/fnmatch_loop.c (NEW_PATTERN): Cast alloca return value to proper
50849         type. Otherwise, it wouldn't compile with at least /bin/cc on
50850         ymp-cray-unicos9.0.2.X.
50851         Combine two mostly-identical uses of alloca into one.
50852         Thanks to the Cray-Cyber project for access to a Cray Y-MP.
50853
50854 2003-08-04  Dave Love  <d.love@dl.ac.uk>
50855
50856         [From Emacs.]
50857
50858         * lib/getloadavg.c: Check `__unix' as well as `unix'.  Use #ifdef, not
50859         #if.  Check HAVE_LIBKSTAT as well as LOAD_AVE_TYPE.  Check
50860         F_SETFD, not FD_SETFD.  Use HAVE_STRUCT_NLIST_N_UN_N_NAME, not
50861         obsolete NLIST_NAME_UNION.
50862         [__GNU__]: Undef BSD and FSCALE.
50863         [!NLIST_STRUCT]: Remove conditional definition of NLIST_STRUCT.
50864
50865 2003-08-03  Paul Eggert  <eggert@twinsun.com>
50866
50867         * lib/stdbool_.h (_Bool): Make it signed char, instead of
50868         an enum type, so that it's guaranteed to promote to int.  See:
50869         <http://mail.gnu.org/archive/html/bug-gnulib/2003-07/msg00124.html>
50870
50871 2003-08-03  Karl Berry  <karl@gnu.org>
50872
50873         * config/depcomp: update from automake.
50874
50875 2003-07-31  Paul Eggert  <eggert@twinsun.com>
50876
50877         * lib/strerror.c: Include config.h, limits.h.  Declare sprintf.
50878         (strerror): Don't assume that a printable int fits in 14 bytes.
50879
50880 2003-07-31  Bruno Haible  <bruno@clisp.org>
50881
50882         * modules/getpass-gnu: New file.
50883         * MODULES.html.sh (func_all_modules): Add getpass-gnu.
50884
50885 2003-07-31  Bruno Haible  <bruno@clisp.org>
50886
50887         * m4/getpass.m4 (gl_FUNC_GETPASS_GNU): New macro.
50888
50889 2003-07-24  Karl Berry  <karl@gnu.org>
50890
50891         * config/missing: update from automake.
50892
50893 2003-07-24  Derek Robert Price  <derek@ximbiot.com>
50894             Bruno Haible  <bruno@clisp.org>
50895
50896         * lib/getline.h (getline, getdelim): Change return type to ssize_t.
50897         * lib/getline.c (getline, getdelim): Likewise.
50898         Remove _GNU_SOURCE define; now it's defined in config.h through
50899         m4/getline.m4.
50900
50901 2003-07-23  Karl Berry  <karl@gnu.org>
50902
50903         * config/config.sub: update from prep.
50904
50905 2003-07-22  Paul Eggert  <eggert@twinsun.com>
50906
50907         * modules/xalloc (Depends-on): Add exitfail.
50908         * modules/xmemcoll: Likewise.
50909
50910 2003-07-22  Paul Eggert  <eggert@twinsun.com>
50911
50912         * lib/xalloc.h (XCALLOC, XREALLOC, CCLONE): Fix under- and
50913         over-parenthesization in macros.
50914
50915         Sync with coreutils.
50916
50917         * lib/xalloc.h (XMALLOC, XCALLOC, XREALLOC): Remove casts not
50918         required by C99.
50919
50920         Use `exit_failure' for xalloc and xmemcoll instead of their own
50921         private exit-failure variables.
50922         * lib/xalloc.h (xalloc_exit_failure): Remove.
50923         * lib/xmalloc.c: Likewise.  Include exitfail.h.
50924         (xalloc_die): Use exit_failure instead of xalloc_exit_failure.
50925         * lib/xmemcoll.h (xmemcoll_exit_failure): Remove.
50926         * lib/xmemcoll.c: Likewise.  Include exitfail.h.
50927         (xmemcoll): Use exit_failure instead of xalloc_exit_failure.
50928
50929 2003-07-20  Jim Meyering  <jim@meyering.net>
50930
50931         * modules/closeout (Depends-on): Add exitfail.
50932         Suggestion from Bruno Haible.
50933
50934 2003-07-19  Karl Berry  <karl@gnu.org>
50935
50936         * config/config.sub: update from prep.
50937
50938 2003-07-18  Paul Eggert  <eggert@twinsun.com>
50939
50940         * lib/closeout.h (close_stdout_set_status, close_stdout_status):
50941         Remove.
50942         * lib/closeout.c: Likewise.  Include "closeout.h" right after config.h,
50943         to test that it can stand by itself.  Include "exitfail.h".
50944         Clients should set exit_failure instead.
50945         (EXIT_FAILURE): Remove; no longer needed.  Do not include <stdlib.h>.
50946
50947 2003-07-18  Bruno Haible  <bruno@clisp.org>
50948
50949         * modules/getndelim2: New file.
50950         * modules/getline: Share files with module getndelim2.
50951         * modules/getnline: Depend on getndelim2 instead of sharing files with
50952         it. Add getnline.c to lib_SOURCES.
50953         * MODULES.html.sh (func_all_modules): Add getndelim2.
50954
50955 2003-07-18  Bruno Haible  <bruno@clisp.org>
50956
50957         * m4/getndelim2.m4: New file.
50958         * m4/getline.m4 (AM_FUNC_GETLINE): Add AC_LIBOBJ of getndelim2.c and
50959         invoke gl_PREREQ_GETNDELIM2.
50960         (gl_PREREQ_GETLINE): Drop AC_HEADER_STDC, now done by
50961         gl_PREREQ_GETNDELIM2.
50962         * m4/getnline.m4 (gl_GETNLINE): Drop AC_HEADER_STDC, now done by
50963         gl_GETNDELIM2.
50964
50965 2003-07-18  Bruno Haible  <bruno@clisp.org>
50966
50967         * lib/getndelim2.h: New file.
50968         * lib/getndelim2.c: Make into a module of its own. Include config.h,
50969         getndelim2.h.
50970         (getndelim2): Make non-static. Change return type to ssize_t.
50971         * lib/getline.h: Change argument names.
50972         * lib/getline.c: Include getndelim2.h instead of getndelim2.c.
50973         * lib/getnline.c: Include getndelim2.h.
50974
50975 2003-07-18  Andreas Schwab  <schwab@suse.de>
50976
50977         * lib/memcoll.c (memcoll) [!HAVE_STRCOLL]: Clear errno.
50978
50979 2003-07-17  Karl Berry  <karl@gnu.org>
50980
50981         * config/config.sub: update from prep.
50982
50983 2003-07-17  Bruno Haible  <bruno@clisp.org>
50984
50985         * modules/getnline: New file.
50986         * modules/getline: Add lib/getndelim2.c to source file list.
50987         * MODULES.html.sh (func_all_modules): Add getnline.
50988
50989 2003-07-17  Bruno Haible  <bruno@clisp.org>
50990
50991         * m4/getnline.m4: New file.
50992
50993 2003-07-17  Bruno Haible  <bruno@clisp.org>
50994
50995         * m4/Makefile.am.in: Remove file.
50996         * m4/Makefile.am: Remove file.
50997         * m4/Makefile.in: Remove file.
50998
50999 2003-07-17  Bruno Haible  <bruno@clisp.org>
51000
51001         * lib/getnline.h: New file.
51002         * lib/getnline.c: New file.
51003         * lib/getndelim2.c: New file, extracted from getline.c.
51004         (getndelim2): Renamed from getdelim2, with added nmax argument.
51005         * lib/getline.c: Include getndelim2.c.
51006         (getdelim2): Moved out to getndelim2.c.
51007         (getline, getdelim): Update.
51008
51009 2003-07-17  Bruno Haible  <bruno@clisp.org>
51010
51011         * lib/Makefile.am: Remove file.
51012         * lib/Makefile.in: Remove file.
51013
51014 2003-07-17  Bruno Haible  <bruno@clisp.org>
51015
51016         * configure.in: Remove file.
51017         * Makefile.in: Remove file.
51018
51019 2003-07-17  Bruno Haible  <bruno@clisp.org>
51020
51021         * MODULES.html.sh: Put the </BODY> right before </HTML>.
51022
51023 2003-07-16  Karl Berry  <karl@gnu.org>
51024
51025         * config/srclist-update: was running fixlicense twice, which caused
51026                 texinfo.tex to be nullified for some reason.  Simplify,
51027                 $gplsrc is no longer needed as far as I can see?
51028
51029 2003-07-16  Jim Meyering  <jim@meyering.net>
51030
51031         * modules/save-cwd: Depend on xgetcwd.  From Derek Price.
51032
51033 2003-07-15  Paul Eggert  <eggert@twinsun.com>
51034
51035         * config/srclist.txt: Get the following files from gettext-runtime/intl
51036         instead: config.charset, localcharset.c, localcharset.h, ref-add.sin,
51037         ref-del.sin.  From Bruno Haible.
51038         * config/srclist-update (fixfile): Change grep pattern again, since the
51039         previous fix didn't work (there was another trailing $).  Use
51040         '[$]' to escape the $s.
51041
51042 2003-07-15  Karl Berry  <karl@gnu.org>
51043
51044         * lib/vasnprintf.c: update from gettext.
51045
51046 2003-07-15  Karl Berry  <karl@gnu.org>
51047
51048         * config/srclist-update (fixfile): Change grep pattern, since 'Id'
51049         gets expanded when surrounded by '$'.
51050
51051 2003-07-15  Jim Meyering  <jim@meyering.net>
51052
51053         * modules/save-cwd: Don't depend on error.  From Derek Price.
51054
51055 2003-07-15  Jim Meyering  <jim@meyering.net>
51056
51057         * lib/makepath.c (make_path): Enclose diagnostic in _(...).
51058
51059 2003-07-14  Simon Josefsson  <jas@extundo.com>
51060
51061         * modules/mempcpy: New file.
51062         * MODULES.html.sh (func_all_modules): Add mempcpy.
51063
51064 2003-07-14  Simon Josefsson  <jas@extundo.com>
51065
51066         * m4/mempcpy.m4: New file.
51067
51068 2003-07-14  Simon Josefsson  <jas@extundo.com>
51069
51070         * lib/mempcpy.h: New file.
51071         * lib/mempcpy.c: New file.
51072
51073 2003-07-14  Paul Eggert  <eggert@twinsun.com>
51074
51075         * modules/getdate, modules/posixtm: Depend on mktime.
51076
51077 2003-07-14  Paul Eggert  <eggert@twinsun.com>
51078
51079         * lib/ceill.c, expl.c, floorl.c, frexpl.c, ldexpl.c, mathl.h,
51080         sincosl.c, sqrtl.c, trigl.c, trigl.h, poll.c, poll_.h, mkstemp.c,
51081         unicodeio.c, unicodeio.h, unlocked-io.h:
51082         Switch from LGPL to GPL.
51083
51084 2003-07-14  Paul Eggert  <eggert@twinsun.com>
51085
51086         * lib/asnprintf.c, asprintf.c, config.charset, gettext.h,
51087         localcharset.c, localcharset.h, mkdtemp.c, printf-args.c,
51088         printf-args.h, printf-parse.c, printf-parse.h, ref-add.sin,
51089         ref-del.sin, setenv.c, unsetenv.c, vasnprintf.c, vasnprintf.h,
51090         vasprintf.c, vasprintf.h: Regenerate.  These files are now being
51091         updated automatically by ../config/srclist-update.  This changes
51092         their license from LPGL to GPL.
51093
51094 2003-07-14  Paul Eggert  <eggert@twinsun.com>
51095
51096         * config/srclist.txt: Add tons more gettext files.  $GETTEXT is now
51097         assumed to refer to the root of the most recent stable gettext version.
51098         * config/srclistvars.sh: Add defaults for eggert.
51099         * config/srclist-update: Convert LGPL to GPL in shell scripts, too.
51100         Match "This program" as well as "The program".  This is needed
51101         for gettext.
51102
51103 2003-07-14  Jim Meyering  <jim@meyering.net>
51104
51105         Don't emit diagnostics.  Let callers do that.
51106         * lib/save-cwd.c: Don't include "error.h".
51107         (save_cwd): Don't call error.  Ensure that errno is valid
51108         when returning nonzero.
51109
51110         * lib/save-cwd.h (restore_cwd): Update prototype.
51111         * lib/save-cwd.c (restore_cwd): Remove two parameters.
51112         Simplify.  Don't call error upon failure.  Let callers do that.
51113         (save_cwd): Mention that Irix 5.3 has the same problem as SunOS 4
51114         when auditing is enabled.  But don't bother updating the #if.
51115
51116 2003-07-11  Alexandre Duret-Lutz  <adl@gnu.org>
51117
51118         * lib/obstack.h (__INT_TO_PTR): Revert change of 2003-03-13;
51119         it breaks C++ compilation.
51120         [!__GNUC__ || !__STDC__] (obstack_finish): Cast result to void*.
51121
51122 2003-07-10  Simon Josefsson  <jas@extundo.com>
51123
51124         * modules/strchrnul (Makefile.am): Add strchrnul.h.
51125
51126 2003-07-10  Jim Meyering  <jim@meyering.net>
51127
51128         * m4/clock_time.m4: Remove trailing blank.
51129         * m4/intmax_t.m4: Likewise.
51130
51131 2003-07-10  Jim Meyering  <jim@meyering.net>
51132
51133         * lib/vasnprintf.c: Remove trailing blanks.
51134         Make cpp indentation consistent.
51135
51136 2003-07-09  Paul Eggert  <eggert@twinsun.com>
51137
51138         * lib/alloca_.h, euidaccess.c, getpass.c, memrchr.c, obstack.h,
51139         posixver.c, strftime.c, strnlen.c, strverscmp.c:
51140         Switch from LGPL to GPL.
51141
51142 2003-07-09  Paul Eggert  <eggert@twinsun.com>
51143
51144         * config/srclist.txt: Sort sublists.  Add
51145         $LIBCSRC/sysdeps/generic/strtoul.c. In comments, add more libc files
51146         that differ from gnulib for one reason or another; we'd like this list
51147         to be smaller but for now let's document what we have.
51148
51149 2003-07-08  Paul Eggert  <eggert@twinsun.com>
51150
51151         * config/srclist-update: Port to POSIX 1003.1-2001 hosts by avoiding
51152         the use of GNU extensions.  Change "x=`eval echo $x`" to the shorter
51153         and sweeter "eval x=$x".
51154         * config/srclist.txt: Get lib/argp* from glibc.
51155
51156 2003-07-07  Paul Eggert  <eggert@twinsun.com>
51157
51158         * lib/mktime.c: Fix some boundary cases and remove need for floating
51159         point.
51160
51161         Issue a compile-time diagnostic if time_t is floating point, or if
51162         two's complement arithmetic is not in effect, or if arithmetic
51163         right shift does not propagate the sign.  These assumptions were
51164         all in the original code but they weren't checked.
51165
51166         (TIME_T_MIDPOINT, verify): New macros.
51167         (__isleap): Remove; it has integer overflow problems.
51168         (leapyear): New function, without those problems.
51169         (ydhms_tm_diff): Remove; splitting into two parts.
51170         (ydhms_diff): New function, containing the arithmetic part of
51171         the old ydhms_tm_diff function.  Issue a compile-time
51172         diagnostic if we are not using C99 integer division.
51173         Avoid casts when possible.
51174         (guess_time_tm): New function, containing the checking part of
51175         the old ydhms_tm_diff function.  Return the new value, rather than
51176         the difference between it and the old.  Accept a new argument T
51177         so that *T specifies the old value.  Check for overflow in the result.
51178
51179         (__mktime_internal): Use a time_t offset, not a long int offset.
51180         This undoes the 2003-06-04 change, which is no longer needed now
51181         that we have better overflow checking.
51182         (localtime_offset): Likewise.
51183
51184         (__mktime_internal): Avoid harmful overflow on hosts where time_t
51185         and long are 64-bit but int is only 32-bit.
51186         (ydhms_diff): Use long int to store year1 and yday1.
51187         Issue a compile-time diagnostic if long int is not wide enough.
51188
51189         (__mktime_internal): Use long int to store adjusted year and yday.
51190         Use plain C rather than preprocessor commands, if that doesn't
51191         affect efficiency.
51192         Check for overflow (and try to repair) after each probe
51193         rather than checking only at the very end.  This avoids some bugs
51194         (e.g., southern hemisphere, behind GMT, and GMT offset at minimum time
51195         does not equal GMT offset at maximum time).
51196         Use integer to check for overflow rather than floating point; this
51197         is more portable to non-IEEE hosts, and is a tad faster.
51198         When we detect that we are oscillating between two values,
51199         don't check whether tm_isdst has the requested value, since
51200         we already know the answer.  When tm_isdst has the wrong value,
51201         use a different heuristic to find the right one, based on the
51202         extreme values actually observed in practice in tz2003a,
51203         rather than the (overly optimistic) "previous 3 calendar quarters".
51204
51205         (not_equal_tm, print_tm, check_result): Use "const T" rather than
51206         "T const" to accommodate glibc style.
51207         (check_result): Use less-confusing report format.  "long" -> "long int.
51208         (main): Likewise.
51209         Don't loop if the iteration overflows time_t.
51210         Allow a negative step in the iteration.
51211
51212 2003-07-06  Karl Berry  <karl@gnu.org>
51213
51214         * config/depcomp: update from automake.
51215         * config/config.sub: update from prep.
51216
51217 2003-07-03  Karl Berry  <karl@gnu.org>
51218
51219         * config/config.guess: update from prep.
51220
51221 2003-07-01  Paul Eggert  <eggert@twinsun.com>
51222
51223         * m4/xreadlink.m4 (gl_XREADLINK): Don't check for sys/types.h, since
51224         xreadlink.c now includes it unconditionally.
51225
51226 2003-07-01  Paul Eggert  <eggert@twinsun.com>
51227
51228         * lib/xreadlink.c: Include <sys/types.h> unconditionally, instead of
51229         having it depend on HAVE_SYS_TYPES_H.
51230
51231 2003-07-01  Bruno Haible  <bruno@clisp.org>
51232
51233         * m4/ssize_t.m4 (gt_TYPE_SSIZE_T): Don't include <unistd.h>.
51234         <sys/types.h> should be sufficient.
51235         Reported by Paul Eggert.
51236
51237 2003-06-26  Karl Berry  <karl@gnu.org>
51238
51239         * config/depcomp: update from automake.
51240
51241 2003-06-26  Bruno Haible  <bruno@clisp.org>
51242
51243         * modules/human: Depend on module stdbool.
51244
51245 2003-06-25  Bruno Haible  <bruno@clisp.org>
51246
51247         * modules/readlink: New file.
51248         * modules/xreadlink: Depend on it.
51249         * MODULES.html.sh (func_all_modules): Add readlink.
51250
51251 2003-06-25  Bruno Haible  <bruno@clisp.org>
51252
51253         * m4/readlink.m4: New file.
51254
51255 2003-06-25  Bruno Haible  <bruno@clisp.org>
51256
51257         * lib/readlink.c: New file.
51258
51259 2003-06-22  Karl Berry  <karl@gnu.org>
51260
51261         * config/srclist.txt: update mkinstalldirs from automake.
51262         * config/mkinstalldirs: update.
51263
51264 2003-06-22  Bruno Haible  <bruno@clisp.org>
51265
51266         Portability to mingw32.
51267         * m4/ssize_t.m4: New file, from GNU gettext.
51268         * m4/safe-read.m4 (gl_PREREQ_SAFE_READ): Require gt_TYPE_SSIZE_T.
51269         * m4/xreadlink.m4 (gl_XREADLINK): Require gt_TYPE_SSIZE_T.
51270
51271 2003-06-22  Bruno Haible  <bruno@clisp.org>
51272
51273         * modules/safe-read: Add m4/ssize_t.m4.
51274         * modules/xreadlink: Add m4/ssize_t.m4.
51275
51276 2003-06-20  Bruno Haible  <bruno@clisp.org>
51277
51278         Assume C89, so PARAMS isn't needed.
51279         * lib/unicodeio.h (PARAMS): Remove.
51280         * lib/unicodeio.c: Don't use PARAMS.
51281
51282 2003-06-18  Karl Berry  <karl@gnu.org>
51283
51284         * config/config.{guess,sub}: update from prep.
51285
51286 2003-06-18  Jim Meyering  <jim@meyering.net>
51287
51288         Merge changes from coreutils.
51289         * lib/readutmp.c: Include <string.h> and <stdlib.h> unconditionally.
51290         Remove explicit declarations of xmalloc and realloc.
51291         Include xalloc.h.
51292         (read_utmp): Remove anachronistic cast of xmalloc.
51293
51294 2003-06-17  Paul Eggert  <eggert@twinsun.com>
51295
51296         Assume C89, so PARAMS isn't needed.
51297         * lib/backupfile.h (PARAMS): Remove.  All uses removed.
51298         * lib/closeout.h, lib/dirname.h, lib/filemode.h, lib/fsusage.h,
51299         lib/getdate.h, lib/getline.h, lib/group-member.h, lib/hard-locale.h,
51300         lib/hash.h, lib/linebuffer.h, lib/long-options.h, lib/makepath.h,
51301         lib/memcasecmp.h, lib/memcoll.h, lib/modechange.h, lib/mountlist.h,
51302         lib/path-concat.h, lib/physmem.h, lib/posixtm.h, lib/quote.h,
51303         lib/readutmp.h, lib/same.h, lib/save-cwd.h, lib/savedir.h,
51304         lib/stdio-safer.h, lib/strtoimax.c, lib/strverscmp.h,
51305         lib/unistd-safer.h, lib/version-etc.h, lib/xalloc.h, lib/xreadlink.h,
51306         lib/xstrtod.h, lib/xstrtol.h: Likewise.
51307         * lib/filemode.h, lib/hard-locale.h, lib/memcoll.h, lib/modechange.h,
51308         lib/physmem.h, lib/same.h, lib/strverscmp.h: Do not include config.h;
51309         no longer needed. Anyway, config.h should always be included before any
51310         other file.
51311
51312 2003-06-11  Simon Josefsson  <jas@extundo.com>
51313
51314         * modules/sysexits: New file.
51315         * MODULES.html.sh (func_all_modules): Add sysexits.
51316
51317 2003-06-11  Simon Josefsson  <jas@extundo.com>
51318
51319         * lib/sysexit_.h: New file.
51320
51321 2003-06-11  Derek Price  <derek@ximbiot.com>
51322
51323         * lib/stat.c [LSTAT]: Compile/use slash_aware_lstat only if it is
51324         necessary.
51325
51326 2003-06-11  Bruno Haible  <bruno@clisp.org>
51327
51328         * m4/sysexits.m4: New file.
51329
51330 2003-06-10  Simon Josefsson  <jas@extundo.com>
51331
51332         * lib/argp.h: New file, from glibc.
51333         * lib/argp-ba.c: New file, from glibc.
51334         * lib/argp-eexst.c: New file, from glibc.
51335         * lib/argp-fmtstream.c: New file, from glibc.
51336         * lib/argp-fmtstream.h: New file, from glibc.
51337         * lib/argp-fs-xinl.c: New file, from glibc.
51338         * lib/argp-help.c: New file, from glibc.
51339         * lib/argp-namefrob.h: New file, from glibc.
51340         * lib/argp-parse.c: New file, from glibc.
51341         * lib/argp-pv.c: New file, from glibc.
51342         * lib/argp-pvh.c: New file, from glibc.
51343         * lib/argp-xinl.c: New file, from glibc.
51344
51345 2003-06-10  Simon Josefsson  <jas@extundo.com>
51346
51347         * modules/strchrnul: New file.
51348
51349 2003-06-10  Simon Josefsson  <jas@extundo.com>
51350
51351         * modules/argp: New file.
51352
51353 2003-06-10  Simon Josefsson  <jas@extundo.com>
51354
51355         * m4/strchrnul.m4: New file.
51356
51357 2003-06-10  Simon Josefsson  <jas@extundo.com>
51358
51359         * lib/strchrnul.h: New file.
51360         * lib/strchrnul.c: New file.
51361
51362 2003-06-10  Bruno Haible  <bruno@clisp.org>
51363
51364         * MODULES.html.sh (func_all_modules): Add strchrnul and argp.
51365
51366 2003-06-07  Karl Berry  <karl@gnu.org>
51367
51368         * config/config.{guess,sub}: update from prep.
51369
51370 2003-06-07  Jim Meyering  <jim@meyering.net>
51371
51372         * modules/strtod: Use $(...) notation, not @...@ for
51373         AC_REPLACE'd variables.
51374         * modules/localcharset: Likewise.
51375
51376 2003-06-07  Jim Meyering  <jim@meyering.net>
51377
51378         * lib/readtokens.h: Put `Free Software Foundation, Inc.'
51379         in place of my name in the copyright comment.
51380         Remove definition and uses of __P.
51381
51382         From coreutils.
51383         * lib/stat.c: Don't declare xmalloc explicitly.
51384         Instead, include "xalloc.h".
51385         * lib/readtokens.c (readtokens): Remove anachronistic casts of xmalloc,
51386         xrealloc, and xcalloc return values.
51387         * lib/xgetcwd.c (xgetcwd): Include "xgetcwd.h".
51388         Improve comment.
51389         * lib/xgetcwd.h: Remove definition/uses of PARAMS.
51390
51391 2003-06-07  Bruno Haible  <bruno@clisp.org>
51392
51393         * modules/poll (Makefile.am): Use explicit creation rule for poll.h, to
51394         avoid AC_CONFIG_LINKS.
51395         * modules/fnmatch (Makefile.am): Use explicit creation rule for
51396         fnmatch.h, to avoid AC_CONFIG_LINKS.
51397         * modules/alloca (Makefile.am): Make creation of alloca.h Ctrl-C safe.
51398
51399 2003-06-07  Bruno Haible  <bruno@clisp.org>
51400
51401         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH, gl_FUNC_FNMATCH_POSIX,
51402         gl_FUNC_FNMATCH_GNU): Set FNMATCH_H instead of invoking
51403         AC_CONFIG_LINKS. Needed to allow for a different name of the lib
51404         directory.
51405         * m4/poll.m4 (gl_FUNC_POLL): Set POLL_H instead of invoking
51406         AC_CONFIG_LINKS. Needed to allow for a different name of the lib
51407         directory.
51408
51409 2003-06-06  Jim Meyering  <jim@meyering.net>
51410
51411         Merge from coreutils.
51412         * lib/same.c: (same_name): Declare *_basename locals to be `const'.
51413         Consolidate declarations and initializations of *_base* locals.
51414
51415         Merge from coreutils.
51416         This avoids a core dump on systems without GNU putenv,
51417         when running `env -u SOME_ALREADY_UNSET_VARIABLE'.
51418         * lib/putenv.c (__set_errno, LOCK, UNLOCK): Define.
51419         (unsetenv): New static function, from GNU libc.
51420         (rpl_putenv): Use it.
51421
51422         * lib/modechange.c: Remove trailing blanks.
51423
51424         Merge from coreutils.
51425         * lib/fsusage.c: Remove declaration of statfs.
51426         It conflicted with one from OSF/1 5.1 in <sys/mount.h>.
51427
51428         * lib/posixtm.c: Include <stdbool.h> unconditionally.
51429
51430 2003-06-06  Jim Meyering  <jim@meyering.net>
51431
51432         * lib/stdbool_.h: Renamed from stdbool.h.in.
51433
51434 2003-06-06  Jim Meyering  <jim@meyering.net>
51435             Bruno Haible  <bruno@clisp.org>
51436
51437         * modules/stdbool: Reflect renaming: stdbool.h.in -> stdbool_.h.
51438         Adjust Makefile.am snippet not to redirect directly to target.
51439         Use $(STDBOOL_H) notation, not @STDBOOL_H@ for AC_REPLACE'd variables.
51440
51441 2003-06-05  Paul Eggert  <eggert@twinsun.com>
51442
51443         * lib/mktime.c (__mktime_internal): When resolving a tm_isdst
51444         mismatch, look in future quarters as well as past.  This fixes a
51445         bug when processing fall-backwards gaps immediately after a long
51446         period of daylight-saving time.
51447
51448         * lib/mktime.c: Assume freestanding C89 or better.
51449         (HAVE_LIMITS_H): Remove.  Assume it's 1.
51450         (__P): Remove; not used.
51451         (CHAR_BIT, INT_MIN, INT_MAX): Remove; <limits.h> defines them.
51452         (mktime, not_equal_tm, print_tm, check_result,
51453         main): Use prototypes.  Use const * where appropriate.
51454         (main): Fix typo in testing code that uncovered by above changes.
51455         (Local Variables): Remove -DHAVE_LIMITS_H from compile-command.
51456
51457 2003-06-04  Paul Eggert  <eggert@twinsun.com>
51458
51459         * m4/human.m4 (gl_HUMAN): Require AM_STDBOOL_H.  Check for
51460         locale.h, localeconv.  This merges changes from coreutils.
51461
51462         * m4/mktime.m4 (AC_FUNC_MKTIME): New macro, taken from Autoconf CVS.
51463         It can be removed after the next Autoconf is released.
51464         * m4/exclude.m4 (gl_EXCLUDE): Don't check for sys/types.h; no loner
51465         needed.
51466
51467 2003-06-04  Paul Eggert  <eggert@twinsun.com>
51468
51469         * lib/mktime.c: Fix Debian bug 177940
51470         <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=177940>.
51471         (localtime_offset): Now long int, not time_t, because we want it
51472         to be guaranteed to be signed.  All uses changed.
51473         (__mktime_internal): If overflow would occur when adding offset,
51474         don't add it.
51475
51476         Merge 'human' changes from coreutils.  Rewrite to support
51477         locale-specific notations like thousands separators.
51478         * lib/human.c: Simplify authorship notice.
51479         Include human.h immediately after config.h.
51480         <sys/types.h>, <stdio.h>: Do not include; no longer needed.
51481         <limits.h>: Do not include, since human.h does.
51482         (SIZE_MAX, UINTMAX_MAX): New macros.
51483         <strings.h>: Include if HAVE_STRINGS_H, not if !HAVE_STRING_H.
51484         <locale.h>: Include if HAVE_LOCALE_H and HAVE_LOCALECONV.
51485         (HUMAN_READABLE_SUFFIX_LENGTH_MAX): New macro.
51486         (power_letter): Renamed from suffixes.
51487         (generate_suffix_backwards): Remove.
51488         (adjust_value): Now takes int style (because of human.h changes)
51489         and long double value (for greater precision on some platforms).
51490         (group_number): New function.
51491         (human_readable): Use it.  Use integer options, not enum.
51492         Put the options before the sizes in the arg list.
51493         Support all the new options.
51494         The old human_readable function has been removed;
51495         use inttostr.h instead.
51496         (human_readable, default_block_size, humblock):
51497         Use uintmax_t, not int, for block sizes.
51498         (human_readable_inexact, block_size_types): Remove.
51499         (block_size_opts): New constant.
51500         (human_options): Renamed from human_block_size, with new signature
51501         that allows block sizes up to UINTMAX_MAX.  All callers changed.
51502         * lib/human.h: Add copyright and authorship notice.
51503         Include <limits.h> and <stdbool.h> unconditionally.
51504         (PARAMS): Remove.  All uses removed.
51505         (LONGEST_HUMAN_READABLE): Add support for thousands separator.
51506         (enum human_inexact_style): Remove tag; now a nameless enum.
51507         (human_floor, human_ceiling, human_round_to_even): Now have
51508         values 2, 0, 1 rather than -1, 1, 0.
51509         (human_group_digits, human_suppress_point_zero, human_autoscale,
51510         human_base_1024, human_SI, human_B): New constants.
51511         (human_readable_inexact, human_block_size): Remove.
51512         (human_readable): Size args are now uintmax_t, not int.
51513         (human_options): New decl.
51514
51515         * lib/exclude.c: (new_exclude, add_exclude): Remove casts that are
51516         unnecessary now that we assume C89 or better.  This change
51517         imported from coreutils.
51518
51519         * lib/mktime.c (__mktime_internal): Do not reject negative timestamps
51520         arbitrarily.  This is the same patch as 2003-05-28, but it got lost
51521         in the 2003-05-30 sync from glibc.
51522
51523         .h files should stand alone, but we shouldn't include <sys/types.h>
51524         if we can get away with just <stddef.h>.
51525
51526         * lib/__fpending.h, addext.c, backupfile.c, exclude.c, getline.c,
51527         malloc.c, putenv.c, realloc.c, strcasecmp.c: Include <stddef.h>
51528         rather than <sys/types.h>, as we merely need size_t.
51529         * lib/dirname.h, memcoll.h, xalloc.h, xmemcoll.h: Include <stddef.h>,
51530         to get size_t.
51531         * lib/hash.h, linebuffer.h, readtokens.h, stdio-safer.h, version-etc.h:
51532         Include <stdio.h>, to get FILE.
51533         * lib/memcasecmp.c: Don't include <sys/types.h>, as we can assume
51534         memcasecmp.h has included <stddef.h> and all we need is size_t.
51535         * lib/memcoll.c: Include "memcoll.h", which gets us size_t and checks
51536         our interface, instead of including <sys/types.h>
51537
51538 2003-06-04  Paul Eggert  <eggert@twinsun.com>
51539
51540         * config/srclist.txt ($LIBCSRC/time/mktime.c lib gpl): Comment out for
51541         now, as glibc mktime is buggy on non-glibc systems.
51542
51543 2003-06-03  Karl Berry  <karl@gnu.org>
51544
51545         * config/config.sub: update from prep.
51546
51547 2003-06-02  Paul Eggert  <eggert@twinsun.com>
51548
51549         [from coreutils]
51550         Fix some minor time-related bugs with POSIX time arguments.
51551         Some valid time stamps were being rejected (notably -1, and
51552         time stamps before 1900 on 64-bit hosts).  And some invalid
51553         time stamps were being accepted, e.g. September 31.
51554
51555         * lib/posixtm.h (posixtime): Return bool instead of time_t, so
51556         that we can return (time_t) -1 successfully.
51557         * lib/posixtm.c: Likewise.
51558         [HAVE_STDBOOL_H]: Include <stdbool.h>.
51559         (bool, false, true) [!HAVE_STDBOOL_H]: New type.
51560         (t): Remove static var.
51561         (year, posix_time_parse): Now takes struct tm * arg to modify, instead
51562         of static var.  All uses changed.
51563         (year): Do not reject years before 1900; they can occur with
51564         64-bit time_t.
51565         (posix_time_parse): Do not check for out-of-range components;
51566         that is now the caller's responsibility, since our checks were
51567         only approximations.
51568         (posixtime): Use mktime to check for out-of-range components,
51569         since it knows them exactly.
51570         If mktime returns (time_t) -1, check whether an error actually occurred
51571         by invoking localtime on -1.
51572         (main) [TEST_POSIXTIME]: Check for input data errors, and report
51573         posixtime failures better.
51574         Improve the test data (in comments only).
51575
51576 2003-06-02  Karl Berry  <karl@gnu.org>
51577
51578         * config/mkinstalldirs (version): new variable.
51579         (--version): new option.
51580         (usage): improve message.
51581
51582 2003-05-30  Karl Berry  <karl@gnu.org>
51583
51584         * lib/mktime.c: update from libc.
51585
51586 2003-05-30  Bruno Haible  <bruno@clisp.org>
51587
51588         * modules/gettext: Add files m4/nls.m4 and m4/po.m4.
51589         * config/config.rpath: Upgrade to gettext-0.12.1.
51590
51591 2003-05-30  Bruno Haible  <bruno@clisp.org>
51592
51593         * m4/gettext.m4: Upgrade to gettext-0.12.1.
51594         * m4/nls.m4: New file, from gettext-0.12.1.
51595         * m4/po.m4: New file, from gettext-0.12.1.
51596         * m4/progtest.m4: Upgrade to gettext-0.12.1.
51597
51598 2003-05-30  Bruno Haible  <bruno@clisp.org>
51599
51600         * lib/config.charset: Upgrade to gettext-0.12.1 and libiconv-1.9.1.
51601         * lib/localcharset.h: Likewise.
51602         * lib/localcharset.c: Likewise.
51603
51604 2003-05-29  Karl Berry  <karl@gnu.org>
51605
51606         * config/config.rpath: update from gettext.
51607
51608 2003-05-28  Paul Eggert  <eggert@twinsun.com>
51609
51610         Assume the headers required for C89 freestanding compilers.
51611         * m4/backupfile.m4 (gl_BACKUPFILE): Don't check for limits.h.
51612         * m4/fsusage.m4 (gl_PREREQ_FSUSAGE_EXTRA): Likewise.
51613         * m4/human.m4 (gl_HUMAN): Likewise.
51614         * m4/pathmax.m4 (gl_PATHMAX): Likewise.
51615         * m4/rpmatch.m4 (gl_FUNC_RPMATCH): Likewise.
51616         * m4/userspec.m4 (gl_USERSPEC): Likewise.
51617         * m4/xreadlink.m4 (gl_XREADLINK): Likewise.
51618         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
51619         * m4/quote.m4 (gl_QUOTE): Don't check for stddef.h.
51620
51621 2003-05-28  Paul Eggert  <eggert@twinsun.com>
51622
51623         Assume the headers required for C89 freestanding compilers.
51624         * lib/addext.c, lib/backupfile.c, lib/fsusage.c, lib/human.c,
51625         lib/pathmax.h, lib/rpmatch.c, lib/userspec.c, lib/xreadlink.c,
51626         lib/xstrtol.c: Include <limits.h> without checking for HAVE_LIMITS_H.
51627         * lib/backupfile.c, lib/fsusage.c, lib/hash.c, lib/human.c,
51628         lib/safe-read.c, lib/userspec.c, lib/xstrtol.c (CHAR_BIT): Don't
51629         define, since <limits.h> is guaranteed to do that.
51630         * lib/fatal.c: Include <stdarg.h> without checking for __STDC__.
51631         * lib/exclude.c: Include <stdbool.h> unconditionally.
51632         * lib/tempname.c: Include <stddef.h> unconditionally.
51633         * lib/hash.c: Include <limits.h>, since we no longer define CHAR_BIT.
51634         * lib/modechange.c, rpmatch.c (NULL): Don't define, since
51635         <stddef.h> does that.
51636         * lib/quote.c: Dont include <stddef.h> or <sys/types.h>; not needed.
51637         * lib/safe-read.c (INT_MAX): Don't define, since <limits.h> does that.
51638         * lib/safe-read.c (TYPE_MINIMUM, TYPE_MAXIMUM): Remove; no longer
51639         needed.
51640         * lib/xstrtol.c: Likewise.
51641         * lib/safe-read.c: Remove TYPE_SIGNED; no longer needed.
51642         * lib/savedir.c: Include <stddef.h> instead of defining NULL.
51643
51644         * lib/addext.c (addext): Use assignment rather than cast, to avoid
51645         warnings on some platforms.
51646
51647         * lib/mktime.c (__mktime_internal): Do not reject negative timestamps
51648         arbitrarily.
51649
51650 2003-05-26  Jim Meyering  <jim@meyering.net>
51651
51652         Merge in a change from coreutils:
51653         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Test the cache variable, not one
51654         that is guaranteed to be `no'.  Use `no_such_member' to indicate
51655         that condition, rather than `-1' which is slightly misleading.
51656         Change the name of the cache variable to have the gl_ prefix.
51657         Prompted by a patch from Richard Dawe for DJGPP.
51658
51659 2003-05-24  Karl Berry  <karl@gnu.org>
51660
51661         * config/config.guess: update from prep.
51662
51663 2003-05-22  Karl Berry  <karl@gnu.org>
51664
51665         * gnulib-tool (func_usage): =LIBRARY not =libRARY in help msg.
51666
51667 2003-05-20  Karl Berry  <karl@gnu.org>
51668
51669         * config/config.guess: update from prep.
51670
51671 2003-05-18  Karl Berry  <karl@gnu.org>
51672
51673         * config/srclistvars.sh (TEXMF): use TEXMFROOT instead, since TEXMF
51674         might actually be set by the user.
51675
51676         * config/depcomp, install-sh, mdate-sh: update from automake.
51677
51678 2003-05-17  Bruno Haible  <bruno@clisp.org>
51679
51680         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Fix a quoting bug leading to an
51681         invalid expansion for AC_EGREP_CPP.
51682         * m4/strtoimax.m4 (gl_FUNC_STRTOIMAX): Likewise.
51683         * m4/strtoumax.m4 (gl_FUNC_STRTOUMAX): Likewise.
51684         Suggested by Akim Demaille <akim@epita.fr> in
51685         http://mail.gnu.org/archive/html/bug-autoconf/2003-05/threads.html
51686
51687 2003-05-12  Jim Meyering  <jim@meyering.net>
51688
51689         * lib/strftime.c (my_strftime): Let the `-' (no-pad) flag affect
51690         the space-padded-by-default conversion specifiers, %e, %k, %l.
51691
51692 2003-05-12  Bruno Haible  <bruno@clisp.org>
51693
51694         * lib/linebreak.c (iconv_string_length): Don't return -1 just because
51695         the string is longer than 4 KB.
51696
51697 2003-05-11  Karl Berry  <karl@gnu.org>
51698
51699         * config/config.{guess,sub}: update from prep.
51700
51701 2003-05-09  Bruno Haible  <bruno@clisp.org>
51702
51703         * modules/error: Add m4/strerror_r.m4 to file list.
51704
51705 2003-05-03  Bruno Haible  <bruno@clisp.org>
51706
51707         Upgrade to Unicode-4.0.
51708         * lib/linebreak.c (nonspacing_table_data): Change width of U+00AD,
51709         U+0350..U+0357, U+035D..U+035F, U+0600..U+0603, U+0610..U+0615,
51710         U+0656..U+0658, U+0A01, U+0AE2..U+0AE3, U+0CBC, U+17B4..U+17B5,
51711         U+17DD, U+1920..U+1922, U+1927..U+192B, U+1932, U+1939..U+193B
51712         from 1 to 0. Change width of U+0CBF, U+0CC6, U+180E from 0 to 1.
51713         (uc_width): Change width of U+4DC0..U+4DFF from 2 to 1. Change width
51714         of U+2A6D7..U+2F7FF, U+2FA1E..U+2FFFD, U+30000..U+3FFFD from 1 to 2.
51715         Change width of U+E0100..U+E01EF from 1 to 0.
51716
51717 2003-04-25  Jim Meyering  <jim@meyering.net>
51718
51719         * lib/copy-file.c (copy_file_preserving): Declare buf_size to be
51720         of type size_t, not int.
51721
51722 2003-04-25  Bruno Haible  <bruno@clisp.org>
51723
51724         * lib/copy-file.c: Include <stddef.h>, for size_t.
51725
51726 2003-04-21  Paul Eggert  <eggert@twinsun.com>
51727
51728         * m4/error.m4 (gl_ERROR): Do not put under dynamic conditions some
51729         code which expansion is under static control.  Patch imported from
51730         Akim Demaille's patch to Bison; see
51731         <http://mail.gnu.org/archive/html/bison-patches/2003-03/msg00057.html>.
51732
51733 2003-04-14  Bruno Haible  <bruno@clisp.org>
51734
51735         * m4/error.m4 (jm_PREREQ_ERROR): Use AC_FUNC_VPRINTF.
51736
51737 2003-04-11  Jim Meyering  <jim@meyering.net>
51738
51739         Merge changes from Coreutils.
51740
51741         2003-03-22  Jim Meyering  <jim@meyering.net>
51742
51743         * lib/strftime.c (widen): Cast alloca return value to proper type.
51744
51745         2003-01-19  Ulrich Drepper  <drepper@redhat.com>
51746
51747         From GNU libc.
51748         * lib/strftime.c (my_strftime): Handle very large width
51749         specifications for numeric values correctly.  Improve checks for
51750         overflow.
51751
51752         2003-01-19  Jim Meyering  <jim@meyering.net>
51753
51754         * lib/strftime.c (widen) [COMPILE_WIDE]: Merge nearly-identical
51755         definitions.
51756         (nl_get_alt_digit) [! defined my_strftime]: Define.
51757         (my_strftime) [_NL_CURRENT]: Merge nearly-identical uses of
51758         _nl_get_alt_digit and _nl_get_walt_digit.
51759
51760         * lib/strftime.c (my_strftime): Merge in locale-related changes from
51761         libc. These changes have no effect outside of _LIBC.
51762
51763 2003-04-10  Bruno Haible  <bruno@clisp.org>
51764
51765         * modules/findprog: New file.
51766         * MODULES.html.sh (func_all_modules): Add it.
51767
51768 2003-04-10  Bruno Haible  <bruno@clisp.org>
51769
51770         * m4/findprog.m4: New file.
51771         * m4/eaccess.m4: New file.
51772
51773 2003-04-10  Bruno Haible  <bruno@clisp.org>
51774
51775         * lib/findprog.h: New file, from GNU gettext.
51776         * lib/findprog.c: New file, from GNU gettext.
51777
51778 2003-04-05  Jim Meyering  <jim@meyering.net>
51779
51780         Merge changes from Coreutils.
51781
51782         * lib/exclude.h (PARAMS): Remove definition and uses.
51783         * lib/exclude.c: Remove uses of `PARAMS'.
51784
51785         * lib/dirname.c [TEST_DIRNAME]: Update build instructions for test.
51786         Add test-cases for DOS filenames. Declare program_name.
51787         (main): Set up program_name.  Patch by Rich Dawe.
51788
51789         * lib/mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Detect any
51790         error from mntctl.
51791         Use mntctl's return value to drive the entry-processing loop, since
51792         we can't rely on the value of the vmt_length member in the last
51793         entry.  On some systems doing so could result in exhausting
51794         virtual memory.  Based in part on a patch from Mike Jetzer.
51795
51796 2003-04-04  Bruno Haible  <bruno@clisp.org>
51797
51798         * modules/linebreak: New file.
51799         * MODULES.html.sh (func_all_modules): Add it.
51800
51801 2003-04-04  Bruno Haible  <bruno@clisp.org>
51802
51803         * m4/linebreak.m4: New file.
51804
51805 2003-04-04  Bruno Haible  <bruno@clisp.org>
51806
51807         * lib/linebreak.h: New file, from GNU gettext.
51808         * lib/linebreak.c: New file, from GNU gettext with slight
51809         modifications.
51810         * lib/lbrkprop.h: New file, from GNU gettext.
51811
51812 2003-04-03  Bruno Haible  <bruno@clisp.org>
51813
51814         * modules/utf8-ucs4: New file.
51815         * modules/utf16-ucs4: New file.
51816         * modules/ucs4-utf8: New file.
51817         * modules/ucs4-utf16: New file.
51818         * MODULES.html.sh (func_all_modules): Add them.
51819
51820 2003-04-03  Bruno Haible  <bruno@clisp.org>
51821
51822         * m4/utf-ucs4.m4: New file.
51823         * m4/ucs4-utf.m4: New file.
51824
51825 2003-04-03  Bruno Haible  <bruno@clisp.org>
51826
51827         * lib/utf8-ucs4.h: New file, from GNU gettext.
51828         * lib/utf16-ucs4.h: New file, from GNU gettext.
51829         * lib/ucs4-utf8.h: New file, from GNU gettext.
51830         * lib/ucs4-utf16.h: New file, from GNU gettext.
51831
51832 2003-04-02  Bruno Haible  <bruno@clisp.org>
51833
51834         * modules/binary-io: New file.
51835         * MODULES.html.sh (func_all_modules): Add it.
51836
51837 2003-04-02  Bruno Haible  <bruno@clisp.org>
51838
51839         * lib/binary-io.h: New file, from GNU gettext.
51840
51841 2003-04-01  Bruno Haible  <bruno@clisp.org>
51842
51843         * modules/pathname: New file.
51844         * MODULES.html.sh (func_all_modules): Add it.
51845
51846 2003-04-01  Bruno Haible  <bruno@clisp.org>
51847
51848         * lib/pathname.h: New file, from GNU gettext.
51849         * lib/concatpath.c: New file, from GNU gettext.
51850
51851 2003-03-30  Bruno Haible  <bruno@clisp.org>
51852
51853         * m4/copy-file.m4 (gl_COPY_FILE): Add check for chown().
51854
51855 2003-03-30  Bruno Haible  <bruno@clisp.org>
51856
51857         * lib/copy-file.c (copy_file_preserving): Don't set owner if the
51858         function chown() doesn't exist.
51859
51860 2003-03-28  Bruno Haible  <bruno@clisp.org>
51861
51862         * modules/copy-file: New file.
51863         * MODULES.html.sh (func_all_modules): Add it.
51864
51865 2003-03-28  Bruno Haible  <bruno@clisp.org>
51866
51867         * m4/copy-file.m4: New file.
51868
51869 2003-03-28  Bruno Haible  <bruno@clisp.org>
51870
51871         * lib/copy-file.h: New file, from GNU gettext.
51872         * lib/copy-file.c: New file, from GNU gettext.
51873
51874 2003-03-18  Jim Meyering  <jim@meyering.net>
51875
51876         * lib/quote.c (quote_n): Fix typo in comment.
51877
51878 2003-03-18  Bruno Haible  <bruno@clisp.org>
51879
51880         * m4/onceonly.m4: Use m4_defn instead of defn, for better error
51881         checking.
51882         * m4/onceonly_2_57.m4: Likewise.
51883
51884 2003-03-17  Bruno Haible  <bruno@clisp.org>
51885
51886         * m4/onceonly.m4: Require autoconf 2.54 or newer.
51887         (m4_quote): Remove macro.
51888         * m4/onceonly_2_57.m4: Require autoconf 2.54 or newer.
51889
51890 2003-03-14  Jim Meyering  <jim@meyering.net>
51891
51892         Merge changes from Coreutils.
51893         * lib/obstack.h (obstack_object_size): Declare temporary, __o,
51894         to be const, in order to avoid warnings.
51895         (obstack_room): Likewise.
51896         (obstack_empty_p): Likewise.
51897
51898 2003-03-14  Bruno Haible  <bruno@clisp.org>
51899
51900         * m4/onceonly_2_57.m4 (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE,
51901         AC_CHECK_DECLS_ONCE): Quote AC_FOREACH variable-expansions properly.
51902
51903 2003-03-13  Paul Eggert  <eggert@twinsun.com>
51904
51905         Merge changes from Bison.
51906         * lib/obstack.h: (__INT_TO_PTR) [__STDC__]: Cast result to
51907         (void *) to avoid diagnostic with native c89 on SGI IRIX 6.5
51908         when compiling Bison 1.875's `bitset bset = obstack_alloc
51909         (bobstack, bytes);'.  Problem reported by Nelson H. F. Beebe.
51910         * lib/hash.c: Include <stdbool.h> unconditionally.
51911
51912 2003-03-13  Paul Eggert  <eggert@twinsun.com>
51913
51914         * m4/onceonly.m4 (m4_quote): New macro.
51915         (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE, AC_CHECK_DECLS_ONCE):
51916         Quote AC_FOREACH variable-expansions properly.
51917
51918 2003-03-13  Paul Eggert  <eggert@twinsun.com>
51919
51920         * doc/COPYING.DOC, fdl.texi: Sync with latest FSF version.
51921
51922 2003-03-09  Paul Eggert  <eggert@twinsun.com>
51923
51924         * lib/argmatch.c (EXIT_FAILURE): Define if the system doesn't.
51925         Reported by Bruce Becker; see:
51926         http://mail.gnu.org/archive/html/bug-bison/2003-03/msg00017.html
51927
51928 2003-03-03  Paul Eggert  <eggert@twinsun.com>
51929             Bruno Haible  <bruno@clisp.org>
51930
51931         * lib/mbswidth.h: Include <wchar.h>. Needed for UnixWare 7.1.1.
51932         Reported by John Hughes, see
51933         http://mail.gnu.org/archive/html/bug-bison/2003-02/msg00030.html
51934
51935 2003-02-20  Bruno Haible  <bruno@clisp.org>
51936
51937         * MODULES.html.sh (func_all_modules): Add poll.
51938
51939 2003-02-19  Paolo Bonzini  <bonzini@gnu.org>
51940
51941         * modules/poll: New file.
51942
51943 2003-02-19  Paolo Bonzini  <bonzini@gnu.org>
51944
51945         * lib/poll_.h: New file.
51946         * lib/poll.c: New file.
51947
51948 2003-02-19  Paolo Bonzini  <bonzini@gnu.org>
51949
51950         * m4/poll.m4: New file.
51951
51952 2003-02-18  Paolo Bonzini  <bonzini@gnu.org>
51953
51954         * modules/mathl: New file.
51955
51956 2003-02-18  Paolo Bonzini  <bonzini@gnu.org>
51957
51958         * lib/mathl.h: New file.
51959         * lib/acosl.c: New file.
51960         * lib/asinl.c: New file.
51961         * lib/atanl.c: New file.
51962         * lib/ceill.c: New file.
51963         * lib/cosl.c: New file.
51964         * lib/expl.c: New file.
51965         * lib/floorl.c: New file.
51966         * lib/frexpl.c: New file.
51967         * lib/ldexpl.c: New file.
51968         * lib/logl.c: New file.
51969         * lib/sincosl.c: New file.
51970         * lib/sinl.c: New file.
51971         * lib/sqrtl.c: New file.
51972         * lib/tanl.c: New file.
51973         * lib/trigl.c: New file.
51974         * lib/trigl.h: New file.
51975
51976 2003-02-18  Paolo Bonzini  <bonzini@gnu.org>
51977
51978         * m4/mathl.m4: New file.
51979
51980 2003-02-18  Bruno Haible  <bruno@clisp.org>
51981
51982         * MODULES.html.sh (func_all_modules): Add mathl.
51983
51984 2003-02-17  Bruno Haible  <bruno@clisp.org>
51985
51986         * modules/mkdtemp: New module.
51987         * MODULES.html.sh (func_all_modules): Add it.
51988
51989 2003-02-17  Bruno Haible  <bruno@clisp.org>
51990
51991         * m4/mkdtemp.m4: New file, from GNU gettext with modifications.
51992
51993 2003-02-17  Bruno Haible  <bruno@clisp.org>
51994
51995         * lib/mkdtemp.h: New file, from GNU gettext.
51996         * lib/mkdtemp.c: New file, from GNU gettext.
51997
51998 2003-02-02  Jim Meyering  <jim@meyering.net>
51999
52000         * m4/regex.m4 (jm_INCLUDED_REGEX): Detect broken re_search in
52001         e.g. glibc-2.2.93.
52002
52003 2003-01-31  Bruno Haible  <bruno@clisp.org>
52004
52005         * m4/rename.m4 (vb_FUNC_RENAME): Add a redirection from 'rename' to
52006         'rpl_rename'.
52007         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Add a redirection from 'strnlen' to
52008         'rpl_strnlen'.
52009         * m4/strtod.m4 (gl_FUNC_STRTOD): Add a redirection from 'strtod' to
52010         'rpl_strtod'.
52011         * m4/utime.m4 (jm_FUNC_UTIME): Add a redirection from 'utime' to
52012         'rpl_utime'.
52013
52014 2003-01-31  Bruno Haible  <bruno@clisp.org>
52015
52016         * lib/rename.c: #undef rename before defining rpl_rename.
52017         * lib/strnlen.c: #undef strnlen, define rpl_strnlen instead of strnlen.
52018
52019 2003-01-30  Bruno Haible  <bruno@clisp.org>
52020
52021         * modules/vasnprintf, modules/vasprintf: New modules.
52022         * MODULES.html.sh (func_all_modules): Add them.
52023
52024 2003-01-30  Bruno Haible  <bruno@clisp.org>
52025
52026         * m4/signed.m4: New file, from GNU gettext.
52027         * m4/longdouble.m4: New file, from GNU gettext.
52028         * m4/wchar_t.m4: New file, from GNU gettext.
52029         * m4/wint_t.m4: New file, from GNU gettext.
52030         * m4/vasnprintf.m4: New file.
52031         * m4/vasprintf.m4: New file.
52032
52033 2003-01-30  Bruno Haible  <bruno@clisp.org>
52034
52035         * lib/printf-args.h: New file, from GNU gettext.
52036         * lib/printf-args.c: New file, from GNU gettext.
52037         * lib/printf-parse.h: New file, from GNU gettext.
52038         * lib/printf-parse.c: New file, from GNU gettext.
52039         * lib/vasnprintf.h: New file, from GNU gettext.
52040         * lib/vasnprintf.c: New file, from GNU gettext.
52041         * lib/asnprintf.c: New file, from GNU gettext.
52042         * lib/vasprintf.h: New file, from GNU gettext with modifications.
52043         * lib/vasprintf.c: New file, from GNU gettext.
52044         * lib/asprintf.c: New file, from GNU gettext.
52045
52046 2003-01-29  Bruno Haible  <bruno@clisp.org>
52047
52048         * modules/stpncpy: New module.
52049         * MODULES.html.sh (func_all_modules): Add it.
52050
52051 2003-01-29  Bruno Haible  <bruno@clisp.org>
52052
52053         * m4/stpncpy.m4: New file.
52054
52055 2003-01-29  Bruno Haible  <bruno@clisp.org>
52056
52057         * lib/stpncpy.h: New file, from GNU gettext with modifications.
52058         * lib/stpncpy.c: New file, from GNU gettext with modifications.
52059
52060 2003-01-28  Bruno Haible  <bruno@clisp.org>
52061
52062         * modules/c-ctype: New module.
52063         * MODULES.html.sh (func_all_modules): Add it.
52064
52065 2003-01-28  Bruno Haible  <bruno@clisp.org>
52066
52067         * lib/c-ctype.h: New file, from GNU gettext, with changes suggested by
52068         Paul Eggert.
52069         * lib/c-ctype.c: New file, from GNU gettext, with changes suggested by
52070         Paul Eggert.
52071
52072 2003-01-27  Bruno Haible  <bruno@clisp.org>
52073
52074         * modules/xsetenv: New module.
52075         * MODULES.html.sh (func_all_modules): Add it.
52076
52077 2003-01-27  Bruno Haible  <bruno@clisp.org>
52078
52079         * lib/xsetenv.h: New file, from GNU gettext.
52080         * lib/xsetenv.c: New file, from GNU gettext.
52081
52082 2003-01-23  Jim Meyering  <jim@meyering.net>
52083
52084         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Correct typo: s/-1/no/ that kept this
52085         from working on systems without dirfd (at least Irix and OSF1/Tru64).
52086
52087 2003-01-23  Bruno Haible  <bruno@clisp.org>
52088
52089         * modules/minmax: New module.
52090         * MODULES.html.sh (func_all_modules): Add it.
52091
52092 2003-01-23  Bruno Haible  <bruno@clisp.org>
52093
52094         * lib/minmax.h: New file, from GNU gettext, with comments from Paul
52095         Eggert.
52096
52097 2003-01-22  Bruno Haible  <bruno@clisp.org>
52098
52099         * modules/exit: New module.
52100         * MODULES.html.sh (func_all_modules): Add it.
52101
52102 2003-01-22  Bruno Haible  <bruno@clisp.org>
52103
52104         * lib/exit.h: New file, from GNU gettext.
52105
52106 2003-01-19  Bruno Haible  <bruno@clisp.org>
52107
52108         * gnulib-tool: Recognize option --extract-maintainer.
52109         (func_get_maintainer): New function.
52110         * modules/*: Add Maintainer entry.
52111
52112 2003-01-16  Jim Meyering  <jim@meyering.net>
52113
52114         * m4/regex.m4: The `regex' struct is both input and output.
52115         Initialize it before each use.  Patch by Tim Waugh.
52116
52117 2003-01-16  Bruno Haible  <bruno@clisp.org>
52118
52119         * MODULES.html.sh: Add a table of contents. Add the module name as
52120         leftmost column. Add hyperlinks.
52121
52122 2003-01-15  Bruno Haible  <bruno@clisp.org>
52123
52124         * m4/md5.m4 (gl_MD5): Require AC_C_INLINE.
52125
52126 2003-01-15  Bruno Haible  <bruno@clisp.org>
52127
52128         * m4/longlong.m4 (jm_AC_TYPE_LONG_LONG): Also test the LL suffix.
52129         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Also test the ULL
52130         suffix.
52131
52132 2003-01-15  Bruno Haible  <bruno@clisp.org>
52133
52134         * m4/alloca.m4 (gl_FUNC_ALLOCA): Invoke AC_EGREP_CPP prerequisites.
52135
52136 2003-01-15  Bruno Haible  <bruno@clisp.org>
52137
52138         * lib/stpcpy.h (stpcpy): Use ANSI C function declarations.
52139         * lib/strcase.h (strcasecmp, strncasecmp): Likewise.
52140
52141 2003-01-14  Jim Meyering  <jim@meyering.net>
52142
52143         * lib/same.c (same_name): Tweak a comment.
52144
52145 2003-01-14  Bruno Haible  <bruno@clisp.org>
52146
52147         * lib/same.c (same_name): Reorder tests so as to avoid calling stat()
52148         when a string comparison is sufficient.
52149
52150 2003-01-14  Bruno Haible  <bruno@clisp.org>
52151
52152         * lib/readtokens.c (readtoken): Cast character to 'unsigned char', not
52153         'unsigned int'.
52154
52155 2003-01-14  Bruno Haible  <bruno@clisp.org>
52156
52157         * lib/hash-pjw.c: Add comment about low quality of this function.
52158
52159 2003-01-13  Bruno Haible  <bruno@clisp.org>
52160
52161         * modules/stpcpy: Distribute lib/stpcpy.h.
52162         * modules/setenv: Depend on alloca. Distribute lib/setenv.h.
52163
52164 2003-01-13  Bruno Haible  <bruno@clisp.org>
52165
52166         * modules/*: Add a description.
52167         * modules/strpbrk: Fix Makefile.am snippet.
52168         * modules/strtoimax: Fix dependencies.
52169         * modules/strtoumax: Likewise.
52170
52171 2003-01-13  Bruno Haible  <bruno@clisp.org>
52172
52173         * gnulib-tool (func_create_testdir): Substitute lib_OBJECTS.
52174         * modules/alloca (Makefile.am): All object files depend on alloca.h.
52175         * modules/stdbool (Makefile.am): All object files depend on stdbool.h.
52176
52177 2003-01-13  Bruno Haible  <bruno@clisp.org>
52178
52179         * gnulib-tool (func_create_testdir): Store config/* files in the main
52180         directory.
52181         * config.rpath: Move to ...
52182         * config/config.rpath: ... here.
52183         * modules/gettext: Contains config/config.rpath, not config.rpath.
52184         * modules/iconv: Likewise.
52185
52186 2003-01-12  Paul Eggert  <eggert@twinsun.com>
52187
52188         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
52189         to avoid collisions with libcurses and libreadline.
52190
52191         * m4/getstr.m4: Remove.
52192         * m4/getline.m4 (gl_PREREQ_GETLINE): Require AC_HEADER_STDC.
52193
52194 2003-01-12  Paul Eggert  <eggert@twinsun.com>
52195
52196         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
52197         to avoid collisions with libcurses and libreadline.
52198
52199         * lib/Makefile.am (libfetish_a_SOURCES): Remove getstr.c, getstr.h.
52200         * lib/getstr.h, getstr.c: Remove.
52201         * lib/getline.c: Include "getline.h", to check interface.
52202         Move body of old getstr.c here: this defines MIN_CHUNK and
52203         declares getdelim2, which is renamed from getstr.
52204         (getline, getdelim): Adjust to renaming of getstr -> getdelim2.
52205
52206         * lib/linebuffer.c (readlinebuffer): Renamed from readline.
52207         All uses changed.
52208         * lib/linebuffer.h: Likewise.
52209         (readline): Remove backward-compatibility macro.
52210
52211 2003-01-12  Paul Eggert  <eggert@twinsun.com>
52212
52213         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
52214         to avoid collisions with libcurses and libreadline.
52215         * getstr: Remove.
52216         * MODULES.html.sh: Remove getstr.
52217         * modules/getline: Depend on unlocked-io, not getstr.
52218
52219 2003-01-12  Jim Meyering  <jim@meyering.net>
52220
52221         * lib/makepath.c: Don't test HAVE_ERRNO_H.  It's not necessary.
52222
52223 2003-01-10  Bruno Haible  <bruno@clisp.org>
52224
52225         * modules/alloca: Change Makefile.am requirements. Simplify Include
52226         requirements. Add lib/alloca_.h to file list.
52227
52228 2003-01-10  Bruno Haible  <bruno@clisp.org>
52229
52230         * m4/alloca.m4 (gl_FUNC_ALLOCA): Also define ALLOCA_H.
52231
52232 2003-01-10  Bruno Haible  <bruno@clisp.org>
52233
52234         * lib/alloca_.h: New file.
52235         * lib/getdate.y: Unconditionally include alloca.h.
52236         * lib/makepath.c: Likewise.
52237         * lib/setenv.c: Likewise.
52238         * lib/userspec.c: Likewise.
52239
52240 2003-01-09  Karl Berry  <karl@gnu.org>
52241
52242         * MODULES.html.sh: include `dirname $0` in PATH, to find
52243         gnulib-tool.
52244
52245 2003-01-09  Bruno Haible  <bruno@clisp.org>
52246
52247         * modules/stdbool: Change configure.ac, Makefile.am requirements.
52248         Simplify Include requirements. Add lib/stdbool.h.in to file list.
52249
52250 2003-01-09  Bruno Haible  <bruno@clisp.org>
52251
52252         * m4/stdbool.m4 (AM_STDBOOL_H): New macro.
52253
52254 2003-01-09  Bruno Haible  <bruno@clisp.org>
52255
52256         * lib/stdbool.h.in: New file.
52257
52258 2003-01-09  Bruno Haible  <bruno@clisp.org>
52259
52260         * gnulib-tool (func_all_modules): Ignore files ending in ~.
52261         * MODULES.html.sh: Likewise.
52262
52263 2003-01-08  Jim Meyering  <jim@meyering.net>
52264
52265         * lib/full-write.c: Undefine and define-away `const' after inclusion
52266         of errno.h, not before.  Suggestion from Bruno Haible.
52267
52268 2003-01-08  Bruno Haible  <bruno@clisp.org>
52269
52270         * modules/full-read: Depend on full-write.
52271
52272 2003-01-08  Bruno Haible  <bruno@clisp.org>
52273
52274         * lib/safe-read.c: Include specification header first, to ensure its
52275         selfcontainedness.
52276         * lib/full-write.c: Likewise.
52277
52278 2003-01-07  Jim Meyering  <jim@meyering.net>
52279
52280         * lib/full-write.c: Rework so that it may serve to define full_read,
52281         too.
52282         * lib/full-read.c: Simply #define FULL_READ and include full-write.c.
52283
52284 2003-01-07  Bruno Haible  <bruno@clisp.org>
52285
52286         * lib/strtoimax.c: Include <stdint.h> as an alternative to
52287         <inttypes.h>.
52288         * lib/xstrtol.h: Likewise.
52289         * lib/xstrtoimax.c: Likewise.
52290         * lib/xstrtoumax.c: Likewise.
52291         * lib/human.h: Likewise.
52292
52293         * lib/tempname.c: Include <inttypes.h> too. Avoids a compilation error
52294         on systems that have <inttypes.h> but not <stdint.h>.
52295
52296 2003-01-07  Bruno Haible  <bruno@clisp.org>
52297
52298         * MODULES.html.sh: Add copyright notice.
52299         (missed_files): Omit CVS directory entries.
52300         (func_module): Make it work with sed-3.02.
52301         * MODULES.txt: Remove file.
52302
52303 2003-01-06  Jim Meyering  <jim@meyering.net>
52304
52305         * lib/version-etc.c: Update year in translatable copyright string.
52306
52307 2003-01-03  Karl Berry  <karl@gnu.org>
52308
52309         * config/config.{guess,sub}: update from prep.
52310
52311 2003-01-02  Karl Berry  <karl@gnu.org>
52312
52313         * doc/COPYING.DOC: belatedly updated to 1.2.
52314
52315 2003-01-01  Karl Berry  <karl@gnu.org>
52316
52317         * gnulib-tool (func_verify_module): report module name $module in
52318         error message, not $1.
52319         * gnulib-tool (create-testdir): don't complain if destdir couldn't
52320         be created, only if it doesn't exist.
52321         * gnulib-tool (last_checkin_date): don't expand the $Date here.
52322
52323 2002-12-31  Paul Eggert  <eggert@twinsun.com>
52324
52325         * m4/memcoll.m4 (gl_MEMCOLL): Require AC_FUNC_MEMCMP.
52326
52327 2002-12-31  Paul Eggert  <eggert@twinsun.com>
52328
52329         * lib/memcoll.c (memcoll): Fall back on a simple algorithm using
52330         memcmp if strcoll doesn't work.
52331
52332 2002-12-31  Bruno Haible  <bruno@clisp.org>
52333
52334         * lib/utime.c (utime_null): No need to call ftruncate if the file was
52335         nonempty.
52336
52337 2002-12-31  Bruno Haible  <bruno@clisp.org>
52338
52339         * lib/memcoll.c (STRCOLL): New macro.
52340         (memcoll): Use it.
52341
52342 2002-12-31  Bruno Haible  <bruno@clisp.org>
52343
52344         * lib/localcharset.h: New file.
52345         * lib/localcharset.c: Include it.
52346         * lib/unicodeio.c: Likewise.
52347
52348 2002-12-31  Bruno Haible  <bruno@clisp.org>
52349
52350         * lib/getstr.h (getstr): Define, to avoid clash with libcurses.
52351         * lib/linebuffer.h (readline): Define, to avoid clash with libreadline.
52352
52353 2002-12-31  Bruno Haible  <bruno@clisp.org>
52354
52355         * lib/getline.h: Include <stddef.h>, for size_t.
52356
52357         * lib/unicodeio.h: Include <stddef.h>, for size_t.
52358         * lib/unicodeio.c: Don't include <stddef.h>.
52359
52360 2002-12-31  Bruno Haible  <bruno@clisp.org>
52361
52362         * lib/getdate.y (get_date): Test HAVE_STRUCT_TM_TM_ZONE, not
52363         HAVE_TM_ZONE.
52364
52365 2002-12-24  Karl Berry  <karl@gnu.org>
52366
52367         * config/config.guess: update from prep.
52368
52369 2002-12-24  Bruno Haible  <bruno@clisp.org>
52370
52371         General infrasructure.
52372         * m4/README: Rewritten.
52373         * m4/onceonly.m4: New file.
52374         * m4/onceonly_2_57.m4: New file.
52375
52376         Module atexit.
52377         * m4/atexit.m4: New file.
52378
52379         Module strtod.
52380         * m4/strtod.m4: New file.
52381
52382         Module strtol.
52383         * m4/strtol.m4: New file.
52384
52385         Module strtoul.
52386         * m4/strtoul.m4: New file.
52387
52388         Module memchr.
52389         * m4/memchr.m4: New file.
52390
52391         Module memcmp.
52392         * m4/memcmp.m4 (gl_PREREQ_MEMCMP): New macro.
52393         (jm_FUNC_MEMCMP): Invoke it.
52394
52395         Module memcpy.
52396         * m4/memcpy.m4: New file.
52397
52398         Module memmove.
52399         * m4/memmove.m4: New file.
52400
52401         Module memset.
52402         * m4/memset.m4: New file.
52403
52404         Module strcspn.
52405         * m4/strcspn.m4: New file.
52406
52407         Module strpbrk.
52408         * m4/strpbrk.m4: New file.
52409
52410         Module strstr.
52411         * m4/strstr.m4: New file.
52412
52413         Module strerror.
52414         * m4/strerror.m4: New file.
52415
52416         Module mktime.
52417         * m4/mktime.m4: Renamed from jm-mktime.m4.
52418         (gl_PREREQ_MKTIME): New macro.
52419         (gl_FUNC_MKTIME): Renamed from jm_FUNC_MKTIME. Invoke gl_PREREQ_MKTIME.
52420
52421         Module malloc.
52422         * m4/malloc.m4 (gl_PREREQ_MALLOC): New macro.
52423         (jm_FUNC_MALLOC): Use AC_FUNC_MALLOC. Invoke gl_PREREQ_MALLOC.
52424         Don't define HAVE_DONE_WORKING_MALLOC_CHECK, since nothing uses it.
52425
52426         Module realloc.
52427         * m4/realloc.m4 (gl_PREREQ_REALLOC): New macro.
52428         (jm_FUNC_REALLOC): Use AC_FUNC_REALLOC. Invoke gl_PREREQ_REALLOC.
52429         Don't define HAVE_DONE_WORKING_REALLOC_CHECK, since nothing uses it.
52430
52431         Module strftime.
52432         * m4/tm_gmtoff.m4: New file, extracted from strftime.m4.
52433         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Use AC_FUNC_STRFTIME.
52434         Don't test for bcopy (we are not emacs). Invoke AC_TYPE_MBSTATE_T and
52435         gl_TM_GMTOFF.
52436         (_jm_STRFTIME_PREREQS, jm_FUNC_GNU_STRFTIME): Use onceonly macros.
52437
52438         Module xalloc.
52439         * m4/xalloc.m4: New file.
52440
52441         Module alloca.
52442         * m4/alloca.m4: New file.
52443
52444         Module putenv.
52445         * m4/putenv.m4 (gl_PREREQ_PUTENV): New macro.
52446         (jm_FUNC_PUTENV): Invoke it.
52447
52448         Module setenv.
52449         * m4/setenv.m4 (gt_FUNC_SETENV): New macro.
52450         (gt_CHECK_VAR_DECL): Fix quoting error that led to infinite loop in m4
52451         when invoked twice.
52452         (gt_PREREQ_SETENV, gt_PREREQ_UNSETENV): New macros, replacing old
52453         gt_FUNC_SETENV.
52454
52455         Module memrchr.
52456         * m4/memrchr.m4: New file.
52457
52458         Module stpcpy.
52459         * m4/stpcpy.m4: New file.
52460
52461         Module strcase.
52462         * m4/strcase.m4: New file.
52463
52464         Module strdup.
52465         * m4/strdup.m4: New file.
52466
52467         Module strnlen.
52468         * m4/strnlen.m4: New file.
52469
52470         Module strndup.
52471         * m4/strndup.m4: New file.
52472
52473         Module xstrtod.
52474         * m4/xstrtod.m4: New file.
52475
52476         Module xstrtol.
52477         * m4/xstrtol.m4: New file.
52478
52479         Module getdate.
52480         * m4/getdate.m4: New file.
52481
52482         Module unlocked-io.
52483         * m4/unlocked-io.m4: Renamed from jm-glibc-io.m4.
52484         (jm_FUNC_GLIBC_UNLOCKED_IO): Invoke AC_GNU_SOURCE. Use onceonly macros.
52485         * m4/jm-glibc-io.m4n: Remove file.
52486
52487         Module long-options.
52488         * m4/long-options.m4: New file.
52489
52490         Module md5.
52491         * m4/md5.m4: New file.
52492
52493         Module sha.
52494         * m4/sha.m4: New file.
52495
52496         Module getstr.
52497         * m4/getstr.m4: New file.
52498
52499         Module getline.
52500         * m4/getline.m4 (gl_PREREQ_GETLINE): New macro.
52501         (AM_FUNC_GETLINE): Invoke AC_GNU_SOURCE. Use <stdlib.h>, not
52502         <sys/types.h>, for size_t. Use the function name gnu_getline, not
52503         simply getline. Infoke gl_PREREQ_GETLINE.
52504
52505         Module obstack.
52506         * m4/obstack.m4: New file.
52507
52508         Module hash.
52509         * m4/hash.m4: New file.
52510
52511         Module readtokens.
52512         * m4/readtokens.m4: New file.
52513
52514         Module strverscmp.
52515         * m4/strverscmp.m4: New file.
52516
52517         Module stdbool.
52518         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Add test for _Bool. Needed for
52519         OSF/1.
52520
52521         Module strtoll.
52522         * m4/strtoll.m4: New file.
52523
52524         Module strtoull.
52525         * m4/strtoull.m4: New file.
52526
52527         Module strtoimax.
52528         * m4/strtoimax.m4: New file.
52529
52530         Module strtoumax.
52531         * m4/strtoumax.m4: New file.
52532
52533         Module xstrtoimax.
52534         * m4/xstrtoimax.m4 (jm_XSTRTOIMAX): Renamed from
52535         jm_AC_PREREQ_XSTRTOIMAX.
52536         Moved the strtol prerequisites to strtol.m4.
52537         Moved the strtoll prerequisites to strtoll.m4.
52538         Moved the strtoimax prerequisites to strtoimax.m4.
52539
52540         Module xstrtoumax.
52541         * m4/xstrtoumax.m4 (jm_XSTRTOUMAX): Renamed from
52542         jm_AC_PREREQ_XSTRTOUMAX.
52543         Moved the strtoul prerequisites to strtoul.m4.
52544         Moved the strtoull prerequisites to strtoull.m4.
52545         Moved the strtoumax prerequisites to strtoumax.m4.
52546
52547         Module chown.
52548         * m4/chown.m4 (gl_PREREQ_CHOWN): New macro.
52549         (jm_FUNC_CHOWN): Use AC_FUNC_CHOWN. Invoke gl_PREREQ_CHOWN.
52550
52551         Module dup2.
52552         * m4/dup2.m4: New file.
52553
52554         Module ftruncate.
52555         * m4/ftruncate.m4 (gl_PREREQ_FTRUNCATE): New macro.
52556         (jm_FUNC_FTRUNCATE): Use AC_REPLACE_FUNCS. Invoke gl_PREREQ_FTRUNCATE.
52557
52558         Module getgroups.
52559         * m4/getgroups.m4 (gl_PREREQ_GETGROUPS): New macro.
52560         (jm_FUNC_GETGROUPS): Use AC_FUNC_GETGROUPS. Invoke gl_PREREQ_GETGROUPS.
52561
52562         Module gettimeofday.
52563         * m4/gettimeofday.m4 (gl_PREREQ_GETTIMEOFDAY): New macro.
52564         (AC_FUNC_GETTIMEOFDAY_CLOBBER): Use onceonly macros. Invoke
52565         gl_PREREQ_GETTIMEOFDAY.
52566
52567         Module mkdir.
52568         * m4/mkdir-slash.m4 (gl_PREREQ_MKDIR): New macro.
52569         (UTILS_FUNC_MKDIR_TRAILING_SLASH): Invoke gl_PREREQ_MKDIR.
52570
52571         Module mkstemp.
52572         * m4/mkstemp.m4 (gl_PREREQ_MKSTEMP): New macro.
52573         (jm_PREREQ_TEMPNAME): New macro, from prereq.m4. Also invoke
52574         jm_AC_TYPE_UINTMAX_T.
52575         (UTILS_FUNC_MKSTEMP): Invoke gl_PREREQ_MKSTEMP and jm_PREREQ_TEMPNAME.
52576
52577         Module stat.
52578         * m4/stat.m4 (gl_PREREQ_STAT): New macro.
52579         (jm_FUNC_STAT): Use AC_FUNC_STAT. Invoke gl_PREREQ_STAT.
52580
52581         Module lstat.
52582         * m4/lstat.m4 (gl_PREREQ_LSTAT): New macro.
52583         (jm_FUNC_LSTAT): Use AC_FUNC_LSTAT. Invoke gl_PREREQ_LSTAT.
52584
52585         Module timespec.
52586         * m4/timespec.m4 (gl_TIMESPEC): New macro.
52587         (jm_CHECK_TYPE_STRUCT_TIMESPEC): Add check for <sys/time.h>.
52588         * m4/st_mtim.m4: Indentation.
52589
52590         Module nanosleep.
52591         * m4/nanosleep.m4 (gl_PREREQ_NANOSLEEP): New macro.
52592         (jm_FUNC_NANOSLEEP): Add check for <sys/time.h>. Invoke
52593         gl_PREREQ_NANOSLEEP.
52594
52595         Module regex.
52596         * m4/regex.m4 (jm_PREREQ_REGEX): New macro.
52597         (jm_INCLUDED_REGEX): Invoke jm_PREREQ_REGEX.
52598         (gl_REGEX): New macro.
52599
52600         Module rename.
52601         * m4/rename.m4 (gl_PREREQ_RENAME): New macro.
52602         (vb_FUNC_RENAME): Invoke gl_PREREQ_RENAME.
52603
52604         Module rmdir.
52605         * m4/rmdir.m4: New file.
52606
52607         Module utime.
52608         * m4/utimbuf.m4 (jm_CHECK_TYPE_STRUCT_UTIMBUF): Use onceonly macros.
52609         * m4/utime.m4 (gl_PREREQ_UTIME): New macro.
52610         (jm_FUNC_UTIME): Invoke gl_PREREQ_UTIME.
52611
52612         Module dirname.
52613         * m4/dirname.m4: New file.
52614
52615         Module getopt.
52616         * m4/getopt.m4: New file.
52617
52618         Module unistd-safer.
52619         * m4/unistd-safer.m4: New file.
52620
52621         Module fnmatch.
52622         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Include <stdlib.h>, for exit()
52623         declaration.
52624         (gl_PREREQ_FNMATCH_EXTRA): New macro.
52625         (gl_FUNC_FNMATCH_POSIX): New macro.
52626         (gl_FUNC_FNMATCH_GNU): Renamed from AC_FUNC_FNMATCH_GNU. Invoke
52627         gl_PREREQ_FNMATCH_EXTRA. Use the function name gnu_fnmatch, not
52628         simply fnmatch.
52629
52630         Module exclude.
52631         * m4/exclude.m4: New file.
52632
52633         Module human.
52634         * m4/human.m4: New file.
52635
52636         Module acl.
52637         * m4/acl.m4: Nop.
52638
52639         Module backupfile.
52640         * m4/backupfile.m4: New file.
52641         * m4/d-ino.m4: Indentation.
52642
52643         Module fsusage.
52644         * m4/fsusage.m4 (gl_FSUSAGE): New macro.
52645         (jm_STATFS_TRUNCATES): New macro, from coreutils-4.5.4/configure.ac.
52646         (gl_PREREQ_FSUSAGE_EXTRA): New macro.
52647
52648         Module dirfd.
52649         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Invoke some AC_EGREP_CPP
52650         requirements.
52651
52652         Module euidaccess.
52653         * m4/euidaccess.m4: New file.
52654
52655         Module file-type.
52656         * m4/file-type.m4: New file.
52657
52658         Module fileblocks.
52659         * m4/fileblocks.m4: New file.
52660
52661         Module filemode.
52662         * m4/filemode.m4: New file.
52663
52664         Module isdir.
52665         * m4/isdir.m4: New file.
52666
52667         Module lchown.
52668         * m4/lchown.m4 (gl_PREREQ_LCHOWN): New macro.
52669         (jm_FUNC_LCHOWN): Invoke gl_PREREQ_LCHOWN.
52670
52671         Module makepath.
52672         * m4/makepath.m4: New file.
52673
52674         Module modechange.
52675         * m4/modechange.m4: New file.
52676
52677         Module mountlist.
52678         * m4/mountlist.m4: New file.
52679         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Use onceonly macros.
52680         Indentation.
52681
52682         Module path-concat.
52683         * m4/path-concat.m4: New file.
52684
52685         Module pathmax.
52686         * m4/pathmax.m4: New file.
52687
52688         Module same.
52689         * m4/same.m4: New file.
52690
52691         Module save-cwd.
52692         * m4/save-cwd.m4: New file.
52693
52694         Module savedir.
52695         * m4/savedir.m4: New file.
52696
52697         Module xgetcwd.
52698         * m4/xgetcwd.m4: New file.
52699         * m4/getcwd.m4 (AC_FUNC_GETCWD_NULL): Use onceonly macros.
52700
52701         Module xreadlink.
52702         * m4/xreadlink.m4: New file.
52703
52704         Module safe-read.
52705         * m4/safe-read.m4: New file.
52706
52707         Module safe-write.
52708         * m4/safe-write.m4: New file.
52709
52710         Module closeout.
52711         * m4/closeout.m4: New file.
52712
52713         Module stdio-safer.
52714         * m4/stdio-safer.m4: New file.
52715
52716         Module getpass.
52717         * m4/getpass.m4: New file.
52718
52719         Module getugroups.
52720         * m4/getugroups.m4: New file.
52721
52722         Module group-member.
52723         * m4/group-member.m4 (gl_PREREQ_GROUP_MEMBER): New macro.
52724         (jm_FUNC_GROUP_MEMBER): Invoke AC_GNU_SOURCE, gl_PREREQ_GROUP_MEMBER.
52725
52726         Module idcache.
52727         * m4/idcache.m4: New file.
52728
52729         Module userspec.
52730         * m4/userspec.m4: New file.
52731
52732         Module gettime.
52733         * m4/clock_time.m4: New file.
52734         * m4/gettime.m4: New file.
52735
52736         Module settime.
52737         * m4/settime.m4: New file.
52738
52739         Module posixtm.
52740         * m4/posixtm.m4: New file.
52741
52742         Module gethostname.
52743         * m4/gethostname.m4: New file.
52744
52745         Module canon-host.
52746         * m4/canon-host.m4: New file.
52747
52748         Module gettext.
52749         * m4/codeset.m4: New file, from gettext-0.11.5.
52750         * m4/gettext.m4: New file, from gettext-0.11.5.
52751         * m4/glibc21.m4: New file, from gettext-0.11.5.
52752         * m4/iconv.m4: New file, from gettext-0.11.5.
52753         * m4/intdiv0.m4: New file, from gettext-0.11.5.
52754         * m4/inttypes-pri.m4: New file, from gettext-0.11.5.
52755         * m4/inttypes.m4: New file, from gettext-0.11.5.
52756         * m4/inttypes_h.m4: New file, from gettext-0.11.5 with modifications.
52757         * m4/isc-posix.m4: New file, from gettext-0.11.5.
52758         * m4/lcmessage.m4: New file, from gettext-0.11.5.
52759         * m4/lib-ld.m4: New file, from gettext-0.11.5.
52760         * m4/lib-link.m4: New file, from gettext-0.11.5.
52761         * m4/lib-prefix.m4: New file, from gettext-0.11.5.
52762         * m4/progtest.m4: New file, from gettext-0.11.5.
52763         * m4/stdint_h.m4: New file, from gettext-0.11.5 with modifications.
52764         * m4/uintmax_t.m4: New file, from gettext-0.11.5 with modifications.
52765         * m4/ulonglong.m4: New file, from gettext-0.11.5 with modifications.
52766
52767         Module localcharset.
52768         * m4/localcharset.m4: New file.
52769
52770         Module hard-locale.
52771         * m4/hard-locale.m4: New file.
52772
52773         Module mbswidth.
52774         * m4/mbswidth.m4 (gl_MBSWIDTH): Renamed from jm_PREREQ_MBSWIDTH. Use
52775         onceonly macros.
52776         * m4/mbrtowc.m4: Add comment.
52777
52778         Module memcasecmp.
52779         * m4/memcasecmp.m4: New file.
52780
52781         Module memcoll.
52782         * m4/memcoll.m4: New file.
52783
52784         Module unicodeio.
52785         * m4/unicodeio.m4: New file.
52786
52787         Module rpmatch.
52788         * m4/rpmatch.m4: New file.
52789
52790         Module yesno.
52791         * m4/yesno.m4: New file.
52792
52793         Module exitfail.
52794         * m4/exitfail.m4: New file.
52795
52796         Module c-stack.
52797         * m4/c-stack.m4 (gl_C_STACK): New macro.
52798         (jm_PREREQ_C_STACK): Check for <sys/time.h>. Use onceonly macros.
52799
52800         Module error.
52801         * m4/error.m4 (gl_ERROR): New macro.
52802         (jm_PREREQ_ERROR): Use onceonly macros.
52803
52804         Module fatal.
52805         * m4/fatal.m4: New file.
52806
52807         Module getloadavg.
52808         * m4/getloadavg.m4 (AC_FUNC_GETLOADAVG): Use onceonly macros.
52809         (gl_FUNC_GETLOADAVG, gl_PREREQ_GETLOADAVG): New macros.
52810
52811         Module getpagesize.
52812         * m4/getpagesize.m4: New file.
52813
52814         Module getusershell.
52815         * m4/getusershell.m4: New file.
52816
52817         Module physmem.
52818         * m4/physmem.m4: New file.
52819
52820         Module posixver.
52821         * m4/posixver.m4: New file.
52822
52823         Module quotearg.
52824         * m4/quotearg.m4: New file.
52825
52826         Module quote.
52827         * m4/quote.m4: New file.
52828
52829         Module readutmp.
52830         * m4/readutmp.m4: New file, based on jm_PREREQ_READUTMP from prereq.m4.
52831
52832         Module sig2str.
52833         * m4/sig2str.m4: New file.
52834
52835         Other.
52836         * m4/longlong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Remove, moved to
52837         ulonglong.m4.
52838         * m4/intmax_t.m4: New file.
52839         * m4/d-type.m4: Indentation.
52840         * m4/jm-macros.m4: Update.
52841         * m4/prereq.m4 (jm_PREREQ): Update.
52842         (jm_PREREQ_ADDEXT): Remove, obsoleted by backupfile.m4.
52843         (jm_PREREQ_CANON_HOST): Remove, obsoleted by canon-host.m4.
52844         (jm_PREREQ_DIRNAME): Remove, obsoleted by dirname.m4.
52845         (jm_PREREQ_EXCLUDE): Remove, obsoleted by exclude.m4.
52846         (jm_PREREQ_GETPAGESIZE): Remove, obsoleted by getpagesize.m4.
52847         (jm_PREREQ_HARD_LOCALE): Remove, obsoleted by hard-locale.m4.
52848         (jm_PREREQ_HASH): Remove, obsoleted by hash.m4.
52849         (jm_PREREQ_HUMAN): Remove, obsoleted by human.m4.
52850         (jm_PREREQ_MEMCHR): Remove, obsoleted by memchr.m4.
52851         (jm_PREREQ_PHYSMEM): Remove, obsoleted by physmem.m4.
52852         (jm_PREREQ_POSIXVER): Remove, obsoleted by posixver.m4.
52853         (jm_PREREQ_QUOTEARG): Remove, obsoleted by quotearg.m4.
52854         (jm_PREREQ_READUTMP): Remove, obsoleted by readutmp.m4.
52855         (jm_PREREQ_REGEX): Remove, obsoleted by regex.m4.
52856         (jm_PREREQ_STRNLEN): Remove, obsoleted by strnlen.m4.
52857         (jm_PREREQ_TEMPNAME): Remove, obsoleted by mkstemp.m4.
52858         (jm_PREREQ_XGETCWD): Remove, obsoleted by xgetcwd.m4.
52859         (jm_PREREQ_XREADLINK): Remove, obsoleted by xreadlink.m4.
52860         * m4/readdir.m4 (jm_FUNC_READDIR): Use onceonly macros.
52861
52862 2002-12-24  Bruno Haible  <bruno@clisp.org>
52863
52864         * MODULES.txt: Update according to m4/ changes.
52865
52866         Module gettext.
52867         * config.rpath: New file, from gettext-0.11.5.
52868
52869         * modules/*: New module descriptions.
52870         * gnulib-tool: New file.
52871         * MODULES.html.sh: New file.
52872
52873 2002-12-21  Karl Berry  <karl@gnu.org>
52874
52875         * doc/fdl.texi: update to version 1.2.
52876
52877 2002-12-19  Karl Berry  <karl@gnu.org>
52878
52879         * config/config.guess: update from prep.
52880
52881 2002-12-18  Bruno Haible  <bruno@clisp.org>
52882
52883         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Don't test for localtime_r.
52884         * m4/jm-mktime.m4 (jm_FUNC_MKTIME): Likewise.
52885
52886 2002-12-17  Bruno Haible  <bruno@clisp.org>
52887
52888         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH): Remove checks for limits.h,
52889         stdlib.h, string.h.
52890
52891 2002-12-17  Bruno Haible  <bruno@clisp.org>
52892
52893         * lib/canon-host.c (strdup): Remove unused declaration.
52894
52895         * lib/fsusage.c: Include full_read.h.
52896         (get_fs_usage): Use full_read instead of safe_read.
52897
52898         * lib/utime.c (utime_null): Use SAFE_READ_ERROR.
52899
52900 2002-12-12  Karl Berry  <karl@gnu.org>
52901
52902         * config/config.guess: update from prep.
52903
52904 2002-12-11  Bruno Haible  <bruno@clisp.org>
52905
52906         * m4/setenv.m4: New file, from gettext-0.11.5.
52907
52908 2002-12-11  Bruno Haible  <bruno@clisp.org>
52909
52910         * lib/setenv.h: Rewritten to cope with systems that have setenv() but
52911         not unsetenv().
52912         * lib/setenv.c, unsetenv.c: Taken from glibc-2.2.4 with the following
52913         modifications:
52914
52915         2002-12-11  Bruno Haible  <bruno@clisp.org>
52916
52917                 * setenv.c (alloca): Fall back to malloc.
52918                 (freea): New macro.
52919                 (setenv): Use freea() to free memory allocated with alloca().
52920
52921         2002-11-13  Bruno Haible  <bruno@clisp.org>
52922
52923                 * setenv.c (compar_fn_t, __add_to_environ, setenv): Use ANSI C
52924                 function declarations.
52925                 * unsetenv.c (unsetenv): Likewise.
52926
52927         2002-03-04  Bruno Haible  <bruno@clisp.org>
52928
52929                 Portability to AIX 4.3.3.
52930                 * unsetenv.c: New file, extracted from setenv.c.
52931                 * setenv.c: Move the unsetenv() function to unsetenv.c.
52932
52933         2001-12-20  Bruno Haible  <bruno@clisp.org>
52934
52935                 * setenv.c (__add_to_environ): Don't call realloc(NULL,...),
52936                 use malloc instead. For SunOS 4.
52937
52938         2001-12-11  Bruno Haible  <bruno@clisp.org>
52939
52940                 * setenv.c: Declare alloca.
52941                 (compar_fn_t): New typedef.
52942                 (KNOWN_VALUE, STORE_VALUE): Use it.
52943
52944         * lib/Makefile.am (libfetish_a_SOURCES): Add setenv.c, unsetenv.c,
52945         setenv.h.
52946
52947 2002-12-10  Paul Eggert  <eggert@twinsun.com>
52948
52949         Port exclude.c and exclude.h to more non-GNU systems, e.g. Solaris 7.
52950         * lib/exclude.h (EXCLUDE_ANCHORED, EXCLUDE_INCLUDE, EXCLUDE_WILDCARDS):
52951         Choose values that are less likely to collide with system fnmatch
52952         options.
52953         * lib/exclude.c (FNM_CASEFOLD, FNM_LEADING_DIR): Define to 0 if not
52954         defined (e.g., a pure POSIX system).
52955         (EXCLUDE_macros_do_not_collide_with_FNM_macros): Use FNM_PATHNAME
52956         instead of FNM_FILE_NAME, for compatibility with pure POSIX sytems.
52957
52958 2002-12-06  Paul Eggert  <eggert@twinsun.com>
52959
52960         Undo the 2001-07-02 change for jm-glibc-io, as it was too much of
52961         a pain in practice to deal with generated m4 files.  This change
52962         goes together with the 2002-12-04 unlocked-io.h change in ../lib.
52963
52964         * m4/Makefile.am.in (Makefile.am): Don't mention jm-glibc-io.m4n
52965         and jm-glibc-io.m4, as they are no longer a special case.
52966         * m4/jm-glibc-io.m4: Rename from jm-glibc-io.m4n, and remove the
52967         kludge and the auto-generation stuff.  Check only whether the
52968         functions are declared, not whether they exist, since older hosts
52969         that don't declare the functions can't use the optimization anyway.
52970
52971 2002-12-06  Jim Meyering  <jim@meyering.net>
52972
52973         * lib/error.c: Be consistent: change `#ifndef _LIBC' to `#if !_LIBC'.
52974
52975         Merge in changes from libc's misc/error.c, in preparation
52976         for the merge of gnulib's changes back into libc.
52977
52978         * lib/error.c (_): Define only if not already defined.
52979         Move definition to follow all #include directives.
52980         Include unlocked-io.h only if !_LIBC.
52981         [_LIBC]: Include <libio/libioP.h>.
52982         [USE_IN_LIBIO]: Include <libio/iolibio.h>
52983         (fflush): Tweak definition to use INTUSE.
52984         (putc): Define.
52985
52986 2002-12-05  Paul Eggert  <eggert@twinsun.com>
52987
52988         * lib/alloca.c [defined emacs]: Include "lisp.h".
52989         (xalloc_die) [defined emacs]: New macro.
52990         (free) [defined emacs && defined EMACS_FREE]: Define to EMACS_FREE.
52991         [! defined emacs]: Include <xalloc.h>.
52992         (POINTER_TYPE) [!defined POINTER_TYPE]: New macro.
52993         (pointer): Typedef to POINTER_TYPE *.
52994         (malloc): Remove decl; we now always use xmalloc.
52995         (alloca): Use old-style definition, since Emacs needs this.
52996         Check for arithmetic overflow when computing combined size.
52997
52998 2002-12-04  Paul Eggert  <eggert@twinsun.com>
52999
53000         Do not generate unlocked-io.h automatically, since it's easier to
53001         maintain it by hand.
53002
53003         * lib/unlocked-io.h: New file, from GNU diffutils,
53004         but with proper copyright notice and attribution.
53005         * lib/gen-uio: Remove.
53006         * lib/Makefile.am: Add copyright notice.
53007         (libfetish_a_SOURCES): Add unlocked-io.h.
53008         (BUILT_SOURCES, all-local): Remove unlocked-io.h.
53009         (DISTCLEANFILES, io_functions): Remove macros.
53010         (EXTRA_DIST): Remove gen_uio.
53011         (unlocked-io.h): Remove rule.
53012
53013 2002-12-04  Jim Meyering  <jim@meyering.net>
53014
53015         Reflect the fact that stat.c and lstat.c are no longer generated.
53016         * lib/Makefile.am (BUILT_SOURCES): Remove stat.c and lstat.c.
53017         (DISTCLEANFILES): Likewise.
53018         (EXTRA_DIST): Likewise.
53019         (all_local): Don't depend on stat.c or lstat.c.
53020         (stat.c, lstat.c): Remove rules.
53021         (EXTRA_DIST): Remove xstat.in.
53022
53023         * lib/xstat.in: Remove file.  Contents moved into stat.c.
53024         * lib/stat.c: New file.  Contents mostly from xstat.in.
53025         * lib/stat.c: Rework so that it may serve to define rpl_lstat, too.
53026         * lib/lstat.c: New file. Simply #define LSTAT and include stat.c.
53027
53028         * lib/safe-read.c: Rework so that it may serve to define safe_write,
53029         too.
53030         * lib/safe-write.c: Simply #define SAFE_WRITE and include safe-read.c.
53031
53032 2002-12-03  Jim Meyering  <jim@meyering.net>
53033
53034         * lib/safe-read.c, safe-write.c: Change variable names and comments,
53035         but not semantics, to minimize the differences between these two files.
53036         (safe_read): Change comment to mention SAFE_READ_ERROR.
53037
53038         * lib/safe-read.c (IS_EINTR): Define.
53039         (safe_read): Use IS_EINTR in place of in-function cpp directives.
53040
53041 2002-12-02  Jim Meyering  <jim@meyering.net>
53042
53043         * lib/safe-read.c (EINTR): Define.
53044         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Define.
53045         (INT_MAX): Provide fallback.
53046         (safe_read): Rewrite to iterate IFF the read fails with EINTR.
53047
53048         * lib/safe-read.h (SAFE_READ_ERROR): Define.
53049
53050 2002-12-02  Bruno Haible  <bruno@clisp.org>
53051
53052         * lib/safe-write.c (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM):
53053         Define, taken from safe-read.c.
53054         (INT_MAX): Provide fallback.
53055         (safe_write): Rewrite to iterate IFF the write fails with EINTR.
53056         * lib/safe-write.h (SAFE_WRITE_ERROR): Define.
53057
53058         * lib/safe-read.c (EINTR): Remove definition.
53059         (safe_read): Don't use EINTR if it is absent.
53060
53061 2002-12-01  Jim Meyering  <jim@meyering.net>
53062
53063         * lib/safe-read.c: (safe_read): Also exit the loop when read returns
53064         zero.
53065         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM, INT_MAX): Define.
53066
53067 2002-11-27  Paul Eggert  <eggert@twinsun.com>
53068
53069         * lib/hash.c (hash_lookup, hash_get_first, hash_get_next,
53070         hash_find_entry, hash_rehash): Replace `if (limit <= value) abort ();'
53071         with `if (! (value < limit)) abort ();', for readability.
53072
53073 2002-11-26  Karl Berry  <karl@gnu.org>
53074
53075         * lib/strdup.c: copy from libc again, with jim's ok.
53076         * lib/.cppi-disable: re-add strdup.c
53077
53078 2002-11-25  Karl Berry  <karl@gnu.org>
53079
53080         * lib/strtoll.c: copy from libc, meaning we now #include <strtol.c>
53081         instead of "strtol.c".
53082
53083 2002-11-25  Karl Berry  <karl@gnu.org>
53084
53085         * config/install-sh: update from automake for variable quoting, $0 in
53086         error msgs, etc.
53087
53088         * config/srclist.txt ($LIBCSRC/time/mktime.c lib gpl): new entry.
53089         * config/srclist.txt ($LIBCSRC/sysdeps/generic/strtoll.c lib gpl): new
53090         entry.
53091
53092 2002-11-25  Jim Meyering  <jim@meyering.net>
53093
53094         * lib/mktime.c: Sync from libc, now that it has the latest fix.
53095
53096 2002-11-24  Karl Berry  <karl@gnu.org>
53097
53098         * lib/error.c, getopt.c, getopt.h, getopt1.c, obstack.c, regex.c,
53099         regex.h, strdup.c, strtoll.c, tempname.c: change license to gpl.
53100
53101 2002-11-24  Jim Meyering  <jim@meyering.net>
53102
53103         Update from coreutils:
53104
53105         * lib/mktime.c: Merge in changes from libc.
53106
53107         Avoid a link-time failure on some Linux systems.
53108         * lib/mktime.c (STATIC): Define to be empty (_LIBC) or `static'
53109         (otherwise).
53110         (__mon_yday): Declare with the STATIC attribute.
53111         (__mktime_internal): Likewise.
53112         Based on a report from Greg Schafer.
53113
53114 2002-11-23  Jim Meyering  <jim@meyering.net>
53115
53116         * lib/sig2str.c (str2signum, sig2str): Avoid a warning from gcc:
53117         Use `unsigned', not `int', as type of index.
53118
53119         * lib/xstat.in [@BEGIN_LSTAT_ONLY@]: Include <string.h>.
53120
53121         * lib/fsusage.c: Remove unneeded parentheses around operands of
53122         `defined'.
53123
53124 2002-11-22  Paul Eggert  <eggert@twinsun.com>
53125
53126         * lib/quotearg.h: Allow multiple inclusion by surrounding with
53127         "#ifndef QUOTEARG_H_".  Include <stddef.h>, for size_t,
53128         so that we can be included first.
53129         (PARAMS): Remove; we now assume C89 or later.  All uses removed.
53130         * lib/quotearg.c: Include quotearg.h immediately after config.h.
53131         No need to include stddef.h or sys/types.h any more.
53132         Surround local include files with "", not "<>".
53133         Assume HAVE_LIMITS_H unconditionally, as we assume C89.
53134         Similarly, assume HAVE_C_BACKSLASH_A, CHAR_BIT, UCHAR_MAX, UINT_MAX,
53135         HAVE_STDLIB_H, HAVE_STRING_H, STDC_HEADERS.
53136         (HAVE_MBSINIT): Undef if !HAVE_MBRTOWC.
53137         (mbsinit): Define to 1 if !defined mbsinit && !HAVE_MBSINIT.
53138         (ISPRINT): Remove; no longer needed now that we assume C89.
53139
53140         (clone_quoting_options, quotearg_buffer, quotearg_n_options):
53141         Preserve errno.
53142
53143         (quotearg_buffer_restyled, quotearg_n, quotearg_n_style,
53144         quotearg_char): Use SIZE_MAX rather than
53145         (size_t) -1 when we are talking about "infinity".
53146
53147         (quotearg_buffer_restyled): Fix bug when quoting trigraphs.
53148
53149 2002-11-22  Paul Eggert  <eggert@twinsun.com>
53150
53151         * lib/hash.c: Avoid use of <assert.h>, as the GNU Coding Standards
53152         hint that one should use `if (! x) abort ();' rather than `assert
53153         (x);', and anyway it's one less thing to worry about configuring.
53154         (hash_lookup, hash_get_first, hash_get_next, hash_find_entry,
53155         hash_rehash, hash_insert): Use abort rather than assert.
53156
53157 2002-11-22  Bruno Haible  <bruno@clisp.org>
53158
53159         * lib/safe-read.h: Assume C89. Add comments.
53160         (safe_read): Change return type to size_t.
53161         * lib/safe-read.c (safe_read): Change return type to size_t. Handle
53162         byte counts > SSIZE_MAX correctly.
53163         * lib/safe-write.h: New file.
53164         * lib/safe-write.c: New file.
53165         * lib/full-read.h: New file.
53166         * lib/full-read.c: New file.
53167         * lib/full-write.h: Assume C89. Add comments.
53168         * lib/full-write.c: Include safe-write.h.
53169         (full_write): Rewritten to use safe_write.
53170         Suggested by Jim Meyering and Paul Eggert.
53171
53172 2002-11-21  Jim Meyering  <jim@meyering.net>
53173
53174         * lib/strdup.c (strdup): Tweak comment and initial #if/#include.
53175
53176         Merge in changes from the coreutils.
53177
53178         2002-09-25  Paul Eggert  <eggert@twinsun.com>
53179         * lib/fsusage.c [! HAVE_INTTYPES_H && HAVE_STDINT_H] Include
53180         <stdint.h>.
53181         (UINTMAX_MAX) [!defined UINTMAX_MAX]: New macro.
53182         (PROPAGATE_ALL_ONES): Work even if X is unsigned and narrower than
53183         int.  Work more efficiently if X is the same width as uintmax_t.
53184         Do not compare X to -1, to avoid bogus compiler warning.
53185         (get_fs_usage): (uintmax_t) -1 -> UINTMAX_MAX to avoid a cast.
53186         Don't assume that f_frsize and f_bsize are the same type.
53187
53188         * lib/mountlist.c: #undef MNT_IGNORE before defining it, to avoid
53189         warning on FreeBSD.
53190
53191         * lib/makepath.c (make_path): Restore umask *before* creating the final
53192         component.
53193         (make_path): Minor reformatting.
53194
53195         * lib/xmalloc.c: Adjust to work with new autoconf macros,
53196         AC_FUNC_MALLOC and AC_FUNC_REALLOC: test #ifndef
53197         HAVE_MALLOC/HAVE_REALLOC.
53198
53199         * lib/mountlist.h (ME_DUMMY): Don't count entries of type `auto' as
53200         dummy ones.  At least on GNU/Linux systems, `auto' means something
53201         else.
53202         From Michael Stone.
53203
53204 2002-11-21  Bruno Haible  <bruno@clisp.org>
53205
53206         Remove case insensitive option matching.
53207         * lib/argmatch.h (argcasematch): Remove declaration.
53208         (ARGCASEMATCH): Remove macro.
53209         (__xargmatch_internal): Remove case_sensitive argument.
53210         (XARGMATCH): Update.
53211         (XARGCASEMATCH): Remove macro.
53212         * lib/argmatch.c (argmatch): Renamed from __argmatch_internal. Remove
53213         case_sensitive argument.
53214         (argcasematch): Remove function.
53215         (__xargmatch_internal): Remove case_sensitive argument.
53216         (main): Use XARGMATCH instead of XARGCASEMATCH.
53217
53218         * lib/xmalloc.c: Change compile-time error message. Add comment about
53219         required autoconf version.
53220
53221 2002-11-20  Paul Eggert  <eggert@twinsun.com>
53222
53223         Merge argmatch cleanups from Bison.  Assume C89.
53224
53225         * lib/argmatch.c: Include config.h here, not in argmatch.h.
53226         Include stdlib.h, for EXIT_FAILURE.
53227         Always include <string.h>, since we assume C89.
53228         (EXIT_FAILURE): Remove pre-C89 bug workaround.
53229         * lib/argmatch.h: Do not include <config.h> or <sys/types.h>.
53230         Include <stddef.h> instead, since it's all we need for size_t.
53231         (PARAMS): Remove.  All uses removed.
53232         (ARRAY_CARDINALITY): Do not bother to #undef.
53233         (ARRAY_CARDINALITY, ARGMATCH, ARGCASEMATCH, invalid_arg,
53234         ARGMATCH_VALID, XARGMATCH, XARGCASEMATCH):
53235         Remove unnecessary parentheses.
53236         (ARGMATCH_VALID, XARGMATCH, XARGCASEMATCH):
53237         Insert necessary parentheses.
53238         (ARGMATCH_CONSTRAINT, ARGMATCH_VERIFY): New macros.
53239         (ARGMATCH_ASSERT): Use ARGMATCH_CONSTRAINT.
53240
53241 2002-11-19  Bruno Haible  <bruno@clisp.org>
53242
53243         * lib/mbswidth.c: Include mbswidth.h right at the beginning.
53244         * lib/mbswidth.h: Include <stddef.h>, for size_t.
53245
53246         * lib/mbswidth.h (PARAMS): Remove macro.
53247         (mbswidth, mbsnwidth): Use ANSI C function declarations.
53248         * lib/mbswidth.c (mbswidth, mbsnwidth): Likewise.
53249
53250         * lib/gcd.h (PARAMS): Remove macro.
53251         (gcd): Use ANSI C function declarations.
53252         * lib/gcd.c (gcd): Likewise.
53253
53254 2002-11-15  Bruno Haible  <bruno@clisp.org>
53255
53256         * lib/strcspn.c: Include <stddef.h>.
53257         (strcspn): Use ANSI C function declaration. Change return type to
53258         size_t. Use NULL.
53259         * lib/strpbrk.c: Minimize diffs to glibc. Include <stddef.h>.
53260         (strpbrk): Use NULL.
53261         * lib/strpbrk.h (PARAMS): Remove macro.
53262         (strpbrk): Use ANSI C function declaration.
53263         * lib/strstr.c: Don't include <sys/types.h>.
53264         * lib/strstr.h (PARAMS): Remove macro.
53265         (strstr): Use ANSI C function declarations.
53266
53267 2002-11-14  Karl Berry  <karl@gnu.org>
53268
53269         * config/mkinstalldirs: `do' on separate line, instead of
53270         `for var; do'.
53271
53272 2002-11-06  Bruno Haible  <bruno@clisp.org>
53273
53274         * lib/gcd.h (gcd): Change argument type to 'unsigned long'.
53275         * lib/gcd.c (gcd): Likewise.
53276
53277 2002-11-05  Bruno Haible  <bruno@clisp.org>
53278
53279         * lib/gcd.h: New file, from gettext-0.11.5.
53280         * lib/gcd.c: New file, from gettext-0.11.5.
53281
53282 2002-11-05  Bruno Haible  <bruno@clisp.org>
53283
53284         * lib/error.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
53285         * lib/getopt.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
53286         * lib/obstack.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
53287         * lib/regex.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
53288
53289         * lib/argmatch.c: Include gettext.h instead of <locale.h> and
53290         <libintl.h>.
53291         * lib/makepath.c: Include gettext.h instead of <locale.h> and
53292         <libintl.h>.
53293
53294         * lib/closeout.c: Include gettext.h instead of <libintl.h>.
53295         * lib/human.c: Include gettext.h instead of <libintl.h>.
53296         * lib/quotearg.c: Include gettext.h instead of <libintl.h>.
53297         * lib/rpmatch.c: Include gettext.h instead of <libintl.h>.
53298         * lib/unicodeio.c: Include gettext.h instead of <libintl.h>.
53299         * lib/userspec.c: Include gettext.h instead of <libintl.h>.
53300         * lib/version-etc.c: Include gettext.h instead of <libintl.h>.
53301         * lib/xmalloc.c: Include gettext.h instead of <libintl.h>.
53302         (textdomain): Remove definition.
53303         * lib/xmemcoll.c: Include gettext.h instead of <libintl.h>.
53304
53305         * lib/long-options.c: Remove include of <libintl.h> and definition of
53306         _.
53307         * lib/same.c: Remove include of <libintl.h> and definition of _.
53308
53309 2002-11-04  Owen Taylor  <otaylor@redhat.com>
53310
53311         * lib/config.charset: A few additions for Solaris.
53312
53313 2002-11-04  Bruno Haible  <haible@clisp.cons.org>
53314
53315         Make it possible to build libcharset with CC=gcc CFLAGS="-x c++".
53316         * lib/localcharset.c (locale_charset): Declare as extern "C".
53317
53318 2002-11-04  Bruno Haible  <haible@clisp.cons.org>
53319
53320         * lib/config.charset: msdos in uk_UA uses CP1125.
53321
53322 2002-11-04  Bruno Haible  <bruno@clisp.org>
53323
53324         * lib/stpcpy.h: New file, from GNU gettext-0.11.5.
53325         * lib/strcase.h: New file, from GNU gettext-0.11.5.
53326         * lib/strpbrk.h: New file, from GNU gettext-0.11.5.
53327         * lib/strstr.h: New file, from GNU gettext-0.11.5.
53328         * lib/xgetcwd.h: New file, from GNU gettext-0.11.5.
53329
53330 2002-11-04  Bruno Haible  <bruno@clisp.org>
53331
53332         * lib/localcharset.c (locale_charset): Don't return an empty string.
53333
53334 2002-11-04  Bruno Haible  <bruno@clisp.org>
53335
53336         * lib/localcharset.c (get_charset_aliases): Add more Windows specific
53337         aliases.
53338
53339 2002-11-04  Bruno Haible  <bruno@clisp.org>
53340
53341         * lib/config.charset: Update for newest glibc. Add canonical names
53342         ISO-8859-14, KOI8-T, TCVN5712-1, GEORGIAN-PS.
53343
53344 2002-11-04  Bruno Haible  <bruno@clisp.org>
53345
53346         * lib/config.charset: Add support for NetBSD.
53347
53348 2002-11-04  Bruno Haible  <bruno@clisp.org>
53349
53350         * lib/config.charset [msdosdjgpp]: For Russian, use CP866.
53351
53352 2002-11-01  Bruno Haible  <bruno@clisp.org>
53353
53354         * configure.in: Add AC_CONFIG_AUX_DIR call.
53355         (AC_OUTPUT): Add m4/Makefile, lib/Makefile. Remove doc/Makefile,
53356         test/Makefile.
53357         * Makefile.in (subdirs): Add m4, lib. Remove doc, test.
53358
53359 2002-09-28  Karl Berry  <karl@gnu.org>
53360
53361         * config/srclist.txt: can't copy install-sh/mkinstalldirs from
53362         installed automake until the next release, since changes have been
53363         made.
53364
53365 2002-09-25  Karl Berry  <karl@gnu.org>
53366
53367         * lib/strdup.c: copy from libc/string (via ../config/srclist*).
53368         * lib/getopt*: copy from libc/posix.
53369         * lib/gettext.h: copy from gettext.
53370         * lib/.cppi-disable: add strdup.c, gettext.h.
53371
53372 2002-09-25  Karl Berry  <karl@gnu.org>
53373
53374         * config/srclist.txt: enable gettext.h check.
53375         * config/config.{guess,sub}: update from prep.
53376         * config/depcomp, install-sh, mdate-sh, missing, mkinstalldirs: update
53377                 from automake 1.6.3.
53378         See srclist*.
53379
53380 2002-08-23  Stefan Monnier  <monnier@cs.yale.edu>
53381
53382         * regex.c (PATFETCH): Remove the translating fetch.
53383         (PATFETCH_RAW): Rename to PATFETCH.
53384         (set_image_of_range): New fun.
53385         (SET_RANGE_TABLE_WORK_AREA): Use it.
53386         (regex_compile): Don't translate the pattern chars so eagerly.
53387         Only do it when inserting an `exactn' bytecode or when handling
53388         a char-range.
53389         (mutually_exclusive_p): Avoid empty statement.
53390
53391 2002-07-06  Jim Meyering  <meyering@lucent.com>
53392
53393         * m4/README: Don't mention Makefile.am.in.
53394         Outline how I've tested changes to .m4 files.  Yep, it's a pain.
53395
53396 2002-07-01  Jim Meyering  <meyering@lucent.com>
53397
53398         * lib/c-stack.c: Include sys/time.h.
53399         From Volker Borchert.
53400
53401 2002-06-26  Paul Eggert  <eggert@twinsun.com>
53402
53403         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for btowc.
53404
53405 2002-06-26  Paul Eggert  <eggert@twinsun.com>
53406
53407         * lib/fnmatch.c, fnmatch_loop.c (WIDE_CHAR_SUPPORT):
53408         New macro.  Use it uniformly instead of
53409         (defined HAVE_WCTYPE_H && defined HAVE_WCHAR_H).
53410         It also uses HAVE_BTOWC, to fix a porting bug on Solaris 2.5.1
53411         reported by Vin Shelton.
53412
53413 2002-06-22  Paul Eggert  <eggert@twinsun.com>
53414
53415         * lib/c-stack.h (segv_handler, c_stack_action) [! defined SA_SIGINFO]:
53416         Do not assume SA_SIGINFO behavior.
53417         Bug reported by Jim Meyering on NetBSD 1.5.2.
53418
53419 2002-06-22  Jim Meyering  <meyering@lucent.com>
53420
53421         * m4/c-stack.m4: New file, from diffutils-2.8.2.
53422         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_C_STACK.
53423
53424         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Don't require AC__GNU_SOURCE,
53425         now that configure.ac uses AC_GNU_SOURCE.
53426         (jm_MACROS): Rename: jm_FUNC_FNMATCH to AC_FUNC_FNMATCH_GNU.
53427         * m4/prereq.m4 (jm_PREREQ_EXCLUDE): Likewise, wrt jm_FUNC_FNMATCH.
53428
53429         Update to latest tools.  Suggestions from Paul Eggert.
53430         * m4/stdbool.m4: New file, from diffutils-2.8.2.
53431         * m4/gnu-source.m4: Update from diffutils-2.8.2.
53432         * m4/fnmatch.m4: Likewise.
53433         * m4/prereq.m4: Change each use of AC_CHECK_HEADERS(stdbool.h)
53434         to AC_HEADER_STDBOOL
53435
53436 2002-06-22  Jim Meyering  <meyering@lucent.com>
53437
53438         * lib/fnmatch.c (ISASCII, ISPRINT): Undefine, to avoid warning about
53439         redefinition due to Solaris 2.6's definition in /usr/include/sys/euc.h.
53440
53441 2002-06-22  Jim Meyering  <meyering@lucent.com>
53442
53443         * lib/c-stack.c, lib/c-stack.h: New files, from diffutils-2.8.2.
53444
53445         * lib/exitfail.c, exitfail.h: Likewise.
53446         * lib/Makefile.am (libfetish_a_SOURCES): Add exitfail.c and exitfail.h.
53447
53448         * lib/Makefile.am (libfetish_a_SOURCES): Add fnmatch_.h in place
53449         of fnmatch.h.
53450         (EXTRA_DIST): Add fnmatch_loop.c.
53451         (libfetish_a_SOURCES): Add c-stack.c and c-stack.h.
53452
53453         * lib/fnmatch_loop.c: New file, from diffutils-2.8.2.
53454         * lib/fnmatch.c: Update from diffutils-2.8.2.
53455         * lib/fnmatch_.h: New file.  From diffutils-2.8.2.
53456         * lib/fnmatch.h: Remove file.
53457
53458 2002-06-21  Jim Meyering  <meyering@lucent.com>
53459
53460         * m4/c-bs-a.m4: Add comment, from diffutils-2.8.2.
53461         * m4/mbrtowc.m4: Likewise.
53462
53463         * m4/mbstate_t.m4: Update from diffutils-2.8.2.
53464         * m4/mbswidth.m4: Reflect name change:
53465         s/AC_MBSTATE_T/AC_TYPE_MBSTATE_T.
53466         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Likewise.
53467
53468         * m4/lib-link.m4: Update from gettext-0.11.2.
53469         * m4/gettext.m4: Likewise.
53470
53471         * m4/jm-macros.m4 (jm_CHECK_ALL_HEADERS): Check for hurd.h.
53472         From Alfred M. Szmidt.
53473
53474 2002-06-18  Paul Eggert  <eggert@twinsun.com>
53475
53476         * lib/file-type.h: Report an error if neither S_ISREG nor
53477         S_IFREG is defined, instead of using a test specific to glibc
53478         2.2.  This should be safe, since POSIX requires S_ISREG and
53479         Unix Version 7 had S_IFREG.  We don't need to check for
53480         <sys/types.h> since we don't use any symbols that it defines.
53481
53482 2002-06-15  Richard Dawe  <richdawe@bigfoot.com>
53483
53484         * lib/Makefile.am (lstat.c, stat.c, .sin.sed): Use t-$@, rather than
53485         $@-t, so that each temporary file name is unique and valid in the first
53486         8 characters, for operation under DOS.
53487
53488 2002-06-15  Paul Eggert  <eggert@twinsun.com>
53489
53490         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Check for st_author.
53491
53492 2002-06-15  Jim Meyering  <meyering@lucent.com>
53493
53494         Work even with DJGPP 2.03, which lacks support for symlinks.
53495         From Richard Dawe.
53496         * lib/xstat.in (S_ISLNK): Define to 0 if neither S_ISLNK nor S_IFLNK
53497         is defined.
53498         * lib/lchown.c (S_ISLNK): Likewise.
53499
53500 2002-06-15  Jim Meyering  <meyering@lucent.com>
53501
53502         * lib/file-type.h (FILE_TYPE_H): Guard entire contents with #ifndef.
53503         For GNU libc 2.2 and newer, ensure that <sys/types.h> and <sys/stat.h>
53504         have been included before this file.
53505
53506 2002-06-14  Jim Meyering  <meyering@lucent.com>
53507
53508         * lib/file-type.h: Use the version from diffutils-2.8.2.
53509         * lib/file-type.c: Likewise.
53510
53511 2002-06-07  Jim Meyering  <meyering@lucent.com>
53512
53513         * m4/prereq.m4 (jm_PREREQ_STAT): Check for sys/param.h and sys/mount.h.
53514         They're needed at least for NetBSD 1.5.2.
53515         ($statxfs_includes): Include those same headers.
53516         ($statxfs_includes): Include sys/vfs.h if available.
53517         ($statxfs_includes): Likewise for sys/statvfs.h.
53518         Check for the following members in both structs statfs and statvfs:
53519         f_basetype, f_type, f_fsid.__val, f_namemax, f_namelen.
53520
53521 2002-06-01  Jim Meyering  <meyering@lucent.com>
53522
53523         * m4/d-type.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Rename macro:
53524         s/D_TYPE_IN_DIRENT/HAVE_STRUCT_DIRENT_D_TYPE/.
53525
53526 2002-05-28  Jim Meyering  <meyering@lucent.com>
53527
53528         * m4/readdir.m4 (jm_FUNC_READDIR): Undefine `mkdir', not `rmdir'.
53529         Reported by Volker Borchert.
53530
53531 2002-05-27  Jim Meyering  <meyering@lucent.com>
53532
53533         Fix a problem seen only on nonconforming systems whereby ls.c's
53534         use of localtime, and then of gettimeofday would cause trouble:
53535         the localtime call used to initialize rpl_gettimeofday's save
53536         mechanism would clobber ls's current local time information so
53537         that in any long listing the first file would always be listed
53538         with date 1970-01-01.  Analysis by Volker Borchert.
53539
53540         * lib/gettimeofday.c (localtime): Undefine.
53541         (rpl_localtime): New function.
53542
53543 2002-05-27  Jim Meyering  <meyering@lucent.com>
53544
53545         * m4/gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER): Also replace
53546         localtime.
53547
53548         * m4/readdir.m4 (jm_FUNC_READDIR): Undefine `rmdir' so we don't try to
53549         use the replacement function; it wouldn't resolve at link time.
53550         Reported by Volker Borchert.
53551
53552 2002-05-22  Jim Meyering  <meyering@lucent.com>
53553
53554         * lib/Makefile.am (libfetish_a_SOURCES): Add file-type.c and
53555         file-type.h.
53556         * lib/file-type.h: New file.
53557         * lib/file-type.c (file_type): New file/function.  Extracted from
53558         diffutils.
53559
53560 2002-04-30  Jim Meyering  <meyering@lucent.com>
53561
53562         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_STAT.
53563
53564 2002-04-29  Paul Eggert  <eggert@twinsun.com>
53565
53566         * m4/prereq.m4 (jm_PREREQ_SIG2STR): Remove; all callers changed.
53567
53568 2002-04-29  Paul Eggert  <eggert@twinsun.com>
53569
53570         * m4/prereq.m4 (jm_PREREQ_HARD_LOCALE): Check for stdlib.h.
53571         Do not check for alloca.h (no longer used) or stdbool.h (was never
53572         used?).  Add AM_C_PROTOTYPES since hard-locale.h uses it.
53573
53574 2002-04-29  Paul Eggert  <eggert@twinsun.com>
53575
53576         * lib/hard-locale.c: Upgrade to version used in GNU Diffutils 2.8.1.
53577
53578 2002-04-29  Jim Meyering  <meyering@lucent.com>
53579
53580         * m4/jm-macros.m4 (jm_MACROS): Remove use of AC_FUNC_STRNLEN.
53581         * m4/prereq.m4: Add jm_PREREQ_STRNLEN.
53582         Use AC_FUNC_STRNLEN here instead.
53583
53584         * m4/jm-macros.m4: Don't AC_REQUIRE([AC_PROG_CC_STDC]).
53585         With autoconf-2.53a, it's part of AC_PROG_CC.
53586
53587 2002-04-28  Paul Eggert  <eggert@twinsun.com>
53588
53589         * m4/jm-macros.m4 (jm_MACROS): Add AC_REPLACE_FUNCS(sig2str).
53590         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_SIG2STR.
53591
53592 2002-04-28  Paul Eggert  <eggert@twinsun.com>
53593
53594         * lib/sig2str.h, lib/sig2str.c: New files.
53595         * lib/Makefile.am (libfetish_a_SOURCES): Add sig2str.h.
53596
53597 2002-04-28  Paul Eggert  <eggert@twinsun.com>
53598
53599         * lib/sig2str.h (SIGNUM_BOUND): Do not use WTERMSIG, to avoid
53600         depending on <sys/wait.h> and WTERMSIG.  Default to 64 instead
53601         of 127, since 64 is the largest conceivable number for ancient
53602         nonstandard hosts.
53603         * lib/sig2str.c: Do not include <sys/wait.h>; no longer needed.
53604
53605 2002-04-28  Jim Meyering  <meyering@lucent.com>
53606
53607         * lib/sig2str.c (WTERMSIG): Remove definition (unused).
53608
53609 2002-04-24  Jim Meyering  <meyering@lucent.com>
53610
53611         * m4/prereq.m4 (jm_PREREQ_HARD_LOCALE): New macro.
53612         (jm_PREREQ): Use it.
53613
53614         * m4/getloadavg.m4: Check for these headers: locale.h unistd.h
53615         mach/mach.h fcntl.h.
53616         Check for this function: setlocale.
53617
53618 2002-04-24  Jim Meyering  <meyering@lucent.com>
53619
53620         * lib/gettext.h: New file, from Gettext.
53621         * lib/Makefile.am (INCLUDES): Remove -I../intl.
53622         (libfetish_a_SOURCES): Add gettext.h.
53623
53624 2002-04-16  Jim Meyering  <meyering@lucent.com>
53625
53626         * m4/prereq.m4 (jm_PREREQ_READUTMP): Also check for these members:
53627         ut_pid, ut_id, ut_exit.
53628
53629 2002-04-16  Jim Meyering  <meyering@lucent.com>
53630
53631         * lib/readutmp.h (UT_TYPE): Remove definition (now in who.c).
53632         (HAVE_STRUCT_XTMP_UT_EXIT, HAVE_STRUCT_XTMP_UT_ID): Define.
53633         (HAVE_STRUCT_XTMP_UT_PID, HAVE_STRUCT_XTMP_UT_TYPE): Define.
53634
53635 2002-04-12  Jim Meyering  <meyering@lucent.com>
53636
53637         * m4/ls-mntd-fs.m4 (checking for getmntinfo function...): Remove
53638         now-bogus check for f_type in sys/mount.h.  Instead, just test for the
53639         existence of the getmntinfo function.  Needed for Darwin 5.3.
53640
53641         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Also detect when dirfd is a macro.
53642         This is necessary at least on Darwin 5.3.
53643
53644         * m4/jm-macros.m4: Don't AC_REPLACE(strnlen), now that we use
53645         AC_FUNC_STRNLEN.  Otherwise, we'd end up putting two copies of
53646         strnlen.o in the library, and that makes some versions of ranlib
53647         object.
53648
53649 2002-04-12  Jim Meyering  <meyering@lucent.com>
53650
53651         * lib/dirfd.h (dirfd): Elide prototype if dirfd is a macro.
53652
53653 2002-04-09  Jim Meyering  <meyering@lucent.com>
53654
53655         * m4/malloc.m4: (jm_FUNC_MALLOC): Change the `checking ...' message
53656         to be more precise.  Rather than saying we're checking whether the
53657         function `works', say what we're testing.
53658         * m4/realloc.m4 (jm_FUNC_REALLOC): Likewise.
53659         Reported by Bruno Haible.
53660
53661 2002-03-10  Jim Meyering  <meyering@lucent.com>
53662
53663         * lib/makepath.c (make_path): Remove a comma from a diagnostic.
53664         Suggestion from Santiago Vila.
53665
53666 2002-03-08  Jim Meyering  <meyering@lucent.com>
53667
53668         * lib/rename.c: Mention that this wrapper is needed also on
53669         mips-dec-ultrix4.4 systems.
53670
53671 2002-03-02  Jim Meyering  <meyering@lucent.com>
53672
53673         * lib/gettime.c (gettime): Test HAVE_CLOCK_GETTIME,
53674         not HAVE_CLOCK_SETTIME.
53675
53676 2002-02-27  Paul Eggert  <eggert@twinsun.com>
53677
53678         * m4/jm-macros.m4 (jm_MACROS): Do not replace stime; no longer used.
53679         Check for clock_settime.
53680
53681 2002-02-27  Paul Eggert  <eggert@twinsun.com>
53682
53683         * lib/nanosleep.h: Rename to....
53684         * lib/timespec.h: New name for nanosleep.h.  All uses changed.
53685
53686         * lib/gettime.c: New file.
53687         * lib/settime.c: New file.
53688         * lib/stime.c: Remove.
53689
53690         * lib/Makefile.am (libfetish_a_SOURCES): Add gettime.c, settime.c,
53691         timespec.h.  Remove nanosleep.h.
53692
53693 2002-02-25  Paul Eggert  <eggert@twinsun.com>
53694
53695         * m4/acl.m4: New file.
53696         * m4/jm-macros.m4 (jm_MACROS): Require AC_FUNC_ACL.
53697         Do not check for acl or sys/acl.h, as AC_FUNC_ACL does that now.
53698
53699 2002-02-25  Paul Eggert  <eggert@twinsun.com>
53700
53701         * lib/acl.c, lib/acl.h: New files.
53702         * lib/Makefile.am (libfetish_a_SOURCES): Add acl.h, acl.c.
53703
53704 2002-02-24  Jim Meyering  <meyering@lucent.com>
53705
53706         * lib/strnlen.c (strnlen): Define-away/undef so that an inconsistent
53707         prototype in string.h (on at least AIX4.3.2.0 w/gcc-2.95.3) doesn't
53708         cause trouble.  Reported by Nelson Beebe.
53709
53710 2002-02-23  Paul Eggert  <eggert@twinsun.com>
53711
53712         * lib/path-concat.c (xpath_concat): Reorder code to pacify
53713         compilers that don't know that xalloc_die never returns.
53714
53715 2002-02-20  Jim Meyering  <meyering@lucent.com>
53716
53717         * lib/getdate.c: Regenerate using bison-1.33.
53718
53719 2002-02-17  Jim Meyering  <meyering@lucent.com>
53720
53721         * config/config.guess (main): Don't use `head -1'; it's no longer
53722         portable. Use `sed 1q' instead.
53723
53724 2002-02-16  gettextize  <bug-gnu-gettext@gnu.org>
53725
53726         * m4/codeset.m4: Upgrade to gettext-0.11.
53727         * m4/gettext.m4: Upgrade to gettext-0.11.
53728         * m4/glibc21.m4: Upgrade to gettext-0.11.
53729         * m4/iconv.m4: Upgrade to gettext-0.11.
53730         * m4/isc-posix.m4: Upgrade to gettext-0.11.
53731         * m4/lcmessage.m4: Upgrade to gettext-0.11.
53732         * m4/lib-ld.m4: New file, from gettext-0.11.
53733         * m4/lib-link.m4: New file, from gettext-0.11.
53734         * m4/lib-prefix.m4: New file, from gettext-0.11.
53735         * m4/progtest.m4: Upgrade to gettext-0.11.
53736
53737 2002-02-15  Paul Eggert  <eggert@twinsun.com>
53738
53739         * m4/prereq.m4 (jm_PREREQ_POSIXVER): New macro.
53740         (jm_PREREQ): Use it.
53741
53742 2002-02-15  Paul Eggert  <eggert@twinsun.com>
53743
53744         * lib/posixver.c, lib/posixver.h: New files.
53745         * lib/Makefile.am (libfetish_a_SOURCES): Add them.
53746
53747 2002-02-02  Paul Eggert  <eggert@twinsun.com>
53748             Bruno Haible  <bruno@clisp.org>
53749
53750         * lib/unicodeio.h (print_unicode_char): Add exit_on_error argument.
53751         (fwrite_success_callback): New declaration.
53752         * lib/unicodeio.c (unicode_to_mb): New function, extracted from
53753         print_unicode_char. Call failure callback instead of error.
53754         (fwrite_success_callback): New function.
53755         (exit_failure_callback): New function.
53756         (fallback_failure_callback): New function.
53757         (print_unicode_char): Call unicode_to_mb.
53758
53759 2002-01-26  Jim Meyering  <meyering@lucent.com>
53760
53761         * m4/jm-macros.m4 (jm_MACROS): Require autoconf-2.52g.
53762         * m4/strnlen.m4: Remove file, now that it's part of autoconf.
53763
53764 2002-01-26  Jim Meyering  <meyering@lucent.com>
53765
53766         * lib/Makefile.am (getdate$U.o): Depend on unlocked-io.h.
53767
53768 2002-01-22  Paul Eggert  <eggert@twinsun.com>
53769
53770         * m4/jm-macros.m4 (jm_MACROS): Require AC_FUNC_FSEEKO.
53771
53772 2002-01-22  Jim Meyering  <meyering@lucent.com>
53773
53774         * lib/Makefile.am (Makefile): Don't depend on $(BUILT_SOURCES).
53775         Otherwise, some versions of automake would omit the rule that makes
53776         Makefile from Makefile.in.
53777
53778 2002-01-21  Paul Eggert  <eggert@twinsun.com>
53779
53780         * lib/xmemcoll.h, lib/xmemcoll.c: New files.
53781         * lib/Makefile.am (libfetish_a_SOURCES): Add them.
53782         * lib/memcoll.c: Include errno.h, and declare errno if not defined.
53783         (memcoll): Set errno to zero if there is no error.
53784
53785         * lib/quotearg.c (quotearg_buffer_restyled):
53786         Fix bug with quoting buffers containing NUL when backslashing escapes.
53787         This bug was exposed by the other changes in this patch.
53788         (quotearg_n_options): New arg ARGSIZE.
53789         All callers changed.
53790         (quoting_options_from_style): New function.
53791         (quotearg_n_style): Use it.
53792         (quotearg_n_style_mem): New function.
53793
53794         * lib/quotearg.h (quotearg_n_style_mem): New function.
53795
53796 2002-01-19  Jim Meyering  <meyering@lucent.com>
53797
53798         * m4/jm-macros.m4 (jm_MACROS): Use AC_FUNC_STRNLEN.
53799         Remove useless quotes: DF_PROG="df".
53800         * m4/strnlen.m4: New file.
53801
53802 2002-01-16  Paul Eggert  <eggert@twinsun.com>
53803
53804         * lib/backupfile.c (ISDIGIT): Comment fix.
53805         * lib/getdate.y (ISDIGIT): Likewise.
53806         * lib/posixtm.c (ISDIGIT, year): Likewise.
53807         * lib/strverscmp.c (ISDIGIT): Likewise.
53808         * lib/userspec.c (ISDIGIT): Likewise.
53809
53810 2002-01-16  Jim Meyering  <meyering@lucent.com>
53811
53812         * lib/getdate.y: Add three semicolons, each just before a closing
53813         brace. Bison (as of version 1.31) no longer papers over that mistake.
53814
53815 2002-01-05  Jim Meyering  <meyering@lucent.com>
53816
53817         * lib/version-etc.c (version_etc_copyright): Update copyright year.
53818
53819 2001-12-19  Paul Eggert  <eggert@twinsun.com>
53820
53821         * lib/closeout.c (close_stdout_status): If ferror (stdout), do
53822         not silently exit merely because the output buffer happens to
53823         have nothing pending.
53824
53825 2001-12-18  Paul Eggert  <eggert@twinsun.com>
53826
53827         See the big note in ../ChangeLog.
53828         * lib/human.c (suffixes): Prefer K to k for 1024.
53829         (generate_suffix_backwards): New function.
53830         (human_readable_inexact): Use it.
53831         * lib/xstrtol.c (__xstrtol): If there is no number but there
53832         is a valid suffix, assume 1.  "MB" now means decimal, "MiB" binary.
53833         Accept 'K' as well as 'k'.
53834
53835 2001-12-15  Jim Meyering  <meyering@lucent.com>
53836
53837         * lib/regex.h (__restrict_arr): Update from libc.
53838
53839         * lib/mountlist.h (ME_REMOTE): Recognize file systems of type smbfs
53840         as `remote' if the name starts with `//'.  Suggested by Michael Stone.
53841         (STREQ): Define.
53842
53843 2001-12-14  Jim Meyering  <meyering@lucent.com>
53844
53845         * m4/jm-macros.m4 (jm_MACROS): Check for iswspace.
53846         Suggestion from Bruno Haible.
53847
53848 2001-12-10  Jim Meyering  <meyering@lucent.com>
53849
53850         * lib/linebuffer.c: Remove explicit declarations of xmalloc and
53851         xrealloc, Instead, include "xalloc.h".
53852         (initbuffer): Don't cast xmalloc return value to char*.
53853         (readline): Reword comment.
53854         Don't cast xrealloc return value to char*
53855         Return NULL, not 0.
53856
53857 2001-12-09  Jim Meyering  <meyering@lucent.com>
53858
53859         * lib/modechange.c (mode_compile): Add cast to avoid pedantic warning
53860         about `signed and unsigned type in conditional expression'.
53861         * lib/posixtm.c (posix_time_parse): Likewise.
53862
53863         * lib/xreadlink.c (xreadlink): Add cast to avoid a pedantic warning.
53864
53865         * lib/readtokens.c (readtoken): Declare an index to be of type unsigned
53866         to avoid a pedantic warning.
53867
53868         * lib/getstr.c: Don't include assert.h.
53869         (getstr): Remove warning-evoking assertions.
53870         Return -1 if offset parameter is out of bounds.
53871         Change the type of a local from int to size_t.
53872
53873         * lib/strftime.c (my_strftime_localtime_r): Include this function
53874         definition in the `#if ! HAVE_TM_GMTOFF' block.
53875
53876         * lib/xgethostname.c: Remove declarations of xmalloc and xrealloc.
53877         Include xalloc.h instead.
53878
53879 2001-12-02  Jim Meyering  <meyering@lucent.com>
53880
53881         * lib/tempname.c: Don't declare getenv, thus reverting the change of
53882         2001-11-18.  It's no longer necessary, now that stdlib.h is always
53883         included.
53884
53885         * lib/regex.c [!__BOUNDED_POINTERS__]: Define away __bounded,
53886         __unbounded, and __ptrvalue.  Reported by Uwe H. Steinfeld.
53887
53888 2001-11-30  Akim Demaille  <akim@epita.fr>
53889
53890         * lib/xstrdup.c: Include xalloc.h, so that xstrdup is declared
53891         before being defined.
53892
53893 2001-11-27  Paul Eggert  <eggert@twinsun.com>
53894
53895         * lib/quotearg.h (quotearg_n, quotearg_n_style):
53896         First arg is int, not unsigned.
53897         * lib/quotearg.c (quotearg_n, quotearg_n_style): Likewise.
53898         (SIZE_MAX, UINT_MAX): New macros.
53899         (quotearg_n_options): Abort if N is negative.
53900         Avoid overflow check on hosts where size_t is 64 bits and int
53901         is 32 bits, as overflow is impossible there.
53902         Fix off-by-one typo that caused unnecessary reallocation.
53903
53904 2001-11-27  Jim Meyering  <meyering@lucent.com>
53905
53906         * lib/tempname.c: Merge with version from libc.
53907         * lib/regex.c: Likewise.
53908
53909         * lib/tempname.c: Include stdlib.h unconditionally.  On some old
53910         systems for which STDC_HEADERS is 0, it was not included, resulting in
53911         a warning about an integer-to-pointer conversion problem with getenv.
53912         Reported by Volker Borchert.
53913
53914 2001-11-26  Jim Meyering  <meyering@lucent.com>
53915
53916         * lib/gtod.h: Remove file.
53917         * lib/Makefile.am (libfetish_a_SOURCES): Remove gtod.h.
53918         * lib/gettimeofday.c: Don't include gtod.h.
53919         (GTOD_init): Remove function.
53920         (rpl_gettimeofday): Do its job here instead, rather than aborting.
53921         Suggestion from Volker Borchert.
53922
53923 2001-11-23  Jim Meyering  <meyering@lucent.com>
53924
53925         * lib/hash.h (struct hash_table): Don't define here.  Merely declare
53926         it.
53927         * lib/hash.c (struct hash_table): Define it here instead.
53928
53929 2001-11-22  Jim Meyering  <meyering@lucent.com>
53930
53931         * lib/hash.h: Bracket contents of file with #ifndef HASH_H_ ... #endif.
53932
53933 2001-11-20  Jim Meyering  <meyering@lucent.com>
53934
53935         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): Update comment to reflect that
53936         SunOS 4.1.4 and Solaris 2.5.1 lose, too.
53937
53938 2001-11-19  Jim Meyering  <meyering@lucent.com>
53939
53940         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): Don't bother with a temporary
53941         directory.  Use "conftestXXXXXX" as the template.
53942         Suggestion from Paul Eggert.
53943
53944         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): Close each descriptor
53945         immediately, so the test doesn't mistakenly hit the max-open-files
53946         limit.
53947
53948 2001-11-18  Paul Eggert  <eggert@twinsun.com>
53949
53950         * lib/tempname.c (TMP_MAX): Remove; no longer needed.
53951         (TEMPORARIES): New macro.
53952         (__gen_tempname): Use TEMPORARIES rather than TMP_MAX.  This
53953         removes an artificial limitation (e.g. HP-UX 10.20, where
53954         TMP_MAX is 17576).
53955
53956 2001-11-18  Jim Meyering  <meyering@lucent.com>
53957
53958         * m4/prereq.m4 (jm_PREREQ_TEMPNAME): Check for declaration of getenv.
53959
53960 2001-11-18  Jim Meyering  <meyering@lucent.com>
53961
53962         * lib/tempname.c [!HAVE_DECL_GETENV]: Declare getenv to avoid warning
53963         on SunOS 4.
53964
53965         * lib/Makefile.am (Makefile): Depend on $(BUILT_SOURCES), so those
53966         files will be created before anything else.
53967
53968 2001-11-17  Paul Eggert  <eggert@twinsun.com>
53969
53970         * m4/jm-winsz1.m4 (jm_WINSIZE_IN_PTEM): Do not define
53971         WINSIZE_IN_PTEM if <termios.h> defines struct winsize.
53972
53973 2001-11-17  Jim Meyering  <meyering@lucent.com>
53974
53975         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): New file and macro.
53976         Prompted by a report from Bob Proulx.
53977
53978         * m4/jm-macros.m4 (jm_MACROS): Don't test for mkstemp here.
53979         Instead, require UTILS_FUNC_MKSTEMP.
53980
53981 2001-11-17  Jim Meyering  <meyering@lucent.com>
53982
53983         * m4/jm-macros.m4 (jm_MACROS): Remove code to set POW_LIBM.
53984         Now, that's done as part of AC_FUNC_STRTOD.
53985
53986 2001-11-17  Jim Meyering  <meyering@lucent.com>
53987
53988         * lib/modechange.c (mode_adjust): Fix error introduced on 1999-04-26
53989         that made e.g., `chmod a=,o=w,g=o F' cause F to be group readable
53990         rather than group writable.  Patch by Juan F. Codagnone.
53991
53992         * lib/readtokens.c: Remove explicit declarations of xmalloc and
53993         xrealloc, Instead, include "xalloc.h".
53994
53995         * lib/mountlist.c: Include unlocked-io.h after all system headers.
53996         Remove explicit declarations of xmalloc, xrealloc,
53997         and xstrdup.  Instead, include "xalloc.h".
53998
53999         * lib/argmatch.c, closeout.c, error.c, exclude.c: Include
54000         unlocked-io.h.
54001         * lib/fatal.c, getdate.y, getpass.c, getstr.c, getusershell.c:
54002         Likewise.
54003         * lib/mountlist.c, posixtm.c, readtokens.c, readutmp.c: Likewise.
54004
54005         * lib/regex.c, sha.c, version-etc.c, yesno.c: Likewise.
54006         Reported by Padraig Brady.
54007
54008         * lib/mkstemp.c: #undef mkstemp.
54009         Include config.h.
54010         (rpl_mkstemp): Rename from mkstemp.
54011         Protoize.
54012
54013 2001-11-16  Jim Meyering  <meyering@lucent.com>
54014
54015         * lib/physmem.c [HAVE_SYS_PSTAT_H]: Include <sys/pstat.h>.
54016         (physmem_total) [HAVE_PSTAT_GETSTATIC]: If sysconf couldn't be used to
54017         determine the amount of total physical memory, use pstat_getstatic.
54018         HPUX-11 doesn't define _SC_PHYS_PAGES.
54019         (physmem_available) [HAVE_PSTAT_GETSTATIC && HAVE_PSTAT_GETDYNAMIC]:
54020         If sysconf couldn't be used to determine the amount of available
54021         physical memory, use both pstat_getstatic and pstat_getdynamic.
54022         Based on a patch from Bob Proulx.
54023
54024 2001-11-10  Jim Meyering  <meyering@lucent.com>
54025
54026         * m4/prereq.m4 (jm_PREREQ_PHYSMEM): New function.
54027         (jm_PREREQ): Use it.
54028
54029 2001-11-09  Jim Meyering  <meyering@lucent.com>
54030
54031         * m4/jm-macros.m4: Require autoconf-2.52f.
54032         (AC_FUNC_ERROR_AT_LINE, AC_FUNC_OBSTACK, AC_FUNC_STRTOD):
54033         Use these AC_-prefixed names, not the AM_-prefixed ones.
54034
54035         * m4/afs.m4 (jm_AFS): Quote the body.  Patch by Akim Demaille.
54036
54037 2001-11-05  Jim Meyering  <meyering@lucent.com>
54038
54039         * lib/xstat.in (slash_aware_lstat): Correct a misleading comment.
54040
54041 2001-11-04  Jim Meyering  <meyering@lucent.com>
54042
54043         * m4/fpending.m4: Remove unused cruft that saved, set, and restored
54044         $DEFS.
54045
54046 2001-11-03  Jim Meyering  <meyering@lucent.com>
54047
54048         * m4/jm-glibc-io.m4n (jm_FUNC_GLIBC_UNLOCKED_IO): Quote first arg
54049         of AC_DEFUN.
54050
54051         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Rework so dirfd.c doesn't have to
54052         know the name of the variable in the macro definition.
54053
54054 2001-11-03  Jim Meyering  <meyering@lucent.com>
54055
54056         * lib/argmatch.h (ARGMATCH_TO_ARGUMENT): Remove casts of first two args
54057         in argmatch_to_argument call.
54058
54059         * lib/dirfd.c (dirfd): Reflect the fact that DIR_TO_FD now takes an
54060         argument.
54061
54062         * lib/hash.c (hash_clear): Fix a bug that could lead to an infloop or
54063         e.g., a fault due to an attempt to free a NULL pointer.
54064
54065 2001-11-01  Jim Meyering  <meyering@lucent.com>
54066
54067         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): New macro.
54068         * m4/jm-macros.m4 (jm_MACROS): Require UTILS_FUNC_DIRFD.
54069
54070 2001-11-01  Jim Meyering  <meyering@lucent.com>
54071
54072         * lib/dirfd.c, lib/dirfd.h: New files.
54073         * lib/Makefile.am (libfetish_a_SOURCES): Add dirfd.h.
54074
54075         * lib/hash.c (hash_print) [TESTING]: Clean up.
54076
54077 2001-10-22  Paul Eggert  <eggert@twinsun.com>
54078
54079         * lib/hard-locale.c (alloca): Define to __builtin_alloca if __GNUC__,
54080         to avoid a warning if -Wall.
54081
54082 2001-10-22  Jeff Bailey  <jbailey@outpost.dnsalias.org>
54083
54084         * README: New file
54085         * doc/*: Add COPYING, COPYING.LIB, COPYING.DOC, fdl.texi
54086         (per RMS's instructions, this is now the canonical source)
54087         * lgpl/, gpl/: New directories.
54088
54089 2001-10-21  Paul Eggert  <eggert@twinsun.com>
54090
54091         * lib/regex.c (uintptr_t): Remove macro and decl; it's config.h's job.
54092
54093 2001-10-21  Jim Meyering  <meyering@lucent.com>
54094
54095         * lib/obstack.c (_): Honor the setting of ENABLE_NLS.  Otherwise,
54096         this code would end up calling gettext even in packages built
54097         with --disable-nls.
54098         * lib/getopt.c (_): Likewise.
54099         * lib/regex.c (_): Likewise.
54100
54101 2001-10-20  Paul Eggert  <eggert@twinsun.com>
54102
54103         * m4/error.m4 (jm_PREREQ_ERROR):
54104         Do not invoke AC_CHECK_FUNCS with strerror_r, as
54105         AC_FUNC_STRERROR_R does that.
54106         Check for strerror declaration.
54107
54108         * m4/strerror_r.m4: Add copyright notice, as nontrivial m4 files
54109         are supposed to have them these days.
54110         (AC_FUNC_STRERROR_R): Always do char* test, so that it gets cached.
54111         Merge changes from latest Autoconf CVS.
54112         Rename ac_cv_func_strerror_r_works to ac_cv_func_strerror_r_char_p,
54113         and rename HAVE_WORKING_STRERROR_R to STRERROR_R_CHAR_P, since
54114         POSIX decided to standardize on the int flavor of strerror_r.
54115
54116 2001-10-20  Paul Eggert  <eggert@twinsun.com>
54117
54118         * lib/error.c (strerror_r): Do not declare unless !_LIBC.
54119         Do not check for HAVE_DECL_STRERROR_R missing unless STRERROR_R_CHAR_P.
54120         Use strerror_r that is only a macro, even if it is not a function.
54121         (strerror): Check for HAVE_DECL_STRERROR before declaring.
54122         (private_strerror): Use prototypes, not old-style function definition.
54123         (print_errno_message): New function.
54124         Support the POSIX 'int'-flavored strerror_r, as well as the traditional
54125         char*-flavored one.
54126         (error_tail, error, error_at_line): Use it.
54127
54128 2001-10-11  Jim Meyering  <meyering@lucent.com>
54129
54130         * lib/argmatch.c (argmatch_invalid): Use quotearg_n_style (0, ...
54131         and quote_n (1, ... to avoid clobbering a buffer.
54132
54133 2001-10-05  Jim Meyering  <meyering@lucent.com>
54134
54135         * lib/Makefile.am: (libfetish_a_SOURCES): Add hash-pjw.c and
54136         hash-pjw.h.
54137         * lib/hash-pjw.c: New file (factored out of fileutils' remove.c).
54138         * lib/hash-pjw.h: New file.
54139
54140 2001-09-30  Jim Meyering  <meyering@lucent.com>
54141
54142         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): See if
54143         `struct fsstat' has the `f_fstypename' member.
54144         Use that to define FS_TYPE, which is now used to make
54145         the getfsstat link test tighter.
54146
54147 2001-09-30  Jim Meyering  <meyering@lucent.com>
54148
54149         * lib/mountlist.c [MOUNTED_GETFSSTAT]:
54150         Include <sys/ucred.h>, for Apple Darwin.
54151         Include sys/mount.h and sys/fs_types.h only if available.
54152         (FS_TYPE): Define.
54153         (read_filesystem_list): Use FS_TYPE.
54154
54155 2001-09-29  Paul Eggert  <eggert@twinsun.com>
54156
54157         * lib/exclude.c (excluded_filename): 0 -> false, since it's
54158         a boolean context.
54159
54160 2001-09-29  Jim Meyering  <meyering@lucent.com>
54161
54162         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS)
54163         [one-argument getmntent function]): Include stdio.h before mntent.h.
54164         SunOS 4.1.x needs it for the declaration of `FILE'.
54165         Patch by Volker Borchert.
54166
54167         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS)
54168         Check for these headers: sys/param.h sys/ucred.h sys/mount.h
54169         sys/fs_types.h, and make the link-test for getfsstat guard #include
54170         directives with appropriate #if HAVE_*_H tests so that we can
54171         detect getfsstat on Apple Darwin1.3.7 systems.
54172         Reported by Nelson Beebe.
54173         Fix harmless typo in cache variable name: s/getsstat/getfsstat/.
54174
54175 2001-09-28  Paul Eggert  <eggert@twinsun.com>
54176
54177         Fix bug reported by Petter Reinholdtsen for HP-UX 10.20, which
54178         #defines strtoimax.  Also treat the other strto* functions
54179         like strtoimax.
54180
54181         * m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX):
54182         Check for strtoul and strtoumax,
54183         as those declarations are made even in the signed case.
54184         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX):
54185         Likewise, for strtol and strtoimax.
54186
54187 2001-09-28  Paul Eggert  <eggert@twinsun.com>
54188
54189         Fix bug reported by Petter Reinholdtsen for HP-UX 10.20, which
54190         #defines strtoimax.  Also treat the other strto* functions
54191         like strtoimax.
54192
54193         * lib/xstrtol.c (strtol): Do not declare if HAVE_DECL_STRTOL.
54194         (strtoul): Do not declare if HAVE_DECL_STRTOUL.
54195         (strtoimax, strtoumax): Do not declare if already defined as a macro.
54196
54197 2001-09-26  Jim Meyering  <meyering@lucent.com>
54198
54199         Most macros in unlocked-io.h had the wrong number of arguments.
54200         * lib/gen-uio: New script.
54201         (USE_UNLOCKED_IO): Define to 1 if not already defined.
54202         * lib/unlocked-io.hin: Remove file.
54203         * lib/Makefile.am (unlocked-io.h): Rewrite to use a separate script,
54204         rather than trying to embed it here.
54205         (EXTRA_DIST): Add gen-uio.  Remove unlocked-io.hin
54206         Reported by Padraig Brady.
54207
54208 2001-09-25  Volker Borchert  <bt@teknon.de>
54209
54210         * lib/gettimeofday.c (rpl_gettimeofday): Declare local variable
54211         `result'.
54212
54213 2001-09-24  Jim Meyering  <meyering@lucent.com>
54214
54215         * m4/gettext.m4: Use the version from gettext-0.10.40, not CVS.
54216
54217 2001-09-23  Jim Meyering  <meyering@lucent.com>
54218
54219         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Add a compile-test
54220         instead of the mere test for existence of mntent.h.  The latter
54221         would get a false-positive on AIX 3.4 systems.
54222         In the outer getmntent if-block, don't die if neither of the getmntent
54223         tests succeeds.  Instead, just fall through and continue with the
54224         remaining tests.
54225
54226 2001-09-23  Jim Meyering  <meyering@lucent.com>
54227
54228         * lib/mountlist.c: Remove useless parentheses in #if directives.
54229         (MOUNTED) [!defined MOUNTED]: Define to _PATH_MOUNTED, for when
54230         the deprecated MOUNTED symbol is no longer defined in mntent.h.
54231
54232 2001-09-22  Jim Meyering  <meyering@lucent.com>
54233
54234         * m4/gettext.m4: New file.  From gettext.
54235         * m4/lcmessage.m4: Sync with gettext -- this changes only comments.
54236         * m4/progtest.m4: Likewise
54237         * m4/isc-posix.m4: Decrement serial number to sync with gettext.
54238         * m4/glibc21.m4: Likewise.
54239
54240         * m4/libintl.m4: Remove.  No longer used.
54241
54242 2001-09-22  Jim Meyering  <meyering@lucent.com>
54243
54244         * lib/localcharset.c: Update from latest gettext.
54245         * lib/config.charset: Likewise.
54246
54247 2001-09-20  Jim Meyering  <meyering@lucent.com>
54248
54249         * m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX): Check for declaration of
54250         strtoimax.
54251         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Check for declaration of
54252         strtoumax.
54253
54254 2001-09-20  Jim Meyering  <meyering@lucent.com>
54255
54256         * lib/xstrtol.c (strtoimax): Guard declaration with
54257         `#if !HAVE_DECL_STRTOIMAX', rather than just `#ifndef strtoimax'.
54258         The latter fails because some systems (at least rs6000-ibm-aix4.3.3.0)
54259         have their own, conflicting declaration of strtoimax in sys/inttypes.h.
54260         (strtoumax): Likewise, for completeness (it wasn't necessary).
54261
54262 2001-09-17  Paul Eggert  <eggert@twinsun.com>
54263
54264         * lib/strtoimax.c (HAVE_LONG_LONG):
54265         Redefine to HAVE_UNSIGNED_LONG_LONG if unsigned.
54266         (strtoimax): Use sizeof (long), not sizeof strtol (ptr, endptr, base),
54267         to work around bug in IBM C compiler.
54268
54269 2001-09-17  Jim Meyering  <meyering@lucent.com>
54270
54271         * m4/chown.m4, fstypename.m4, getgroups.m4, gettimeofday.m4,
54272         * m4/jm-mktime.m4, lstat.m4, malloc.m4, memcmp.m4, mkdir-slash.m4,
54273         * m4/nanosleep.m4, putenv.m4, readdir.m4, realloc.m4, rename.m4,
54274         * m4/st_dm_mode.m4, stat.m4, strerror_r.m4, timespec.m4, utimbuf.m4,
54275         * m4/utimes.m4: Use AC_DEFINE rather than AC_DEFINE_UNQUOTED,
54276         whenever the right hand side need not be expanded by the shell.
54277
54278 2001-09-16  Paul Eggert  <eggert@twinsun.com>
54279
54280         * m4/fnmatch.m4 (jm_FUNC_FNMATCH): Remove test for GNU C
54281         library.  It's not correct, as some older glibcs are buggy.
54282         fnmatch wasn't fixed until glibc 2.2.
54283
54284         Use AC_DEFINE, not AC_DEFINE_UNQUOTED, as there's no
54285         special shell magic here.
54286
54287 2001-09-16  Jim Meyering  <meyering@lucent.com>
54288
54289         * m4/mkdir-slash.m4 (UTILS_FUNC_MKDIR_TRAILING_SLASH): New file/macro.
54290         * m4/jm-macros.m4: Require it.
54291
54292 2001-09-16  Jim Meyering  <meyering@lucent.com>
54293
54294         * lib/mkdir.c: New file.
54295
54296 2001-09-15  Jim Meyering  <meyering@lucent.com>
54297
54298         * m4/jm-macros.m4: Check for help2man.
54299
54300 2001-09-11  Jim Meyering  <meyering@lucent.com>
54301
54302         * m4/host-os.m4 (UTILS_HOST_OS): New file/macro.
54303         The body, by Paul Eggert, was moved here from configure.in.
54304         * m4/jm-macros.m4: Require UTILS_HOST_OS.
54305
54306 2001-09-04  Paul Eggert  <eggert@twinsun.com>
54307
54308         * m4/prereq.m4 (jm_PREREQ_XREADLINK): New macro.
54309         (jm_PREREQ): Use it.
54310
54311 2001-09-04  Paul Eggert  <eggert@twinsun.com>
54312
54313         * lib/xreadlink.c (xreadlink): Omit size_t* arg.  All uses changed.
54314         Use ssize_t, not int, to store result of readlink.
54315         Check for ssize_t overflow as well as size_t overflow,
54316         as POSIX says the result of readlink is implementation-defined
54317         when ssize_t overflows.
54318         Remove unnecessary cast to char*.
54319         Use free+malloc instead of realloc, as the storage doesn't need
54320         to be preserved and it's clearer and can be more efficient that way.
54321         (SIZE_MAX, SSIZE_MAX): New macros, if <limits.h> doesn't declare.
54322         * lib/xreadlink.h (xreadlink): Update prototype.
54323
54324 2001-09-04  Paul Eggert  <eggert@twinsun.com>
54325
54326         * lib/xgetcwd.c: Revert some of the previous change; intead,
54327         fix the HAVE_GETCWD_NULL code to behave more like the
54328         !HAVE_GETCWD_NULL code used to.
54329
54330         Include "xalloc.h".
54331         (xgetcwd): Do not return NULL when memory is exhausted; instead,
54332         invoke xalloc_die.
54333
54334 2001-09-03  Paul Eggert  <eggert@twinsun.com>
54335
54336         * m4/prereq.m4 (jm_PREREQ_XGETCWD): Check for limits.h and
54337         sys/param.h, as pathmax.h includes them.
54338
54339 2001-09-03  Paul Eggert  <eggert@twinsun.com>
54340
54341         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_XGETCWD.
54342         (jm_PREREQ_XGETCWD): New macro.
54343
54344         * m4/getcwd.m4: New file.
54345
54346 2001-09-03  Paul Eggert  <eggert@twinsun.com>
54347
54348         * lib/xgetcwd.c: Fix the !HAVE_GETCWD_NULL code to behave more
54349         like the HAVE_GETCWD_NULL code.
54350         Include pathmax.h if not HAVE_GETCWD.
54351         Do not include xalloc.h.
54352         (INITIAL_BUFFER_SIZE): New symbol.
54353         Do not use xmalloc / xrealloc, since the caller is responsible for
54354         handling errors.  Preserve errno around `free' during failure.
54355         Do not overrun buffer when using getwd.
54356
54357 2001-09-03  Paul Eggert  <eggert@twinsun.com>
54358
54359         * lib/xgetcwd.c (xgetcwd): Use HAVE_GETCWD_NULL, not (defined
54360         __GLIBC__ && __GLIBC__ >= 2), to decide whether to use
54361         getcwd (NULL, 0).
54362
54363 2001-09-03  Paul Eggert  <eggert@twinsun.com>
54364
54365         * lib/exclude.c (fnmatch_no_wildcards): Fix confusion between
54366         usage of FNM_CASEFOLD and FNM_LEADING_DIR.  The bug was
54367         spotted by Jim Meyering.
54368
54369 2001-09-03  Jim Meyering  <meyering@lucent.com>
54370
54371         * lib/xreadlink.c (xreadlink): Preserve errno around `free' during
54372         failure.
54373
54374 2001-09-02  Jim Meyering  <meyering@lucent.com>
54375
54376         * lib/error.c: Update from GNU libc.
54377
54378 2001-09-01  Jim Meyering  <meyering@lucent.com>
54379
54380         * m4/jm-macros.m4 (jm_MACROS): Check for canonicalize_file_name.
54381         Used by df.
54382
54383 2001-09-01  Jim Meyering  <meyering@lucent.com>
54384
54385         * lib/xreadlink.c: New file.
54386         * lib/xreadlink.h: New file.
54387         * lib/Makefile.am (libfetish_a_SOURCES): Add xreadlink.c and
54388         xreadlink.h.
54389
54390         * lib/regex.c (uintptr_t) [!_LIBC]: Define to private_uintptr_t, so it
54391         doesn't conflict with sparc Solaris 7's definition in
54392         /usr/include/sys/int_types.h.
54393
54394         * lib/exclude.c: Use `""', not `<>' to #include non-system header
54395         files.
54396         (fnmatch_no_wildcards): Rewrite not to use function names, strcasecmp
54397         and strncasecmp as r-values.  Unixware didn't have declarations.
54398
54399 2001-08-31  Paul Eggert  <eggert@twinsun.com>
54400
54401         * lib/xstrtol.h: Add copyright notice.
54402         (_DECLARE_XSTRTOL): Improve quality of diagnostic for
54403         LONGINT_INVALID_SUFFIX_CHAR.
54404
54405 2001-08-31  Paul Eggert  <eggert@twinsun.com>
54406
54407         * lib/xstrtol.c (strtoimax): New decl.
54408
54409 2001-08-31  Paul Eggert  <eggert@twinsun.com>
54410
54411         * lib/xgetcwd.c: Don't include pathmax.h.
54412         Include stdlib.h and unistd.h if available.
54413         Include xalloc.h.
54414         (xmalloc, xstrdup, free): Remove decls.
54415         (xgetcwd): Don't assume sizes fit in unsigned.
54416         Check for overflow when computing sizes.
54417         Simplify reallocation code.
54418
54419 2001-08-31  Paul Eggert  <eggert@twinsun.com>
54420
54421         * lib/savedir.c (savedir): Remove size parameter, as POSIX says that
54422         a directory's st_size can have an arbitrary value, so the old
54423         usage could waste an arbitrary amount of memory.  All uses
54424         changed.
54425         * lib/savedir.h: Update prototype.
54426
54427 2001-08-31  Paul Eggert  <eggert@twinsun.com>
54428
54429         * lib/Makefile.am (libfetish_a_SOURCES): Remove strtoxmax.c.
54430
54431         * lib/strtoimax.c: Renamed from strtoxmax.c, removing the
54432         old strtoimax.c.
54433
54434         Also, make the following further changes to make this file's
54435         configuration more similar to that of strtol.c:
54436         (UNSIGNED): Renamed from STRTOUXMAX_UNSIGNED.  All uses changed.
54437         (strtoumax, uintmax_t, strtoull, strtol): Remove.
54438         (intmax_t, strtoimax, strtol, strtoll): New macros, if UNSIGNED.
54439         (strtoimax): Renamed from strtoumax.  All uses of unsigned values
54440         changed to signed values.
54441
54442         And make the following changes as well:
54443         Fix copyright notice, as 1999 was missing.
54444         (verify): New macro.
54445         (strtoimax): Check sizes at compile-time, not run-time.
54446         Prefer strtol to strtoll if both work.
54447         (main): Remove; it was not that useful and was a pain to maintain.
54448
54449         * lib/strtoumax.c: Include strtoimax.c, not strtouxmax.c.
54450
54451 2001-08-31  Jim Meyering  <meyering@lucent.com>
54452
54453         * lib/xgetcwd.c (xgetcwd): Reorganize to avoid some duplication.
54454         Use an initial, malloc'd, buffer of length 128 rather than
54455         a statically allocated one of length 1024.
54456
54457 2001-08-30  Paul Eggert  <eggert@twinsun.com>
54458
54459         Simplify code, partly by assuming autoconf 2.52 semantics.
54460
54461         * m4/Makefile.am (EXTRA_DIST): Remove uintmax_t.m4.
54462
54463         * m4/inttypes.m4 (AC_PREREQ): Bump to 2.52.
54464         (jm_AC_HEADER_INTTYPES_H): Remove; now done by autoconf in 2.52.
54465         All uses removed.
54466         (jm_AC_TYPE_INTMAX_T, jm_AC_TYPE_UINTMAX_T):
54467         Move AC_REQUIRE to next-to-top level, to avoid confusion.
54468         Use 2.52's AC_CHECK_TYPE instead of merely looking for the header.
54469         * m4/prereq.m4 (jm_PREREQ_HUMAN): Don't require
54470         jm_AC_HEADER_INTTYPES_H.
54471         * m4/jm-macros.m4 (jm_MACROS): Likewise.
54472
54473         * m4/uintmax_t.m4: Remove, as it duplicates inttypes.m4.
54474
54475         * m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX):
54476         Quote first arg of AC_DEFUN.
54477         Require jm_AC_TYPE_UINTMAX_T and jm_AC_TYPE_UNSIGNED_LONG_LONG
54478         since they are needed to parse the include file even if we need
54479         only xstrtoimax.  Simplify logic behind the args to AC_REPLACE.
54480         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Likewise,
54481         but with opposite signedness.
54482
54483 2001-08-30  Paul Eggert  <eggert@twinsun.com>
54484
54485         Merge 'exclude' changes from tar 1.13.22.
54486         This fixes one or two unlikely storage allocation overflow bugs,
54487         but doesn't change user-visible behavior otherwise.
54488
54489 2001-08-30  Paul Eggert  <eggert@twinsun.com>
54490
54491         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_EXCLUDE.
54492         (jm_PREREQ_EXCLUDE): New macro.
54493
54494 2001-08-30  Paul Eggert  <eggert@twinsun.com>
54495
54496         * lib/quotearg.c: BSD/OS 4.1 wchar.h requires FILE and struct
54497         tm to be declared.
54498
54499 2001-08-30  Paul Eggert  <eggert@twinsun.com>
54500
54501         * lib/hash.c: Remove '2001' from copyright notice.
54502
54503 2001-08-30  Paul Eggert  <eggert@twinsun.com>
54504
54505         * lib/full-write.h: New file.
54506         * lib/Makefile.am (libfetish_a_SOURCES): Add full-write.h.
54507         * lib/full-write.c: Correct credits, as cccp.c no longer
54508         exists and anyway it was so heavily changed from the old cccp
54509         code as to be unrecognizable.  Include full-write.h.
54510         (full_write) Return size_t, with short writes meaning failure.
54511         All callers changed.  This fixes a bug with large buffers
54512         on 64-bit hosts.
54513         * lib/utime.c: Include full-write.h.
54514
54515 2001-08-30  Paul Eggert  <eggert@twinsun.com>
54516
54517         * lib/exclude.c (bool): Declare, perhaps by including stdbool.h.
54518         (<sys/types.h>): Include only if HAVE_SYS_TYPES_H.
54519         (<stdlib.h>, <string.h>, <strings.h>, <inttypes.h>, <stdint.h>):
54520         Include if available.
54521         (<xalloc.h>): Include
54522         (SIZE_MAX): Define if <stdint.h> or <inttypes.h> doesn't.
54523         (verify): New macro.  Use it to verify that EXCLUDE macros do not
54524         collide with FNM macros.
54525         (struct patopts): New struct.
54526         (struct exclude): Use it, as exclude patterns now come with options.
54527         (new_exclude): Support above changes.
54528         (new_exclude, add_exclude_file):
54529         Initial size must now be a power of two to simplify overflow checking.
54530         (free_exclude, fnmatch_no_wildcards): New function.
54531         (excluded_filename): No longer requires options arg, as the options
54532         are determined by add_exclude.  Now returns bool, not int.
54533         (excluded_filename, add_exclude):
54534         Add support for the fancy new exclusion options.
54535         (add_exclude, add_exclude_file): Now takes int options arg.
54536         Check for arithmetic overflow when computing sizes.
54537         (add_exclude_file): xrealloc might modify errno, so don't
54538         realloc until after errno might be used.
54539
54540         * lib/exclude.h (EXCLUDE_ANCHORED, EXCLUDE_INCLUDE,EXCLUDE_WILDCARDS):
54541         New macros.
54542         (free_exclude): New decl.
54543         (add_exclude, add_exclude_file): Now takes int options arg.
54544         (excluded_filename): No longer requires options arg, as the options
54545         are determined by add_exclude.  Now returns bool, not int.
54546
54547 2001-08-30  Paul Eggert  <eggert@twinsun.com>
54548
54549         * lib/alloca.c (alloca): Arg is of type size_t, not unsigned.
54550
54551 2001-08-27  Jim Meyering  <meyering@lucent.com>
54552
54553         * lib/Makefile.am (libfetish_a_SOURCES): Add strtoxmax.c
54554
54555         * lib/version-etc.c (N_): Remove definition.
54556         Revert most of last change.
54557         Instead, simply don't mark the `Copyright...' string for translation.
54558         Based on advice from Paul Eggert.
54559
54560         * lib/strtoxmax.c: Tweak comment.
54561
54562 2001-08-26  Jim Meyering  <meyering@lucent.com>
54563
54564         * m4/jm-macros.m4: Require jm_AC_PREREQ_XSTRTOIMAX.
54565
54566         * m4/xstrtoimax.m4: New file.
54567         * m4/xstrtoumax.m4: Add comments explaining why we
54568         AC_REPLACE_FUNCS(strtol).
54569
54570 2001-08-26  Jim Meyering  <meyering@lucent.com>
54571
54572         * lib/version-etc.c (version_etc_copyright_fmt): Replace literal year
54573         of copyright with `%s' so translators don't get an untranslated
54574         message in 2002.
54575         (COPYRIGHT_YEAR): Define.
54576         (version_etc): Use fprintf rather than fputs.
54577         Suggestion from Ulrich Drepper.
54578
54579         * lib/Makefile.am (libfetish_a_SOURCES): Add xstrtoimax.c.
54580
54581         * lib/strtoll.c: New file, from GNU libc.
54582         * lib/xstrtoimax.c: New file.
54583
54584         * lib/xstrtol.h: Add xstrtoimax.
54585         * lib/strtoumax.c: New file.  Simply include "strtoumax.c".
54586         * lib/strtoimax.c: New file.  Likewise, but first define
54587         STRTOUXMAX_SIGNED.
54588
54589         * lib/strtoumax.c: Factor to work both for unsigned and signed types,
54590         ...
54591         * lib/strtoxmax.c: ... then renamed to this.
54592
54593 2001-08-18  Paul Eggert  <eggert@twinsun.com>
54594
54595         * m4/inttypes.m4: Add AC_PREREQ(2.13).
54596         (jm_AC_HEADER_INTTYPES_H): Test for intmax_t, too.
54597         (jm_AC_TYPE_INTMAX_T): New macro.
54598         (jm_AC_TYPE_UINTMAX_T): Moved here from uintmax_t.m4.
54599
54600         * m4/longlong.m4 (jm_AC_TYPE_LONG_LONG): New macro.
54601
54602         * m4/longlong.m4: Renamed from ulonglong.m4.
54603         * m4/inttypes.m4: Renamed from inttypes_h.m4.
54604         * m4/uintmax_t.m4: Removed.
54605
54606 2001-08-13  Paul Eggert  <eggert@twinsun.com>
54607
54608         * lib/Makefile.am (unlocked-io.h): Do not append "_unlocked" twice.
54609         Port to Solaris 8, where 'sed' requires a space after the 'r'
54610         command, and where sh dislikes "$/".  Clean up the spacing a bit.
54611         Redirect output to $tmp just once.
54612
54613 2001-08-12  Paul Eggert  <eggert@sic.twinsun.com>
54614
54615         * lib/addext.c (<errno.h>): Include.
54616         (errno): Declare if not defined.
54617         (addext): Work correctly when pathconf returns -1 and leaves
54618         errno alone because there is no limit.  Also, work even if
54619         pathconf returns a value greater than SIZE_MAX.
54620
54621 2001-08-12  Jim Meyering  <meyering@lucent.com>
54622
54623         * m4/afs.m4, assert.m4, bison.m4, check-decl.m4, chown.m4, d-ino.m4,
54624         d-type.m4, dos.m4, error.m4, fnmatch.m4, fpending.m4, fstypename.m4,
54625         fsusage.m4, ftruncate.m4, getgroups.m4, glibc.m4, gnu-source.m4,
54626         group-member.m4, jm-glibc-io.m4, jm-macros.m4, jm-mktime.m4,
54627         jm-winsz1.m4, jm-winsz2.m4, lchown.m4, lib-check.m4, libintl.m4,
54628         link-follow.m4, ls-mntd-fs.m4, lstat.m4, malloc.m4, mbrtowc.m4,
54629         mbstate_t.m4, mbswidth.m4, memcmp.m4, nanosleep.m4, perl.m4,
54630         prereq.m4, putenv.m4, readdir.m4, realloc.m4, regex.m4, rename.m4,
54631         rmdir-errno.m4, search-libs.m4, st_dm_mode.m4, st_mtim.m4, stat.m4,
54632         strftime.m4, timespec.m4, unlink-busy.m4, uptime.m4, utimbuf.m4,
54633         utime.m4, utimes.m4, xstrtoumax.m4:
54634         Quote the first argument in each use of AC_DEFUN.
54635
54636 2001-08-12  Jim Meyering  <meyering@lucent.com>
54637
54638         * lib/xgetcwd.c (xgetcwd) [defined __GLIBC__ && __GLIBC__ >= 2]:
54639         Simply `return getcwd (NULL, 0);'.
54640         [! (defined __GLIBC__ && __GLIBC__ >= 2)]:
54641         Use 1300 as initial value for length, not PATH_MAX.
54642
54643         * lib/pathmax.h: Clean up cpp syntax.
54644
54645 2001-08-12  Jim Meyering  <meyering@lucent.com>
54646
54647         * lib/gettimeofday.c: New file.
54648         * lib/gtod.h: New file.
54649         * lib/Makefile.am (libfetish_a_SOURCES): Add gtod.h.
54650
54651 2001-08-05  Jim Meyering  <meyering@lucent.com>
54652
54653         * m4/jm-macros.m4: Require autoconf-2.52.
54654
54655 2001-08-04  Jim Meyering  <meyering@lucent.com>
54656
54657         * lib/error.h (__attribute__): Remove `|| __STRICT_ANSI__' from #if
54658         stmt, to get in sync with glibc.
54659
54660 2001-08-03  Paul Eggert  <eggert@twinsun.com>
54661
54662         The following changes are from gettext 0.10.39 as maintained by
54663         Bruno Haible.
54664
54665         * lib/mbswidth.h (MBSW_REJECT_UNPRINTABLE, MBSW_REJECT_INVALID):
54666         Renamed from MBSW_ACCEPT_UNPRINTABLE and MBSW_ACCEPT_INVALID
54667         with inverted sense.  All uses changed.
54668
54669         * lib/mbswidth.c: Don't include <limits.h>.
54670         Include <stdlib.h> and <string.h> unconditionally.
54671         (iswcntrl, mbsinit, ISCNTRL): New macros.
54672         (mbsnwidth): Use K&R style function declarations.
54673         Don't bother checking for MB_LEN_MAX == 1, since the compiler
54674         can optimize it when MB_CUR_MAX == 1.
54675         The width of control characters is zero, not 1.
54676
54677 2001-08-03  Paul Eggert  <eggert@twinsun.com>
54678
54679         The following changes are from gettext 0.10.39 as maintained by
54680         Bruno Haible, except that getline.m4 continues to use AC_LIBOBJ.
54681
54682         * m4/codeset.m4: Upgrade to serial AM1.
54683         (AM_LANGINFO_CODESET): Renamed from jm_LANGINFO_CODESET;
54684         all uses changed.  Quote first arg of AC_DEFUN.
54685         (am_cv_langinfo_codeset): Renamed from jm_cv_langinfo_codeset.
54686
54687         * m4/iconv.m4: Upgrade to serial AM2.
54688         (AM_ICONV): Renamed from jm_ICONV; all uses changed.
54689         Add --with-libconv-prefix.
54690         Quote first arg of AC_DEFUN.  Add description for ICONV_CONST.
54691         (am_cv_func_iconv): Renamed from jm_cv_func_iconv.
54692         (am_cv_lib_iconv): Renamed from jm_cv_lib_iconv.
54693         (am_cv_proto_iconv): Renamed from jm_cv_proto_iconv.
54694         * m4/jm-macros.m4 (jm_MACROS): Reflect s/jm_/AM_/ renamings.
54695
54696         * m4/c-bs-a.m4 (AC_C_BACKSLASH_A): Quote first arg of AC_DEFUN.
54697         * m4/getline.m4 (AM_FUNC_GETLINE): Likewise.
54698         * m4/glibc21.m4 (jm_GLIBC21): Likewise.
54699         * m4/inttypes_h.m4 (jm_AC_HEADER_INTTYPES_H): Likewise.
54700         * m4/isc-posix.m4 (AC_ISC_POSIX): Likewise.
54701         * m4/lcmessage.m4 (AM_LC_MESSAGES): Likewise.
54702         * m4/progtest.m4 (AM_PATH_PROG_WITH_TEST): Likewise.
54703         * m4/uintmax_t.m4 (jm_AC_TYPE_UINTMAX_T): Likewise.
54704         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Likewise.
54705
54706         * m4/getline.m4 (AM_FUNC_GETLINE): Don't bother checking for
54707         string.h any more.
54708
54709         * m4/progtest.m4 (AM_PATH_PROG_WITH_TEST): If not found, print "no",
54710         not the default value.
54711
54712         2001-06-25  Bruno Haible  <haible@clisp.cons.org>
54713         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH): Don't require AM_C_PROTOTYPES.
54714         Also check for mbsinit.  Needed for SCO 3.2v5.0.2.
54715         Also include <string.h>; this is where AIX 3.2.5 declares wcwidth.
54716         Also check for iswcntrl, used for wcwidth fallback.
54717         Use AC_TRY_COMPILE to emulate AC_CHECK_DECLS, for portability
54718         to Autoconf 2.13.
54719
54720 2001-08-03  Jim Meyering  <meyering@lucent.com>
54721
54722         * m4/mbrtowc.m4 (jm_FUNC_MBRTOWC): Use `#include', not `@%:@include',
54723         as it was in the original.  Reported by Paul Eggert.
54724
54725 2001-07-16  Jim Meyering  <meyering@lucent.com>
54726
54727         * m4/gettimeofday.m4: New file.
54728         Prompted by a report from Bernhard Baehr.
54729
54730 2001-07-15  Jim Meyering  <meyering@lucent.com>
54731
54732         * m4/Makefile.am.in (Makefile.am): Remove most of the unlocked-io.h
54733         stuff. Now it's in ../Makefile.cfg.
54734
54735 2001-07-15  Jim Meyering  <meyering@lucent.com>
54736
54737         * lib/Makefile.am (EXTRA_DIST): Add unlocked-io.hin.
54738         (BUILT_SOURCES): Add unlocked-io.h.
54739         (io_functions): Define.
54740         (unlocked-io.h): New rule.
54741         (DISTCLEANFILES): Add unlocked-io.h.
54742         (all-local): Depend on unlocked-io.h, to ensure it is created.
54743
54744         * lib/unlocked-io.hin: New file
54745
54746         * lib/regex.c: Update from glibc.
54747
54748 2001-07-05  Jim Meyering  <meyering@lucent.com>
54749
54750         * lib/Makefile.am (noinst_HEADERS): Remove definition, per new automake
54751         recommendation.
54752         (libfetish_a_SOURCES): Put all .h files here instead.
54753         Remove a thus-exposed (better checks in automake) duplicate and
54754         two unnecessary .h files.
54755
54756 2001-07-04  Jim Meyering  <meyering@lucent.com>
54757
54758         * m4/Makefile.am.in (glibc-io.struct): New target.  Rework the code
54759         that generates jm-glibc-io.m4 so that it doesn't trigger any make
54760         distcheck failure.
54761
54762 2001-07-02  Jim Meyering  <meyering@lucent.com>
54763
54764         The following changes were prompted by suggestions from Bruno Haible.
54765
54766         * m4/jm-glibc-io.m4n: New file, the template from which jm-glibc-io.m4
54767         is now generated.
54768         * m4/Makefile.am.in (Makefile.am): Include jm-glibc-io.m4n in emitted
54769         definition of EXTRA_DIST.
54770         (Makefile.am): Emit the dependency, `all-local: jm-glibc-io.m4' to
54771         ensure that the generated file is created/updated whenever the list
54772         of $(unlocked_functions) is changed.
54773         (jm-glibc-io.m4): New rule.
54774         (unlocked-io.h): New rule -- currently unused.
54775
54776 2001-06-24  Jim Meyering  <meyering@lucent.com>
54777
54778         * m4/regex.m4 (jm_INCLUDED_REGEX): Use a quadrigraph to represent an
54779         unmatched right bracket, rather than kludging it with an extra,
54780         falsely-matching quote in a comment.  Patch by Akim Demaille.
54781
54782 2001-06-11  Jim Meyering  <meyering@lucent.com>
54783
54784         * lib/regex.c: Update from GNU libc.
54785
54786 2001-05-27  Jim Meyering  <meyering@lucent.com>
54787
54788         * m4/prereq.m4 (jm_PREREQ_READUTMP): Check for ut_type in struct utmpx.
54789         Check for ut_type in struct utmp.
54790
54791 2001-05-27  Jim Meyering  <meyering@lucent.com>
54792
54793         * lib/readutmp.h (UT_TYPE): Define.
54794
54795 2001-05-24  Jim Meyering  <meyering@lucent.com>
54796
54797         * lib/argmatch.c: Include "quote.h".
54798         (argmatch_invalid): Remove explicit `' quotes.  Instead, use the
54799         quote function.  Reported by Göran Uddeborg.
54800
54801 2001-05-22  Jim Meyering  <meyering@lucent.com>
54802
54803         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Don't use AC_LIBOBJ(strftime),
54804         now that we use the package-supplied version unconditionally.
54805         (jm_FUNC_STRFTIME): Don't replace strftime, for the same reason.
54806
54807 2001-05-21  Jim Meyering  <meyering@lucent.com>
54808
54809         * m4/regex.m4: Change a couple backticks to single quotes to avoid
54810         shell syntax errors.
54811
54812 2001-05-21  Alexandre Duret-Lutz  <duret_g@epita.fr>
54813
54814         * m4/dos.m4 (jm_AC_DOS): Check for _WIN32, __WIN32__, and __MSDOS__.
54815
54816 2001-05-20  Paul Eggert  <eggert@twinsun.com>
54817
54818         * m4/strftime.m4 (jm_FUNC_GNU_STRFTIME):
54819         Don't bother to check library strftime, since
54820         we'll be using our own my_strftime function anyway.
54821         Define my_strftime instead of strftime.
54822
54823 2001-05-20  Alexandre Duret-Lutz  <duret_g@epita.fr>
54824
54825         * lib/dirname.c (dir_name): Compute append_dot using path, not newpath
54826         which is not yet declared.
54827
54828 2001-05-15  Jim Meyering  <meyering@lucent.com>
54829
54830         * m4/regex.m4: Use proper quoting so brackets appear in the test
54831         program.
54832         Reported by, and with help from, Bruno Haible.
54833
54834 2001-05-13  Jim Meyering  <meyering@lucent.com>
54835
54836         * m4/jm-macros.m4 (major_t, minor_t): Define to unsigned int if
54837         undefined.
54838
54839 2001-05-11  Paul Eggert  <eggert@twinsun.com>
54840
54841         dirname code cleanup.  base_name now behaves more compatibly
54842         with POSIX basename when given file names that have trailing
54843         slashes, and similarly for dir_name.  Add new primitives
54844         base_len and dir_len.  Put the directory-name-related decls
54845         into dirname.h.
54846
54847         * lib/addext.c (ISSLASH, base_name): Remove; now in dirname.h.
54848         * lib/backupfile.c (base_name): Likewise.
54849         * lib/basename.c (FILESYSTEM_PREFIX_LEN, PARAMS, ISSLASH): Likewise.
54850         * lib/dirname.c (FILESYSTEM_PREFIX_LEN, ISSLASH): Likewise.
54851         * lib/makepath.c (strip_trailing_slashes): Likewise.
54852         * lib/path-concat.c (DIRECTORY_SEPARATOR, FILESYSTEM_PREFIX_LEN,
54853         ISSLASH): Likewise.
54854         * lib/rename.c (strip_trailing_slashes): Likewise.
54855         * lib/same.c (base_name): Likewise.
54856         * lib/stripslash.c (ISSLASH): Likewise.
54857
54858         * lib/addext.c: Include <dirname.h> after size_t is defined.
54859         * lib/backupfile.c: Likewise.
54860
54861         * lib/addext.c (addext): Use base_len to trim redundant
54862         trailing slashes instead of doing it ourselves.
54863         But do not trim the last slash if it is not redundant.
54864
54865         * lib/backupfile.c (find_backup_file_name,
54866         max_backup_version): Use base_len instead of rolling it ourselves.
54867         Handle the case of "" and (on DOS) "C:" correctly.
54868
54869         * lib/basename.c: Do not include <stdio.h>, <assert.h>; no longer
54870         needed. Include <string.h>, <dirname.h>.
54871         (base_name): Allow file names ending in slashes, other than names
54872         that are all slashes.  In this case, return the basename followed
54873         by the slashes.  This is more general, and can be used in places
54874         where the original base_name purposely had an assertion failure.
54875         (base_len): New function.
54876
54877         * lib/dirname.c: Include <string.h> instead of <stdlib.h>.
54878         Do not include <assert.h>; no longer needed.
54879         Include xalloc.h.
54880         (memrchr): Remove decl.
54881         (dir_name_r): Remove.
54882         (dir_len): Renamed from dirlen.  All callers changed.
54883         Rewrite in terms of base_name, for simplicity and consistency.
54884         (dir_name): Never return NULL.  All callers changed.
54885         Do not include <stdlib.h> in test program; no longer needed.
54886         return 0; is fine for test program.
54887
54888         * lib/dirname.h (DIRECTORY_SEPARATOR, ISSLASH, FILESYSTEM_PREFIX_LEN):
54889         New macros.
54890         (base_name, base_len, dir_len, strip_trailing_slashes): New decls.
54891
54892         * lib/path-concat.c (path_concat): Use base_len to compute
54893         base length, not strlen; this means we cannot rely on memcpy
54894         to null-terminate.
54895
54896         * lib/same.c (STREQ): Remove.
54897         (same_name): Handle the case where the basename ends in trailing '/'.
54898
54899         * lib/stripslash.c (strip_trailing_slashes): Return nonzero if
54900         a slash was stripped.  Do not strip the last slash after a
54901         file system prefix.
54902
54903 2001-05-11  Paul Eggert  <eggert@twinsun.com>
54904
54905         * lib/Makefile.am (libfetish_a_SOURCES):
54906         Add strftime.c, since we now compile it on all hosts.
54907
54908         * lib/strftime.c (my_strftime):
54909         Define to nstrftime if emacs, but only if my_strftime is not defined.
54910         (extra_args, extra_args_spec, extra_args_spec_iso): Rename from
54911         ut_argument, ut_argument_spec, ut_argument_spec_iso, respectively.
54912         Add one more extra argument: a nanoseconds value.
54913         All uses changed.
54914         (ns): New macro.
54915         (my_strftime function): Add %N format.
54916         (emacs_strftimeu): Renamed from emacs_strftime,
54917         with extra ut argument.
54918
54919 2001-05-09  Paul Eggert  <eggert@twinsun.com>
54920
54921         * m4/jm-macros.m4 (jm_MACROS): Do not check for fseeko; no longer used.
54922
54923 2001-04-21  Jim Meyering  <meyering@lucent.com>
54924
54925         * m4/rmdir-errno.m4: Write to a new file, so that a restrictive umask
54926         doesn't interfere.
54927
54928 2001-04-21  Alexandre Duret-Lutz  <duret_g@epita.fr>
54929
54930         * m4/ftruncate.m4: Check for chsize.
54931         Link with ftruncate.o unconditionally if ftruncate is missing.
54932         This was required when cross-compiling to i586-mingw32msvc.
54933
54934 2001-04-08  Jim Meyering  <meyering@lucent.com>
54935
54936         * lib/getdate.y (get_date): Set tm_isdst to -1 to ensure that it is
54937         recomputed; that's necessary when the offset spans a DST transition.
54938         Patch by David J. MacKenzie.  Reported by Hon-Yin Kok.
54939
54940 2001-04-02  Jim Meyering  <meyering@lucent.com>
54941
54942         * lib/regex.h, regex.c: Update from GNU libc.
54943
54944 2001-03-24  Jim Meyering  <meyering@lucent.com>
54945
54946         * m4/jm-macros.m4: Require autoconf-2.49d.
54947
54948 2001-03-20  Bruno Haible  <haible@clisp.cons.org>
54949
54950         * m4/iconv.m4 (jm_ICONV): Recommend GNU libiconv.
54951
54952 2001-03-19  Paul Eggert  <eggert@twinsun.com>
54953
54954         * lib/version-etc.c (version_etc_copyright): Update to 2001.
54955
54956 2001-03-17  Jim Meyering  <meyering@lucent.com>
54957
54958         * m4/memcmp.m4 (jm_AC_FUNC_MEMCMP): Remove my copy of AC_FUNC_MEMCMP,
54959         now that the version in autoconf is equivalent.
54960         (jm_FUNC_MEMCMP): Adjust to use AC_FUNC_MEMCMP.
54961
54962         * m4/error.m4 (jm_PREREQ_ERROR): Invoke AC_FUNC_STRERROR_R.
54963         Suggestion from Akim Demaille.
54964
54965         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_TEMPNAME.
54966         (jm_PREREQ_TEMPNAME): New function.
54967
54968 2001-03-16  Paul Eggert  <eggert@twinsun.com>
54969
54970         * lib/tempname.c (uint64_t): Define to uintmax_t if
54971         not defined, and if UINT64_MAX is not defined.
54972         Required at least for Vax Ultrix4.3, which doesn't define uint64_t.
54973         Reported by John David Anglin.
54974
54975 2001-03-15  Bruno Haible  <haible@clisp.cons.org>
54976
54977         * lib/localcharset.c (locale_charset): Allow wildcard syntax. Also
54978         resolve alias if codeset is empty.
54979         * lib/config.charset (BeOS): Use wildcard syntax.
54980
54981 2001-03-13  Jim Meyering  <meyering@lucent.com>
54982
54983         * lib/path-concat.c (path_concat)
54984         [FILESYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX]: Don't insert a backslash when
54985         concatenating e.g., `C:' and `foo'.
54986         From Bruno Haible.
54987
54988 2001-03-06  Bruno Haible  <haible@clisp.cons.org>
54989
54990         * lib/localcharset.c (locale_charset): Don't use
54991         setlocale(LC_CTYPE,NULL). Don't return NULL.
54992         * lib/unicodeio.c (print_unicode_char): Simplify accordingly.
54993
54994 2001-03-06  Bruno Haible  <haible@clisp.cons.org>
54995
54996         * lib/config.charset: Update for FreeBSD 4.2 and OSF/1 5.1. Add
54997         support for DOS/DJGPP.
54998
54999 2001-03-01  Paul Eggert  <eggert@twinsun.com>
55000
55001         * m4/jm-macros.m4 (jm_MACROS): Use mkstemp replacement if the system
55002         lacks mkstemp.  Compile our own tempname.c if we compile our own
55003         mkstemp.c, as mkstemp relies on tempname.
55004
55005 2001-03-01  Jim Meyering  <meyering@lucent.com>
55006
55007         * m4/dos.m4 (jm_AC_DOS): Remove extra backslashes, now that
55008         AH_VERBATIM really does output its argument verbatim.
55009
55010 2001-02-28  Paul Eggert  <eggert@twinsun.com>
55011
55012         * lib/Makefile.am (libfetish_a_SOURCES):
55013         Add dup-safer.c, fopen-safer.c.
55014         (noinst_HEADERS): Add stdio-safer.h, unistd-safer.h.
55015
55016         * lib/dup-safer.c, lib/fopen-safer.c, lib/stdio-safer.h:
55017         * lib/unistd-safer.h: New files.
55018
55019 2001-02-25  Paul Eggert  <eggert@twinsun.com>
55020
55021         The mkstemp replacement is taken from glibc 2.2.2, with some
55022         portability fixes for use outside glibc, as follows:
55023
55024         * lib/tempname.c (struct_stat64): New macro.
55025         (direxists, __gen_tempname): Use it.
55026         This avoids a portability problem with Solaris 8.
55027
55028         * lib/tempname.c (<config.h>): Include if HAVE_CONFIG_H.
55029         (<stddef.h>, <stdint.h>, <string.h>):
55030         Include only if STDC_HEADERS || _LIBC.
55031         (<fcntl.h>): Include only if HAVE_FCNTL_H || _LIBC.
55032         (<unistd.h>): Include only if HAVE_UNISTD_H || _LIBC.
55033         (<sys/time.h>): Include only if HAVE_SYS_TIME_H || _LIBC.
55034         (__set_errno): Define this macro if <errno.h> doesn't.
55035         (P_tmpdir, TMP_MAX, __GT_FILE, __GT_BIGFILE, __GT_DIR, __GT_NOCREATE):
55036         Define these macros if <stdio.h> doesn't.
55037         (S_ISDIR, S_IRUSR, S_IWUSR, S_IXUSR):
55038         Define these macros if <sys/stat.h>
55039         doesn't.  Ignore <sys/stat.h> S_ISDIR if STAT_MACROS_BROKEN.
55040         (stat64, __getpid, __gettimeofday, __mkdir, __open, __open64, lxstat64,
55041         __xstat64): Define if not _LIBC.
55042         (__secure_getenv): Define if ! (HAVE___SECURE_GETENV || _LIBC).
55043         (__gen_tempname): Invoke gettimeofday only if
55044         HAVE_GETTIMEOFDAY || _LIBC;
55045         otherwise, fall back on plain "time".
55046         Use macros like S_IRUSR | S_IWUSR rather than octal values like 0600.
55047
55048         * lib/mkstemp.c (__GT_FILE): Define to zero if not defined.
55049
55050         * lib/mkstemp.c, lib/tempname.c: New files, taken from glibc 2.2.2.
55051
55052 2001-02-18  Paul Eggert  <eggert@twinsun.com>
55053
55054         * m4/jm-macros.m4 (jm_CHECK_ALL_HEADERS): Check for sys/resource.h.
55055
55056 2001-02-17  Paul Eggert  <eggert@twinsun.com>
55057
55058         * m4/mbrtowc.m4: New file, defining jm_FUNC_MBRTOWC.
55059         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH):
55060         Use jm_FUNC_MBRTOWC, not AC_CHECK_FUNCS(mbrtowc).
55061         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Likewise.
55062
55063 2001-02-17  Paul Eggert  <eggert@twinsun.com>
55064
55065         * lib/mbswidth.c, quotearg.c (mbrtowc, mbsinit):
55066         Remove workaround macros for hosts that have mbrtowc but not
55067         mbstate_t, as we now insist on proper declarations for both
55068         before using mbrtowc.
55069
55070 2001-02-17  Jim Meyering  <meyering@lucent.com>
55071
55072         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Don't check for
55073         getmntent via AC_CHECK_FUNCS, since that would get a `no' and disrupt
55074         further attempts by AC_FUNC_GETMNTENT to check with e.g., -lgen on
55075         UnixWare 7.1.1.
55076
55077         * m4/mbrtowc.m4 (jm_FUNC_MBRTOWC): Adapt to use AC_CACHE_CHECK etc.,
55078         rather than AC_CACHE_VAL.
55079
55080 2001-02-17  Jim Meyering  <meyering@lucent.com>
55081
55082         * lib/strtoul.c: Sync from GNU libc.  Use double quotes, not <...>
55083         around included file name.
55084
55085         * lib/strnlen.c (__strnlen): Merge in a change from GNU libc.
55086
55087         * lib/strftime.c: Update from GNU libc (the only changes were to
55088         comments).
55089
55090 2001-02-17  Jim Meyering  <meyering@lucent.com>
55091
55092         * lib/regex.c: Update from libc.
55093
55094 2001-02-17  Bruno Haible  <haible@clisp.cons.org>
55095
55096         * lib/mbswidth.h (mbswidth): Also define as macro, to avoid prototype
55097         clash.
55098
55099 2001-02-16  Paul Eggert  <eggert@twinsun.com>
55100
55101         * lib/alloca.c (malloc): Undef before defining, since stdlib.h
55102         may have defined it.  Needed for Encore Umax-3.0.9.16b systems.
55103         Reported by Mark Hounschell via Paul Eggert.
55104
55105 2001-02-07  Jim Meyering  <meyering@lucent.com>
55106
55107         * m4/regex.m4 (jm_INCLUDED_REGEX): Add a test for the latest bug.
55108
55109 2001-02-05  Jim Meyering  <meyering@lucent.com>
55110
55111         * m4/jm-macros.m4: Require autoconf-2.14d (not yet released), because
55112         it includes the patch required for `large file' support with at least
55113         HP-UX's 10.20 /bin/cc.
55114
55115 2001-02-03  Jim Meyering  <meyering@lucent.com>
55116
55117         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Restore prior use of
55118         AS_IF, now that it works once again (mysteriously).
55119         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Likewise.
55120
55121 2001-01-30  Jim Meyering  <meyering@lucent.com>
55122
55123         Don't use filenames that are 8.3-equivalent to "conftest" on DOS.
55124         * m4/chown.m4: Rename conftestchown to conftest.chown.
55125         * m4/rename.m4: s/conftestdir/conftest.d1/ and
55126         s/conftestdir2/conftest.d2/.
55127         * m4/utimes.m4: s/conftestdata/conftest.data/
55128         Inspired by Pavel Roskin's change in autoconf.
55129
55130 2001-01-30  Bruno Haible  <haible@clisp.cons.org>
55131
55132         * lib/config.charset: Update for FreeBSD 4.2.
55133
55134 2001-01-27  Jim Meyering  <meyering@lucent.com>
55135
55136         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Open-code what was
55137         a use of AS_IF.
55138         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Likewise.
55139
55140 2001-01-26  Jim Meyering  <meyering@lucent.com>
55141
55142         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Check for stddef.h, now that
55143         quotearg.c includes it.
55144
55145 2001-01-26  Jim Meyering  <meyering@lucent.com>
55146
55147         * lib/quotearg.c: Include stddef.h.
55148         * lib/quote.c: Include stddef.h.
55149         Reported by Axel Kittenberger.
55150
55151         * lib/xmalloc.c [HAVE_DONE_WORKING_MALLOC_CHECK]: Enclose error-evoking
55152         line in double quotes so that it evokes a better diagnostic.
55153         [HAVE_DONE_WORKING_REALLOC_CHECK]: Likewise.
55154         Reported by Axel Kittenberger.
55155
55156 2001-01-24  Stefan Monnier  <monnier@cs.yale.edu>
55157
55158         * regex.c (mutually_exclusive_p): Don't blindly handle `charset_not'
55159         as if it was a `charset'.
55160
55161 2001-01-21  Bruno Haible  <haible@clisp.cons.org>
55162
55163         * m4/iconv.m4 (jm_ICONV): Also check whether the iconv declaration
55164         has const.
55165
55166 2001-01-21  Bruno Haible  <haible@clisp.cons.org>
55167
55168         * lib/unicodeio.c (print_unicode_char): Cast the second iconv() arg,
55169         to avoid a warning.  Add back 'const' to inptr.
55170
55171 2001-01-20  Jim Meyering  <meyering@lucent.com>
55172
55173         Be sure that headers are checked before used in code compiled
55174         for the type checks.
55175         * m4/jm-macros.m4 (jm_MACROS): Remove all header checks.
55176         In place of that, invoke jm_CHECK_ALL_TYPES.
55177         (jm_CHECK_ALL_HEADERS): New functions with the above checks.
55178         (jm_CHECK_ALL_TYPES): Require jm_CHECK_ALL_HEADERS.
55179         Alan Iwi reported a build failure on an f300-fujitsu-uxpv4.1_ES;
55180         The check for ssize_t was mistakenly run before the test for unistd.h.
55181
55182         The configure-time check for stdbool.h was missing.
55183         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_HASH.
55184         (jm_PREREQ_HASH): New function.
55185
55186 2001-01-17  Jim Meyering  <meyering@lucent.com>
55187
55188         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Use AS_IF, not AS_IFELSE,
55189         for autoconf-2.49c.
55190         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Likewise.
55191
55192 2001-01-16  Jim Meyering  <meyering@lucent.com>
55193
55194         * lib/basename.c: Include <stdio.h>, needed by assert on SunOS 4.
55195         From Bruno Haible.
55196
55197 2001-01-14  Jim Meyering  <meyering@lucent.com>
55198
55199         * m4/rename.m4: Use temporary directories named conftestdir{,2}, not
55200         foo and bar.  Create conftestdir/ in the script, not in the C code.
55201         Remove directories in the script, not in the C code.
55202         Remove conftestdir{,2} before trying to create the directory.
55203         Make the entire configure script fail if the mkdir fails.
55204
55205 2001-01-14  Jim Meyering  <meyering@lucent.com>
55206
55207         * lib/rename.c: New file.  From Volker Borchert.
55208         Include stdlib.h, string.h or strings.h, and xalloc.h.
55209         Use strip_trailing_slashes rather than open-coding it.
55210
55211 2001-01-03  Paul Eggert  <eggert@twinsun.com>
55212
55213         * lib/strftime.c: Sync with glibc time/strftime.c 1.81.
55214
55215 2001-01-03  Jim Meyering  <meyering@lucent.com>
55216
55217         * lib/unicodeio.c (print_unicode_char): Remove `const' from declaration
55218         of local `inptr' to avoid warning with some system declarations of
55219         iconv.
55220
55221 2001-01-02  Volker Borchert  <bt@teknon.de>
55222
55223         * m4/rename.m4: New file.
55224         * m4/jm-macros.m4 (jm_MACROS): Require vb_FUNC_RENAME.
55225
55226 2001-01-01  Jim Meyering  <meyering@lucent.com>
55227
55228         * m4/prereq.m4 (jm_PREREQ_READUTMP): Include utmp.h (if available),
55229         even on systems with utmpx.h.  It's necessary for the declaration of
55230         utmp's ut_user member.  Reported by Andreas Jaeger.
55231
55232         * m4/check-decl.m4 (jm_CHECK_DECLS): Include grp.h and pwd.h if
55233         available. They are required for the declarations of getgrgid and
55234         getpwuid resp.
55235         (_jm_DECL_HEADERS): Check for grp.h and pwd.h.
55236         Reported by Andreas Jaeger.
55237
55238 2001-01-01  Alexandre Duret-Lutz  <duret_g@epita.fr>
55239
55240         * m4/libintl.m4 (AM_GNU_GETTEXT): Define MKINSTALLDIRS by
55241         expanding the value of $ac_aux_dir, as in AM_MISSING_HAS_RUN,
55242         so `make install' also works in VPATH builds.
55243
55244 2000-12-31  Alexandre Duret-Lutz  <duret_g@epita.fr>
55245
55246         * m4/libintl.m4 (AM_WITH_NLS): When using AC_CONFIG_AUX_DIR,
55247         prepend $(top_srcdir) to the value of MKINSTALLDIRS so that it
55248         can be used in subdirectories.
55249
55250 2000-12-29  Paul Eggert  <eggert@twinsun.com>
55251
55252         * lib/modechange.c: Do not assume that mode_t uses the
55253         traditional octal encoding.  E.g. "chmod 1 FOO" should set
55254         the other-execute bit of FOO even if S_IXOTH != 1.
55255
55256         (SUID, SGID, SVTX, RUSR, WUSR, XUSR, RGRP, WGRP, XGRP, ROTH,
55257         WOTH, XOTH, ALLM): New macros.
55258         (S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IWUSR, S_IXUSR,
55259          S_IRGRP, S_IWGRP, S_IXGRP, S_IROTH, S_IWOTH, S_IXOTH):
55260         Use them.
55261         (S_ISGID): Fix typo; it was defaulting to the same value as S_ISUID.
55262         (S_IRWXU, S_IRWXG, S_IRWXO): Specify defaults in terms of the above.
55263         (mode_compile):
55264         No need to use uintmax_t; unsigned long is long enough.
55265         Don't bother to get suffix since we don't use it.
55266
55267 2000-12-26  Jim Meyering  <meyering@lucent.com>
55268
55269         * m4/dos.m4 (jm_AC_DOS): Rewrite (though it's still a stub) to work
55270         better with autoheader.
55271
55272 2000-12-24  Jim Meyering  <meyering@lucent.com>
55273
55274         * lib/hash.c (is_prime): Return explicit boolean values.
55275         (hash_get_first): Return NULL to appease Irix5.6's 89.
55276         Reported by Nelson Beebe.
55277
55278 2000-12-19  Bruno Haible  <haible@clisp.cons.org>
55279
55280         * lib/localcharset.c (locale_charset): Add support for Win32.
55281
55282 2000-12-18  Paul Eggert  <eggert@twinsun.com>
55283
55284         * lib/physmem.h, lib/physmem.c: New files.
55285
55286         * lib/Makefile.am (libfetish_a_SOURCES): Add physmem.c.
55287         (noinst_HEADERS): Add physmem.h.
55288
55289         * lib/xstrtol.c (__xstrtol): Add undocumented suffixes 'g' and
55290         't' for compatibility with Solaris 8 sort.
55291
55292 2000-12-18  Bruno Haible  <haible@clisp.cons.org>
55293
55294         * lib/config.charset: Add support for BeOS.
55295
55296 2000-12-17  Jim Meyering  <meyering@lucent.com>
55297
55298         * m4/dos.m4 (jm_AC_DOS): New file and macro.
55299         * m4/jm-macros.m4 (jm_MACROS): Require jm_AC_DOS.
55300
55301 2000-12-16  Jim Meyering  <meyering@lucent.com>
55302
55303         This bug had a serious impact on chown: `chown N:M FILE' (for integer
55304         N and M) would have treated it like `chown N:N FILE'.
55305
55306         * lib/userspec.c (parse_user_spec): Fix typo: s/u/g/.
55307
55308 2000-12-16  Jim Meyering  <meyering@lucent.com>
55309
55310         * lib/getusershell.c [!SHELLS_FILE && __DJGPP__]: Define
55311         SHELLS_FILE to a file name that's useful on djgpp systems.
55312         Include stdlib.h.
55313         (ADDITIONAL_DEFAULT_SHELLS): Define.
55314         (default_shells): Prepend ADDITIONAL_DEFAULT_SHELLS.
55315         Based mostly on a patch from Prashant TR.
55316
55317 2000-12-16  Bruno Haible  <haible@clisp.cons.org>
55318
55319         * lib/config.charset: Add ISO-8859-3, BIG5HKSCS, GB18030, JOHAB,
55320         VISCII, CP874, CP949, CP950, CP1250, CP1253, CP1254, CP1255, CP1256,
55321         CP1257 to the list of canonical encodings. Rename EUC-CN to GB2312.
55322
55323 2000-12-08  Andreas Schwab  <schwab@suse.de>
55324
55325         * lib/mbswidth.c (mbsnwidth): Don't loop endlessly when called with an
55326         invalid mulitbyte sequence and with the MBSW_ACCEPT_INVALID flag set.
55327
55328 2000-12-07  Jim Meyering  <meyering@lucent.com>
55329
55330         * lib/stripslash.c (ISSLASH): Define.
55331         (strip_trailing_slashes): Use ISSLASH rather than comparing against
55332         `/'.
55333         From Prashant TR.
55334
55335         * lib/dirname.c (FILESYSTEM_PREFIX_LEN): Define.
55336         (dir_name_r): Declare this function as static.
55337         [BACKSLASH_IS_PATH_SEPARATOR]: Fix a bug that'd
55338         manifest itself on a name containing a mix of slashes and
55339         backslashes.
55340         Make this function work with names starting with a DOS-style
55341         drive letter and colon prefix.
55342         (dir_name): Append `.' if necessary.
55343         Based mostly on patches from Prashant TR and Eli Zaretskii.
55344
55345         * lib/dirname.h (dir_name_r): Remove prototype.
55346
55347 2000-12-06  Paul Eggert  <eggert@twinsun.com>
55348
55349         * m4/off_t-format.m4: Remove this file.
55350         * m4/jm-macros.m4 (jm_MACROS): Remove jm_SYS_OFF_T_PRINTF_FORMAT.
55351
55352 2000-12-06  Jim Meyering  <meyering@lucent.com>
55353
55354         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): If we need the
55355         replacement strtoull, we may well need the replacement strtoul, too.
55356         Check for declarations of strtoul and strtoull.
55357         Check for strtol.  Mainly as a cue to cause automake to include
55358         strtol.c -- that file is included by each of strtoul.c and strtoull.c.
55359         Check for limits.h -- strtol.c needs it.
55360
55361 2000-12-05  Jim Meyering  <meyering@lucent.com>
55362
55363         * lib/dirname.c (dir_name_r): Add `const' in a few local declarations.
55364
55365 2000-12-04  Jim Meyering  <meyering@lucent.com>
55366
55367         * lib/path-concat.c: [!HAVE_DECL_MALLOC]: Declare malloc.
55368         Also include memory.h, stdlib.h, unistd.h if appropriate.
55369         Reported by Andreas Jaeger (conflicting declaration of malloc).
55370
55371 2000-12-02  Jim Meyering  <meyering@lucent.com>
55372
55373         * m4/off_t-format.m4 (OFF_T_PRINTF_FORMAT_STRING): New file/macro.
55374         * m4/jm-macros.m4 (jm_MACROS): require it.
55375
55376 2000-12-02  Jim Meyering  <meyering@lucent.com>
55377
55378         * lib/closeout.h: Make idempotent, to avoid some obscure warnings.
55379
55380 2000-12-01  Paul Eggert  <eggert@twinsun.com>
55381
55382         * lib/memrchr.c: Include <config.h> before any system include file.
55383
55384 2000-11-30  Jim Meyering  <meyering@lucent.com>
55385
55386         * m4/jm-macros.m4 (jm_MACROS): Check for stdint.h.
55387
55388 2000-11-30  Jim Meyering  <meyering@lucent.com>
55389
55390         * m4/getloadavg.m4: s/ifval/m4_ifval/ to accommodate new autoconf.
55391
55392 2000-11-29  Paul Eggert  <eggert@twinsun.com>
55393
55394         * lib/dirname.c (dir_name_r): Fix typo: int -> size_t.
55395
55396 2000-11-26  Jim Meyering  <meyering@lucent.com>
55397
55398         * lib/memcoll.c: Include sys/types.h.  From Werner Almesberger.
55399
55400 2000-11-22  Paul Eggert  <eggert@twinsun.com>
55401
55402         * lib/strftime.c (my_strftime): Do not invoke mbrlen with a
55403         size of (size_t) -1; it's not portable.
55404
55405 2000-11-17  Jim Meyering  <meyering@lucent.com>
55406
55407         * lib/strstr.c: Update from GNU libc.
55408
55409 2000-11-17  Akim Demaille  <akim@epita.fr>
55410
55411         * lib/obstack.h: Formatting changes.
55412         (obstack_grow, obstack_grow0): Don't cast WHERE at all: that would
55413         prevent type checking.
55414         (obstack_ptr_grow, obstack_ptr_grow_fast): When assigning, don't
55415         cast the value to (void *): assigning a `foo *' to a `void *'
55416         variable is valid.
55417         (obstack_int_grow, obstack_int_grow_fast): Don't cast AINT to int.
55418
55419 2000-11-16  Jim Meyering  <meyering@lucent.com>
55420
55421         * lib/strverscmp.c: Incorporate weak-alias-related changes from glibc.
55422
55423 2000-11-11  Jim Meyering  <meyering@lucent.com>
55424
55425         * lib/error.c: Add a couple #includes, merging from GNU libc version.
55426
55427 2000-11-10  Jim Meyering  <meyering@lucent.com>
55428
55429         * lib/obstack.h: Update from GNU libc.
55430         * lib/obstack.c: Likewise.
55431
55432 2000-11-08  Bruno Haible  <haible@clisp.cons.org>
55433
55434         * m4/jm-macros.m4 (jm_MACROS): Add test for wcrtomb.
55435
55436 2000-11-06  Paul Eggert  <eggert@twinsun.com>
55437
55438         * lib/getusershell.c (setusershell): Use rewind rather than
55439         fseek/fseeko, to avoid configuration hassles with fseeko.
55440         Don't bother opening SHELLS_FILE if shellstream is NULL;
55441         it's not necessary.
55442
55443 2000-11-05  Jim Meyering  <meyering@lucent.com>
55444
55445         * lib/makepath.h (make_dir): Declare.
55446         * lib/makepath.c (make_dir): Remove `static' attribute.
55447         Tweak a comment.
55448
55449 2000-11-04  Jim Meyering  <meyering@lucent.com>
55450
55451         * m4/regex.m4: Use the `m4_' prefix on `syscmd' and `m4_sysval'.
55452
55453 2000-11-04  Alexandre Duret-Lutz  <duret_g@epita.fr>
55454
55455         * lib/hash.c (hash_get_next): Fix a thinko:  when ENTRY is the
55456         last one in a bucket, advance to the next bucket.
55457
55458 2000-11-02  Vesselin Atanasov  <vesselin@bgnet.bg>
55459
55460         * lib/fnmatch.c: Do not comment out all the code if we are using
55461         the GNU C library, because in some cases we are replacing buggy
55462         code in the GNU C library itself.
55463
55464 2000-10-30  Stefan Monnier  <monnier@cs.yale.edu>
55465
55466         * regex.c (re_iswctype, re_wctype_to_bit): Fix braino.
55467         (regex_compile): Catch bogus \(\1\).
55468
55469 2000-10-30  Paul Eggert  <eggert@twinsun.com>
55470
55471         * lib/fnmatch.c (FOLD): Do not assume that characters are unsigned.
55472         (fnmatch): Fix some FNM_FILE_NAME and FNM_LEADING_DIR bugs,
55473         e.g. fnmatch("d*/*1", "d/s/1", FNM_FILE_NAME) incorrectly yielded zero.
55474
55475 2000-10-30  Paul Eggert  <eggert@twinsun.com>
55476
55477         * lib/error.h, getline.h, modechange.h:
55478         Remove "2000" from Copyright line, as the file hasn't been
55479         changed this year other than in the copyright notice.
55480
55481         * lib/xalloc.h: Add "2000" to Copyright line, as this file
55482         was changed this year.
55483
55484 2000-10-29  Jim Meyering  <meyering@lucent.com>
55485
55486         * m4/fsusage.m4: s/AC_SHELL_IFELSE/AS_IFELSE/ to match autoconf
55487         renaming.
55488         * m4/ls-mntd-fs.m4: Likewise
55489
55490 2000-10-29  Jim Meyering  <meyering@lucent.com>
55491
55492         * lib/xstat.in: Fix grammar in comment.
55493
55494 2000-10-29  Greg Louis  <glouis@dynamicro.on.ca>
55495
55496         * lib/regex.h (__restrict_arr): Move definition out of #ifndef block.
55497         Required because egcs-2.91.66 (aka 1.1.2) defines __restrict, but
55498         doesn't define __restrict_arr.
55499
55500 2000-10-28  Jim Meyering  <meyering@lucent.com>
55501
55502         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_MEMCHR.
55503         (jm_PREREQ_MEMCHR): New function.
55504
55505 2000-10-28  Jim Meyering  <meyering@lucent.com>
55506
55507         * lib/memchr.c: Update from libc.
55508         Adjust for portability:
55509         [HAVE_STDLIB_H]: Include stdlib.h.
55510         [HAVE_BP_SYM_H || _LIBC]: Guard inclusion of bp-sym.h.
55511         Undef __memchr, too.
55512         [!weak_alias]: Define __memchr to memchr.
55513
55514         * lib/regex.c: Update from libc.
55515         * lib/regex.h: Likewise.
55516         * lib/getopt1.c: Likewise.
55517         * lib/memcmp.c: Likewise.
55518
55519         * lib/getusershell.c (setusershell) [HAVE_FSEEKO]: Use fseeko.
55520         Avoid using fseek, when possible -- it's broken by design.
55521         Patch by Ulrich Drepper.
55522
55523 2000-10-27  Stefan Monnier  <monnier@cs.yale.edu>
55524
55525         * regex.c (POP_FAILURE_REG_OR_COUNT, re_match_2_internal)
55526         (re_match_2_internal, re_match_2_internal, re_match_2_internal):
55527         Giving in to popular pressure to shut up the compiler with casts.
55528
55529 2000-10-26  Jim Meyering  <meyering@lucent.com>
55530
55531         * lib/strftime.c: Update from libc.
55532
55533 2000-10-25  Stefan Monnier  <monnier@cs.yale.edu>
55534
55535         * regex.c: More `unsigned char' -> `re_char' changes.
55536         Also change several `int' into `re_wchar_t'.
55537         (PATTERN_STACK_EMPTY, PUSH_PATTERN_OP, POP_PATTERN_OP): Remove.
55538         (PUSH_FAILURE_POINTER): Don't cast any more.
55539         (POP_FAILURE_REG_OR_COUNT): Remove the cast that strips `const'.
55540         We want GCC to complain, since this piece of code makes
55541         re_match non-reentrant, which *should* be fixed.
55542         (GET_BUFFER_SPACE): Use size_t rather than unsigned long.
55543         (EXTEND_BUFFER): Use RETALLOC.
55544         (SET_LIST_BIT): Don't cast.
55545         (re_wchar_t): New type.
55546         (re_iswctype, re_wctype_to_bit): Make it crystal clear to GCC
55547         that those two functions will always properly return.
55548         (IMMEDIATE_QUIT_CHECK): Cast to void.
55549         (analyse_first): Use recursion rather than an explicit stack.
55550         (re_compile_fastmap): Can't fail anymore.
55551         (re_search_2): Don't check re_compile_fastmap for failure.
55552         (PUSH_NUMBER): Renamed from PUSH_FAILURE_COUNT.
55553         Now also sets the new value (passed in a new argument).
55554         (re_match_2_internal): Use it.
55555         Also, use a new var `reg' of type size_t when looping through regs
55556         rather than reuse the inappropriate `mcnt'.
55557
55558 2000-10-25  Jim Meyering  <meyering@lucent.com>
55559
55560         * lib/obstack.c: Update from libc.
55561
55562 2000-10-24  Kenichi Handa  <handa@etl.go.jp>
55563
55564         * regex.c (regex_compile): Change the way of handling a range from
55565         a char less than 256 to a char not less than 256.
55566
55567 2000-10-24  Andrew Innes  <andrewi@gnu.org>
55568
55569         * regex.c (IMMEDIATE_QUIT_CHECK): New macro, which does QUIT on
55570         NT-Emacs only.
55571         (re_match_2_internal): Use IMMEDIATE_QUIT_CHECK instead of QUIT,
55572         so that re_search functions only quit when callers expect them to.
55573
55574 2000-10-23  Jim Meyering  <meyering@lucent.com>
55575
55576         * lib/hard-locale.c (hard_locale): Revert last change -- it was simply
55577         wrong.  That set_locale call must not have any side effects.
55578         From Paul Eggert.
55579
55580 2000-10-22  Jim Meyering  <meyering@lucent.com>
55581
55582         * lib/md5.c (md5_process_block) [OP]: Use `rol', not CYCLIC.
55583         [CYCLIC]: Remove now-unused definition.
55584
55585         * lib/save-cwd.c (O_DIRECTORY): Define, if needed.
55586         (save_cwd) [HAVE_FCHDIR]: Use O_DIRECTORY when opening ".".
55587         Suggestion from Ulrich Drepper.
55588
55589 2000-10-21  Jim Meyering  <meyering@lucent.com>
55590
55591         * m4/check-decl.m4 (jm_CHECK_DECLS): Also check for memrchr.
55592         * m4/prereq.m4 (jm_PREREQ_DIRNAME): New macro.
55593         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add memrchr.
55594
55595 2000-10-21  Jim Meyering  <meyering@lucent.com>
55596
55597         * lib/dirname.c (memrchr): Declare if necessary.
55598         (dir_name): Remove the restriction that there be no
55599         trailing slashes.  Now, this code skips past them, effectively
55600         ignoring them.
55601         [TEST_DIRNAME] (main): New unit tests.
55602
55603         * lib/memrchr.c: New file from GNU libc.
55604         Undef __memrchr, too.
55605         [!weak_alias]: Define __memrchr to memrchr.
55606         Guard weak_alias use with `#ifdef weak_alias'.
55607
55608 2000-10-21  Jim Meyering  <meyering@lucent.com>
55609
55610         * lib/dirname.c (dir_name_r): New function, factored out of dir_name.
55611         (dir_name): Use dir_name_r.
55612         * lib/dirname.h (dir_name_r): Declare it.
55613
55614 2000-10-17  Jim Meyering  <meyering@lucent.com>
55615
55616         * lib/quote.h (PARAMS): Define and use.
55617         Reported by Akim Demaille.
55618
55619         * lib/getopt.c: Update from libc.
55620
55621 2000-10-16  Jim Meyering  <meyering@lucent.com>
55622
55623         * lib/hard-locale.c (hard_locale): Use "", not 0 as 2nd arg to
55624         setlocale.
55625         From Jan Fedak.
55626
55627 2000-10-15  Stefan Monnier  <monnier@cs.yale.edu>
55628
55629         * regex.c (WIDE_CHAR_SUPPORT): Define if _LIBC as well.
55630
55631 2000-09-25  Jim Meyering  <meyering@lucent.com>
55632
55633         * lib/md5.h (rol): Define (from GnuPG).
55634
55635         * lib/sha.c: Give credit (GnuPG) where due.
55636         (M): Use rol rather than open-coding it.
55637         Add a FIXME comment.
55638
55639 2000-09-21  Jim Meyering  <meyering@lucent.com>
55640
55641         * lib/userspec.c (parse_user_spec): Remove debugging printf I'd added.
55642         Reported by Michael Stone.
55643
55644 2000-09-20  Jim Meyering  <meyering@lucent.com>
55645
55646         * lib/Makefile.am (libfetish_a_SOURCES): Add sha.c.
55647         (noinst_HEADERS): Add sha.h.
55648         Based on code from Scott G. Miller and from GnuPG.
55649
55650 2000-09-18  Jim Meyering  <meyering@lucent.com>
55651
55652         * m4/getloadavg.m4 (AC_FUNC_GETLOADAVG): Restore the initial value of
55653         LIBS. Otherwise, everyone ends up linking with -lelf for some
55654         configurations.
55655         Reported by Mike Stone.
55656
55657 2000-09-15  Jim Meyering  <meyering@lucent.com>
55658
55659         * lib/regex.c: Update from libc.
55660
55661 2000-09-10  Jim Meyering  <meyering@lucent.com>
55662
55663         * lib/getopt.c (_getopt_internal): Update from glibc.
55664
55665 2000-09-09  Jim Meyering  <meyering@lucent.com>
55666
55667         * lib/quotearg.c: Rename ISASCII to IN_CTYPE_DOMAIN, so people don't
55668         think it should be used as a general replacement for isascii.
55669         * lib/fnmatch.c: Likewise.
55670         * lib/mbswidth.c: Likewise
55671         * lib/regex.c: Likewise.
55672
55673         Don't use atoi.
55674         * lib/userspec.c: Include sys/param.h and limits.h.
55675         Include xstrtol.h.
55676         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Define.
55677         (UID_T_MAX, GID_T_MAX, MAXUID, MAXGID): Define.
55678         (parse_user_spec): Use xstrtoul, not atoi when converting numeric
55679         UID, GID.  Check range.
55680
55681 2000-09-06  Jim Meyering  <meyering@lucent.com>
55682
55683         * lib/getopt.c (_getopt_internal): Update from glibc.
55684
55685 2000-08-30  Jim Meyering  <meyering@lucent.com>
55686
55687         * lib/strftime.c: Merge in changes from GNU libc.
55688
55689 2000-08-26  Jim Meyering  <meyering@lucent.com>
55690
55691         * m4/jm-macros.m4: Use jm_FUNC_FPENDING.
55692         * m4/fpending.m4: New file.
55693
55694 2000-08-26  Jim Meyering  <meyering@lucent.com>
55695
55696         * lib/closeout.c: Include "__fpending.h".
55697         (close_stdout_status): Return right away if there's nothing to flush.
55698
55699         * lib/Makefile.am (noinst_HEADERS): Add __fpending.h.
55700         * lib/__fpending.c: New file.
55701         * lib/__fpending.h: New file.
55702
55703 2000-08-20  Jim Meyering  <meyering@lucent.com>
55704
55705         * m4/check-decl.m4: Include utmp.h `#if HAVE_UTMP_H', rather than
55706         `#if !HAVE_UTMPX_H'.  The latter would lose on systems with neither
55707         utmp.h nor utmpx.h.  Reported by Eli Zaretskii.
55708
55709 2000-08-11  J. David Anglin  <dave@hiauly1.hia.nrc.ca>
55710
55711         Improve fileutils installation on systems where running
55712         programs (like install) can't be unlinked.
55713         * m4/unlink-busy.m4 (jm_FUNC_UNLINK_BUSY_TEXT): New file/macro.
55714         * m4/jm-macros.m4: Use jm_FUNC_UNLINK_BUSY_TEXT.
55715
55716 2000-08-07  Paul Eggert  <eggert@twinsun.com>
55717
55718         Standardize on "memory exhausted" instead of "Memory exhausted"
55719         or "virtual memory exhausted".
55720         * lib/obstack.c (print_and_abort): Use "memory exhausted", not
55721         "virtual memory exhausted".
55722         * lib/same.c (same_name): Invoke xalloc_die instead of printing
55723         our own message.
55724         * lib/userspec.c (parse_user_spec): Likewise.
55725         * lib/bumpalloc.h: comment fix
55726         * lib/same.c, userspec.c: Include xalloc.h.
55727
55728         * lib/xalloc.h (xalloc_msg_memory_exhausted): Now char const[],
55729         not char *const and pointing to a constant array.
55730         * lib/xmalloc.c (xalloc_msg_memory_exhausted): Likewise.
55731         (xrealloc): Comment fix.
55732
55733         * lib/userspec.c (parse_user_spec):
55734         Don't translate a message until just before returning,
55735         to avoid unnecessary translation.
55736
55737 2000-08-07  Jim Meyering  <meyering@lucent.com>
55738
55739         * lib/addext.c, argmatch.c, argmatch.h, backupfile.h, bumpalloc.h,
55740         chown.c, diacrit.h, dirname.h, dup2.c, exclude.h, fileblocks.c,
55741         fnmatch.c, fnmatch.h, fsusage.c, fsusage.h, getdate.h,
55742         getgroups.c, gethostname.c, getopt.h, group-member.c,
55743         hard-locale.c, hash.h, isdir.c, lchown.c, linebuffer.c,
55744         linebuffer.h, long-options.h, malloc.c, md5.c, md5.h, memchr.c,
55745         memcmp.c, memcoll.c, memset.c, mktime.c, modechange.h, obstack.h,
55746         pathmax.h, realloc.c, rmdir.c, safe-read.c, save-cwd.c, stime.c,
55747         stpcpy.c, strcasecmp.c, strcspn.c, strdup.c, stripslash.c,
55748         strstr.c, strtod.c, strtol.c, strtoul.c, strtoull.c, strtoumax.c,
55749         utime.c, version-etc.h, xalloc.h, xstrdup.c, xstrtoumax.c,
55750         yesno.c: Back out Copyright date changes for each file with no change
55751         this year.  This eases coordination with other programs using the same
55752         source code modules.  From Paul Eggert.
55753
55754 2000-08-06  Paul Eggert  <eggert@twinsun.com>
55755
55756         * m4/mbstate_t.m4 (AC_MBSTATE_T): Define mbstate_t to be int,
55757         not char, for compatibility with glibc 2.1.3 strftime.c.
55758
55759 2000-08-03  Greg McGary  <greg@mcgary.org>
55760
55761         * lib/regex.c (SET_HIGH_BOUND, MOVE_BUFFER_POINTER,
55762         ELSE_EXTEND_BUFFER_HIGH_BOUND): New macros.
55763         (EXTEND_BUFFER): Use them.
55764
55765 2000-08-01  Jim Meyering  <meyering@lucent.com>
55766
55767         * lib/dirname.c (ISSLASH): Define.
55768         (BACKSLASH_IS_PATH_SEPARATOR): Define.
55769         (dir_name) [BACKSLASH_IS_PATH_SEPARATOR]: Handle the case in which
55770         both `\' and `/' may be use as path separators.
55771         Based on a patch from Prashant TR.
55772
55773 2000-07-31  Paul Eggert  <eggert@twinsun.com>
55774
55775         * lib/quotearg.c (quotearg_n_options): Don't make the initial
55776         slot vector a constant, since it might get modified.
55777
55778 2000-07-31  Jim Meyering  <meyering@lucent.com>
55779
55780         * lib/xmalloc.c: Use `virtual memory exhausted', not
55781         `Memory exhausted'.
55782         * lib/obstack.c (print_and_abort): Likewise.
55783
55784 2000-07-30  Paul Eggert  <eggert@twinsun.com>
55785
55786         * lib/quotearg.c (quotearg_n_options): Preallocate a slot 0
55787         buffer, so that the caller can always quote one small
55788         component of a "memory exhausted" message in slot 0.
55789         From a suggestion by Jim Meyering.
55790
55791 2000-07-30  Jim Meyering  <meyering@lucent.com>
55792
55793         * lib/makepath.c (make_path): Quote the other instance, too.
55794
55795         * lib/quotearg.c (N_STATIC_SLOTVECS): Define.
55796         (STATIC_BUF_SIZE): Define.
55797         (quotearg_n_options): Use only statically allocated storage when
55798         N < N_STATIC_SLOTVECS and the length of the quoted result is smaller
55799         than STATIC_BUF_SIZE.
55800
55801 2000-07-29  Jim Meyering  <meyering@lucent.com>
55802
55803         * lib/diacrit.c (diacrit_diac): Use __MSDOS__ in favor of MSDOS.
55804         * lib/dirname.c (dir_name): Likewise.
55805
55806         * lib/basename.c (base_name): Use ISSLASH rather than comparing against
55807         `/'.
55808
55809         * lib/dirname.c (dir_name) [MSDOS]: Declare `lim' to be const.
55810         (dir_name): Assert that there are no trailing slashes.
55811
55812 2000-07-29  Bruno Haible  <haible@clisp.cons.org>
55813
55814         * lib/mbswidth.h (mbswidth): Add a flags argument.
55815         (mbswidth): New declaration.
55816         (MBSW_ACCEPT_INVALID, MBSW_ACCEPT_UNPRINTABLE): New macros.
55817         * lib/mbswidth.c (mbswidth): Add a flags argument.
55818         (mbsnwidth): New function.
55819
55820 2000-07-24  Jim Meyering  <meyering@lucent.com>
55821
55822         * lib/mbswidth.c: Remove useless #else.  From Bruno Haible.
55823
55824 2000-07-23  Paul Eggert  <eggert@twinsun.com>
55825
55826         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH): Check for wcwidth declaration.
55827
55828 2000-07-23  Paul Eggert  <eggert@twinsun.com>
55829
55830         * lib/quotearg.c: Streamline by invoking multibyte code only if needed.
55831         <wchar.h>: Include only if HAVE_MBRTOWC && 1 < MB_LEN_MAX.
55832         (MB_CUR_MAX): Redefine to 1 if ! (HAVE_MBRTOWC && 1 < MB_LEN_MAX).
55833         (quotearg_buffer_restyled): If a unibyte locale, don't bother to
55834         invoke multibyte primitives.
55835
55836 2000-07-23  Paul Eggert  <eggert@twinsun.com>
55837
55838         * lib/quotearg.c:
55839         Include <wchar.h> even if ! (HAVE_MBRTOWC && 1 < MB_LEN_MAX),
55840         so that mbstate_t is always defined.
55841
55842         Do not inspect MB_LEN_MAX, since it's incorrectly defined to
55843         be 1 in at least one GCC installation, and this configuration
55844         error is likely to be common.  Ignoring MB_LEN_MAX hurts
55845         performance on hosts that have mbrtowc but have only unibyte
55846         locales, but I assume these hosts are rare.
55847
55848 2000-07-23  Paul Eggert  <eggert@twinsun.com>
55849
55850         * lib/mbswidth.c (_XOPEN_SOURCE):
55851         Don't define; this causes problems on Solaris 7.
55852         (wcwidth) [!HAVE_DECL_WCWIDTH]: Declare.
55853
55854 2000-07-23  Jim Meyering  <meyering@lucent.com>
55855
55856         * m4/check-decl.m4 (jm_CHECK_DECLS): Check for declarations of these,
55857         too: getgrgid, getpwuid, getuid.
55858
55859 2000-07-23  Jim Meyering  <meyering@lucent.com>
55860
55861         * lib/basename.c (base_name): Add an assertion.
55862
55863 2000-07-23  Bruno Haible  <haible@clisp.cons.org>
55864
55865         * lib/quotearg.c: When the system forces us to redefine mbstate_t,
55866         shadow its mbsinit function.
55867
55868 2000-07-17  Bruno Haible  <haible@clisp.cons.org>
55869
55870         * lib/mbswidth.h: New file.
55871         * lib/mbswidth.c: New file.
55872         * lib/Makefile.am (libfetish_a_SOURCES): Add mbswidth.c.
55873         (noinst_HEADERS): Add mbswidth.h.
55874
55875 2000-07-17  Bruno Haible  <haible@clisp.cons.org>
55876
55877         * lib/config.charset: Add support for FreeBSD. Improve support for
55878         HP-UX and IRIX 6.
55879
55880 2000-07-16  Bruno Haible  <haible@clisp.cons.org>
55881
55882         * m4/mbswidth.m4: New file.
55883         * m4/prereq.m4 (jm_PREREQ): Call jm_PREREQ_MBSWIDTH.
55884
55885 2000-07-15  Jim Meyering  <meyering@lucent.com>
55886
55887         * lib/makepath.c: Include quote.h.
55888         (make_path): Convert "`%s'" in format strings to "%s", and wrap each
55889         corresponding argument in a `quote (...)' call.
55890         Give better diagnostics.
55891
55892         * lib/Makefile.am (libfetish_a_SOURCES): Add quote.c.
55893         (noinst_HEADERS): Add quote.h.
55894
55895         * lib/quote.c (quote, quote_n): New file.  Two functions taken verbatim
55896         from tar's src/misc.c.
55897         * lib/quote.h: New file.  Prototypes for same.
55898
55899 2000-07-14  Paul Eggert  <eggert@twinsun.com>
55900
55901         From a suggestion by Bruno Haible.
55902         * lib/quotearg.c (mbrtowc): Do not use HAVE_WCHAR_H in the definition.
55903         Use defined mbstate_t, not HAVE_MBSTATE_T_OBJECT,
55904         to decide whether to define the BeOS workaround macro;
55905         this adjusts to the change to AC_MBSTATE_T.
55906
55907 2000-07-14  Jim Meyering  <meyering@lucent.com>
55908
55909         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Require
55910         jm_AC_TYPE_UINTMAX_T.
55911
55912 2000-07-13  Paul Eggert  <eggert@twinsun.com>
55913
55914         * lib/quotearg.h (enum quoting style): New enum clocale_quoting_style.
55915
55916         * lib/quotearg.c (quoting_style_args, quoting_style_vals,
55917         quotearg_buffer_restyled): Add support for
55918         clocale_quoting_style.  Undo previous change to
55919         locale_quoting_style behavior, and undo the "{LEFT QUOTATION MARK}"
55920         and "{RIGHT QUOTATION MARK}" msgids.
55921
55922 2000-07-10  Paul Eggert  <eggert@twinsun.com>
55923
55924         From a suggestion by Bruno Haible.
55925         * m4/mbstate_t.m4 (AC_MBSTATE_T):
55926         Renamed from AC_MBSTATE_T_OBJECT.  All uses changed.
55927         Change from a two-part test, which defines both HAVE_MBSTATE_T_OBJECT
55928         and mbstate_t, to a single-part test that simply defines mbstate_t.
55929         * m4/prereq.m4 (jm_PREREQ_QUOTEARG):
55930         s/AC_MBSTATE_T_OBJECT/AC_MBSTATE_T/.
55931
55932 2000-07-10  Jim Meyering  <meyering@lucent.com>
55933
55934         * m4/strerror_r.m4: Mirror the correction made in autoconf.
55935
55936         * m4/gnu-source.m4: Output to confdefs.h directly.
55937         Suggestion from Akim Demaille.
55938
55939 2000-07-09  Paul Eggert  <eggert@twinsun.com>
55940
55941         The old behavior of quoting `like this' doesn't look good with
55942         newer, ISO-style fonts.  See:
55943         http://www.cl.cam.ac.uk/~mgk25/ucs/quotes.html
55944
55945         Instead, quote "like this" by default.  Let the translator
55946         tailor the locale-specific quoting behavior by providing
55947         translations for {LEFT QUOTATION MARK} and {RIGHT QUOTATION MARK}.
55948
55949         * lib/quotearg.c (N_): New macro.
55950         (gettext_default): New function.
55951         (quotearg_buffer_restyled): Use
55952         gettext_default ("{LEFT QUOTATION MARK}", "\"") for left quote, and
55953         gettext_default ("{RIGHT QUOTATION MARK}", "\"") for right quote.
55954
55955 2000-07-09  Jim Meyering  <meyering@lucent.com>
55956
55957         * m4/jm-macros.m4 (jm_MACROS): Add a test to see if -lm is required
55958         to link seq.  If so, set SEQ_LIBM to -lm.  From Bruno Haible.
55959
55960         * m4/gnu-source.m4 (AC__GNU_SOURCE): New file/macro.
55961         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require it.
55962
55963 2000-07-09  Jim Meyering  <meyering@lucent.com>
55964
55965         * lib/Most files: Update copyright dates to include 2000.
55966
55967 2000-07-08  Jim Meyering  <meyering@lucent.com>
55968
55969         * lib/xgethostname.c (ENAMETOOLONG): Define to an unlikely value
55970         if not defined.
55971         (xgethostname): Remove now-unnecessary #ifdef.
55972         Move declaration of `err' into loop where it's used.
55973
55974 2000-07-05  Paul Eggert  <eggert@twinsun.com>
55975         and Bruno Haible  <haible@clisp.cons.org>
55976
55977         * m4/mbstate_t.m4 (AC_MBSTATE_T_OBJECT): Test for mbstate_t
55978         only if the test for an object-type mbstate_t fails.  This
55979         prevents us from mistakenly reporting that mbstate_t is a
55980         system object type after we "#define mbstate_t int" to work
55981         around its lack.
55982
55983 2000-07-05  Paul Eggert  <eggert@twinsun.com>
55984         and Bruno Haible  <haible@clisp.cons.org>
55985
55986         * lib/quotearg.c (mbrtowc): Declare returned type, since BeOS doesn't.
55987
55988 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
55989
55990         * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Pass a reasonably large buffer
55991         to strerror_r.
55992         Include <ctype.h> for use of isalpha.
55993
55994 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
55995
55996         * lib/xgethostname.c (xgethostname): Protect against the SunOS 5.5 bug
55997         by allocating a larger buffer. Test the gethostname return value for
55998         being >= 0, not == 0, for BeOS.  Don't exhaust memory if gethostname
55999         returns an error and ENAMETOOLONG isn't defined.
56000
56001 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
56002
56003         * lib/quotearg.c (struct quoting_options): Simplify quote_these_too
56004         dimension.
56005
56006 2000-07-04  Jim Meyering  <meyering@lucent.com>
56007
56008         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Use plain old `echo' instead
56009         of the deprecated AC_CHECKING.
56010
56011 2000-07-04  Jim Meyering  <meyering@lucent.com>
56012
56013         * lib/strndup.c: [!HAVE_DECL_STRNLEN]: Declare strnlen.
56014         Reported by Bruno Haible.
56015
56016 2000-07-04  Jim Meyering  <meyering@lucent.com>
56017
56018         * lib/quotearg.c: Make inclusion of <wchar.h> independent of whether
56019         HAVE_MBRTOWC is set.  Required at least for irix-5.6, which
56020         lacks mbrtowc.
56021
56022 2000-07-03  Paul Eggert  <eggert@twinsun.com>
56023
56024         * m4/mbstate_t.m4 (AC_MBSTATE_T_OBJECT): Port to autoconf 2.13.
56025         Add AC_CHECK_HEADERS(stdlib.h), since we use HAVE_STDLIB_H.
56026
56027 2000-07-03  Paul Eggert  <eggert@twinsun.com>
56028         and Bruno Haible  <haible@clisp.cons.org>
56029
56030         * lib/quotearg.c (mbrtowc):
56031         Assign to *pwc, and return 1 only if result is nonzero.
56032         (iswprint): Use ISPRINT when substituting our own mbrtowc.
56033
56034 2000-07-03  Jim Meyering  <meyering@lucent.com>
56035
56036         * m4/check-decl.m4 (AC_CHECK_DECLS): Add strnlen.
56037
56038 2000-07-03  Jim Meyering  <meyering@lucent.com>
56039
56040         * lib/readutmp.h: [HAVE_UTMPX_H]: Include <utmp.h> if HAVE_UTMP_H.
56041         This is necessary to get a definition of e.g., UTMP_FILE on
56042         HP-UX 10.20.
56043         From Bob Proulx.
56044
56045 2000-07-02  Jim Meyering  <meyering@lucent.com>
56046
56047         * m4/mbstate_t.m4: Also define mbstate_t, if necessary.
56048
56049         * m4/chown.m4: Replace each use of AC_SUBST(LIBOBJS)/LIBOBJS=... with
56050         AC_LIBOBJ(function_name).
56051         * m4/chown.m4: Likewise.
56052         * m4/fnmatch.m4: Likewise.
56053         * m4/ftruncate.m4: Likewise.
56054         * m4/getgroups.m4: Likewise.
56055         * m4/getline.m4: Likewise.
56056         * m4/group-member.m4: Likewise.
56057         * m4/jm-macros.m4: Likewise.
56058         * m4/lstat.m4: Likewise.
56059         * m4/malloc.m4: Likewise.
56060         * m4/memcmp.m4: Likewise.
56061         * m4/nanosleep.m4: Likewise.
56062         * m4/putenv.m4: Likewise.
56063         * m4/realloc.m4: Likewise.
56064         * m4/regex.m4: Likewise.
56065         * m4/stat.m4: Likewise.
56066         * m4/strftime.m4: Likewise.
56067
56068 2000-07-02  Jim Meyering  <meyering@lucent.com>
56069
56070         * lib/quotearg.c (mbstate_t): Don't define here.
56071
56072 2000-07-02  Jim Meyering  <meyering@lucent.com>
56073
56074         * lib/nanosleep.c (SIGCONT): Define if not already defined.
56075
56076 2000-07-01  Jim Meyering  <meyering@lucent.com>
56077
56078         * m4/uptime.m4: Put double quotes around use of $cross_compiling.
56079
56080 2000-07-01  Jim Meyering  <meyering@lucent.com>
56081
56082         * m4/ls-mntd-fs.m4: Remove a `FIXME' comment and fix the associated
56083         problem.
56084
56085 2000-07-01  Bruno Haible  <haible@clisp.cons.org>
56086
56087         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Rename BeOS specific
56088         macro from MOUNTED_NEXT_DEV to MOUNTED_FS_STAT_DEV.
56089
56090 2000-07-01  Bruno Haible  <haible@clisp.cons.org>
56091
56092         * lib/mountlist.c: Use MOUNTED_FS_STAT_DEV instead of MOUNTED_NEXT_DEV,
56093         per change in ../m4/ls-mntd-fs.m4.
56094         (read_filesystem_list): Ignore symbolic links.
56095
56096 2000-06-29  Jim Meyering  <meyering@lucent.com>
56097
56098         * lib/same.c: Include <string.h> or <strings.h>, as appropriate,
56099         for declaration of strcmp.
56100
56101         * lib/long-options.c: Include <stdlib.h>, for declaration of exit.
56102
56103         * lib/mountlist.c (fsp_to_string) [HAVE_F_FSTYPENAME_IN_STATFS]:
56104         Avoid warning by casting result to `char *' to remove `const'.
56105
56106 2000-06-28  Jim Meyering  <meyering@lucent.com>
56107
56108         * m4/mbstate_t.m4: Use stdlib.h, not stdio.h.  The latter is not
56109         included by quotearg.c, for which we perform this test.  From
56110         Bruno Haible.
56111
56112 2000-06-27  Bruno Haible  <haible@clisp.cons.org>
56113
56114         * m4/check-decl.m4 (_jm_DECL_HEADERS): Check for utmp.h as well.
56115         * m4/prereq.m4 (jm_PREREQ_READUTMP): Likewise. If either <utmp.h> or
56116         <utmpx.h> exists, put readutmp.o into LIBOBJS.
56117
56118 2000-06-27  Bruno Haible  <haible@clisp.cons.org>
56119
56120         * lib/Makefile.am (libfetish_a_SOURCES): Remove readutmp.c.
56121
56122 2000-06-26  Paul Eggert  <eggert@twinsun.com>
56123
56124         savedir now sets errno on failure and invokes xmalloc to get memory.
56125         Fix a couple of other minor bugs while we're at it.
56126
56127         * lib/savedir.c (<unistd.h>): Do not include; there's no need.
56128         (NAMLEN): Remove macro.
56129         (malloc, realloc): Remove decls.
56130         (stpcpy): Likewise.
56131         ("xalloc.h"): Include.
56132         (NAME_SIZE_DEFAULT): New macro.
56133         (savedir): Use xmalloc / xrealloc to allocate memory.
56134         Use NAME_SIZE_DEFAULT if name_size is negative or overflows to zero.
56135         Skip "" directory entries.
56136         Use strlen to calculate directory entry length, since the old method
56137         is rarely used these days and isn't worth supporting.
56138         Don't use a pointer after freeing it.
56139         Check for integer overflow when calculating allocation size.
56140         Use memcpy to copy entries, instead of stpcpy.
56141         Set errno properly when returning NULL.
56142         Check for readdir error.
56143
56144 2000-06-26  Jim Meyering  <meyering@lucent.com>
56145
56146         * lib/posixtm.c [HAVE_STDLIB_H]: Include stdlib.h, for decl of abort.
56147
56148 2000-06-25  Jim Meyering  <meyering@lucent.com>
56149
56150         * m4/mbstate_t.m4: Include stdio.h before wchar.h to work around
56151         Linux header bug when _XOPEN_SOURCE is defined to 500.
56152
56153 2000-06-25  Bruno Haible  <haible@clisp.cons.org>
56154
56155         * lib/unicodeio.c (print_unicode_char): Work around ansi2knr
56156         deficiency.
56157
56158 2000-06-25  Bruno Haible  <haible@clisp.cons.org>
56159
56160         * lib/getusershell.c (xmalloc, xrealloc): Remove functions.
56161         Include xalloc.h.
56162         Don't include <stdlib.h>.  Don't declare malloc, realloc.
56163
56164 2000-06-24  Jim Meyering  <meyering@lucent.com>
56165
56166         * m4/strerror_r.m4: Revive this file -- to try out an experimental
56167         version of AC_FUNC_STRERROR_R that may work even on BeOS, a system
56168         for which strerror does return char*, but which lacks a conveniently
56169         accessible declaration of the function.  If the compile-test says
56170         strerror_r doesn't work, then resort to a `run'-test that works on
56171         BeOS and segfaults on DEC Unix.
56172
56173 2000-06-24  Jim Meyering  <meyering@lucent.com>
56174
56175         * lib/error.c [!HAVE_DECL_STRERROR_R]: Declare strerror_r.
56176
56177 2000-06-23  Paul Eggert  <eggert@twinsun.com>
56178
56179         * m4/mbstate_t.m4: New file, defining AC_MBSTATE_T_OBJECT.
56180         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Use it.  Add check for iswprint.
56181
56182 2000-06-23  Paul Eggert  <eggert@twinsun.com>
56183
56184         * lib/quotearg.c: Include <wctype.h> after <wchar.h>, for Solaris 2.5.
56185         (mbrtowc, mbstate_t): Define substitutes if
56186         HAVE_MBRTOWC && HAVE_WCHAR_H && !HAVE_MBSTATE_T_OBJECT.
56187         (iswprint): Define to 1 if !defined iswprint && !HAVE_ISWPRINT,
56188         not if ! (HAVE_MBRTOWC && HAVE_WCHAR_H).
56189
56190 2000-06-23  Jim Meyering  <meyering@lucent.com>
56191
56192         * m4/afs.m4: Add missing AC_MSG_RESULT.
56193         Reported by Bruno Haible.
56194
56195         * m4/fsusage.m4: s/AC_MSG_CHECKING/AC_CHECKING/.
56196         Suggestion from Bruno Haible.
56197
56198 2000-06-23  Jim Meyering  <meyering@lucent.com>
56199
56200         * lib/getpass.c: New file, from Bruno Haible.  Required for BeOS.
56201
56202 2000-06-21  Jim Meyering  <meyering@lucent.com>
56203
56204         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add getpass.
56205
56206 2000-06-21  Jim Meyering  <meyering@lucent.com>
56207
56208         * lib/Makefile.am (libfetish_a_SOURCES): Add getstr.c.
56209         (noinst_HEADERS): Add getstr.h.
56210
56211         * lib/getline.c (getstr): Move into a separate file.
56212         * lib/getstr.c (getstr): New file, extracted from getline.c, with
56213         the following changes: new parameter, delim2; both delim[12]
56214         parameters have type `int', not `char'.  The latter would lose
56215         with 8-bit delimiters.
56216         * lib/getstr.h: New file.
56217
56218 2000-06-21  Bruno Haible  <haible@clisp.cons.org>
56219
56220         * lib/xgetcwd.c (xgetcwd): If the required pathname length is smaller
56221         than 1024, return a memory chunk of least possible size, instead
56222         of size PATH_MAX + 2. In the loop, increment the size proportionally.
56223         Use free/xmalloc instead of xrealloc to avoid copying for very long
56224         paths.
56225
56226 2000-06-21  Bruno Haible  <haible@clisp.cons.org>
56227
56228         * lib/path-concat.c (path_concat): Don't access dir[-1] if dir is
56229         the empty string.
56230
56231 2000-06-21  Bruno Haible  <haible@clisp.cons.org>
56232
56233         * lib/canon-host.c (canon_host): Use malloc and memcpy to copy an
56234         address, not strdup.  Include <stdlib.h> and don't declare free().
56235
56236 2000-06-19  Jim Meyering  <meyering@lucent.com>
56237
56238         * lib/getloadavg.c [HAVE_NLIST_H] (NLIST_STRUCT): Define.
56239
56240 2000-06-18  Jim Meyering  <meyering@lucent.com>
56241
56242         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Remove mkdir.
56243
56244         * m4/link-follow.m4 (jm_AC_FUNC_LINK_FOLLOWS_SYMLINK): Change the
56245         `checking whether...' message to be consistent with that of the
56246         lstat test.
56247
56248 2000-06-18  Jim Meyering  <meyering@lucent.com>
56249
56250         * lib/mkdir.c: Remove file, due mainly to copyright incompatibility.
56251         Besides, these days every porting target provides a mkdir function.
56252
56253         * lib/strnlen.c: Include memory.h, string.h, and/or strings.h as
56254         needed. (this snippet comes from src/system.h).
56255
56256 2000-06-16  Bruno Haible  <haible@clisp.cons.org>
56257
56258         * m4/glibc21.m4 (jm_GLIBC21): Define GLIBC21 for Makefiles, not for C.
56259
56260 2000-06-15  Paul Eggert  <eggert@twinsun.com>
56261
56262         * lib/human.c (adjust_value): New function.
56263         (human_readable_inexact): Apply rounding style even when
56264         printing approximate values.
56265
56266 2000-06-14  Paul Eggert  <eggert@twinsun.com>
56267
56268         * lib/human.c (human_readable_inexact): Allow an input block
56269         size that is not a multiple of the output block size, and vice versa.
56270         Reported by Piergiorgio Sartor.
56271
56272 2000-06-14  Paul Eggert  <eggert@twinsun.com>
56273
56274         * lib/getdate.y (get_date): Apply relative times after time
56275         zone indicator, not before.  Reported by Todd A. Jacobs.
56276
56277 2000-06-13  Jim Meyering  <meyering@lucent.com>
56278
56279         * lib/Makefile.am (all-local): Depend on lstat.c and stat.c.
56280
56281         * lib/xstat.in [!HAVE_DECL_FREE]: Declare free in lstat.c.
56282
56283 2000-06-12  Paul Eggert  <eggert@twinsun.com>
56284
56285         * lib/xstat.in: Include <stdlib.h> in lstat, to declare "free".
56286
56287 2000-06-12  Jim Meyering  <meyering@lucent.com>
56288
56289         * m4/getloadavg.m4 (AM_FUNC_GETLOADAVG): Replace with
56290         AC_FUNC_GETLOADAVG from autoconf, and tweak the latter to accept an
56291         optional argument.
56292         * m4/jm-macros.m4: s/AM_FUNC_GETLOADAVG/AC_FUNC_GETLOADAVG/, and supply
56293         the optional argument, `lib'.
56294
56295 2000-06-08  Jim Meyering  <meyering@lucent.com>
56296
56297         * m4/largefile.m4: Remove file (now that it's part of autoconf).
56298
56299 2000-06-04  Paul Eggert  <eggert@twinsun.com>
56300
56301         Rewrite largefile configuration so that we don't need to run
56302         getconf and don't need AC_CANONICAL_HOST.  [I'm leaving the use of
56303         AC_CANONICAL_HOST in configure.in -- jmm]
56304
56305         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS,
56306         AC_SYS_LARGEFILE_SPACE_APPEND): Remove.
56307         (AC_SYS_LARGEFILE_TEST_INCLUDES): New macro.
56308         (AC_SYS_LARGEFILE_MACRO_VALUE): Change arguments from
56309         CODE-TO-SET-DEFAULT to VALUE, INCLUDES, FUNCTION-BODY.
56310         All uses changed.
56311         Instead of inspecting the output of getconf, try to compile the
56312         test program without and with the macro definition.
56313         (AC_SYS_LARGEFILE): Do not require AC_CANONICAL_HOST or check
56314         for getconf.  Instead, check for the needed flags by compiling
56315         test programs.
56316
56317 2000-06-04  Paul Eggert  <eggert@twinsun.com>
56318
56319         * lib/strnlen.c: Include <config.h> if HAVE_CONFIG_H.
56320
56321 2000-06-04  Jim Meyering  <meyering@lucent.com>
56322
56323         * lib/getugroups.c (getugroups): Cast -1 to gid_t, for systems like
56324         SunOS 4.1.4 for which gid_t is an unsigned type.
56325
56326 2000-06-03  Jim Meyering  <meyering@lucent.com>
56327
56328         * m4/prereq.m4 (jm_PREREQ_HUMAN): Use []-quoted list in AC_CHECK_DECLS,
56329         now that autoconf requires that.
56330
56331         * m4/jm-glibc-io.m4: Add a kludge to make autoheader emit the required
56332         #undefs.  E.g., #undef HAVE_DECL_FERROR_UNLOCKED.
56333         Use []-quoted list in AC_CHECK_DECLS, now that autoconf requires that.
56334
56335 2000-06-03  Jim Meyering  <meyering@lucent.com>
56336
56337         * lib/strnlen.c [!HAVE_DECL_MEMCHR]: Declare memchr.
56338
56339 2000-06-03  Bruno Haible  <haible@clisp.cons.org>
56340
56341         * m4/glibc21.m4: New file.
56342         * m4/jm-macros.m4 (jm_MACROS): Call jm_GLIBC21.
56343
56344 2000-06-03  Bruno Haible  <haible@clisp.cons.org>
56345
56346         * lib/Makefile.am (install-exec-local): On systems with glibc-2.1 or
56347         newer, don't install charset.alias.
56348         * lib/config.charset: Change the Linux/glibc rules so they become empty
56349         on glibc-2.1 or newer.
56350
56351 2000-06-02  Jim Meyering  <meyering@lucent.com>
56352
56353         * lib/mountlist.c: Back out last change.  Instead, do this...
56354         * lib/mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Set the
56355         me_dummy member using the same `ignore'-testing code.
56356         * lib/mountlist.h (ME_DUMMY): Add `autofs' to the list of ignored
56357         fs_type strings.
56358         From Mark D. Roth.
56359
56360 2000-05-29  Jim Meyering  <meyering@lucent.com>
56361
56362         * lib/mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Ignore
56363         mounts with the `ignore' attribute.  Based on a patch from
56364         Mark D. Roth.
56365
56366 2000-05-28  Jim Meyering  <meyering@lucent.com>
56367
56368         * m4/jm-macros.m4 (AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK): Rename from
56369         jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
56370         * m4/stat.m4: Likewise.
56371         * m4/lstat.m4: Likewise.
56372         * m4/lstat-slash.m4: Remove file (absorbed into autoconf).
56373
56374         * m4/jm-macros.m4 (AC_FUNC_STRERROR_R): Rename from jm_FUNC_STRERROR_R.
56375         * m4/strerror_r.m4: Remove file (absorbed into autoconf).
56376
56377 2000-05-26  Jim Meyering  <meyering@lucent.com>
56378
56379         * m4/uptime.m4: Use `$cross_compiling', not `$ac_cv_prog_cc_cross'.
56380
56381 2000-05-24  Jim Meyering  <meyering@lucent.com>
56382
56383         * m4/prereq.m4: Use []-quoted list in AC_CHECK_MEMBERS, now that
56384         autoconf requires that.
56385         * m4/lib-check.m4: Likewise.
56386         * m4/jm-macros.m4: Likewise.
56387         * m4/strftime.m4: Likewise.
56388
56389         * m4/check-decl.m4 (jm_CHECK_DECLS): Use []-quoted list in
56390         AC_CHECK_DECLS, now that autoconf requires that.
56391
56392 2000-05-22  Jim Meyering  <meyering@lucent.com>
56393
56394         * m4/stat.m4: Require jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
56395         * m4/lstat.m4: Likewise.
56396
56397 2000-05-22  Jim Meyering  <meyering@lucent.com>
56398
56399         * lib/makepath.c: Remove old, now-unnecessary `#ifdef __MSDOS__' block.
56400
56401 2000-05-20  Jim Meyering  <meyering@lucent.com>
56402
56403         * m4/prereq.m4 (jm_PREREQ_HUMAN): New macro.
56404         (jm_PREREQ): Use it.
56405
56406 2000-05-18  Jim Meyering  <meyering@lucent.com>
56407
56408         * lib/hash.c (hash_rehash): Fix a nasty bug: copy the free entry list
56409         back, too, since it may have been modified by allocate_entry.
56410         (hash_delete): Rewrite to use neither the assignment operator
56411         nor the comma operator in an if-expression.
56412
56413 2000-05-15  Paul Eggert  <eggert@twinsun.com>
56414
56415         * lib/closeout.c:
56416         <sys/stat.h>, <sys/types.h>, <unistd.h>, (STDOUT_FILENO):
56417         Remove; no longer needed.
56418         "quotearg.h": Add include.
56419         (file_name): Do not bother to explicitly initialize to NULL; it's less
56420         efficient on some hosts.
56421         (close_stdout_status): Remove test as to whether stdout was already
56422         closed; it breaks for the case "echo x | sort >&-".
56423         Quote file name colons.
56424         Do not assume that _("write error") lacks format strings.
56425
56426 2000-05-15  Jim Meyering  <meyering@lucent.com>
56427
56428         * lib/version-etc.c (version_etc_copyright): Update the copyright
56429         string used in all --version output.
56430
56431 2000-05-14  Jim Meyering  <meyering@lucent.com>
56432
56433         * lib/closeout.c (close_stdout_set_file_name): New function.
56434         (close_stdout_status): Use new file-scoped global.
56435         Return right away if fstat says the stdout file descriptor is invalid.
56436         * lib/closeout.h (close_stdout_set_file_name): Declare.
56437
56438 2000-05-10  Jim Meyering  <meyering@lucent.com>
56439
56440         * lib/closeout.c [default_exit_status]: New file-scoped variable.
56441         (close_stdout_set_status): New function.
56442         * lib/closeout.h (close_stdout_set_status): Declare.
56443
56444 2000-05-09  Jim Meyering  <meyering@lucent.com>
56445
56446         * m4/gettext.m4: Rename this...
56447         * m4/libintl.m4: ...to this.
56448
56449 2000-05-08  Jim Meyering  <meyering@lucent.com>
56450
56451         * lib/long-options.c: Don't include closeout.h.
56452         (parse_long_options): Don't call close_stdout for --version.
56453
56454 2000-05-06  Paul Eggert  <eggert@twinsun.com>
56455
56456         * m4/largefile.m4 (AC_SYS_LARGEFILE): Define _XOPEN_SOURCE to
56457         be 500, instead of _GNU_SOURCE to be 1, to work around glibc
56458         2.1.3 bug.  This avoids a clash when files like regex.c define
56459         _GNU_SOURCE.
56460
56461 2000-05-06  Jim Meyering  <meyering@lucent.com>
56462
56463         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add atexit.
56464         (AC_REPLACE_FUNCS): Add strnlen.
56465
56466         * m4/rmdir-errno.m4 (fetish_FUNC_RMDIR_NOTEMPTY): New macro and file.
56467         * m4/jm-macros.m4: Require fetish_FUNC_RMDIR_NOTEMPTY.
56468
56469         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Save and restore LIBS around
56470         AC_SEARCH_LIBS call for nanosleep.
56471         (LIB_NANOSLEEP): Set and AC_SUBST.
56472
56473 2000-05-06  Jim Meyering  <meyering@lucent.com>
56474
56475         * lib/strnlen.c: Undefine __strnlen and strnlen.
56476         [!weak_alias]: Define __strnlen to strnlen.
56477
56478         * lib/atexit.c: New file, from libiberty.
56479
56480 2000-05-06  Jim Meyering  <meyering@lucent.com>
56481
56482         * lib/closeout.c (close_stdout_status): Also check for errors on the
56483         stderr stream.
56484
56485 2000-05-05  Jim Meyering  <meyering@lucent.com>
56486
56487         * m4/jm-macros.m4 (jm_MACROS): Save and restore LIBS around
56488         AC_SEARCH_LIBS call for clock_gettime.
56489         (LIB_CLOCK_GETTIME): Set and AC_SUBST.
56490
56491         * m4/search-libs.m4: Update from autoconf.
56492
56493         su doesn't work on Solaris 2.6.
56494         * m4/lib-check.m4: When checking for struct spwd.sp_pwdp, also include
56495         <shadow.h>.  Reported by Dragos Harabor.
56496
56497 2000-05-05  Bruno Haible  <haible@clisp.cons.org>
56498
56499         * lib/localcharset.c (get_charset_aliases): Use malloc, realloc and
56500         memcpy instead of xmalloc, xrealloc, path_concat.
56501         (locale_charset): Treat empty environment variables as absent.
56502         (DIRECTORY_SEPARATOR, ISSLASH): New macros.
56503
56504 2000-05-04  Jim Meyering  <meyering@lucent.com>
56505
56506         * lib/getopt.c: Update from glibc.
56507         * lib/obstack.c: Likewise.
56508         * lib/obstack.h: Likewise.
56509         * lib/regex.c: Likewise.  NB: K&R compiler support is dropped for this
56510         file
56511
56512         * lib/regex.h: Likewise.
56513         * lib/strndup.c: Likewise.
56514         * lib/strnlen.c: New file, from glibc.
56515
56516 2000-05-03  Jim Meyering  <meyering@lucent.com>
56517
56518         * m4/check-decl.m4 (AC_CHECK_DECLS): Add strndup.
56519
56520 2000-05-02  Paul Eggert  <eggert@twinsun.com>
56521
56522         * m4/largefile.m4 (AC_SYS_LARGEFILE): Define _GNU_SOURCE if
56523         this is needed to make ftello visible (e.g. glibc 2.1.3).  Use
56524         compile-time test, rather than inspecting host and OS, to
56525         decide whether to define _LARGEFILE_SOURCE.
56526
56527 2000-05-01  Jim Meyering  <meyering@lucent.com>
56528
56529         * m4/fsusage.m4: Use AC_MSG_CHECKING instead of obsolete AC_CHECKING.
56530
56531         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Add BeOS support.
56532         Based on a patch from Bruno Haible.
56533
56534 2000-05-01  Jim Meyering  <meyering@lucent.com>
56535
56536         * lib/full-write.c (full_write): Remove `FIXME' part of comment.
56537
56538 2000-04-29  Jim Meyering  <meyering@lucent.com>
56539
56540         * lib/path-concat.c: Declare strdup only if it's not defined.
56541         * lib/canon-host.c: Likewise.
56542
56543 2000-04-28  Jim Meyering  <meyering@lucent.com>
56544
56545         * lib/rpmatch.c [HAVE_LIMITS_H]: Include limits.h before regex.h to
56546         avoid redefinition warning on some systems (HPUX).  Otherwise, regex.h
56547         is included first, then limits.h is included by locale.h by libintl.h.
56548         From John David Anglin.
56549
56550 2000-04-25  Jim Meyering  <meyering@lucent.com>
56551
56552         * lib/makepath.c (S_IRWXUGO): Define.
56553         (make_path): Always perform explicit chmod if MODE specifies any
56554         of the `special' permission bits.  Prompted by a bug report against
56555         install from Mate Wierdl and Joost van Baal.
56556
56557 2000-04-18  Jim Meyering  <meyering@lucent.com>
56558
56559         * m4/prereq.m4 (jm_PREREQ_GETPAGESIZE): New macro.
56560         (jm_PREREQ): Use it.
56561
56562 2000-04-18  Jim Meyering  <meyering@lucent.com>
56563
56564         * lib/README: New file.
56565
56566         * lib/getpagesize.h [!getpagesize && HAVE_OS_H && B_PAGE_SIZE]: Define
56567         getpagesize.  For BeOS.  Based on a patch from Bruno Haible.
56568
56569 2000-04-17  Jim Meyering  <meyering@lucent.com>
56570
56571         Get it right :-)
56572         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Emit the
56573         actual #define via AH_VERBATIM.  Don't need separate AC_DEFINE.
56574         Suggestion from Akim Demaille.
56575
56576 2000-04-17  Jim Meyering  <meyering@lucent.com>
56577
56578         * lib/strftime.c (my_strftime) [strftime]: Declare strftime here, since
56579         the definition of it to rpl_strftime also defined-away the system's
56580         declaration.
56581
56582 2000-04-15  Jim Meyering  <meyering@lucent.com>
56583
56584         Use `C' to denote so-called `contiguous' files, the same way
56585         that tar does.
56586         * lib/filemode.c (S_ISCTG) [!S_ISCTG && S_IFCTG]: Define.
56587         (ftypelet): Use S_ISCTG.
56588         From Michael Deutschmann.
56589
56590 2000-04-14  Jim Meyering  <meyering@lucent.com>
56591
56592         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Use the one-arg
56593         form of AC_DEFINE.  Otherwise, the #ifndef in AH_VERBATIM gets
56594         clobbered.
56595
56596 2000-04-14  Jim Meyering  <meyering@lucent.com>
56597
56598         * lib/strftime.c (my_strftime) [#ifdef strftime]: Declare strftime.
56599
56600 2000-04-13  Jim Meyering  <meyering@lucent.com>
56601
56602         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Use new
56603         AH_VERBATIM to insert required #ifndef into config.h.in.
56604         Suggestion from Akim Demaille.
56605
56606 2000-04-12  Jim Meyering  <meyering@lucent.com>
56607
56608         * m4/getloadavg.m4 (AM_FUNC_GETLOADAVG): Use AC_CHECK_HEADERS, not
56609         `AC_CHECK_HEADER' to check for locale.h.  Thanks to a report from
56610         Christian Krackowizer.
56611
56612         More code moved from ../configure.in into (jm_CHECK_ALL_TYPES).
56613         * m4/jm-macros.m4 (_GNU_SOURCE): Define.
56614         (AC_SYS_LARGEFILE): Require.
56615         (AM_C_PROTOTYPES): Require.
56616
56617 2000-04-08  Jim Meyering  <meyering@lucent.com>
56618
56619         * lib/Makefile.am (charset.alias): Use t-$@, not $@-t so the DOS 8.3
56620         names don't conflict.  Reported by Eli Zaretskii.
56621
56622 2000-04-07  Jim Meyering  <meyering@lucent.com>
56623
56624         * lib/putenv.c: Move inclusion of errno.h so it follows that of
56625         sys/types.h, to work around system header problems on AIX 3.2.5.
56626         From Bruno Haible.
56627
56628 2000-04-07  Bruno Haible  <haible@clisp.cons.org>
56629
56630         * lib/unicodeio.c (print_unicode_char): Avoid triggering Solaris iconv
56631         bug.  Deal with the different error behavior of Irix iconv.
56632
56633 2000-04-05  Paul Eggert  <eggert@twinsun.com>
56634
56635         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Don't use -n32 on
56636         IRIX if the installer said otherwise.
56637
56638 2000-04-05  Jim Meyering  <meyering@lucent.com>
56639
56640         Portability tweaks required for ultrix4.3.
56641         * m4/check-decl.m4 [!HAVE_UTMPX_H] (headers): Include <utmp.h>.
56642         (jm_CHECK_DECLS): Add getutent to the list of functions.
56643         (_jm_DECL_HEADERS): Add utmpx.h.
56644         From John David Anglin.
56645
56646         * m4/strftime.m4: Back out the 2000-04-02 change.
56647         Instead of that change, simply undefine putenv in the test program.
56648
56649 2000-04-05  Jim Meyering  <meyering@lucent.com>
56650
56651         Portability tweaks required for ultrix4.3.
56652         * lib/readutmp.h [HAVE_UTMPX_H && !HAVE_DECL_GETUTENT]: Declare
56653         getutent.
56654         * lib/readutmp.c: Include sys/types.h before sys/stat.h.
56655         * lib/canon-host.c: Declare strdup.
56656         * lib/path-concat.c: Likewise.
56657         From John David Anglin.
56658
56659 2000-04-04  Jim Meyering  <meyering@lucent.com>
56660
56661         Be more DOS 8.3-friendly.
56662         * lib/ref-add.sin: Renamed from ref-add.sed.in.
56663         * lib/ref-del.sin: Renamed from ref-del.sed.in.
56664         * lib/Makefile.am: Reflect renaming.
56665         Reported by Eli Zaretskii.
56666
56667         Use a temporary file name that won't clash with `charset.alias'
56668         in the DOS 8.3 name space.
56669         * lib/Makefile.am (charset_tmp): Define.
56670         (install-exec-local): Use $(charset_tmp) instead of $(charset_alias)-t.
56671         (uninstall-local): Likewise.
56672         Reported by Eli Zaretskii.
56673
56674 2000-04-03  Jim Meyering  <meyering@lucent.com>
56675
56676         * m4/gettext.m4: Fix typo in comment.
56677
56678         * m4/codeset.m4 (AC_CHECK_HEADERS): Add langinfo.h (moved here from
56679         textutils/configure.in).  Suggestion from Paul Eggert.
56680         (AC_CHECK_FUNCS): Add nl_langinfo.  (also from textutils/configure.in)
56681
56682 2000-04-02  Paul Eggert  <eggert@twinsun.com>
56683
56684         * m4/strftime.m4 (jm_FUNC_GNU_STRFTIME): Set TZ environment
56685         variable in the shell rather than using putenv, which isn't
56686         portable.  This avoids the configure-time inter-test dependency
56687         on the potentially-renamed putenv function.
56688
56689 2000-03-30  Paul Eggert  <eggert@twinsun.com>
56690
56691         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Include <sys/stat.h>
56692         before checking struct stat.st_blksize, so that
56693         HAVE_STRUCT_STAT_ST_BLKSIZE is defined correctly.
56694
56695 2000-03-29  Paul Eggert  <eggert@twinsun.com>
56696
56697         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Check for strftime,
56698         since strftime.c uses HAVE_STRFTIME to decide whether to use
56699         the underlying strftime.
56700
56701 2000-03-29  Paul Eggert  <eggert@twinsun.com>
56702
56703         * lib/time/strftime.c (my_strftime): Make sure we call the system
56704         strftime, not ourselves, when invoking the underlying strftime.
56705
56706 2000-03-24  Jim Meyering  <meyering@lucent.com>
56707
56708         * lib/Makefile.am (EXTRA_DIST): Add ref-add.sed.in and ref-del.sed.in.
56709         (charset_alias): Define.
56710         (install-exec-local): Factor out common code.
56711         (uninstall-local): Split lines longer than 80.
56712         (ref-add.sed, ref-del.sed): Remove rules... (do the following instead)
56713         (SUFFIXES): Define.
56714         (.sed.in.sed): New rule.  Don't redirect directly to $@.
56715         (CLEANFILES): Add ref-add.sed and ref-del.sed.
56716
56717 2000-03-19  Bruno Haible  <haible@clisp.cons.org>
56718
56719         * lib/config.charset: Output a line containing "Packages using this
56720         file".
56721         * lib/ref-add.sed.in, lib/ref-del.sed.in: New files.
56722         * lib/Makefile.am (install-exec-local, uninstall-local, ref-add.sed,
56723         ref-del.sed): New rules.
56724
56725 2000-03-17  Jim Meyering  <meyering@lucent.com>
56726
56727         * lib/unicodeio.c (<string.h>): Include only #if HAVE_STRING_H.
56728         Otherwise, include <strings.h>
56729
56730 2000-03-17  Bruno Haible  <haible@clisp.cons.org>
56731
56732         * lib/unicodeio.c (utf8_wctomb): New function.
56733         (print_unicode_char): Pass the Unicode character to iconv in UTF-8
56734         format instead of in UCS-4 with platform dependent endianness.
56735
56736 2000-03-10  Jim Meyering  <meyering@lucent.com>
56737
56738         * m4/lib-check.m4: Look for getspnam in -lgen, too.
56739         From Marco Franzen.
56740
56741 2000-03-07  Paul Eggert  <eggert@twinsun.com>
56742
56743         * lib/savedir.c (savedir): Work even if directory size is
56744         negative; this can happen with some screwy NFS configurations.
56745
56746 2000-03-06  Jim Meyering  <meyering@lucent.com>
56747
56748         * lib/localcharset.c (get_charset_aliases): Don't try to free file_name
56749         if it's NULL (because we ran out of memory).  From Bruno Haible.
56750
56751 2000-03-05  Jim Meyering  <meyering@lucent.com>
56752
56753         * lib/localcharset.c ("path-concat.h"): Include.
56754         (get_charset_aliases): Use path_concat instead of ANSI string
56755         concatenation.
56756
56757         * lib/unicodeio.h (PARAMS): Define.
56758         Use it to guard prototype.
56759
56760 2000-03-04  Jim Meyering  <meyering@lucent.com>
56761
56762         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require AC_C_VOLATILE,
56763         for lib/localcharset.c.
56764
56765 2000-03-04  Jim Meyering  <meyering@lucent.com>
56766
56767         * lib/Makefile.am (install-exec-local): Create $(libdir) before
56768         installing into it.
56769         (uninstall-local): Uncomment this rule so `make distcheck' works
56770         once again.
56771
56772         * lib/unicodeio.c (<errno.h>): Include it.
56773         (errno): Declare if not defined.
56774
56775         * lib/localcharset.c: Add Bruno's comment justifying use of volatile.
56776
56777         * lib/config.charset: New version, incorporating remarks from a linux
56778         i18n mailing list.  From Bruno Haible.
56779
56780 2000-03-04  Bruno Haible  <haible@clisp.cons.org>
56781
56782         * m4/codeset.m4: New file.
56783         * m4/iconv.m4: New file.
56784         * m4/jm-macros.m4 (jm_MACROS): Call jm_LANGINFO_CODESET and jm_ICONV.
56785
56786 2000-03-03  Jim Meyering  <meyering@lucent.com>
56787
56788         * m4/regex.m4: Make sure re_compile_pattern accepts patterns like `{1'.
56789
56790 2000-03-02  Jim Meyering  <meyering@lucent.com>
56791
56792         * m4/timespec.m4: Require AC_HEADER_TIME before the cache check so
56793         the messages come out on separate lines.
56794
56795         * m4/jm-glibc-io.m4 (jm_FUNC_GLIBC_UNLOCKED_IO): Use AC_CHECK_DECLS,
56796         rather than jm_CHECK_DECLARATIONS.
56797         * m4/decl.m4: Remove now-unused file.
56798
56799         * m4/check-decl.m4 (AC_CHECK_DECLS): Add getlogin, ttyname, and
56800         geteuid.
56801
56802 2000-03-02  Jim Meyering  <meyering@lucent.com>
56803
56804         * lib/Makefile.am (EXTRA_DIST): Add config.charset.
56805
56806 2000-03-01  Jim Meyering  <meyering@lucent.com>
56807
56808         * lib/localcharset.c: Guard some #includes with `#if HAVE_...'.
56809         * lib/unicodeio.c: Likewise.
56810
56811 2000-03-01  Bruno Haible  <haible@clisp.cons.org>
56812
56813         * lib/config.charset: New file.
56814         * lib/localcharset.c: New file.
56815         * lib/unicodeio.h, lib/unicodeio.c: New files.
56816         * lib/Makefile.am (DEFS): Add -DLIBDIR=...
56817         (libfetish_a_SOURCES): Add localcharset.c and unicodeio.c.
56818         (noinst_HEADERS): Add unicodeio.h.
56819         (all-local, install-exec-local, charset.alias): New targets.
56820
56821 2000-02-28  Paul Eggert  <eggert@twinsun.com>
56822
56823         * lib/quotearg.c (ALERT_CHAR): New macro.
56824         (quotearg_buffer_restyled): Use it.
56825
56826 2000-02-27  Jim Meyering  <meyering@lucent.com>
56827
56828         * m4/check-decl.m4: Add getenv to the list.
56829
56830 2000-02-27  Jim Meyering  <meyering@lucent.com>
56831
56832         * lib/strtoumax.c: Fix typo in decl of strtoul: s/long long/long/.
56833         Guard declaration of strtoull also with `&& HAVE_UNSIGNED_LONG_LONG'.
56834
56835         * lib/backupfile.c: Guard inclusion of stdlib.h with
56836         `#if HAVE_STDLIB_H', not `#if STDC_HEADERS'.
56837         Declare malloc if needed.
56838
56839         * lib/backupfile.c: Use `#if !HAVE_DECL...' instead of
56840         `#ifndef HAVE_DECL..'
56841         now that autoconf always defines the HAVE_DECL_ symbols.
56842         * lib/human.c: Likewise.
56843         * lib/same.c: Likewise.
56844         * lib/strtoumax.c: Likewise.
56845
56846         * lib/backupfile.c: Arrange for cpp to fail if the configure-time
56847         declaration check was not run.
56848         * lib/hash.c: Likewise.
56849         * lib/human.c: Likewise.
56850         * lib/same.c: Likewise.
56851         * lib/strtoumax.c: Likewise.
56852
56853         * lib/userspec.c (parse_user_spec): If there is no `:' but there is a
56854         `.', then first look up the entire `.'-containing string as a login
56855         name.
56856
56857 2000-02-23  Jim Meyering  <meyering@lucent.com>
56858
56859         * m4/check-decl.m4: Now that we have the new AC_CHECK_DECLS, use it
56860         in place of my hack.
56861
56862 2000-02-18  Paul Eggert  <eggert@twinsun.com>
56863
56864         * lib/getdate.y: Handle two-digit years with leading zeros correctly.
56865         (textint): New typedef.
56866         (parser_control): Member year changed from int to textint.
56867         All uses changed.
56868         (YYSTYPE): Removed; replaced by %union with int and textint members.
56869         (tDAY, tDAY_UNIT, tDAYZONE, tHOUR_UNIT, tID, tLOCAL_ZONE, tMERIDIAN,
56870         tMINUTE_UNIT, tMONTH, tMONTH_UNIT tSEC_UNIT, tSNUMBER, tUNUMBER,
56871         tYEAR_UNIT, tZONE, o_merid): Now of type <intval>.
56872         (tSNUMBER, tUNUMBER): Now of type <textintval>.
56873         (date, number, to_year): Use width of number in digits, not its value,
56874         to determine whether it's a 2-digit year, or a 2-digit time.
56875         (yylex): Store number of digits of numeric tokens.
56876         Reported by John Kendall.
56877
56878         (parser_control): Changed from struct parser_control to typedef (for
56879         consistency).  All uses changed.
56880
56881         (tID): Removed; not used.
56882         (yylex): Return '?' for unknown identifiers, rather than (unused) tID.
56883
56884 2000-02-14  Paul Eggert  <eggert@twinsun.com>
56885
56886         * lib/getpagesize.h (getpagesize): Port to VMS for Alpha;
56887         adapted from changes to grep getpagesize.h by Martin P.J. Zinser.
56888
56889 2000-02-12  Jim Meyering  <meyering@lucent.com>
56890
56891         * lib/userspec.c (ISDIGIT): Define it.
56892         (isdigit): Remove definition.
56893         (is_number): Use ISDIGIT, not isdigit.
56894         <libintl.h>: Include.
56895         (_ and N_): Define.
56896         (parse_user_spec): Mark translatable strings.
56897
56898 2000-02-10  Jim Meyering  <meyering@lucent.com>
56899
56900         With these changes, nanosleep.[ch] are finally enough like the other
56901         lib/* replacement files to compile on a few more losing systems.
56902
56903         * lib/nanosleep.h: Don't include config.h.
56904         Remove prototype from declaration of nanosleep.
56905         (PARAMS): Remove now-unneeded definition.
56906         * lib/nanosleep.c: #undef nanosleep.
56907         (rpl_nanosleep): Rename from nanosleep.
56908
56909 2000-02-10  Jim Meyering  <meyering@lucent.com>
56910
56911         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Rename replacement function from
56912         gnu_nanosleep to rpl_nanosleep.
56913
56914 2000-02-09  Jim Meyering  <meyering@lucent.com>
56915
56916         * m4/lib-check.m4 (jm_LIB_CHECK): Fix typo: check for sp_pwdp in
56917         struct spwd, rather than in struct passwd.  Reported by Gaël Quéri.
56918
56919 2000-02-08  Akim Demaille  <akim@epita.fr>
56920
56921         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Quote square brackets with
56922         `[' and `]' and remove uses of `changequote'.
56923         (AC_SYS_LARGEFILE_MACRO_VALUE): Likewise.
56924         (AC_SYS_LARGEFILE): Likewise.
56925         * m4/gettext.m4 (AM_GNU_GETTEXT): Likewise.
56926         * m4/strftime.m4 (jm_FUNC_GNU_STRFTIME): Remove now-unnecessary use
56927         of changequote.
56928         * m4/regex.m4 (jm_INCLUDED_REGEX): Likewise.
56929         * m4/readdir.m4 (jm_FUNC_READDIR): Likewise
56930         * m4/memcmp.m4 (jm_AC_FUNC_MEMCMP): Likewise, and add `int' for main.
56931         * m4/getloadavg.m4 (AM_FUNC_GETLOADAVG): Likewise.
56932
56933 2000-02-05  Jim Meyering  <meyering@lucent.com>
56934
56935         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require most macros.
56936         Remove explicit use of AC_HEADER_TIME.  It is required by
56937         jm_CHECK_TYPE_STRUCT_TIMESPEC.  Using AC_HEADER_TIME and
56938         `AC_REQUIRE'ing jm_CHECK_TYPE_STRUCT_TIMESPEC provoked a but
56939         in autoconf whereby the expansion of the latter ended up preceding
56940         the expansion of its prerequisite, AC_HEADER_TIME.
56941         Reported by Volker Borchert.
56942
56943 2000-02-03  Jim Meyering  <meyering@lucent.com>
56944
56945         * m4/prereq.m4 (jm_PREREQ_READUTMP): Check for utmpxname.
56946
56947 2000-02-03  Jim Meyering  <meyering@lucent.com>
56948
56949         * lib/readutmp.c (read_utmp): Guard with `#ifdef UTMP_NAME_FUNCTION',
56950         rather than with `#if HAVE_UTMPNAME'.
56951
56952 2000-02-02  Jim Meyering  <meyering@lucent.com>
56953
56954         * m4/prereq.m4 (jm_PREREQ_ADDEXT): Fix typo that resulted in no
56955         definition of HAVE_PATHCONF: s/AC_CHECK_FUNC/AC_CHECK_FUNCS/.
56956         Reported by Eli Zaretskii.
56957
56958 2000-02-01  Jim Meyering  <meyering@lucent.com>
56959
56960         * lib/readutmp.h (UT_USER): Add parens.  From Andreas Schwab.
56961
56962 2000-01-31  Jim Meyering  <meyering@lucent.com>
56963
56964         * m4/check-decl.m4 (jm_CHECK_DECLS): Add nanosleep to the list of
56965         functions.  Add the time.h and sys/time.h headers along with the
56966         AC_REQUIRE'ment of AC_HEADER_TIME.
56967
56968 2000-01-31  Jim Meyering  <meyering@lucent.com>
56969
56970         * lib/nanosleep.h (nanosleep): Guard declaration with
56971         `#if ! HAVE_DECL_NANOSLEEP'.
56972         Without this, OFS gets a redeclaration error for rpl_nanosleep, due to
56973         the declaration in that vendor's sys/timers.h.
56974         Reported by Christian Krackowizer.
56975
56976         * lib/quotearg.c (ISASCII): Add #undef and move definition to follow
56977         inclusion of wctype.h to work around Solaris 2.6 namespace pollution.
56978         (ISPRINT): Likewise.
56979         Reported by Tom Tromey.
56980
56981 2000-01-30  Jim Meyering  <meyering@lucent.com>
56982
56983         * m4/lib-check.m4: Clean up some kludgy old shadow password tests.
56984
56985         * m4/prereq.m4 (utmp_includes): Define.
56986         Check for ut_user and ut_name members in both struct utmpx
56987         and struct utmp.
56988
56989 2000-01-30  Jim Meyering  <meyering@lucent.com>
56990
56991         * lib/readutmp.c (extract_trimmed_name): Use UT_USER instead of
56992         hard-coding uses of ->ut_name.  The latter doesn't work with new Linux
56993         header files where only utmpx.ut_user is declared.
56994
56995         * lib/readutmp.h (UT_USER): Define.
56996
56997 2000-01-29  Jim Meyering  <meyering@lucent.com>
56998
56999         * m4/lib-check.m4: New file containing library-related checks from
57000         fileutils and sh-utils (textutils had none).
57001
57002 2000-01-28  Jim Meyering  <meyering@lucent.com>
57003
57004         * m4/perl.m4: Change format of warning message to look more like that
57005         from the missing script.  Suggestion from François Pinard.
57006
57007 2000-01-25  Jim Meyering  <meyering@lucent.com>
57008
57009         * m4/timespec.m4: Require AC_HEADER_TIME, and include sys/time.h as
57010         well as time.h in the compile check.
57011         * m4/nanosleep.m4: Require AC_HEADER_TIME rather than simply using it.
57012         Fix typo in cross-compiling case: s/yes/no/.
57013
57014 2000-01-23  Jim Meyering  <meyering@lucent.com>
57015
57016         * m4/jm-macros.m4: Move df-related tests here from
57017         fileutils/configure.in
57018
57019         * m4/ls-mntd-fs.m4: s/list_mounted_fs/ac_list_mounted_fs/
57020         (jm_LIST_MOUNTED_FILESYSTEMS): Take two parameters.
57021
57022         * m4/fsusage.m4: New file.  Extracted from fileutils/configure.in.
57023         s/space/ac_fsusage_space/.
57024         (jm_FILE_SYSTEM_USAGE): Take two parameters.
57025
57026         * m4/ftruncate.m4: New file (derived from part of
57027         fileutils/configure.in).
57028         * m4/jm-macros.m4 (jm_FUNC_FTRUNCATE): AC_REQUIRE it.
57029         (jm_CHECK_ALL_TYPES): Require AC_HEADER_MAJOR and AC_HEADER_DIRENT.
57030
57031         * m4/jm-macros.m4 (OPTIONAL_BIN_PROGS, OPTIONAL_BIN_ZCRIPTS, MAN):
57032         AC_SUBST these here, rather than just in sh-util/configure.in, so
57033         that the now-shared-by-fileutils-and-textutils lib/Makefile.am are
57034         all the same.
57035         (AM_FUNC_OBSTACK): Add (from fileutils/configure.in).
57036         (AC_CHECK_FUNCS): Merge all checks from fileutils, textutils, sh-utils.
57037         (AM_FUNC_STRTOD): Added (from textutils', sh-utils' configure.in).
57038         (AC_SUBST(POW_LIBM)): Likewise.
57039         (AC_SUBST(DF_PROG)): Moved from fileutils/configure.in.
57040
57041 2000-01-23  Jim Meyering  <meyering@lucent.com>
57042
57043         * lib/Makefile.am (libfetish_a_SOURCES): Remove explicit mention of
57044         obstack.c.
57045
57046 2000-01-22  Jim Meyering  <meyering@lucent.com>
57047
57048         * m4/jm-macros.m4: Call AC_PROG_CC_STDC just before AC_C_CONST.
57049
57050         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Add wctype.h.
57051
57052         * m4/jm-macros.m4 (AC_CHECK_HEADERS): Add checks from fileutils'
57053         configure.in
57054         (AC_CHECK_HEADERS): Likewise for sh-utils.
57055         (AC_CHECK_HEADERS): Likewise for textutils.
57056         Merge the three lists of headers.
57057
57058         * m4/prereq.m4 (jm_PREREQ_ADDEXT): New macro.  Parts moved here
57059         from fileutils' configure.in.
57060
57061         * m4/decl.m4: Remove kludgy `test -z $ac_...AC_CHECK_HEADERS(...)'
57062         code. Moved tests into their own function (_jm_DECL_HEADERS) in
57063         check-decl.m4.
57064
57065         * m4/check-decl.m4: Use #if rather than #ifdef.
57066         Add HAVE_DECL_STRTOUL and HAVE_DECL_STRTOULL.
57067         (jm_CHECK_DECLARATIONS): Add strtoul strtoull.
57068         (_jm_DECL_HEADERS): Define new function.
57069         (jm_CHECK_DECLARATIONS): Require it.
57070
57071 2000-01-22  Jim Meyering  <meyering@lucent.com>
57072
57073         * lib/strtoumax.c: [! HAVE_DECL_STRTOUL]: Declare strtoul.
57074         [! HAVE_DECL_STRTOULL]: Declare strtoull.
57075         Required for some AIX systems.  Reported by Christian Krackowizer.
57076         [TESTING] (main): New function.
57077
57078         1997-10-17  Eli Zaretskii  <eliz@is.elta.co.il>
57079         * lib/dirname.c (dir_name): Support for DOS-style file names with drive
57080         letters.
57081
57082         * lib/quotearg.c [HAVE_WCTYPE_H]: Include <wctype.h> for decl of
57083         iswprint.
57084
57085         * lib/strverscmp.c (ISDIGIT): Define.
57086         (strverscmp): Use ISDIGIT, not isdigit.
57087
57088 2000-01-19  Jim Meyering  <meyering@lucent.com>
57089
57090         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Include <sys/time.h>, too.
57091         Use AC_HEADER_TIME.  Volker Borchert reported that OpenBSD-2.3/sparc
57092         defines `struct timespec' in <sys/time.h>
57093
57094         * m4/c-bs-a.m4: Remove uses of changequote altogether.
57095         Thanks to Akim for explaining.
57096
57097 2000-01-17  Paul Eggert  <eggert@twinsun.com>
57098
57099         * lib/nanosleep.c (nanosleep):
57100         Don't use SA_INTERRUPT to decide whether to call sigaction, as
57101         POSIX.1 doesn't require SA_INTERRUPT and some systems
57102         (e.g. Solaris 7) don't define it.  Use SA_NOCLDSTOP instead;
57103         it's been part of POSIX.1 since day 1 (in 1988).
57104
57105 2000-01-17  Jim Meyering  <meyering@lucent.com>
57106
57107         * lib/interlock: Remove unused file.  Reported by François Pinard.
57108
57109 2000-01-16  Paul Eggert  <eggert@twinsun.com>
57110
57111         * lib/quotearg.c (quotearg_buffer_restyled): Do not quote
57112         alert, backslash, formfeed, and vertical tab unnecessarily in
57113         shell quoting style.
57114
57115 2000-01-16  Jim Meyering  <meyering@lucent.com>
57116
57117         * m4/jm-macros.m4: Require jm_FUNC_GROUP_MEMBER, jm_FUNC_PUTENV,
57118         AM_FUNC_ERROR_AT_LINE, jm_FUNC_GNU_STRFTIME, jm_FUNC_MKTIME,
57119         jm_FUNC_GETGROUPS AC_FUNC_VPRINTF, AC_FUNC_ALLOCA,
57120         AM_FUNC_GETLOADAVG, and jm_SYS_PROC_UPTIME.
57121
57122 2000-01-16  Jim Meyering  <meyering@lucent.com>
57123
57124         * m4/c-bs-a.m4: Use `changequote(<<,>>)', rather than `changequote(, )'
57125         because the latter didn't work.
57126
57127 2000-01-15  Jim Meyering  <meyering@lucent.com>
57128
57129         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add gethostname and getusershell.
57130         (AC_REPLACE_FUNCS): Add memcpy and memset.
57131         Add these, too: stime strcspn stpcpy strstr strtol strtoul.
57132         Add strpbrk.
57133         Add these: euidaccess memcmp mkdir rmdir rpmatch strndup strverscmp.
57134
57135 2000-01-12  Jim Meyering  <meyering@lucent.com>
57136
57137         * m4/prereq.m4 (jm_PREREQ_CANON_HOST): New macro.
57138         (jm_PREREQ): Use it.
57139         (jm_PREREQ_READUTMP): New macro.
57140         (jm_PREREQ): Use it.
57141
57142 2000-01-11  Paul Eggert  <eggert@twinsun.com>
57143
57144         Quote multibyte characters correctly.
57145         * m4/c-bs-a.m4: New file.
57146         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): New macro.
57147         (jm_PREREQ): Use it.
57148
57149 2000-01-11  Paul Eggert  <eggert@twinsun.com>
57150
57151         * m4/uintmax_t.m4: Port to autoconf 2.13.
57152
57153 2000-01-08  Jim Meyering  <meyering@ascend.com>
57154
57155         * m4/strerror_r.m4 (jm_FUNC_STRERROR_R): New file/macro.
57156         * m4/jm-macros.m4 (jm_FUNC_STRERROR_R): Require it.
57157
57158 2000-01-04  Jim Meyering  <meyering@ascend.com>
57159
57160         * m4/d-type.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Rename from
57161         jm_STRUCT_DIRENT_D_TYPE.
57162         * m4/d-ino.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_INO): Rename from
57163         jm_STRUCT_DIRENT_D_INO.
57164         * m4/utimbuf.m4 (jm_CHECK_TYPE_STRUCT_UTIMBUF): Rename from
57165         jm_STRUCT_UTIMBUF.
57166         * m4/jm-macros.m4: Reflect s/jm_STRUCT_/jm_CHECK_TYPE_STRUCT_/
57167         renamings.
57168         * m4/utime.m4: Likewise.
57169
57170         * m4/timespec.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC): New file, macro.
57171         * m4/jm-macros.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC): Require it.
57172
57173 2000-01-03  Paul Eggert  <eggert@twinsun.com>
57174
57175         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Search for nanosleep in -lrt
57176         (for Solaris 7) and in -lposix4 (for Solaris 2.5.1).
57177
57178 2000-01-02  Jim Meyering  <meyering@ascend.com>
57179
57180         * m4/search-libs.m4: Escape `$' in $3 of dnl comment.  I no longer
57181         remember if this is necessary.
57182
57183 1999-12-26  Jim Meyering  <meyering@ascend.com>
57184
57185         * m4/jm-macros.m4: Use it here.
57186         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): New file/macro.
57187
57188 1999-12-23  Jim Meyering  <meyering@ascend.com>
57189
57190         * m4/jm-macros.m4: Check for clock_gettime (moved from
57191         fileutils/configure.in)
57192         Check for gettimeofday.
57193
57194 1999-12-20  Jim Meyering  <meyering@ascend.com>
57195
57196         * m4/strftime.m4: Remove kludge, now that I'm using the fixed
57197         autoconf-2.14a-1999-12-20.
57198
57199 1999-12-19  Jim Meyering  <meyering@ascend.com>
57200
57201         * m4/lstat-slash.m4: New file.
57202         * m4/jm-macros.m4: Use the new macro:
57203         jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
57204
57205 1999-12-07  Jim Meyering  <meyering@ascend.com>
57206
57207         * m4/perl.m4: Require that File::Compare be available, too.
57208         Too many systems seem to lack it.
57209
57210         * m4/strftime.m4: Add checks for most of the cpp macros tested in
57211         GNU's strftime.c.  Prompted by a patch from Paul Eggert.
57212
57213 1999-11-18  Paul Eggert  <eggert@twinsun.com>
57214
57215         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Work around a
57216         problem with the QNX 4.25 shell, which doesn't propagate exit
57217         status of failed commands inside shell assignments.
57218
57219 1999-11-17  Jim Meyering  <meyering@ascend.com>
57220
57221         * m4/gettext.m4: Use new AC_CONFIG_LINKS in place of AC_LINK_FILES.
57222
57223 1999-11-07  Jim Meyering  <meyering@ascend.com>
57224
57225         * m4/getloadavg.m4: Add `, 1, [FIXME]' to each use of AC_DEFINE.
57226
57227 1999-11-06  Jim Meyering  <meyering@ascend.com>
57228
57229         * m4/link-follow.m4 (jm_AC_FUNC_LINK_FOLLOWS_SYMLINK): New file/macro.
57230         * m4/jm-macros.m4 (jm_MACROS): Use it here.
57231
57232 1999-11-05  Jim Meyering  <meyering@ascend.com>
57233
57234         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Move some tests from
57235         configure.in of textutils, fileutils, and sh-utils into this one
57236         (shared between those packages) file.
57237         Use `AC_CHECK_MEMBERS((struct stat.st_blksize))' instead of deprecated
57238         AC_STRUCT_ST_BLKSIZE.
57239
57240 1999-11-03  Jim Meyering  <meyering@ascend.com>
57241
57242         * m4/ssize_t.m4: Remove file.  No longer needed since the new version
57243         of AC_CHECK_TYPE checks includes unistd.h.
57244         * m4/jm-macros.m4: Use straight `AC_CHECK_TYPE(ssize_t, int)'.
57245         Suggestion from Akim Demaille.
57246
57247 1999-10-30  Jim Meyering  <meyering@ascend.com>
57248
57249         * m4/uintmax_t.m4: Require 2.14a.  Remove backslash before backtick in
57250         m4-quoted string.
57251         * m4/ls-mntd-fs.m4: Likewise.
57252         * m4/jm-macros.m4: Likewise.  Also, use AC_TYPE_SSIZE_T instead
57253         * m4/jm-winsz1.m4: Likewise.
57254
57255         * m4/const.m4: Remove file, since the fix made it into the experimental
57256         version of autoconf.
57257         * m4/mktime.m4: Likewise.
57258
57259         * m4/check-type.m4: Remove file, now that the latest version of
57260         AC_CHECK_TYPE takes a third arg to specify additional #includes.
57261
57262         * m4/ssize_t.m4: New file, requires experimental version of autoconf.
57263         * m4/jm-macros.m4: Use new AC_TYPE_SSIZE_T instead of my hacked
57264         AC_CHECK_TYPE.
57265
57266 1999-10-04  Jim Meyering  <meyering@ascend.com>
57267
57268         * m4/jm-macros.m4: Don't require autoconf-2.14.1.
57269
57270 1999-09-22  Paul Eggert  <eggert@twinsun.com>
57271
57272         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Work around GCC
57273         2.95.1 bug with HP-UX 10.20.
57274
57275 1999-09-17  Jim Meyering  <meyering@ascend.com>
57276
57277         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add strdup.
57278         Paul Nevai reported a link failure on a NeXT CUBE with NeXTSTEP 3.3
57279         due to missing strdup (against sh-utils-2.0).
57280
57281 1999-08-29  Jim Meyering  <meyering@ascend.com>
57282
57283         * m4/jm-macros.m4: Require jm_BISON.
57284         * m4/bison.m4: New file.
57285
57286 1999-08-17  Paul Eggert  <eggert@twinsun.com>
57287
57288         * m4/largefile.m4 (AC_SYS_LARGEFILE): Fix typo: missing comma
57289         in value for _FILE_OFFSET_BITS, which broke ports to HP-UX 10.20.
57290
57291 1999-08-05  Jim Meyering  <meyering@ascend.com>
57292
57293         * m4/getline.m4: Rename test file from conftestdata to conftest.data
57294         to avoid conflicts with `conftest' on 8+3 filesystems.
57295         Suggestion from Eli Zaretskii.
57296
57297 1999-08-04  Jim Meyering  <meyering@ascend.com>
57298
57299         * m4/jm-macros.m4: Move a 4-line block of code from the configure.in of
57300         fileutils and sh-utils (textutils's getline test was inadequate).
57301         (AM_FUNC_GETLINE): Run this test.
57302         (AC_CHECK_FUNCS): Check for getdelim.
57303         Reported by Bob Proulx.
57304
57305 1999-08-02  Jim Meyering  <meyering@ascend.com>
57306
57307         * m4/jm-macros.m4: Add a comment.
57308
57309 1999-08-01  Paul Eggert  <eggert@twinsun.com>
57310
57311         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Check whether
57312         <inttypes.h> defines strtoumax as a macro (and not as a
57313         function).
57314
57315 1999-08-01  Paul Eggert  <eggert@twinsun.com>
57316
57317         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Make sure
57318         that we can shift, multiply and divide unsigned long long
57319         values; Ultrix cc can't do it.
57320
57321 1999-08-01  Paul Eggert  <eggert@twinsun.com>
57322
57323         * m4/mktime.m4: New file, which is a preview of what should appear
57324         in the next public autoconf release.
57325
57326 1999-08-01  Paul Eggert  <eggert@twinsun.com>
57327
57328         * m4/lfs.m4: Remove this file.
57329         * m4/largefile.m4: New file.  It contains the old contents of
57330         lfs.m4, except that all names with prefix AC_LFS have been
57331         changed to use the prefix AC_SYS_LARGEFILE instead, to be
57332         compatible with future autoconf versions.  Also, some minor m4
57333         quoting problems have been fixed.
57334
57335 1999-08-01  Paul Eggert  <eggert@twinsun.com>
57336
57337         * m4/gettext.m4 (AM_WITH_NLS): Remove unnecessary lines.
57338         Fix typo: $nls_cv_header_intl was misspelled as $nsl_cv_header_intl.
57339         (AM_GNU_GETTEXT): Fix problem with brackets and m4 quoting,
57340         and simplify the shell code.
57341
57342 1999-08-01  Jim Meyering  <meyering@ascend.com>
57343
57344         * m4/mktime.m4 (AC_FUNC_MKTIME): Undefine to avoid syntax errors from
57345         m4.
57346
57347 1999-07-20  Jim Meyering  <meyering@ascend.com>
57348
57349         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add memmove.
57350
57351 1999-07-15  Jim Meyering  <meyering@ascend.com>
57352
57353         * m4/jm-macros.m4 (AC_CHECK_FUNCS): Check for getpagesize.
57354
57355 1999-05-22  Jim Meyering  <meyering@ascend.com>
57356
57357         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add memchr.
57358
57359 1999-05-20  Jim Meyering  <meyering@ascend.com>
57360
57361         * m4/search-libs.m4 [AC_SEARCH_LIBS]: Quote name in undefine.
57362         Add a colon after each `then' in case $4 is empty.
57363
57364 1999-05-16  Jim Meyering  <meyering@ascend.com>
57365
57366         * m4/search-libs.m4: New file to override autoconf's AC_SEARCH_LIBS.
57367
57368 1999-05-10  Jim Meyering  <meyering@ascend.com>
57369
57370         * m4/jm-mktime.m4: Reflect renaming: AM_FUNC_MKTIME -> AC_FUNC_MKTIME.
57371
57372         * m4/jm-macros.m4: Require 2.14.1, since we use newly-renamed
57373         AC_FUNC_MKTIME.
57374
57375 1999-05-10  Andreas Schwab  <schwab@issan.cs.uni-dortmund.de>
57376
57377         * m4/jm-mktime.m4, putenv.m4: Fix typos in config.h comments.
57378
57379 1999-05-04  Paul Eggert  <eggert@twinsun.com>
57380
57381         * m4/lfs.m4 (AC_LFS): -n32, -o32, and -n64 should be in CFLAGS,
57382         not CPPFLAGS, so that linking works correctly in IRIX.
57383
57384 1999-04-30  Paul Eggert  <eggert@twinsun.com>
57385
57386         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add dup2.
57387
57388 1999-04-20  Paul Eggert  <eggert@twinsun.com>
57389
57390         * m4/uintmax_t.m4 (jm_AC_TYPE_UINTMAX_T): Move unsigned long
57391         long check into new jm_AC_TYPE_UNSIGNED_LONG_LONG macro.
57392         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require
57393         jm_AC_TYPE_UNSIGNED_LONG_LONG.
57394         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): New file/macro.
57395
57396         * m4/lfs.m4: Port to AIX and HP-UX.  Support cross-compilation.
57397
57398 1999-04-20  Jim Meyering  <meyering@ascend.com>
57399
57400         * m4/xstrtoumax.m4: Require jm_AC_TYPE_UNSIGNED_LONG_LONG.
57401         AC_REPLACE xstroull if necessary.  From Paul Eggert.
57402         (AC_CHECK_FUNCS): Remove strtoull, strtoumax, strtouq.
57403
57404 1999-04-18  Jim Meyering  <meyering@ascend.com>
57405
57406         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): New file/macro.
57407         * m4/jm-macros.m4: Use it.
57408
57409 1999-04-06  Jim Meyering  <meyering@ascend.com>
57410
57411         * m4/strftime.m4: Remove test for %f.
57412
57413 1999-03-29  Jim Meyering  <meyering@ascend.com>
57414
57415         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): New macro, contains the
57416         superset of the AC_TYPE_* checks in the textutils, fileutils,
57417         and sh-utils, plus AC_TYPE_PID_T.  Paul Eggert suggested adding
57418         AC_TYPE_PID_T.
57419
57420 1999-03-28  Jim Meyering  <meyering@ascend.com>
57421
57422         * m4/jm-macros.m4: Define GNU_PACKAGE here.
57423         Be sure to AC_SUBST it, once again, so that @GNU_PACKAGE@ is
57424         replaced e.g., in the *.sh files of the sh-utils.
57425
57426 1999-03-20  Jim Meyering  <meyering@ascend.com>
57427
57428         * m4/jm-macros.m4: s/jm_WITH_REGEX/jm_INCLUDED_REGEX/.
57429         * m4/regex.m4 (jm_INCLUDED_REGEX): Rename from jm_WITH_REGEX.
57430         Don't depend on AM_GLIBC.  Suggestions from Alain Magloire.
57431
57432 1999-03-19  Jim Meyering  <meyering@ascend.com>
57433
57434         * m4/jm-winsz1.m4 (jm_WINSIZE_IN_PTEM): New macro.
57435
57436 1999-03-12  Jim Meyering  <meyering@ascend.com>
57437
57438         * m4/jm-macros.m4: Use AC_FUNC_SETVBUF_REVERSED.
57439
57440 1999-03-07  Jim Meyering  <meyering@ascend.com>
57441
57442         * m4/jm-glibc-io.m4: Use only those *_unlocked macros that are
57443         declared.
57444
57445 1999-02-17  Jim Meyering  <meyering@ascend.com>
57446
57447         * m4/gettext.m4 (AM_GNU_GETTEXT): Do `changequote' around use of
57448         brackets in macro definition.  From Eli Zaretskii and Alain Magloire.
57449
57450 1999-02-07  Jim Meyering  <meyering@ascend.com>
57451
57452         * m4/group-member.m4: New file -- extracted from sh-utils'
57453         configure.in.
57454
57455         1999-02-05  Eli Zaretskii  <eliz@is.elta.co.il>
57456         * m4/gettext.m4: Support DOS-style d:/foo/bar absolute file names.
57457
57458 1999-02-06  Jim Meyering  <meyering@ascend.com>
57459
57460         * m4/chown.m4: Use `AC_SUBST(LIBOBJS)' since we set LIBOBJS.
57461         * m4/fnmatch.m4: Likewise.
57462         * m4/getgroups.m4: Likewise.
57463         * m4/lstat.m4: Likewise.
57464         * m4/malloc.m4: Likewise.
57465         * m4/putenv.m4: Likewise.
57466         * m4/realloc.m4: Likewise.
57467         * m4/regex.m4: Likewise.
57468         * m4/stat.m4: Likewise.
57469         * m4/strftime.m4: Likewise.
57470         Suggestion from Alain Magloire.
57471
57472         * m4/chown.m4: Use `.$ac_objext', not `.o'.
57473         * m4/fnmatch.m4: Likewise.
57474         * m4/getgroups.m4: Likewise.
57475         * m4/getline.m4: Likewise.
57476         * m4/lstat.m4: Likewise.
57477         * m4/malloc.m4: Likewise.
57478         * m4/memcmp.m4: Likewise.
57479         * m4/putenv.m4: Likewise.
57480         * m4/realloc.m4: Likewise.
57481         * m4/regex.m4: Likewise.
57482         * m4/stat.m4: Likewise.
57483         * m4/strftime.m4: Likewise.
57484         Suggestion from Alain Magloire.
57485
57486         * m4/jm-macros.m4: Actually invoke jm_WITH_REGEX now that it requires
57487         an argument.
57488
57489         * m4/regex.m4: Add a run-time Test for proper operation of
57490         re_compile_pattern.
57491
57492 1999-01-31  Jim Meyering  <meyering@ascend.com>
57493
57494         * m4/getloadavg.m4: Check for locale.h and the function, setlocale.
57495
57496 1999-01-30  Jim Meyering  <meyering@ascend.com>
57497
57498         * m4/check-type.m4: Use 3-arg form of AC_DEFINE.
57499
57500         * m4/jm-mktime.m4: Make this a wrapper around the official
57501         AM_FUNC_MKTIME rather than my private copy, now that the official one
57502         is up to date.
57503         * m4/mktime.m4: Remove file.
57504
57505         * m4/getloadavg.m4: Use 3-arg form of AC_DEFINE.
57506         * m4/uptime.m4: Likewise.
57507         * m4/uintmax_t.m4: Likewise.
57508
57509 1999-01-28  Jim Meyering  <meyering@ascend.com>
57510
57511         * m4/jm-macros.m4: Use jm_AFS.
57512         * m4/afs.m4: New file (from fileutils' configure.in).
57513
57514         * m4/assert.m4: Use the 3-argument forms of AC_DEFINE* macros.
57515         * m4/chown.m4: Likewise.
57516         * m4/d-ino.m4: Likewise.
57517         * m4/d-type.m4: Likewise.
57518         * m4/fnmatch.m4: Likewise.
57519         * m4/getgroups.m4: Likewise.
57520         * m4/gettext.m4: Likewise.
57521         * m4/jm-mktime.m4: Likewise.
57522         * m4/jm-winsz2.m4: Likewise.
57523         * m4/lcmessage.m4: Likewise.
57524         * m4/ls-mntd-fs.m4: Likewise.
57525         * m4/malloc.m4: Likewise.
57526         * m4/memcmp.m4: Likewise.
57527         * m4/putenv.m4: Likewise.
57528         * m4/realloc.m4: Likewise.
57529         * m4/st_mtim.m4: Likewise.
57530         * m4/strftime.m4: Likewise.
57531
57532 1999-01-16  Jim Meyering  <meyering@ascend.com>
57533
57534         * m4/jm-macros.m4 (ARGMATCH_DIE): Define.
57535         (ARGMATCH_DIE_DECL): Define.
57536
57537 1999-01-12  Jim Meyering  <meyering@ascend.com>
57538
57539         * m4/Makefile.am.in: Rewrite to avoid using fmt.
57540         Reported by Lars Hecking.
57541
57542 1999-01-10  Jim Meyering  <meyering@ascend.com>
57543
57544         * m4/fstypename.m4: Use the new 3-arg form of AC_DEFINE instead of my
57545         gross kludge.
57546         * m4/inttypes_h.m4: Likewise.
57547         * m4/lstat.m4: Likewise.
57548         * m4/malloc.m4: Likewise.
57549         * m4/readdir.m4: Likewise.
57550         * m4/realloc.m4: Likewise.
57551         * m4/st_dm_mode.m4: Likewise.
57552         * m4/stat.m4: Likewise.
57553         * m4/utimbuf.m4: Likewise.
57554         * m4/utimes.m4: Likewise.
57555
57556         * m4/check-decl.m4: Use the new 3-arg form of AC_DEFINE instead of the
57557         AC_CHECK_FUNCS hack.  Now, it's still a hack, but at least the
57558         comments in config.h.in are meaningful.
57559
57560         * m4/jm-macros.m4: Require autoconf-2.13 here.
57561
57562         * m4/regex.m4: By default, don't use the included regex.c on systems
57563         with glibc 2.  Suggestion from Uli Drepper.
57564
57565 1999-01-02  Jim Meyering  <meyering@ascend.com>
57566
57567         * m4/jm-macros.m4: Replace strcasecmp and strncasecmp.
57568
57569 1998-12-18  Jim Meyering  <meyering@ascend.com>
57570
57571         * m4/Makefile.am.in (Makefile.am): Simplify rule.
57572         Based on a suggestion from Lars Hecking.
57573
57574 1998-11-16  Paul Eggert  <eggert@twinsun.com>
57575
57576         * m4/lfs.m4 (AC_LFS): Add support for HP-UX 10.20 and HP-UX 11.
57577
57578 1998-11-16  Jim Meyering  <meyering@ascend.com>
57579
57580         * m4/lfs.m4: Double-quote the `uname...` expression.
57581
57582 1998-11-14  Jim Meyering  <meyering@ascend.com>
57583
57584         * m4/lstat.m4: Correct comment.  POSIX does not permit it to succeed.
57585         * m4/stat.m4: Likewise.
57586
57587 1998-11-03  Jim Meyering  <meyering@ascend.com>
57588
57589         * m4/stat.m4: Rewrite to set HAVE_STAT_EMPTY_STRING_BUG.
57590         * m4/lstat.m4: Rewrite to set HAVE_LSTAT_EMPTY_STRING_BUG.
57591
57592 1998-10-18  Jim Meyering  <meyering@ascend.com>
57593
57594         * m4/check-decl.m4 (jm_CHECK_DECL_LOCALTIME_R): Remove macro.
57595
57596 1998-10-17  Jim Meyering  <meyering@ascend.com>
57597
57598         * m4/decl.m4 (jm_CHECK_DECLARATION): Don't hard-code which headers to
57599         include, though we still hard-code the `require'-like AC_CHECK_HEADERS
57600         calls for those previously hard-coded headers.  Instead, take a new
57601         parameter.
57602         (jm_CHECK_DECLARATIONS): Reflect interface change.
57603         * m4/check-decl.m4 (jm_CHECK_DECLS): Likewise.
57604         (jm_CHECK_DECL_LOCALTIME_R): New macro.
57605
57606         * m4/mktime.m4: Test for spring-forward gap before long-running test.
57607
57608 1998-10-14  Jim Meyering  <meyering@ascend.com>
57609
57610         * m4/mktime.m4: Use the more portable "TZ=PST8PDT,M4.1.0,M10.5.0"
57611         instead of "TZ=America/Vancouver".  From Paul Eggert.
57612
57613 1998-10-11  Jim Meyering  <meyering@ascend.com>
57614
57615         * m4/mktime.m4 (jm_AM_FUNC_MKTIME): New file and macro.
57616         This adds a test for a recently added compatibility fix for mktime.c.
57617         * m4/jm-mktime.m4: Require jm_AM_FUNC_MKTIME, not AM_FUNC_MKTIME.
57618
57619 1998-09-27  Jim Meyering  <meyering@ascend.com>
57620
57621         * m4/jm-macros.m4 (jm_MACROS): Require jm_FUNC_FNMATCH.
57622
57623         * m4/fnmatch.m4 (jm_FUNC_FNMATCH): New file/macro.  Extracted from
57624         ../configure.in, including a change from Gordon Matzigkeit to allow
57625         cross-compiling for the Hurd.
57626
57627         * m4/glibc.m4: New file/macro to test for the GNU C Library
57628         versions 1 and 2.  From Gordon Matzigkeit.
57629         Indent.
57630
57631 1998-09-21  Jim Meyering  <meyering@ascend.com>
57632
57633         * m4/chown.m4: Declare locals: before, after.  From Andries Brouwer.
57634
57635 1998-08-18  Paul Eggert  <eggert@twinsun.com>
57636
57637         Port nanosecond-resolution times to UnixWare 2.1.2 and
57638         pedantic Solaris 2.6.
57639
57640         * m4/st_mtim.m4 (AC_STRUCT_ST_MTIM_NSEC): Renamed from
57641         AC_STRUCT_ST_MTIM.
57642         * m4/st_mtim.m4 (AC_STRUCT_ST_MTIM_NSEC):
57643         Generate name of ns member, instead of just 1 or undef.
57644         Allow for UnixWare 2.1.2 and Solaris 2.6 if in pedantic mode.
57645
57646 1998-08-15  Jim Meyering  <meyering@ascend.com>
57647
57648         * m4/ssize_t.m4 (jm_TYPE_SSIZE_T): Remove file.
57649         * m4/check-type.m4: New file.  Replacement for AC_CHECK_TYPE.
57650         * m4/jm-macros.m4: Use the new AC_CHECK_TYPE(ssize_t, int)
57651         instead of jm_TYPE_SSIZE_T.
57652
57653 1998-08-12  Jim Meyering  <meyering@ascend.com>
57654
57655         * m4/st_dm_mode.m4: New file.  From Johan Danielsson.
57656
57657 1998-08-02  Jim Meyering  <meyering@ascend.com>
57658
57659         * m4/st_mtim.m4: Use hack to avoid having to put #undef HAVE_ST_MTIM
57660         in acconfig.h manually.
57661
57662 1998-07-31  Paul Eggert  <eggert@twinsun.com>
57663
57664         * m4/st_mtim.m4: New file.
57665
57666 1998-07-28  Jim Meyering  <meyering@ascend.com>
57667
57668         * m4/utimes.m4: Undef stat.
57669
57670 1998-07-25  Jim Meyering  <meyering@ascend.com>
57671
57672         * m4/utime.m4 (jm_FUNC_UTIME): New file and macro.
57673         * m4/utimes.m4 (jm_FUNC_UTIMES_NULL): New file and macro.
57674
57675 1998-07-09  Manfred Hollstein  <manfred@s-direktnet.de>
57676
57677         * m4/chown.m4 (jm_FUNC_CHOWN): Add a check to verify that the
57678         uid and gid actually remain unchanged.
57679
57680 1998-07-07  Jim Meyering  <meyering@ascend.com>
57681
57682         * m4/jm-glibc-io.m4: Remove fclose_unlocked.
57683
57684 1998-07-04  Jim Meyering  <meyering@ascend.com>
57685
57686         * m4/regex.m4: Use syscmd, ifelse, and sysval.  Mainly as an exercise
57687         to prove that this macro can be used in packages without regex.c.
57688
57689 1998-07-04  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
57690
57691         * m4/gettext.m4 (AM_WITH_NLS): Remove intl/libintl.h if <libintl.h>
57692         is to be used.
57693
57694 1998-07-03  Jim Meyering  <meyering@ascend.com>
57695
57696         * m4/gettext.m4: Add -lintl if it's found to be necessary.
57697
57698         * m4/gettext.m4: New file -- from gettext-0.10.35.
57699         * m4/lcmessage.m4: Likewise.
57700         * m4/progtest.m4: Likewise.
57701
57702         * m4/regex.m4 (jm_WITH_REGEX): New file and macro.
57703         * m4/jm-macros.m4: Require the new macro.
57704
57705 1998-06-29  Jim Meyering  <meyering@ascend.com>
57706
57707         * m4/fstypename.m4: Include sys/param.h.  NetBSD 1.3.1 requires this
57708         for the definition of NGROUPS (used in a system header included
57709         by sys/mount.h).
57710
57711 1998-06-28  Jim Meyering  <meyering@ascend.com>
57712
57713         * m4/ls-mntd-fs.m4: New file.
57714         * m4/fstypename.m4: New file.
57715
57716         * m4/jm-macros.m4: Require the new macro.
57717         * m4/jm-glibc-io.m4: New file.
57718
57719 1998-05-19  Jim Meyering  <meyering@ascend.com>
57720
57721         * m4/jm-macros.m4: Add jm_FUNC_LCHOWN.
57722         * m4/lchown.m4: New file.
57723
57724         * m4/Makefile.am.in: New file.
57725         * m4/Makefile.am (Makefile.am): Depend on Makefile.am.in.
57726
57727 1998-05-14  Jim Meyering  <meyering@ascend.com>
57728
57729         * m4/Makefile.am (EXTRA_DIST): Add them.
57730         * m4/jm-macros.m4: New file.
57731         * m4/utimbuf.m4: New file.
57732
57733 1998-05-12  Jim Meyering  <meyering@ascend.com>
57734
57735         * m4/Makefile.am (EXTRA_DIST): Add isc-posix.m4.
57736
57737 1998-05-11  Jim Meyering  <meyering@ascend.com>
57738
57739         * m4/isc-posix.m4: New file.
57740
57741 1998-05-10  Jim Meyering  <meyering@ascend.com>
57742
57743         * m4/jm-mktime.m4: Use AM_FUNC_MKTIME, now that it's up to date.
57744
57745 1998-05-09  Jim Meyering  <meyering@ascend.com>
57746
57747         * m4/Makefile.am (EXTRA_DIST): Add ssize_t.m4.
57748         (EXTRA_DIST): Remove mktime.m4, now that the new version is included
57749         with automake.
57750
57751         * m4/ssize_t.m4: New file.
57752         * m4/mktime.m4: Remove file -- the new automake has this now.
57753
57754 1998-04-26  Jim Meyering  <meyering@ascend.com>
57755
57756         * m4/assert.m4: New file.
57757         * m4/Makefile.am (EXTRA_DIST): Add assert.m4.
57758
57759 1998-04-05  Jim Meyering  <meyering@ascend.com>
57760
57761         * m4/prereq.m4 (jm_PREREQ_REGEX): New macro.
57762         (jm_PREREQ): Use it here.
57763
57764 1998-03-23  Jim Meyering  <meyering@eng.ascend.com>
57765
57766         * m4/inttypes_h.m4: Kludges so I don't have to add HAVE_INTTYPES_H
57767         in acconfig.h.
57768
57769 1998-03-15  Jim Meyering  <meyering@eng.ascend.com>
57770
57771         * m4/prereq.m4: New file.
57772         * m4/error.m4: New file.
57773         * m4/Makefile.am (EXTRA_DIST): Add error.m4 and prereq.m4.
57774
57775 1998-02-07  Jim Meyering  <meyering@eng.ascend.com>
57776
57777         * m4/getline.m4: Don't set am_cv_func_working_getline before the
57778         cache-check for the same variable -- that defeated the purpose of
57779         the test; the test program was never run.  This was a problem only
57780         on systems with losing getline functions -- HP-UX 10.20 is one.
57781         Reported by Bjorn Helgaas.
57782
57783 1998-02-06  Jim Meyering  <meyering@eng.ascend.com>
57784
57785         * m4/Makefile.am (EXTRA_DIST): Add perl.m4.
57786
57787 1998-01-10  Jim Meyering  <meyering@na-net.ornl.gov>
57788
57789         * m4/Makefile.am (EXTRA_DIST): Add const.m4.
57790
57791         * m4/const.m4: New file.  Use an initializer in this declaration
57792         typedef int charset[2]; const charset x;
57793         Reported by Bob Glickstein.
57794
57795 1997-12-21  Jim Meyering  <meyering@na-net.ornl.gov>
57796
57797         * m4/chown.m4: Fix reversed types on -1 args to chown.
57798         From Kaveh Ghazi.
57799
57800 1997-12-14  Jim Meyering  <meyering@na-net.ornl.gov>
57801
57802         * m4/check-decl.m4: s/DECLARATION_/DECL_/g.
57803         Add lseek and memchr.
57804
57805         * m4/decl.m4: s/HAVE_DECLARATION_/HAVE_DECL_/g.
57806         T.E.Dickey <dickey@clark.net> said that some older preprocessors
57807         have a 20-character limit on names.
57808
57809 1997-11-30  Jim Meyering  <meyering@na-net.ornl.gov>
57810
57811         * m4/inttypes_h.m4: New file.
57812         * m4/uintmax_t.m4: New file.
57813         * m4/Makefile.am (EXTRA_DIST): Add inttypes_h.m4 and uintmax_t.m4.
57814
57815
57816         -----
57817
57818         Local Variables:
57819         coding: utf-8
57820         End:
57821
57822         Copyright (C) 1997-2009 Free Software Foundation, Inc.
57823
57824         Copying and distribution of this file, with or without
57825         modification, are permitted provided the copyright notice
57826         and this notice are preserved.