Glibc finally accepted the memmem speedup code, bugzilla #5514.
[pspp] / ChangeLog
1 2008-05-15  Eric Blake  <ebb9@byu.net>
2
3         Glibc finally accepted the memmem speedup code, bugzilla #5514.
4         * doc/glibc-functions/memmem.texi (memmem): Mention last broken
5         glibc version.
6         * doc/glibc-functions/strcasestr.texi (strcasestr): Likewise.
7         * doc/posix-functions/strstr.texi (strstr): Likewise.
8         * lib/str-two-way.h (MAX): Sychronize with glibc.
9
10 2008-05-15  Paolo Bonzini  <bonzini@gnu.org>
11
12         * lib/regcomp.c (optimize_utf8): Add a note on why we test
13         opr.ctx_type.
14         (calc_first): Initialize constraint field.
15         (duplicate_node_closure): Use it instead of special casing ANCHORS.
16         Fix grammar.
17         (duplicate_node): Merge constraint field for all node types.
18         (calc_eclosure_iter): Look at constraint field for all node types.
19         * lib/regex_internal.c (create_cd_newstate): Don't look at
20         opr.ctx_type.
21
22 2008-05-14  Bruno Haible  <bruno@clisp.org>
23
24         Help GCC to do better code generation.
25         * lib/eealloc.h (eemalloc) [GCC >= 3]: Declare with attribute 'malloc'.
26         * lib/pagealign_alloc.h (pagealign_alloc, pagealign_xalloc): Likewise.
27         * lib/xalloc.h (ATTRIBUTE_MALLOC): New macro.
28         (xmalloc, xzalloc, xcalloc, xmemdup, xstrdup, xnmalloc, xcharalloc):
29         Declare with attribute 'malloc' if supported.
30
31 2008-05-14  Lasse Collin  <lasse.collin@tukaani.org>
32
33         use "echo STR|wc -c" rather than unportable "expr length STR"
34         * build-aux/mktempd (mktempd): Vendor-supplied expr from at least
35         OpenBSD 4.3 and Solaris 10 do not honor expr's "length" function.
36
37 2008-05-14  Jim Meyering  <meyering@redhat.com>
38
39         use dd ibs=$n count=1 ... rather than less-portable head -c$n
40         * build-aux/mktempd (rand_bytes): head's -cN option is not accepted
41         by Solaris 10's /bin/head or by the one from HP-UX 11.x.
42         Reported in http://sourceforge.net/forum/message.php?msg_id=4960334
43         via Collin Lasse.
44
45 2008-05-14  Eric Blake  <ebb9@byu.net>
46
47         Avoid quadratic growth in gl_LIBSOURCES.
48         * gnulib-tool (func_emit_initmacro_done): s/\(m4_append\)_uniq/\1/.
49         Suggested by Bruno Haible.
50
51         Test xmemdup0.
52         * modules/xmemdup0-tests: New file.
53         * tests/test-xmemdup0.c: Likewise.
54
55 2008-05-13  Eric Blake  <ebb9@byu.net>
56
57         Split xmemdup0 into its own module.
58         * modules/xmemdup0: New file.
59         * lib/xmemdup0.h: Likewise.
60         * lib/xmemdup0.c: Likewise.
61         * MODULES.html.sh (Memory management functions): Add xmemdup0.
62         * lib/xalloc.h (xmemdup0): Remove.
63         * lib/xmalloc.c (xmemdup0): Likewise.
64
65 2008-05-13  Eric Blake  <ebb9@byu.net>
66             Bruno Haible  <bruno@clisp.org>
67
68         Reduce number of forks required during autoconf.
69         * gnulib-tool (func_emit_initmacro_start): Prepare gl_LIBSOURCES_LIST
70         and gl_LIBSOURCES_DIR.
71         (func_emit_initmacro_end): Use them here in a single m4_syscmd...
72         (func_emit_initmacro_done) <gl_LIBSOURCES>: ...rather than in one
73         m4_syscmd per file.
74         <m4_foreach_w>: Move...
75         * m4/gnulib-common.m4 (m4_foreach_w): ...here.
76
77 2008-05-13  Eric Blake  <ebb9@byu.net>
78
79         * gnulib-tool: Fix various comment typos.
80
81 2008-05-12  Bruno Haible  <bruno@clisp.org>
82
83         Tailor the linebreaking algorithm.
84         * lib/unilbrk/tables.c (unilbrk_table): Change (IS,AL) entry.
85
86 2008-05-12  Bruno Haible  <bruno@clisp.org>
87
88         Update to Unicode 5.0.0.
89         * lib/unilbrk/tables.h (LBP_*): Add LBP_WJ, LBP_H2, LBP_H3, LBP_JL,
90         LBP_JV, LBP_JT. Redistribute values.
91         (unilbrk_table): Change size.
92         * lib/unilbrk/tables.c (unilbrk_table): Change size. Update to match
93         Unicode TR#14 rev. 22.
94         * lib/unilbrk/gen-lbrk.c (LBP_*): Add LBP_WJ, LBP_H2, LBP_H3, LBP_JL,
95         LBP_JV, LBP_JT. Redistribute values.
96         (get_lbp): Update to match Unicode TR#14 rev. 21/22 and Unicode 5.0.0.
97         (debug_output_lbp, fill_org_lbp, debug_output_org_lbp, output_lbp):
98         Update.
99         * lib/unilbrk/lbrkprop1.h: Regenerated.
100         * lib/unilbrk/lbrkprop2.h: Regenerated.
101         * lib/unilbrk/u8-possible-linebreaks.c (u8_possible_linebreaks):
102         Change handling of LBP_CM after LBP_ZW. Update for new value of LBP_BK.
103         * lib/unilbrk/u16-possible-linebreaks.c (u16_possible_linebreaks):
104         Likewise.
105         * lib/unilbrk/u32-possible-linebreaks.c (u32_possible_linebreaks):
106         Likewise.
107         * tests/unilbrk/test-u8-possible-linebreaks.c (main): Update expected
108         result.
109         * tests/unilbrk/test-u16-possible-linebreaks.c (main): Likewise.
110         * tests/unilbrk/test-u32-possible-linebreaks.c (main): Likewise.
111         * tests/unilbrk/test-ulc-possible-linebreaks.c (main): Likewise.
112         * tests/unilbrk/test-u8-width-linebreaks.c (main): Likewise.
113         * tests/unilbrk/test-u16-width-linebreaks.c (main): Likewise.
114         * tests/unilbrk/test-u32-width-linebreaks.c (main): Likewise.
115
116 2008-05-11  Bruno Haible  <bruno@clisp.org>
117
118         * lib/unilbrk/gen-lbrk.c (output_lbp): Fix whitespace.
119
120 2008-05-11  Bruno Haible  <bruno@clisp.org>
121
122         * lib/unilbrk/gen-lbrk.c: New file, from GNU gettext (gen-lbrkprop.c).
123         * modules/unilbrk/gen-lbrk: New file.
124
125 2008-05-11  Bruno Haible  <bruno@clisp.org>
126
127         * m4/sha256.m4 (gl_SHA256): Require AC_C_INLINE.
128         * m4/sha512.m4 (gl_SHA512): Likewise.
129
130 2008-05-11  Jim Meyering  <meyering@redhat.com>
131
132         New modules: crypto/sha256, crypto/sha512 (from coreutils)
133         * modules/crypto/sha256: New file.
134         * modules/crypto/sha512: Likewise.
135         * lib/sha256.c: Likewise.
136         * lib/sha256.h: Likewise.
137         * lib/sha512.c: Likewise.
138         * lib/sha512.h: Likewise.
139         * lib/u64.h: Likewise.
140         * m4/sha256.m4: Likewise.
141         * m4/sha512.m4: Likewise.
142         * MODULES.html.sh (Cryptographic computations (low-level)): List them.
143
144 2008-05-10  Bruno Haible  <bruno@clisp.org>
145
146         * MODULES.html.sh (Environment variables <stdlib.h>): Add unsetenv.
147         (Input/Output <stdio.h>): Add xprintf.
148         (Signal handling <signal.h>): Add strsignal.
149         (Cryptographic computations (high-level)): Add crypto/gc-camellia.
150         (Core language properties): Add func.
151         (Mathematics <math.h>): Add ceil, floor, frexp-nolibm.
152         (Support for systems lacking POSIX:2001): Add environ, EOVERFLOW,
153         strings.
154         (Enhancements for POSIX:2001 functions): Add iconv_open-utf.
155         (Input/output): New section.
156         (File system functions): Add openat-die, stat-macros.
157         (Networking functions): Add sockets.
158         (Unicode string functions): Add unictype/*.
159         (Support for building libraries and executables): Add gperf.
160         (Support for building documentation): Add agpl-3.0.
161         (Misc): Add nocrash.
162
163 2008-05-10  Bruno Haible  <bruno@clisp.org>
164
165         * modules/unictype/gen-ctype: New file.
166
167 2008-05-10  Jim Meyering  <meyering@redhat.com>
168
169         Make chdir-safer.c more efficient on a system with no symlinks.
170         * lib/chdir-safer.c (chdir_no_follow): Skip lstat and fstat calls
171         also if ELOOP is zero.  Suggested by Bruno Haible.
172
173         Make chdir-safer.c slightly safer.
174         * lib/chdir-safer.c (chdir_no_follow): Test HAVE_WORKING_O_NOFOLLOW,
175         not O_NOFOLLOW, in case the latter is nonzero and open ignores it.
176
177         Avoid compile failure on systems without ELOOP (like mingw).
178         * lib/chdir-safer.c (ELOOP): Define if not already defined.
179         Reported by Bruno Haible.
180
181 2008-05-10  Bruno Haible  <bruno@clisp.org>
182
183         * lib/unilbrk/ulc-common.c: Include c-strcaseeq.h instead of streq.h.
184         (is_utf8_encoding): Use a case-insensitive comparison.
185         * modules/unilbrk/ulc-common (Depends-on): Add c-strcaseeq. Remove
186         streq.
187
188 2008-05-10  Bruno Haible  <bruno@clisp.org>
189
190         * lib/unilbrk/ulc-common.c: Don't include <stdlib.h>.
191         (iconv_string_length, iconv_string_keeping_offsets): Remove functions.
192         * lib/unilbrk/ulc-common.h (iconv_string_length,
193         iconv_string_keeping_offsets): Remove declarations.
194         * lib/unilbrk/ulc-possible-linebreaks.c: Include <string.h>, uniconv.h.
195         Don't include <iconv.h>, streq.h, xsize.h.
196         (ulc_possible_linebreaks): Use u8_conv_from_encoding for doing the
197         conversion.
198         * lib/unilbrk/ulc-width-linebreaks.c: Include uniconv.h. Don't include
199         <iconv.h>, streq.h, xsize.h.
200         (ulc_width_linebreaks): Use u8_conv_from_encoding for doing the
201         conversion.
202         * modules/unilbrk/ulc-common (Depends-on): Remove iconv.
203         * modules/unilbrk/ulc-possible-linebreaks (Depends-on): Add
204         uniconv/u8-conv-from-enc. Remove iconv_open, streq, xsize.
205         * modules/unilbrk/ulc-width-linebreaks (Depends-on): Likewise.
206
207 2008-05-10  Bruno Haible  <bruno@clisp.org>
208
209         * modules/unilbrk/ulc-width-linebreaks-tests: New file.
210         * tests/unilbrk/test-ulc-width-linebreaks.c: New file.
211
212         * modules/unilbrk/u32-width-linebreaks-tests: New file.
213         * tests/unilbrk/test-u32-width-linebreaks.c: New file.
214
215         * modules/unilbrk/u16-width-linebreaks-tests: New file.
216         * tests/unilbrk/test-u16-width-linebreaks.c: New file.
217
218         * modules/unilbrk/u8-width-linebreaks-tests: New file.
219         * tests/unilbrk/test-u8-width-linebreaks.c: New file.
220
221         * modules/unilbrk/ulc-possible-linebreaks-tests: New file.
222         * tests/unilbrk/test-ulc-possible-linebreaks.c: New file.
223
224         * modules/unilbrk/u32-possible-linebreaks-tests: New file.
225         * tests/unilbrk/test-u32-possible-linebreaks.c: New file.
226
227         * modules/unilbrk/u16-possible-linebreaks-tests: New file.
228         * tests/unilbrk/test-u16-possible-linebreaks.c: New file.
229
230         * modules/unilbrk/u8-possible-linebreaks-tests: New file.
231         * tests/unilbrk/test-u8-possible-linebreaks.c: New file.
232
233 2008-05-10  Bruno Haible  <bruno@clisp.org>
234
235         Split up 'linebreak' module.
236         * lib/unilbrk.h: New file, based on lib/linebreak.h.
237         * lib/unilbrk/lbrkprop1.h: New file, extracted from lib/lbrkprop.h.
238         * lib/unilbrk/lbrkprop2.h: New file, renamed from lib/lbrkprop.h with
239         modifications.
240         * lib/unilbrk/tables.h: New file, extracted from lib/linebreak.c.
241         * lib/unilbrk/tables.c: New file, extracted from lib/linebreak.c.
242         * lib/unilbrk/u8-possible-linebreaks.c: New file, extracted from
243         lib/linebreak.c.
244         * lib/unilbrk/u16-possible-linebreaks.c: New file, extracted from
245         lib/linebreak.c.
246         * lib/unilbrk/u32-possible-linebreaks.c: New file, extracted from
247         lib/linebreak.c.
248         * lib/unilbrk/ulc-common.h: New file, extracted from lib/linebreak.c.
249         * lib/unilbrk/ulc-common.c: New file, extracted from lib/linebreak.c.
250         * lib/unilbrk/ulc-possible-linebreaks.c: New file, extracted from
251         lib/linebreak.c.
252         * lib/unilbrk/u8-width-linebreaks.c: New file, extracted from
253         lib/linebreak.c.
254         * lib/unilbrk/u16-width-linebreaks.c: New file, extracted from
255         lib/linebreak.c.
256         * lib/unilbrk/u32-width-linebreaks.c: New file, extracted from
257         lib/linebreak.c.
258         * lib/unilbrk/ulc-width-linebreaks.c: New file, extracted from
259         lib/linebreak.c.
260         * modules/unilbrk/base: New file.
261         * modules/unilbrk/tables: New file.
262         * modules/unilbrk/u8-possible-linebreaks: New file.
263         * modules/unilbrk/u16-possible-linebreaks: New file.
264         * modules/unilbrk/u32-possible-linebreaks: New file.
265         * modules/unilbrk/ulc-common: New file.
266         * modules/unilbrk/ulc-possible-linebreaks: New file.
267         * modules/unilbrk/u8-width-linebreaks: New file.
268         * modules/unilbrk/u16-width-linebreaks: New file.
269         * modules/unilbrk/u32-width-linebreaks: New file.
270         * modules/unilbrk/ulc-width-linebreaks: New file.
271         * lib/linebreak.h: Remove file.
272         * lib/linebreak.c: Remove file.
273         * m4/linebreak.m4: Remove file.
274         * modules/linebreak: Remove file.
275         * NEWS: Mention the changes.
276
277 2008-05-09  Eric Blake  <ebb9@byu.net>
278
279         Add xmemdup0.
280         * lib/xalloc.h (xmemdup0): New prototype and C++ typesafe
281         implementation.
282         * lib/xmalloc.c (xmemdup0): New C implementation.
283
284 2008-05-08  Bruno Haible  <bruno@clisp.org>
285
286         * m4/wctype.m4 (gl_WCTYPE_H): Correct indentation.
287
288 2008-05-07  Eric Blake  <ebb9@byu.net>
289
290         Support cross-compilation of <wctype.h>.
291         * m4/wctype.m4 (gl_WCTYPE_H): Fix improper nesting in
292         AC_CACHE_CHECK.
293
294 2008-05-06  Soren Hansen  <soren@ubuntu.com>  (tiny change)
295
296         * build-aux/vc-list-files: Add support for bzr.
297
298 2008-05-03  Jim Meyering  <meyering@redhat.com>
299
300         avoid failed assertion with tight malloc
301         * tests/test-getndelim2.c: Correct an off-by-one assertion.
302
303 2008-05-03  Simon Josefsson  <simon@josefsson.org>
304
305         * m4/inet_pton.m4: Set HAVE_DECL_INET_PTON to 0 when declarations
306         are needed from arpa/inet.h.
307         * m4/inet_ntop.m4: Likewise, for HAVE_DECL_INET_NTOP.
308         Reported by Bruno Haible.
309
310 2008-05-02  Jim Meyering  <meyering@redhat.com>
311
312         avoid compilation error on FreeBSD 6
313         * tests/test-getaddrinfo.c [!defined EAI_NODATA] (EAI_NODATA): Define.
314
315 2008-05-01  Jim Meyering  <meyering@redhat.com>
316
317         useless-if-before-free: correct --help's exit status description
318         * build-aux/useless-if-before-free (usage): Like grep, exit 0
319         for one or more matches, etc.  Reported by Bruno Haible.
320
321         vc-list-files: make the stand-alone gnulib test work
322         * modules/vc-list-files-tests (configure.ac):
323         Define and AC_SUBST abs_aux_dir.
324         (Makefile.am) [TESTS_ENVIRONMENT]: Rather than passing
325         $(abs_top_srcdir) to each script and having each of them
326         duplicate the work of setting PATH, set PATH here, using
327         the new variable, abs_aux_dir instead.
328         * tests/test-vc-list-files-cvs.sh: Don't set PATH here.
329         * tests/test-vc-list-files-git.sh: Likewise.
330         Reported by Bruno Haible.
331
332 2008-05-01  Bruno Haible  <bruno@clisp.org>
333
334         * lib/getndelim2.c (getndelim2): Fix newsize computation during
335         reallocation. Rename 'done' to 'found_delimiter'.
336
337 2008-05-01  Jim Meyering  <meyering@redhat.com>
338
339         vc-list-files: accommodate /bin/sh like the one from Solaris 10
340         * build-aux/vc-list-files: Use `...`, not $(...).
341
342 2008-04-30  Jim Meyering  <meyering@redhat.com>
343
344         add tests for vc-list-files
345         * modules/vc-list-files-tests: New module.
346         * tests/test-vc-list-files-cvs.sh: New file.
347         * tests/test-vc-list-files-git.sh: New file.
348
349         avoid a warning from gcc
350         * lib/getndelim2.c (IF_LINT): Define.
351         (getndelim2): Use it to void a "may be used uninitialized" warning.
352
353         vc-list-files: work properly with build-aux/cvsu, too
354         * build-aux/vc-list-files: Hoist the "./"-removing code to apply
355         to all cvs-based clauses.
356
357         vc-list-files: work properly in the CVS+awk case, too
358         * build-aux/vc-list-files: In the CVS+awk case, remove "./" prefix.
359
360         vc-list-files: avoid use of ${*-*} that fails when /bin/sh is dash
361         * build-aux/vc-list-files: Simplify ${*-*} to $dir, since we no longer
362         take more than one file argument, so .  Add quotes, just in case $dir
363         ever contains a shell meta-character.  Prompted by Soren Hansen in
364         <http://thread.gmane.org/gmane.comp.emulators.libvirt/6221/focus=6240>.
365
366 2008-04-29  Eric Blake  <ebb9@byu.net>
367
368         Optimize getndelim2 to use block operations when possible.
369         * modules/getndelim2 (Depends-on): Add stdbool, freadptr,
370         freadseek, and memchr2.
371         * lib/getndelim2.c (getndelim2): Use them for block reads.
372
373 2008-04-29  Bruno Haible  <bruno@clisp.org>
374
375         * m4/inet_ntop.m4 (gl_INET_NTOP): Require gl_USE_SYSTEM_EXTENSIONS.
376         * m4/inet_pton.m4 (gl_INET_PTON): Likewise.
377         * modules/inet_ntop (Depends-on): Add extensions.
378         * modules/inet_pton (Depends-on): Likewise.
379         Reported by Simon Josefsson.
380
381 2008-04-29  Jim Meyering  <meyering@redhat.com>
382
383         When the is more than one match in a block, match all of them.
384         * build-aux/useless-if-before-free: Iterate through each block
385         until there are no more matches.
386
387         Fix broken useless-if-before-free script.
388         * build-aux/useless-if-before-free: Fix typo: missing "?" after
389         the expression to match cast of argument to free-like function.
390
391 2008-04-29  Eric Blake  <ebb9@byu.net>
392
393         Use new header.
394         * lib/getaddrinfo.c (includes): s/"inet_ntop.h"/<arpa/inet.h>/.
395
396 2008-04-29  Jim Meyering  <meyering@redhat.com>
397
398         Avoid test segfault on x86_64 due to lack of inet_ntop declaration.
399         * tests/test-getaddrinfo.c: Include <arpa/inet.h>, now guaranteed
400         by gnulib to exist and to declare e.g., inet_ntop.
401         Don't include "inet_ntop.h", now removed.
402
403         * m4/arpa_inet_h.m4: Remove trailing blanks.
404
405 2008-04-29  Eric Blake  <ebb9@byu.net>
406
407         Silence valgrind on safe reads beyond potential array bounds.
408         * lib/rawmemchr.valgrind: New file.
409         * lib/strchrnul.valgrind: Likewise.
410         * modules/rawmemchr (Files): Distribute new file.
411         * modules/strchrnul (Files): Likewise.
412         Suggested by Bruno Haible.
413
414 2008-04-29  Bruno Haible  <bruno@clisp.org>
415
416         * lib/arpa_inet.in.h: Include system's <arpa/inet.h> if it exists.
417         (inet_ntop, inet_pton): Change portability warning's wording.
418         * m4/arpa_inet_h.m4 (gl_HEADER_ARPA_INET): Set HAVE_ARPA_INET_H.
419         Invoke gl_CHECK_NEXT_HEADERS.
420         (gl_ARPA_INET_H_DEFAULTS): Initialize ARPA_INET_H.
421         * m4/inet_ntop.m4 (gl_INET_NTOP): Require gl_ARPA_INET_H_DEFAULTS and
422         set ARPA_INET_H.
423         * m4/inet_pton.m4 (gl_INET_PTON): Likewise.
424         * modules/arpa_inet (Description): No longer only for systems that
425         lack it.
426         (Depends-on): Add include_next.
427         (Makeile.am): Substitute INCLUDE_NEXT, NEXT_ARPA_INET_H,
428         HAVE_ARPA_INET_H.
429
430 2008-04-29  Jim Meyering  <meyering@redhat.com>
431
432         * modules/mkdir (License): Re-license as LGPLv2+.
433
434 2008-04-29  Bruno Haible  <bruno@clisp.org>
435
436         * modules/rawmemchr (Maintainer): Set to Eric.
437         * modules/strchrnul (Maintainer): Likewise.
438
439 2008-04-29  Simon Josefsson  <simon@josefsson.org>
440
441         * m4/arpa_inet_h.m4 (gl_ARPA_INET_H_DEFAULTS): Set
442         HAVE_DECL_INET_NTOP and HAVE_DECL_INET_PTON.
443
444         * modules/arpa_inet (arpa/inet.h): Use them.
445
446 2008-04-28  Eric Blake  <ebb9@byu.net>
447
448         Test getndelim2.
449         * modules/getndelim2-tests: New file.
450         * tests/test-getndelim2.c: Likewise.
451         * lib/getndelim2.c (getndelim2): Never return 0.  Lock the
452         stream.
453         * m4/getndelim2.m4 (gl_GETNDELIM2): Check for lock functions.
454
455         * MODULES.html.sh: Document new module.
456
457 2008-04-20  Bruno Haible  <bruno@clisp.org>
458
459         * lib/c-stack.c (die): Use raise.
460         * modules/c-stack (Depends-on): Add raise.
461
462 2008-04-28  Bruno Haible  <bruno@clisp.org>
463
464         Expect rpmatch to be declared.
465         * lib/yesno.c (rpmatch): Remove declaration.
466
467         Declare rpmatch.
468         * lib/stdlib.in.h (rpmatch): New declaration.
469         * lib/rpmatch.c: Include <stdlib.h> first.
470         * m4/rpmatch.m4 (gl_FUNC_RPMATCH): Require AC_USE_SYSTEM_EXTENSIONS and
471         gl_STDLIB_H_DEFAULTS. Set HAVE_RPMATCH.
472         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_RPMATCH,
473         HAVE_RPMATCH.
474         * modules/rpmatch (Depends-on): Add stdlib, extensions.
475         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
476         (Include): Set to <stdlib.h>.
477         * modules/stdlib (Makefile.am): Substitute GNULIB_RPMATCH and
478         HAVE_RPMATCH.
479         * NEWS: Document the change.
480
481 2008-04-28  Bruno Haible  <bruno@clisp.org>
482
483         Change rpmatch to use nl_langinfo when appropriate.
484         * lib/rpmatch.c: Include stdbool.h, string.h, langinfo.h.
485         (N_): New macro.
486         (localized_pattern): New function/macro.
487         (try): Remove match, nomatch arguments. Copy the pattern into safe
488         memory before caching it.
489         (rpmatch): Use localized_pattern. Add translator comments.
490         * m4/rpmatch.m4 (gl_PREREQ_RPMATCH): Test for nl_langinfo and YESEXPR.
491         Suggested by Eric Blake.
492         * modules/rpmatch (Depends-on): Add stdbool.
493
494 2008-04-28  Eric Blake  <ebb9@byu.net>
495
496         Add rawmemchr module, matching glibc.
497         * modules/string (Makefile.am): New indicator.
498         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Set it.
499         * lib/string.in.h (rawmemchr): Declare when appropriate.
500         * modules/rawmemchr: New file.
501         * m4/rawmemchr.m4: Likewise.
502         * lib/rawmemchr.c: Likewise.
503         * modules/rawmemchr-tests: Likewise.
504         * tests/test-rawmemchr.c: Likewise.
505         * doc/glibc-functions/rawmemchr.texi (rawmemchr): Document
506         module.
507         * modules/strchrnul (Depends-on): Add rawmemchr.
508         * lib/strchrnul.c (strchrnul): Optimize a corner case.
509
510         Whitespace cleanup.
511         * tests/test-strchrnul.c: Reindent.
512         * lib/strchrnul.c: Likewise.
513
514         Optimize and test strchrnul.
515         * lib/strchrnul.c (strchrnul): Rewrite to do parallel search.
516         * modules/strchrnul-tests: New file.
517         * tests/test-strchrnul.c: Likewise.
518
519         Remove intprops dependency.
520         * modules/memchr (Depends-on): Remove intprops.
521         * modules/memrchr (Depends-on): Likewise.
522         * modules/memchr2 (Depends-on): Likewise.
523         * lib/memchr.c (__memchr): Hand-inline the TYPE_MAXIMUM check.
524         * lib/memrchr.c (__memrchr): Likewise.
525         * lib/memrchr2.c (memchr2): Likewise.
526         Reported by Simon Josefsson.
527
528 2008-04-28  Simon Josefsson  <simon@josefsson.org>
529
530         * m4/sys_socket_h.m4: Move AC_REQUIRE([AC_C_INLINE]) to top.
531         Suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
532
533 2008-04-28  Simon Josefsson  <simon@josefsson.org>
534
535         * lib/inet_ntop.h, lib/inet_pton.h: Remove files.
536
537         * lib/inet_ntop.c: Include arpa/inet.h instead of inet_ntop.h.
538
539         * lib/inet_pton.c: Include arpa/inet.h instead of inet_pton.h.
540
541         * lib/arpa_inet.in.h [@GNULIB_INET_NTOP@]: Inline inet_ntop.h
542         declarations.
543         [@GNULIB_INET_PTON@]: Inline inet_pton.h declarations.
544
545         * m4/inet_pton.m4: Don't check for header files.
546
547         * m4/inet_ntop.m4: Don't check for header files.
548
549 2008-04-28  Simon Josefsson  <simon@josefsson.org>
550
551         * m4/sys_socket_h.m4: Require AC_C_INLINE when necessary.
552         * lib/sys_socket.in.h (setsockopt): Use proper win32 tests (don't
553         trigger for cygwin).
554         Reported by Bruno Haible  <bruno@clisp.org>.
555
556 2008-04-28  Bruno Haible  <bruno@clisp.org>
557
558         * doc/posix-functions/strdup.texi: Mention mingw problem.
559
560 2008-04-27  Bruno Haible  <bruno@clisp.org>
561
562         * modules/stat-time-tests (Depends-on): Add sleep.
563         * tests/test-stat-time.c (force_unlink): New function.
564         (cleanup): Use it.
565         (test_mtime): Remove the ctime related tests.
566         (test_ctime): New function, containing the ctime related tests.
567         (main): Call test_ctime, except on native Windows platforms.
568
569 2008-04-27  Bruno Haible  <bruno@clisp.org>
570
571         * lib/rpmatch.c (rpmatch): Add some comments.
572         Reported by James Youngman <jay@gnu.org>.
573
574 2008-04-27  Bruno Haible  <bruno@clisp.org>
575
576         * m4/isnanl.m4 (gl_FUNC_ISNANL_WORKS): Also test the behaviour on
577         quiet NaNs.
578
579 2008-04-27  Bruno Haible  <bruno@clisp.org>
580
581         Make test-yesno.sh work on mingw.
582         * tests/test-yesno.sh: Postprocess the output to convert CR/LF to LF.
583         * tests/test-yesno.c: Include yesno.h first. Include binary-io.h.
584         (main): Set stdin to binary mode.
585         * modules/yesno-tests (Depends-on): Add binary-io.
586
587 2008-04-27  Bruno Haible  <bruno@clisp.org>
588
589         Fix 'isfinite' on x86, x86_64, ia64 platforms.
590         * tests/test-isfinite.c (test_isfinitel): Also test the behavior on
591         argument that lie outside the IEEE 854 domain.
592         * m4/isfinite.m4 (gl_ISFINITEL_WORKS): New macro.
593         (gl_ISFINITE): Use it.
594         * doc/posix-functions/isfinite.texi: Document the fixed bugs.
595
596 2008-04-27  Bruno Haible  <bruno@clisp.org>
597
598         Allow local renaming in config.h.
599         * lib/memrchr.c (memrchr): Don't undefine outside libc.
600
601 2008-04-27  Bruno Haible  <bruno@clisp.org>
602
603         * lib/memchr.c (__memchr): Change type of 'i'.
604         * lib/memchr2.c (memchr2): Likewise.
605
606 2008-04-26  Eric Blake  <ebb9@byu.net>
607         and Bruno Haible  <bruno@clisp.org>
608
609         Optimize and test memrchr.
610         * modules/memrchr (Depends-on): Add intprops.
611         * lib/memrchr.c (__memrchr): Avoid false positives in loop.
612         * modules/memrchr-tests: New file.
613         * tests/test-memrchr.c: New file.
614
615 2008-04-26  Bruno Haible  <bruno@clisp.org>
616
617         Add tentative support for DragonFly BSD.
618         * lib/stdio-impl.h: Add macros for DragonFly BSD.
619         * lib/fbufmode.c (fbufmode): Update conditionals. Use fp_ instead of
620         fp.
621         * lib/fflush.c (clear_ungetc_buffer, disable_seek_optimization,
622         restore_seek_optimization, update_fpos_cache, rpl_fflush: Likewise.
623         * lib/fpurge.c (fpurge): Likewise.
624         * lib/freadable.c (freaadable): Likewise.
625         * lib/freadahead.c (freadahead): Likewise.
626         * lib/freading.c (freading): Likewise.
627         * lib/freadptr.c (freadptr): Likewise.
628         * lib/freadseek.c (freadptrinc): Likewise.
629         * lib/fseeko.c (fseeko): Likewise.
630         * lib/fseterr.c (fseterr): Likewise.
631         * lib/fwritable.c (fwritable): Likewise.
632         * lib/fwriting.c (fwriting): Likewise.
633
634 2008-04-26  Bruno Haible  <bruno@clisp.org>
635
636         * lib/stdio-impl.h: New file.
637         * lib/fbufmode.c: Include stdio-impl.h.
638         (fbufmode): Use fp_, remove redundant #defines.
639         * lib/fflush.c: Include stdio-impl.h.
640         (clear_ungetc_buffer): Remove redundant #defines.
641         * lib/fpurge.c: Include stdio-impl.h.
642         (fpurge): Remove redundant #defines.
643         * lib/freadable.c: Include stdio-impl.h.
644         (freadable): Remove redundant #defines.
645         * lib/freadahead.c: Include stdio-impl.h.
646         (freadahead): Remove redundant #defines.
647         * lib/freading.c: Include stdio-impl.h.
648         (freading): Remove redundant #defines.
649         * lib/freadptr.c: Include stdio-impl.h.
650         (freadptr): Remove redundant #defines.
651         * lib/freadseek.c: Include stdio-impl.h.
652         (freadptrinc): Remove redundant #defines.
653         * lib/fseeko.c: Include stdio-impl.h.
654         (rpl_fseeko): Remove redundant #defines.
655         * lib/fseterr.c: Include stdio-impl.h.
656         (fseterr): Remove redundant #defines.
657         * lib/fwritable.c: Include stdio-impl.h.
658         (fwritable: Remove redundant #defines.
659         * lib/fwriting.c: Include stdio-impl.h.
660         (fwriting): Remove redundant #defines.
661         * modules/fbufmode (Files): Add lib/stdio-impl.h.
662         * modules/fflush (Files): Likewise.
663         * modules/fpurge (Files): Likewise.
664         * modules/freadable (Files): Likewise.
665         * modules/freadahead (Files): Likewise.
666         * modules/freading (Files): Likewise.
667         * modules/freadptr (Files): Likewise.
668         * modules/freadseek (Files): Likewise.
669         * modules/fseeko (Files): Likewise.
670         * modules/fseterr (Files): Likewise.
671         * modules/fwritable (Files): Likewise.
672         * modules/fwriting (Files): Likewise.
673
674 2008-04-26  Bruno Haible  <bruno@clisp.org>
675
676         * lib/fflush.c (clear_ungetc_buffer, disable_seek_optimization,
677         restore_seek_optimization, update_fpos_cache): New functions, extracted
678         from rpl_fflush.
679         (rpl_fflush): Use them.
680         * m4/fflush.m4 (gl_PREREQ_FFLUSH): New macro.
681         (gl_REPLACE_FFLUSH): Use it.
682
683 2008-04-26  Bruno Haible  <bruno@clisp.org>
684
685         * tests/test-xstrtol.sh: Work around limitation of an old 'tr' program
686         on Solaris.
687         * tests/test-xstrtoimax.sh: Likewise.
688         * tests/test-xstrtoumax.sh: Likewise.
689         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
690
691 2008-04-26  Bruno Haible  <bruno@clisp.org>
692
693         * modules/memchr-tests: New file.
694         * tests/test-memchr.c; New file, based on tests/test-memchr2.c.
695
696 2008-04-26  Eric Blake  <ebb9@byu.net>
697             Bruno Haible  <bruno@clisp.org>
698
699         * lib/memchr.c: Include intprops.h.
700         (__memchr): Optimize parallel detection of matching bytes. Rename local
701         variables. Add explanatory comments.
702
703 2008-04-26  Bruno Haible  <bruno@clisp.org>
704
705         Fix module 'memchr', broken since 2000-10-28.
706         * lib/memchr.c: Outside glibc, define memchr, not __memchr.
707
708 2008-04-26  Bruno Haible  <bruno@clisp.org>
709
710         * lib/memchr2.c (memchr2): Rename local variables. Add explanatory
711         comments.
712
713 2008-04-25  Eric Blake  <ebb9@byu.net>
714
715         Use native fstatat on cygwin 1.7.0.
716         * m4/openat.m4 (gl_FUNC_OPENAT): Make sure lstat check is made
717         first.
718
719 2008-04-23  Eric Blake  <ebb9@byu.net>
720
721         Improve memchr2 performance.
722         * lib/memchr2.c (memchr2): Further optimize parallel detection of
723         NUL bytes.
724         * modules/memchr2 (Depends-on): Use intprops.h.
725
726 2008-04-23  Simon Josefsson  <simon@josefsson.org>
727
728         * lib/sys_socket.in.h (setsockopt): Be more type safe by declaring
729         an inline function instead of a CPP macro.  Patch by Ben Pfaff
730         <blp@cs.stanford.edu>.
731
732 2008-04-23  Simon Josefsson  <simon@josefsson.org>
733
734         * lib/arpa_inet.in.h: New file.
735
736         * modules/arpa_inet (Files): Add lib/arpa_inet.in.h.
737         (Makefile.am): Sed in substitute header file.
738
739         * m4/arpa_inet_h.m4: Add gl_ARPA_INET_H_DEFAULTS and
740         gl_ARPA_INET_MODULE_INDICATOR.  Use them.
741
742         * modules/inet_ntop (configure.ac): Use
743         gl_ARPA_INET_MODULE_INDICATOR.
744
745         * modules/inet_pton (configure.ac): Use
746         gl_ARPA_INET_MODULE_INDICATOR.
747
748 2008-04-22  Jim Meyering  <meyering@redhat.com>
749
750         * modules/verify (License): Re-license as LGPLv2+.
751
752 2008-04-22  Simon Josefsson  <simon@josefsson.org>
753
754         * lib/sys_socket.in.h: Define setsockopt macro to cast fourth
755         parameter to void* as per POSIX standard (MinGW uses char*).
756
757 2008-04-21  Bruno Haible  <bruno@clisp.org>
758
759         * lib/wctype.in.h (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit,
760         iswgraph, iswlower, iswprint, iswpunct, iswspace, iswupper, iswxdigit):
761         Define to replacements if REPLACE_ISWCNTRL is 1.
762         * m4/wctype.m4 (gl_WCTYPE_H): Test whether the isw* functions work.
763         If not, set WCTYPE_H to nonempty and REPLACE_ISWCNTRL to 1.
764         * modules/wctype (Makefile.am): Substitute REPLACE_ISWCNTRL.
765         * doc/posix-functions/iswalnum.texi: Mention the 'wctype' module and
766         what it fixes.
767         * doc/posix-functions/iswalpha.texi: Likewise.
768         * doc/posix-functions/iswblank.texi: Likewise.
769         * doc/posix-functions/iswcntrl.texi: Likewise.
770         * doc/posix-functions/iswdigit.texi: Likewise.
771         * doc/posix-functions/iswgraph.texi: Likewise.
772         * doc/posix-functions/iswlower.texi: Likewise.
773         * doc/posix-functions/iswprint.texi: Likewise.
774         * doc/posix-functions/iswpunct.texi: Likewise.
775         * doc/posix-functions/iswspace.texi: Likewise.
776         * doc/posix-functions/iswupper.texi: Likewise.
777         * doc/posix-functions/iswxdigit.texi: Likewise.
778         Reported by Alain Guibert.
779
780 2008-04-21  Bruno Haible  <bruno@clisp.org>
781
782         * m4/vsnprintf.m4 (gl_FUNC_VSNPRINTF): Fix typo in last commit.
783         Patch by Alain Guibert.
784
785 2008-04-21  Bruno Haible  <bruno@clisp.org>
786
787         Fix test failures on mingw.
788         * tests/test-xstrtol.c (print_no_progname): New function.
789         (main): Install it in error_print_progname hook.
790         * tests/test-xstrtol.sh: Convert CR/LF to NL in output.
791         * tests/test-xstrtoimax.sh: Likewise.
792         * tests/test-xstrtoumax.sh: Likewise.
793
794 2008-04-21  Bruno Haible  <bruno@clisp.org>
795
796         Fix test failure on mingw.
797         * tests/test-argp-2.sh (func_compare): Remove CRs from sed's output.
798
799 2008-04-21  Bruno Haible  <bruno@clisp.org>
800
801         * lib/localename.c (SUBLANG_TIBETAN_PRC, SUBLANG_TIBETAN_BHUTAN):
802         Actually assign a value.
803
804 2008-04-20  Bruno Haible  <bruno@clisp.org>
805
806         Fix conflict between modules 'canonicalize' and 'canonicalize-lgpl',
807         take 2.
808         * lib/canonicalize.c (canonicalize_file_name): Elide if the
809         'canonicalize-lgpl' module is also used.
810         * lib/canonicalize-lgpl.c: Undo last change.
811         * modules/canonicalize-lgpl (configure.ac): Invoke gl_MODULE_INDICATOR.
812
813 2008-04-20  Bruno Haible  <bruno@clisp.org>
814
815         * lib/mkdir.c (mkdir): Undefine after the includes, not right after
816         config.h. Provide _mkdir based fallback for mingw.
817         * lib/sys_stat.in.h (mkdir): Define through an 'extern' declaration
818         if REPLACE_MKDIR is 1. Otherwise, test for mingw directly.
819         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Require
820         gl_SYS_STAT_H_DEFAULTS. When doing the replacement, set REPLACE_MKDIR
821         rather than defining mkdir in config.h.
822         * m4/sys_stat_h.m4 (gl_SYS_STAT_MODULE_INDICATOR): New macro.
823         (gl_SYS_STAT_H_DEFAULTS): New macro.
824         (gl_HEADER_SYS_STAT_H): Require it. Don't set HAVE_DECL_MKDIR and
825         HAVE_IO_H any more.
826         * modules/sys_stat (Makefile.am): Substitute REPLACE_MKDIR instead of
827         HAVE_DECL_MKDIR and HAVE_IO_H.
828
829 2008-04-20  Bruno Haible  <bruno@clisp.org>
830
831         * lib/isapipe.c: Port to native Windows platforms.
832
833 2008-04-20  Bruno Haible  <bruno@clisp.org>
834
835         * lib/gc-gnulib.c: Include <windows.h> before <wincrypt.h>.
836
837 2008-04-21  Eric Blake  <ebb9@byu.net>
838
839         Work around preprocessors that don't handle UINTMAX_MAX.
840         * lib/memchr2.c (memchr2): Avoid embedded #if.
841         Reported by Alain Guibert, fix suggested by Bruno Haible.
842
843 2008-04-21  Simon Josefsson  <simon@josefsson.org>
844
845         * doc/posix-functions/strftime.texi (strftime): Explain better
846         Windows incompatibility.  Suggested by Micah Cowan
847         <micah@cowan.name>.
848
849 2008-04-20  Bruno Haible  <bruno@clisp.org>
850
851         * modules/uniconv/u32-conv-to-enc (Depends-on): Add unistr/u32-mblen,
852         unistr/u8-mblen.
853
854 2008-04-20  Bruno Haible  <bruno@clisp.org>
855
856         Fix test failure on platforms with non-GNU iconv.
857         * lib/uniconv/u16-conv-to-enc.c (u16_to_u8_lenient): New function.
858         (U_TO_U8): Use it, rather than u16_to_u8.
859         * lib/uniconv/u-conv-to-enc.h (FUNC): Allow an incomplete sequence of
860         units at the end of the input string.
861         * modules/uniconv/u16-conv-to-enc (Depends-on): Update.
862
863 2008-04-20  Bruno Haible  <bruno@clisp.org>
864
865         * tests/uniconv/test-u8-conv-to-enc.c (main): Accept result == NULL
866         when the resulting length is 0.
867         * tests/uniconv/test-u16-conv-to-enc.c (main): Likewise.
868
869 2008-04-20  Bruno Haible  <bruno@clisp.org>
870
871         * m4/roundf.m4 (gl_FUNC_ROUNDF): Add test whether roundf actually
872         works.
873         * doc/posix-functions/roundf.texi: Mention roundf bug on mingw.
874
875 2008-04-20  Bruno Haible  <bruno@clisp.org>
876
877         * tests/test-tsearch.c (main): Don't use initstate if it is missing.
878         * modules/tsearch-tests (configure.ac): Test for initstate function.
879
880 2008-04-20  Bruno Haible  <bruno@clisp.org>
881
882         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Also provided a substitute
883         for nlink_t if missing.
884         * tests/test-sys_stat.c: Check the existence of the nlink_t type.
885
886 2008-04-19  Bruno Haible  <bruno@clisp.org>
887
888         Work around snprintf bug on Linux libc5.
889         * m4/printf.m4 (gl_SNPRINTF_SIZE1): New macro.
890         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
891         gl_SNPRINTF_SIZE1.
892         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
893         * m4/snprintf.m4 (gl_FUNC_SNPRINTF): Likewise. Replace snprintf if
894         that test failed.
895         * m4/vsnprintf.m4 (gl_FUNC_VSNPRINTF): Likewise.
896         * lib/vasnprintf.c (USE_SNPRINTF): Set to 0 on Linux libc5 systems.
897         * modules/snprintf (Files): Add m4/printf.m4.
898         * modules/vsnprintf (Files): Likewise.
899         * doc/posix-functions/snprintf.texi: Document Linux libc5 problem.
900         * doc/posix-functions/vsnprintf.texi: Likewise.
901
902 2008-04-19  Bruno Haible  <bruno@clisp.org>
903
904         * lib/vasnprintf.c (floorlog10l, floorlog10): Reduce maximum error
905         from 0.0058 to less than 10^-7.
906
907 2008-04-19  Bruno Haible  <bruno@clisp.org>
908
909         Fix rounding when a precision is given.
910         * lib/vasnprintf.c (is_borderline): New function.
911         (VASNPRINTF): For %e and %g, consider replacing the digits 10....0 with
912         9...9x.
913         * tests/test-vasnprintf-posix.c (test_function): Test rounding with %f,
914         %e, %g.
915         * tests/test-vasprintf-posix.c (test_function): Likewise.
916         * tests/test-snprintf-posix.h (test_function): Likewise.
917         * tests/test-sprintf-posix.h (test_function): Likewise.
918         * tests/test-fprintf-posix.h (test_function): Test rounding with %f.
919         * tests/test-printf-posix.h (test_function): Likewise.
920         * tests/test-printf-posix.output: Update.
921         Reported by John Darrington <john@darrington.wattle.id.au> via
922         Ben Pfaff <blp@cs.stanford.edu>.
923
924 2008-04-18  Simon Josefsson  <simon@josefsson.org>
925
926         * doc/posix-functions/strftime.texi (strftime): Clarify platform.
927         Suggested by Bruno Haible <bruno@clisp.org>.
928
929 2008-04-17  Bruno Haible  <bruno@clisp.org>
930
931         * lib/lock.h (gl_lock_destroy, gl_rwlock_destroy,
932         gl_recursive_lock_destroy): Provide no-op definitions for the dummy
933         implementation.
934         Patch by Bruce Merry <bmerry@gmail.com>.
935
936 2008-04-17  Simon Josefsson  <simon@josefsson.org>
937
938         * doc/posix-functions/strftime.texi (strftime): Mention that %e
939         doesn't work under Windows.
940
941 2008-04-16  Bruno Haible  <bruno@clisp.org>
942
943         * lib/localename.c (LANG_MAORI, LANG_QUECHUA, LANG_SOTHO, LANG_UIGHUR):
944         New macros.
945         (SUBLANG_BOSNIAN_BOSNIA_HERZEGOVINA_LATIN,
946         SUBLANG_BOSNIAN_BOSNIA_HERZEGOVINA_CYRILLIC,
947         SUBLANG_CROATIAN_CROATIA, SUBLANG_CROATIAN_BOSNIA_HERZEGOVINA_LATIN,
948         SUBLANG_MONGOLIAN_CYRILLIC_MONGOLIA, SUBLANG_MONGOLIAN_PRC,
949         SUBLANG_QUECHUA_BOLIVIA, SUBLANG_QUECHUA_ECUADOR, SUBLANG_QUECHUA_PERU,
950         SUBLANG_RUSSIAN_RUSSIA, SUBLANG_RUSSIAN_MOLDAVIA, SUBLANG_SPANISH_US,
951         SUBLANG_TIBETAN_PRC, SUBLANG_TIBETAN_BHUTAN, SUBLANG_UIGHUR_PRC): New
952         macros.
953         (gl_locale_name_from_win32_LANGID): Refine code for Croatian/Bosnian,
954         Mongolian, Russian, Spanish, Tibetan. Add code for Maori, Quechua,
955         Northern Sotho, Uighur.
956
957 2008-04-16  Bruno Haible  <bruno@clisp.org>
958
959         * lib/localename.c (SUBLANG_SINDHI_INDIA): New macro.
960         (SUBLANG_SINDHI_PAKISTAN): Change value from 1 to 2.
961         (gl_locale_name_from_win32_LANGID): Fix code for Sindhi.
962         Reported by Daniel Bergström <daniel@octocode.com>.
963
964 2007-12-25  KJK::Hyperion  <hackbunny@reactos.com>
965             Bruno Haible  <bruno@clisp.org>
966
967         * lib/localename.c (gl_locale_name_canonicalize) [WIN32_NATIVE]: New
968         function.
969         (gl_locale_name_from_win32_LANGID, gl_locale_name_from_win32_LCID):
970         New functions, mostly extracted from gl_locale_name_default.
971         (gl_locale_name_default): Use gl_locale_name_from_win32_LCID.
972
973 2008-04-16  Eric Blake  <ebb9@byu.net>
974
975         Adjust strtod detection to catch glibc 2.7 bug.
976         * m4/strtod.m4 (gl_FUNC_STRTOD): Test "nan()" behavior.
977         Reported by John Gatewood Ham.
978
979 2008-04-16  Bruno Haible  <bruno@clisp.org>
980
981         Add tentative support for Linux libc5.
982         * lib/fbufmode.c (fbufmode) [__GNU_LIBRARY__==1]: Reuse glibc2 code.
983         * lib/fpurge.c (fpurge): Likewise.
984         * lib/freadable.c (freadable): Likewise.
985         * lib/freadahead.c (freadahead): Likewise.
986         * lib/freading.c (freading): Likewise.
987         * lib/freadptr.c (freadptr): Likewise.
988         * lib/freadseek.c (freadptrinc): Likewise.
989         * lib/fseeko.c (rpl_fseeko): Likewise.
990         * lib/fseterr.c (fseterr): Likewise.
991         * lib/fwritable.c (fwritable): Likewise.
992         * lib/fwriting.c (fwriting): Likewise.
993         Reported by Alain Guibert <alguibert+bts@free.fr>.
994
995 2008-04-15  Bruno Haible  <bruno@clisp.org>
996
997         * modules/mathl (configure.ac): Define module indicator.
998
999 2008-04-15  Bruno Haible  <bruno@clisp.org>
1000
1001         * lib/logl.c (logl): Remove unused variables.
1002
1003 2008-04-15  Bruno Haible  <bruno@clisp.org>
1004
1005         * lib/uniconv/u-conv-to-enc.h (FUNC): Fix return value when U_TO_U8
1006         fails.
1007
1008 2008-04-15  Bruno Haible  <bruno@clisp.org>
1009
1010         * lib/trim.c (trim2): Fix argument of isspace() macro.
1011
1012 2008-04-15  Paolo Bonzini  <bonzini@gnu.org>
1013
1014         * lib/tanl.c (kernel_tanl): Rename flag to invert, initialize it
1015         to 0.
1016         * lib/trigl.c (ieee754_rem_pio2l): Fix range checks.
1017
1018 2008-04-14  Bruno Haible  <bruno@clisp.org>
1019
1020         * m4/calloc.m4 (_AC_FUNC_CALLOC_IF): Fix underquoting of
1021         AC_LANG_PROGRAM argument.
1022         * m4/extensions.m4 (AC_USE_SYSTEM_EXTENSIONS): Likewise.
1023         * m4/gethrxtime.m4 (gl_ARITHMETIC_HRTIME_T): Likewise.
1024         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Likewise.
1025         * m4/inttypes.m4 (gl_INTTYPES_H): Likewise.
1026         * m4/math_h.m4 (gl_MATH_H): Likewise.
1027         * m4/mbstate_t.m4 (AC_TYPE_MBSTATE_T): Likewise.
1028         * m4/memmem.m4 (gl_FUNC_MEMMEM): Likewise.
1029         * m4/netinet_in_h.m4 (gl_HEADER_NETINET_IN): Likewise.
1030         * m4/physmem.m4 (gl_SYS__SYSTEM_CONFIGURATION): Likewise.
1031         * m4/putenv.m4 (gl_FUNC_PUTENV): Likewise.
1032         * m4/regex.m4 (gl_REGEX): Likewise.
1033         * m4/stdint.m4 (gl_INTEGER_TYPE_SUFFIX): Likewise.
1034         * m4/stdio_h.m4 (gl_STDIN_LARGE_OFFSET): Likewise.
1035         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Likewise.
1036         * m4/strerror.m4 (gl_FUNC_STRERROR_SEPARATE): Likewise.
1037         * m4/strndup.m4 (gl_FUNC_STRNDUP): Likewise.
1038         * m4/strstr.m4 (gl_FUNC_STRSTR): Likewise.
1039         * m4/sys_select_h.m4 (gl_HEADER_SYS_SELECT): Likewise.
1040         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Likewise.
1041
1042 2008-04-14  Jim Meyering  <meyering@redhat.com>
1043
1044         test-strtod: fix typos: s/abs/fabs/
1045         * tests/test-strtod.c (main): Use fabs, not narrowing-to-int "abs".
1046
1047 2008-04-13  Bruno Haible  <bruno@clisp.org>
1048
1049         Fix conflict between modules 'canonicalize' and 'canonicalize-lgpl'.
1050         * lib/canonicalize-lgpl.c: Elide the contents if the 'canonicalize'
1051         module is also used and while not building the reloc-wrapper.
1052
1053 2008-04-13  Bruno Haible  <bruno@clisp.org>
1054
1055         * tests/test-getaddrinfo.c (simple): Ignore EAI_NODATA error.
1056
1057 2008-04-13  Bruno Haible  <bruno@clisp.org>
1058
1059         Fix AIX compilation failure introduced on 2008-04-02.
1060         * tests/test-frexp.c (exp): Undefine before redefining.
1061         * tests/test-frexpl.c (exp): Likewise.
1062
1063 2008-04-13  Bruno Haible  <bruno@clisp.org>
1064
1065         Work around a HP-UX stdio bug.
1066         * tests/test-ftell.c (main): Disable the fseek/ftell test on HP-UX.
1067         * tests/test-ftello.c (main): Likewise.
1068         * doc/posix-functions/ftell.texi: Mention HP-UX bug.
1069         * doc/posix-functions/ftello.texi: Likewise.
1070
1071 2008-04-13  Bruno Haible  <bruno@clisp.org>
1072
1073         Make test-signbit pass on HP-UX/hppa.
1074         * tests/test-signbit.c (minus_zerol): New variable.
1075         (test_signbitl): Use it.
1076
1077 2008-04-13  Bruno Haible  <bruno@clisp.org>
1078
1079         Make truncl work on OSF/1 4.0.
1080         * m4/truncl.m4 (gl_FUNC_TRUNCL): Test whether truncl actually works.
1081         Set REPLACE_TRUNCL, not HAVE_DECL_TRUNCL.
1082         * lib/math.in.h (truncl): Test REPLACE_TRUNCL, not HAVE_DECL_TRUNCL.
1083         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize REPLACE_TRUNCL, not
1084         HAVE_DECL_TRUNCL.
1085         * modules/math (Makefile.am): Substitute REPLACE_TRUNCL, not
1086         HAVE_DECL_TRUNCL.
1087         * doc/posix-functions/truncl.texi: Document the OSF/1 4.0 problem.
1088
1089 2008-04-13  Bruno Haible  <bruno@clisp.org>
1090
1091         * lib/unictype.h: Remove trailing comma from enumeration definitions.
1092
1093 2008-04-13  Bruno Haible  <bruno@clisp.org>
1094
1095         * lib/count-one-bits.h (COUNT_ONE_BITS): Rewrite verification
1096         expression, so as to avoid HP-UX 11 cc compiler bug.
1097
1098 2008-04-13  Bruno Haible  <bruno@clisp.org>
1099
1100         * m4/regex.m4 (gl_PREREQ_REGEX): Also check for <libintl.h>.
1101
1102 2008-04-13  Bruno Haible  <bruno@clisp.org>
1103
1104         * lib/git-merge-changelog.c: Remove empty declaration outside of
1105         functions.
1106
1107 2008-04-13  Bruno Haible  <bruno@clisp.org>
1108
1109         * modules/quotearg-tests (Makefile.am): Define test_quotearg_LDADD.
1110
1111 2008-04-13  Bruno Haible  <bruno@clisp.org>
1112
1113         * doc/posix-headers/sys_socket.texi: Document the problem on EMX.
1114         * lib/sys_socket.in.h (SHUT_RD, SHUT_WR, SHUT_RDWR): Define if missing.
1115         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Replace <sys/socket.h>
1116         also if it exists but lacks definitions of the SHUT_* macros.
1117         * modules/sys_socket (Description): Update.
1118         Reported by Elbert Pol <e.pol@chello.nl>.
1119
1120 2008-04-13  Bruno Haible  <bruno@clisp.org>
1121
1122         * lib/localcharset.c (OS2): Don't redefine if already defined.
1123         Reported by Elbert Pol <e.pol@chello.nl>.
1124
1125 2008-04-13  Bruno Haible  <bruno@clisp.org>
1126
1127         * lib/binary-io.h [__EMX__]: Include <io.h>.
1128         Reported by Elbert Pol <e.pol@chello.nl>.
1129
1130 2008-04-12  Bruno Haible  <bruno@clisp.org>
1131
1132         * lib/fpucw.h: Enable the definitions also for x86_64.
1133         Needed for NetBSD/x86_64.
1134         Reported by Thomas Klausner <tk@giga.or.at>.
1135
1136 2008-04-12  Bruno Haible  <bruno@clisp.org>
1137
1138         * tests/test-strtod.c: Include isnand.h.
1139         (main): Use isnand instead of isnan.
1140         Reported by Jim Meyering.
1141
1142 2008-04-12  Bruno Haible  <bruno@clisp.org>
1143
1144         * m4/isnanf.m4 (gl_ISNANF_WORKS): Add a test for a special NaN.
1145         Reported by Nelson H. F. Beebe <beebe@math.utah.edu>.
1146
1147 2008-04-12  Jim Meyering  <meyering@redhat.com>
1148
1149         * m4/math_h.m4 (gl_MATH_H): Fix typos.
1150
1151 2008-04-12  Bruno Haible  <bruno@clisp.org>
1152
1153         * lib/freadptr.c (freadptr) [__EMX__]: Fix wrong assertion.
1154         Reported by Elbert Pol <e.pol@chello.nl>.
1155
1156 2008-04-12  Eric Blake  <ebb9@byu.net>
1157
1158         Work around Solaris 10 math.h bug.
1159         * m4/math_h.m4 (gl_MATH_H): Check for bug.
1160         (gl_MATH_H_DEFAULTS): Set up default.
1161         * modules/math (Makefile.am): Replace new indicators.
1162         * lib/math.in.h (NAN, HUGE_VAL): Provide replacements.
1163         * tests/test-math.c (main): Test this.
1164         * m4/strtod.m4 (gl_FUNC_STRTOD): Don't rely on HUGE_VAL.
1165         * doc/posix-headers/math.texi (math.h): Mention bug.
1166         Reported by Nelson H. F. Beebe and Jim Meyering.
1167
1168 2008-04-11  Bruno Haible  <bruno@clisp.org>
1169
1170         Adapt to future versions of Apple GCC.
1171         * lib/argp-fmtstream.h (ARGP_FS_EI): Don't test __GNUC_GNU_INLINE__.
1172         Reported by Peter O'Gorman <peter@pogma.com>.
1173
1174 2008-04-11  Bruno Haible  <bruno@clisp.org>
1175
1176         * tests/test-getaddrinfo.c (simple): Ignore EAI_NONAME error.
1177
1178 2008-04-11  Bruno Haible  <bruno@clisp.org>
1179
1180         * modules/strsignal-tests (Makefile.am): Define test_strsignal_LDADD.
1181
1182         * modules/getaddrinfo-tests (Makefile.am): Define
1183         test_getaddrinfo_LDADD.
1184
1185 2008-04-11  Bruno Haible  <bruno@clisp.org>
1186
1187         * lib/strsignal.c (_sys_siglist): Don't declare if already declared.
1188         (init): Fix syntax error.
1189         * m4/strsignal.m4 (gl_PREREQ_STRSIGNAL): Check whether _sys_siglist
1190         is declared.
1191
1192 2008-04-11  Bruno Haible  <bruno@clisp.org>
1193
1194         * lib/glob.c: Include <stdbool.h>. Needed at least with IRIX cc.
1195         * modules/glob (Depends-on): Add stdbool.
1196
1197 2008-04-11  Bruno Haible  <bruno@clisp.org>
1198
1199         * lib/trim.c: Include <string.h>.
1200
1201 2008-04-11  Eric Blake  <ebb9@byu.net>
1202
1203         Avoid compile failure on OS/2.
1204         * lib/regex_internal.h (internal_function): Disable optimization
1205         on OS/2 (__EMX__), where it caused compiler error.
1206         Reported by Elbert Pol.
1207
1208 2008-04-11  Bruno Haible  <bruno@clisp.org>
1209
1210         Flush the standard error stream before aborting. Needed on mingw.
1211         * tests/test-argmatch.c (ASSERT): Call fflush(stderr) before abort().
1212         * tests/test-array_list.c (ASSERT): Likewise.
1213         * tests/test-array_oset.c (ASSERT): Likewise.
1214         * tests/test-avltree_list.c (ASSERT): Likewise.
1215         * tests/test-avltree_oset.c (ASSERT): Likewise.
1216         * tests/test-avltreehash_list.c (ASSERT): Likewise.
1217         * tests/test-binary-io.c (ASSERT): Likewise.
1218         * tests/test-byteswap.c (ASSERT): Likewise.
1219         * tests/test-c-ctype.c (ASSERT): Likewise.
1220         * tests/test-c-strcasecmp.c (ASSERT): Likewise.
1221         * tests/test-c-strcasestr.c (ASSERT): Likewise.
1222         * tests/test-c-strncasecmp.c (ASSERT): Likewise.
1223         * tests/test-c-strstr.c (ASSERT): Likewise.
1224         * tests/test-canonicalize-lgpl.c (ASSERT): Likewise.
1225         * tests/test-canonicalize.c (ASSERT): Likewise.
1226         * tests/test-carray_list.c (ASSERT): Likewise.
1227         * tests/test-ceilf1.c (ASSERT): Likewise.
1228         * tests/test-ceilf2.c (ASSERT): Likewise.
1229         * tests/test-ceill.c (ASSERT): Likewise.
1230         * tests/test-count-one-bits.c (ASSERT): Likewise.
1231         * tests/test-fbufmode.c (ASSERT): Likewise.
1232         * tests/test-fflush2.c (ASSERT): Likewise.
1233         * tests/test-floorf1.c (ASSERT): Likewise.
1234         * tests/test-floorf2.c (ASSERT): Likewise.
1235         * tests/test-floorl.c (ASSERT): Likewise.
1236         * tests/test-fopen.c (ASSERT): Likewise.
1237         * tests/test-fpending.c (ASSERT): Likewise.
1238         * tests/test-fprintf-posix.c (ASSERT): Likewise.
1239         * tests/test-fpurge.c (ASSERT): Likewise.
1240         * tests/test-freadable.c (ASSERT): Likewise.
1241         * tests/test-freadahead.c (ASSERT): Likewise.
1242         * tests/test-freading.c (ASSERT): Likewise.
1243         * tests/test-freadptr.c (ASSERT): Likewise.
1244         * tests/test-freadptr2.c (ASSERT): Likewise.
1245         * tests/test-freadseek.c (ASSERT): Likewise.
1246         * tests/test-freopen.c (ASSERT): Likewise.
1247         * tests/test-frexp.c (ASSERT): Likewise.
1248         * tests/test-frexpl.c (ASSERT): Likewise.
1249         * tests/test-fseek.c (ASSERT): Likewise.
1250         * tests/test-fseeko.c (ASSERT): Likewise.
1251         * tests/test-fstrcmp.c (ASSERT): Likewise.
1252         * tests/test-ftell.c (ASSERT): Likewise.
1253         * tests/test-ftello.c (ASSERT): Likewise.
1254         * tests/test-func.c (ASSERT): Likewise.
1255         * tests/test-fwritable.c (ASSERT): Likewise.
1256         * tests/test-fwriting.c (ASSERT): Likewise.
1257         * tests/test-getdelim.c (ASSERT): Likewise.
1258         * tests/test-getline.c (ASSERT): Likewise.
1259         * tests/test-i-ring.c (ASSERT): Likewise.
1260         * tests/test-iconv-utf.c (ASSERT): Likewise.
1261         * tests/test-iconv.c (ASSERT): Likewise.
1262         * tests/test-isfinite.c (ASSERT): Likewise.
1263         * tests/test-isnand.c (ASSERT): Likewise.
1264         * tests/test-isnanf.c (ASSERT): Likewise.
1265         * tests/test-isnanl.h (ASSERT): Likewise.
1266         * tests/test-ldexpl.c (ASSERT): Likewise.
1267         * tests/test-linked_list.c (ASSERT): Likewise.
1268         * tests/test-linkedhash_list.c (ASSERT): Likewise.
1269         * tests/test-localename.c (ASSERT): Likewise.
1270         * tests/test-lseek.c (ASSERT): Likewise.
1271         * tests/test-mbscasecmp.c (ASSERT): Likewise.
1272         * tests/test-mbscasestr1.c (ASSERT): Likewise.
1273         * tests/test-mbscasestr2.c (ASSERT): Likewise.
1274         * tests/test-mbscasestr3.c (ASSERT): Likewise.
1275         * tests/test-mbscasestr4.c (ASSERT): Likewise.
1276         * tests/test-mbschr.c (ASSERT): Likewise.
1277         * tests/test-mbscspn.c (ASSERT): Likewise.
1278         * tests/test-mbsncasecmp.c (ASSERT): Likewise.
1279         * tests/test-mbspbrk.c (ASSERT): Likewise.
1280         * tests/test-mbspcasecmp.c (ASSERT): Likewise.
1281         * tests/test-mbsrchr.c (ASSERT): Likewise.
1282         * tests/test-mbsspn.c (ASSERT): Likewise.
1283         * tests/test-mbsstr1.c (ASSERT): Likewise.
1284         * tests/test-mbsstr2.c (ASSERT): Likewise.
1285         * tests/test-mbsstr3.c (ASSERT): Likewise.
1286         * tests/test-memchr2.c (ASSERT): Likewise.
1287         * tests/test-memmem.c (ASSERT): Likewise.
1288         * tests/test-open.c (ASSERT): Likewise.
1289         * tests/test-printf-frexp.c (ASSERT): Likewise.
1290         * tests/test-printf-frexpl.c (ASSERT): Likewise.
1291         * tests/test-printf-posix.c (ASSERT): Likewise.
1292         * tests/test-quotearg.c (ASSERT): Likewise.
1293         * tests/test-rbtree_list.c (ASSERT): Likewise.
1294         * tests/test-rbtree_oset.c (ASSERT): Likewise.
1295         * tests/test-rbtreehash_list.c (ASSERT): Likewise.
1296         * tests/test-round1.c (ASSERT): Likewise.
1297         * tests/test-roundf1.c (ASSERT): Likewise.
1298         * tests/test-roundl.c (ASSERT): Likewise.
1299         * tests/test-signbit.c (ASSERT): Likewise.
1300         * tests/test-sleep.c (ASSERT): Likewise.
1301         * tests/test-snprintf-posix.c (ASSERT): Likewise.
1302         * tests/test-snprintf.c (ASSERT): Likewise.
1303         * tests/test-sprintf-posix.c (ASSERT): Likewise.
1304         * tests/test-stat-time.c (ASSERT): Likewise.
1305         * tests/test-strcasestr.c (ASSERT): Likewise.
1306         * tests/test-strerror.c (ASSERT): Likewise.
1307         * tests/test-striconv.c (ASSERT): Likewise.
1308         * tests/test-striconveh.c (ASSERT): Likewise.
1309         * tests/test-striconveha.c (ASSERT): Likewise.
1310         * tests/test-strsignal.c (ASSERT): Likewise.
1311         * tests/test-strstr.c (ASSERT): Likewise.
1312         * tests/test-strtod.c (ASSERT): Likewise.
1313         * tests/test-trunc1.c (ASSERT): Likewise.
1314         * tests/test-trunc2.c (ASSERT): Likewise.
1315         * tests/test-truncf1.c (ASSERT): Likewise.
1316         * tests/test-truncf2.c (ASSERT): Likewise.
1317         * tests/test-truncl.c (ASSERT): Likewise.
1318         * tests/test-vasnprintf-posix.c (ASSERT): Likewise.
1319         * tests/test-vasnprintf-posix2.c (ASSERT): Likewise.
1320         * tests/test-vasnprintf.c (ASSERT): Likewise.
1321         * tests/test-vasprintf-posix.c (ASSERT): Likewise.
1322         * tests/test-vasprintf.c (ASSERT): Likewise.
1323         * tests/test-vfprintf-posix.c (ASSERT): Likewise.
1324         * tests/test-vprintf-posix.c (ASSERT): Likewise.
1325         * tests/test-vsnprintf-posix.c (ASSERT): Likewise.
1326         * tests/test-vsnprintf.c (ASSERT): Likewise.
1327         * tests/test-vsprintf-posix.c (ASSERT): Likewise.
1328         * tests/test-wcwidth.c (ASSERT): Likewise.
1329         * tests/test-xfprintf-posix.c (ASSERT): Likewise.
1330         * tests/test-xprintf-posix.c (ASSERT): Likewise.
1331         * tests/test-xvasprintf.c (ASSERT): Likewise.
1332         * tests/uniconv/test-u16-conv-from-enc.c (ASSERT): Likewise.
1333         * tests/uniconv/test-u16-conv-to-enc.c (ASSERT): Likewise.
1334         * tests/uniconv/test-u16-strconv-from-enc.c (ASSERT): Likewise.
1335         * tests/uniconv/test-u16-strconv-to-enc.c (ASSERT): Likewise.
1336         * tests/uniconv/test-u32-conv-from-enc.c (ASSERT): Likewise.
1337         * tests/uniconv/test-u32-conv-to-enc.c (ASSERT): Likewise.
1338         * tests/uniconv/test-u32-strconv-from-enc.c (ASSERT): Likewise.
1339         * tests/uniconv/test-u32-strconv-to-enc.c (ASSERT): Likewise.
1340         * tests/uniconv/test-u8-conv-from-enc.c (ASSERT): Likewise.
1341         * tests/uniconv/test-u8-conv-to-enc.c (ASSERT): Likewise.
1342         * tests/uniconv/test-u8-strconv-from-enc.c (ASSERT): Likewise.
1343         * tests/uniconv/test-u8-strconv-to-enc.c (ASSERT): Likewise.
1344         * tests/unictype/test-bidi_byname.c (ASSERT): Likewise.
1345         * tests/unictype/test-bidi_name.c (ASSERT): Likewise.
1346         * tests/unictype/test-bidi_of.c (ASSERT): Likewise.
1347         * tests/unictype/test-bidi_test.c (ASSERT): Likewise.
1348         * tests/unictype/test-block_list.c (ASSERT): Likewise.
1349         * tests/unictype/test-block_of.c (ASSERT): Likewise.
1350         * tests/unictype/test-block_test.c (ASSERT): Likewise.
1351         * tests/unictype/test-categ_and.c (ASSERT): Likewise.
1352         * tests/unictype/test-categ_and_not.c (ASSERT): Likewise.
1353         * tests/unictype/test-categ_byname.c (ASSERT): Likewise.
1354         * tests/unictype/test-categ_name.c (ASSERT): Likewise.
1355         * tests/unictype/test-categ_none.c (ASSERT): Likewise.
1356         * tests/unictype/test-categ_of.c (ASSERT): Likewise.
1357         * tests/unictype/test-categ_or.c (ASSERT): Likewise.
1358         * tests/unictype/test-categ_test_withtable.c (ASSERT): Likewise.
1359         * tests/unictype/test-combining.c (ASSERT): Likewise.
1360         * tests/unictype/test-decdigit.c (ASSERT): Likewise.
1361         * tests/unictype/test-digit.c (ASSERT): Likewise.
1362         * tests/unictype/test-mirror.c (ASSERT): Likewise.
1363         * tests/unictype/test-numeric.c (ASSERT): Likewise.
1364         * tests/unictype/test-pr_byname.c (ASSERT): Likewise.
1365         * tests/unictype/test-pr_test.c (ASSERT): Likewise.
1366         * tests/unictype/test-predicate-part1.h (ASSERT): Likewise.
1367         * tests/unictype/test-scripts.c (ASSERT): Likewise.
1368         * tests/unictype/test-sy_c_ident.c (ASSERT): Likewise.
1369         * tests/unictype/test-sy_java_ident.c (ASSERT): Likewise.
1370         * tests/unistdio/test-u16-asnprintf1.c (ASSERT): Likewise.
1371         * tests/unistdio/test-u16-vasnprintf1.c (ASSERT): Likewise.
1372         * tests/unistdio/test-u16-vasnprintf2.c (ASSERT): Likewise.
1373         * tests/unistdio/test-u16-vasnprintf3.c (ASSERT): Likewise.
1374         * tests/unistdio/test-u16-vasprintf1.c (ASSERT): Likewise.
1375         * tests/unistdio/test-u16-vsnprintf1.c (ASSERT): Likewise.
1376         * tests/unistdio/test-u16-vsprintf1.c (ASSERT): Likewise.
1377         * tests/unistdio/test-u32-asnprintf1.c (ASSERT): Likewise.
1378         * tests/unistdio/test-u32-vasnprintf1.c (ASSERT): Likewise.
1379         * tests/unistdio/test-u32-vasnprintf2.c (ASSERT): Likewise.
1380         * tests/unistdio/test-u32-vasnprintf3.c (ASSERT): Likewise.
1381         * tests/unistdio/test-u32-vasprintf1.c (ASSERT): Likewise.
1382         * tests/unistdio/test-u32-vsnprintf1.c (ASSERT): Likewise.
1383         * tests/unistdio/test-u32-vsprintf1.c (ASSERT): Likewise.
1384         * tests/unistdio/test-u8-asnprintf1.c (ASSERT): Likewise.
1385         * tests/unistdio/test-u8-vasnprintf1.c (ASSERT): Likewise.
1386         * tests/unistdio/test-u8-vasnprintf2.c (ASSERT): Likewise.
1387         * tests/unistdio/test-u8-vasnprintf3.c (ASSERT): Likewise.
1388         * tests/unistdio/test-u8-vasprintf1.c (ASSERT): Likewise.
1389         * tests/unistdio/test-u8-vsnprintf1.c (ASSERT): Likewise.
1390         * tests/unistdio/test-u8-vsprintf1.c (ASSERT): Likewise.
1391         * tests/unistdio/test-ulc-asnprintf1.c (ASSERT): Likewise.
1392         * tests/unistdio/test-ulc-vasnprintf1.c (ASSERT): Likewise.
1393         * tests/unistdio/test-ulc-vasnprintf2.c (ASSERT): Likewise.
1394         * tests/unistdio/test-ulc-vasnprintf3.c (ASSERT): Likewise.
1395         * tests/unistdio/test-ulc-vasprintf1.c (ASSERT): Likewise.
1396         * tests/unistdio/test-ulc-vsnprintf1.c (ASSERT): Likewise.
1397         * tests/unistdio/test-ulc-vsprintf1.c (ASSERT): Likewise.
1398         * tests/uniwidth/test-u16-strwidth.c (ASSERT): Likewise.
1399         * tests/uniwidth/test-u16-width.c (ASSERT): Likewise.
1400         * tests/uniwidth/test-u32-strwidth.c (ASSERT): Likewise.
1401         * tests/uniwidth/test-u32-width.c (ASSERT): Likewise.
1402         * tests/uniwidth/test-u8-strwidth.c (ASSERT): Likewise.
1403         * tests/uniwidth/test-u8-width.c (ASSERT): Likewise.
1404         * tests/uniwidth/test-uc_width.c (ASSERT): Likewise.
1405         Reported by Eric Blake.
1406
1407 2008-04-11  Bruno Haible  <bruno@clisp.org>
1408
1409         * lib/wchar.in.h: Tweak comment.
1410
1411 2008-04-11  Bruno Haible  <bruno@clisp.org>
1412
1413         Fix __GNUC_STDC_INLINE__ predefine with Apple GCC on MacOS X 10.5.
1414         * gnulib-tool (func_emit_initmacro_start): Emit an invocation of
1415         gl_COMMON.
1416         * m4/gnulib-common.m4 (gl_COMMON, gl_COMMON_BODY): New macros.
1417
1418 2008-04-11  Bruno Haible  <bruno@clisp.org>
1419
1420         * modules/git-merge-changelog (git_merge_changelog_LDADD): Add LIBINTL.
1421
1422 2008-04-11  Simon Josefsson  <simon@josefsson.org>
1423
1424         * lib/gc-gnulib.c: On Windows, use CryptGenRandom from CSP instead
1425         of attempting to use non-existing /dev/*random.  Based on patch
1426         from Adam Strzelecki <ono@java.pl> in
1427         <http://lists.gnu.org/archive/html/help-gsasl/2008-02/msg00000.html>.
1428
1429 2008-04-08  Bruno Haible  <bruno@clisp.org>
1430
1431         Add tentative support for emx+gcc.
1432         * lib/fbufmode.c (fbufmode) [__EMX__]: Add conditional code.
1433         * lib/fpurge.c (fpurge): Likewise.
1434         * lib/freadable.c (freadable): Likewise.
1435         * lib/freadahead.c (freadahead): Likewise.
1436         * lib/freading.c (freading): Likewise.
1437         * lib/freadptr.c (freadptr): Likewise.
1438         * lib/freadseek.c (freadptrinc): Likewise.
1439         * lib/fseeko.c (rpl_fseeko): Likewise.
1440         * lib/fseterr.c (fseterr): Likewise.
1441         * lib/fwritable.c (fwritable): Likewise.
1442         * lib/fwriting.c (fwriting): Likewise.
1443         * m4/fpending.m4 (gl_FUNC_FPENDING): Add a variant for emx+gcc.
1444
1445 2008-04-09  Eric Blake  <ebb9@byu.net>
1446
1447         Avoid some autoconf warnings.
1448         * m4/regex.m4 (gl_REGEX): s/AC_HELP_STRING/AS_HELP_STRING/.
1449         * m4/acl.m4 (gl_FUNC_ACL): Likewise.
1450         * m4/afs.m4 (gl_AFS): Likewise.
1451         * m4/gc-random.m4 (gl_GC_RANDOM): Likewise.
1452         * m4/include_next.m4 (gl_INCLUDE_NEXT): s/AC_FOREACH/m4_foreach_w/.
1453         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Likewise.
1454         * m4/stdint.m4 (gl_STDINT_BITSIZEOF, gl_CHECK_TYPES_SIGNED)
1455         (gl_INTEGER_TYPE_SUFFIX): Likewise.
1456         * m4/onceonly_2_57.m4 (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE)
1457         (AC_CHECK_DECLS_ONCE): Likewise.
1458         Rename file...
1459         * m4/onceonly.m4: ...to this, and delete 2.54 variant, now that
1460         gnulib-tool requires autoconf 2.59 or better.
1461         * gnulib-tool (func_get_filelist): s/\(onceonly\)_2_57.m4/\1.m4/.
1462
1463 2008-04-08  Eric Blake  <ebb9@byu.net>
1464
1465         Use 'git describe --match' if present (added in git 1.5.5).
1466         * build-aux/git-version-gen: Limit result to tags that match 'v*'
1467         if possible.
1468
1469 2008-04-08  Bruno Haible  <bruno@clisp.org>
1470
1471         Add tentative support for OpenServer.
1472         * lib/fbufmode.c (fbufmode): Add conditional define for _flag, _base,
1473         _ptr, _cnt.
1474         * lib/fpurge.c (fpurge): Likewise.
1475         * lib/freadable.c (freadable): Likewise.
1476         * lib/freadahead.c (freadahead): Likewise.
1477         * lib/freading.c (freading): Likewise.
1478         * lib/freadptr.c (freadptr): Likewise.
1479         * lib/freadseek.c (freadptrinc): Likewise.
1480         * lib/fseeko.c (rpl_fseeko): Likewise.
1481         * lib/fseterr.c (fseterr): Likewise.
1482         * lib/fwritable.c (fwritable): Likewise.
1483         * lib/fwriting.c (fwriting): Likewise.
1484         Reported by Roger Cornelius <rac@tenzing.org> and
1485         Brian K. White <brian@aljex.com>.
1486
1487 2008-04-06  Jim Meyering  <meyering@redhat.com>
1488
1489         * gnulib-tool (func_add_or_update): s/backuped/backed up/ in diagnostic
1490
1491 2008-04-06  Bruno Haible  <bruno@clisp.org>
1492
1493         Avoid possible error with non-ASCII bytes in UTF-8 locales.
1494         * tests/test-fprintf-posix.sh: Use "LC_ALL=C tr" instead of "tr".
1495         * tests/test-printf-posix.sh: Likewise.
1496         * tests/test-vfprintf-posix.sh: Likewise.
1497         * tests/test-vprintf-posix.sh: Likewise.
1498         * tests/test-xprintf-posix.sh: Likewise.
1499
1500 2008-04-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
1501
1502         * m4/double-slash-root.m4 (gl_DOUBLE_SLASH_ROOT): Fix quoting,
1503         hide error from 'ls', needed on OS/2.
1504         Report by Elbert Pol <elbert.pol@gmail.com>.
1505
1506 2008-04-04  Eric Blake  <ebb9@byu.net>
1507
1508         Make test-fseeko.c failures meaningful.
1509         * tests/test-fseeko.c: Print line number on failure.
1510         * tests/test-fseek.c: Likewise.
1511         Reported by Nelson H. F. Beebe.
1512
1513         Improve strtod bug detection check.
1514         * m4/strtod.m4 (gl_FUNC_STRTOD): Also check for hex-float parsing,
1515         required for Solaris 10.
1516         Reported by Bob Friesenhahn and Nelson H. F. Beebe.
1517
1518 2008-04-04  Bruno Haible  <bruno@clisp.org>
1519
1520         * modules/relocatable-prog-wrapper (Files): Add m4/environ.m4. Needed
1521         by m4/setenv.m4.
1522
1523 2008-04-03  Eric Blake  <ebb9@byu.net>
1524
1525         Ensure sane .version contents.
1526         * top/GNUmakefile (_dummy): Also delete .version when rebuilding
1527         version string.
1528         * build-aux/git-version-gen: Improve documentation.
1529
1530         Make GNU make output nicer.
1531         * top/GNUmakefile [!_have-Makefile]: Add dependency on
1532         MAKECMDGOALS to enforce message for all command line targets.  Set
1533         srcdir for use in maint.mk.
1534
1535         Another maintainer tweak.
1536         * top/GNUmakefile (_is-dist-target): Allow maintainer-distcheck as
1537         a target that regenerates version.
1538
1539 2008-04-03  Jim Meyering  <meyering@redhat.com>
1540
1541         vc-list-files: don't cause coreutils "make po-check" failure
1542         * build-aux/vc-list-files: Skip postprocessing when $2 is '.'
1543
1544 2008-04-03  Eric Blake  <ebb9@byu.net>
1545
1546         Allow VPATH usage of vc-list-files.
1547         * build-aux/vc-list-files (scriptversion): Add timestamp.
1548         (options): Add --help, --version, -C.
1549         (CVS): Support installed cvsu.
1550
1551 2008-04-02  Bruno Haible  <bruno@clisp.org>
1552
1553         Avoid some "statement with no effect" warnings from gcc.
1554         * tests/test-wctype.c (main): Explicitly ignore unused values.
1555         Reported by Jim Meyering.
1556
1557 2008-04-02  Jim Meyering  <meyering@redhat.com>
1558
1559         Avoid some warnings from "gcc -Wshadow".
1560         * tests/test-frexp.c (exp): Define to a different identifier.
1561         * tests/test-frexpl.c (exp): Likewise.
1562
1563 2008-04-03  Jim Meyering  <meyering@redhat.com>
1564
1565         bootstrap: remove dangling *.[ch] symlinks from lib
1566         * build-aux/bootstrap [dangling symlink removal]: Move find's
1567         -depth option to precede all others, to avoid a warning.
1568         Remove *.[ch] files too, and from "$source_base" (usually lib/).
1569
1570 2008-04-02  Bruno Haible  <bruno@clisp.org>
1571
1572         Avoid some warnings from "gcc -Wshadow".
1573         * tests/tests-vfprintf-posix.c (my_fprintf): Move after test_function.
1574         * tests/tests-vprintf-posix.c (my_printf): Move after test_function.
1575         * tests/tests-vsnprintf-posix.c (my_snprintf): Move after test_function.
1576         * tests/tests-vsprintf-posix.c (my_sprintf): Move after test_function.
1577         Reported by Jim Meyering.
1578
1579 2008-04-01  Bruno Haible  <bruno@clisp.org>
1580
1581         Fix test to work on IRIX 6.5 with cc.
1582         * tests/test-math.c (numeric_equal): New function.
1583         (main): Use it.
1584
1585 2008-04-01  Bruno Haible  <bruno@clisp.org>
1586
1587         * doc/posix-headers/math.texi: Refine documentation of NAN problem.
1588
1589 2008-04-01  Bruno Haible  <bruno@clisp.org>
1590
1591         * tests/test-vasnprintf-posix.c: Include nan.h instead of <math.h>.
1592         (test_function): Use NaNd, NaNl instead of NAN or 0.0L/0.0L.
1593         * modules/vasnprintf-posix-tests (Files): Add tests/nan.h.
1594         (Depends-on): Remove math.
1595
1596         * tests/test-vasprintf-posix.c: Include nan.h instead of <math.h>.
1597         (test_function): Use NaNd, NaNl instead of NAN or 0.0L/0.0L.
1598         * modules/vasprintf-posix-tests (Files): Add tests/nan.h.
1599         (Depends-on): Remove math.
1600
1601         * tests/test-snprintf-posix.h: Include nan.h instead of <math.h>.
1602         (test_function): Use NaNd, NaNl instead of NAN or 0.0L/0.0L.
1603         * modules/snprintf-posix-tests (Files): Add tests/nan.h.
1604         (Depends-on): Remove math.
1605         * modules/vsnprintf-posix-tests (Files): Add tests/nan.h.
1606         (Depends-on): Remove math.
1607
1608         * tests/test-sprintf-posix.h: Include nan.h instead of <math.h>.
1609         (test_function): Use NaNd, NaNl instead of NAN or 0.0L/0.0L.
1610         * modules/sprintf-posix-tests (Files): Add tests/nan.h.
1611         (Depends-on): Remove math.
1612         * modules/vsprintf-posix-tests (Files): Add tests/nan.h.
1613         (Depends-on): Remove math.
1614
1615         * tests/test-round1.c: Include nan.h.
1616         (main): Use NaNd instead of NAN.
1617         * modules/round-tests (Files): Add tests/nan.h.
1618
1619         * tests/test-trunc1.c: Include nan.h.
1620         (main): Use NaNd instead of NAN.
1621         * modules/trunc-tests (Files): Add tests/nan.h.
1622
1623         * tests/test-roundf1.c: Include nan.h.
1624         (main): Use NaNf instead of NAN.
1625         * modules/roundf-tests (Files): Add tests/nan.h.
1626
1627         * tests/test-truncf1.c: Include nan.h.
1628         (main): Use NaNf instead of NAN.
1629         * modules/truncf-tests (Files): Add tests/nan.h.
1630
1631         * tests/test-ceilf1.c: Include nan.h.
1632         (main): Use NaNf instead of NAN.
1633         * modules/ceilf-tests (Files): Add tests/nan.h.
1634
1635         * tests/test-floorf1.c: Include nan.h.
1636         (main): Use NaNf instead of NAN.
1637         * modules/floorf-tests (Files): Add tests/nan.h.
1638
1639         * tests/test-isnanf.c: Include nan.h instead of <math.h>.
1640         (main): Use NaNf instead of NAN.
1641         * modules/isnanf-nolibm-tests (Files): Add tests/nan.h.
1642
1643         * tests/test-isnand.c: Include nan.h instead of <math.h>.
1644         (main): Use NaNd instead of NAN.
1645         * modules/isnand-nolibm-tests (Files): Add tests/nan.h.
1646
1647         * tests/test-frexp.c: Include nan.h.
1648         (main): Use NaNd instead of NAN.
1649         * modules/frexp-tests (Files): Add tests/nan.h.
1650
1651         * lib/isnan.c: Don't include <math.h>.
1652         (FUNC): Don't use NAN macro.
1653         * modules/isnand-nolibm (Depends-on): Remove math.
1654         * modules/isnanf-nolibm (Depends-on): Remove math.
1655         * modules/isnanl (Depends-on): Remove math.
1656         * modules/isnanl-nolibm (Depends-on): Remove math.
1657
1658         * tests/nan.h: New file.
1659
1660 2008-04-01  Eric Blake  <ebb9@byu.net>
1661
1662         Fix typos.
1663         * tests/test-strtod.c (main): s/FLT_/DBL_/ for minimum and epsilon
1664         values to be the right type.
1665
1666         For now, cater to gnulib strtod inaccuracies.
1667         * tests/test-strtod.c (main): Allow 1-ulp error on expected
1668         fractional results.  While not as nice from a QoI perspective, it
1669         is a quicker patch than correctly implementing decimal to binary
1670         rounding.
1671
1672 2008-03-31  Eric Blake  <ebb9@byu.net>
1673
1674         Guarantee a definition of NAN.
1675         * lib/math.in.h (NAN): Define if missing.
1676         * tests/test-math.c (main): Test it.
1677         * doc/posix-headers/math.texi (math.h): Document this.
1678         * lib/isnan.c (rpl_isnand): Use it.
1679         * tests/test-ceilf1.c (NaN): Delete, and use NAN instead.
1680         * tests/test-floorf1.c (NaN): Likewise.
1681         * tests/test-frexp.c (NaN): Likewise.
1682         * tests/test-isnand.c (NaN): Likewise.
1683         * tests/test-isnanf.c (NaN): Likewise.
1684         * tests/test-round1.c (NaN): Likewise.
1685         * tests/test-roundf1.c (NaN): Likewise.
1686         * tests/test-snprintf-posix.h (NaN): Likewise.
1687         * tests/test-sprintf-posix.h (NaN): Likewise.
1688         * tests/test-trunc1.c (NaN): Likewise.
1689         * tests/test-truncf1.c (NaN): Likewise.
1690         * tests/test-vasnprintf-posix.c (NaN): Likewise.
1691         * tests/test-vasprintf-posix.c (NaN): Likewise.
1692         * modules/isnand-nolibm (Depends-on): Add math.
1693         * modules/isnanf-nolibm (Depends-on): Likewise.
1694         * modules/isnanl (Depends-on): Likewise.
1695         * modules/isnanl-nolibm (Depends-on): Likewise.
1696         * modules/snprintf-posix-tests (Depends-on): Likewise.
1697         * modules/sprintf-posix-tests (Depends-on): Likewise.
1698         * modules/vsnprintf-posix-tests (Depends-on): Likewise.
1699         * modules/vsprintf-posix-tests (Depends-on): Likewise.
1700         * modules/vasnprintf-posix-tests (Depends-on): Likewise.
1701         * modules/vasprintf-posix-tests (Depends-on): Likewise.
1702
1703 2008-03-31  Bruno Haible  <bruno@clisp.org>
1704
1705         * tests/test-strtod.c (main): Update results for OSF/1 platforms.
1706         * doc/posix-functions/strtod.texi: Likewise.
1707
1708 2008-03-31  Bruno Haible  <bruno@clisp.org>
1709
1710         * tests/test-strtod.c (main): Don't use C99 syntax.
1711
1712 2008-03-31  Bruno Haible  <bruno@clisp.org>
1713
1714         * tests/test-strtod.c (main): Don't test NAN macro. Needed for Solaris.
1715         Reported by Eric Blake.
1716
1717 2008-03-31  Jim Meyering  <meyering@redhat.com>
1718
1719         Don't compare actual signbit return values.
1720         * tests/test-strtod.c (main): Rather, compare only their
1721         zero/non-zero nature.
1722
1723 2008-03-31  Eric Blake  <ebb9@byu.net>
1724
1725         More strtod documentation.
1726         * doc/posix-functions/strtod.texi (strtod): Interpret more test
1727         failures as distinct bugs.
1728
1729 2008-03-30  Paul Eggert  <eggert@cs.ucla.edu>
1730
1731         * lib/wchar.in.h [defined __need_mbstate_t]: Just include <wchar.h>.
1732         Problem reported by Erik Benada in
1733         <http://lists.gnu.org/archive/html/bug-gnulib/2008-03/msg00249.html>.
1734
1735 2008-03-30  Bruno Haible  <bruno@clisp.org>
1736
1737         * tests/test-strtod.c: Add comments about which assertion fails on which
1738         platform.
1739         * doc/posix-functions/strtod.texi: Add info about many more platforms.
1740
1741 2008-03-30  Eric Blake  <ebb9@byu.net>
1742
1743         Test signbit behavior on zeros.
1744         * tests/test-signbit.c (test_signbitf): Add tests for zero.
1745         (test_signbitd, test_signbitl): Likewise.
1746
1747         More strtod touchups.
1748         * tests/test-strtod.c (main): Ignore tests for signbit on NaN, and
1749         sign of negative underflow, for now.  Use .5, not .1.
1750         * doc/posix-functions/strtod.texi (strtod): Mention these
1751         limitations.
1752         Reported by Jim Meyering.
1753
1754 2008-03-30  Bruno Haible  <bruno@clisp.org>
1755
1756         * lib/striconveh.h (mem_iconveh, str_iconveh): Optimize the conversion
1757         from UTF-8 to UTF-8//TRANSLIT in the same way as from UTF-8 to UTF-8.
1758
1759 2008-03-30  Bruno Haible  <bruno@clisp.org>
1760
1761         Avoid failure when attempting to return empty iconv results on some
1762         platforms.
1763         * lib/striconveh.c (mem_cd_iconveh_internal): In the final memory
1764         allocation, don't report ENOMEM when the resulting string is empty.
1765
1766 2008-03-30  Bruno Haible  <bruno@clisp.org>
1767
1768         Fix buffer overrun.
1769         * lib/vasnprintf.c (VASNPRINTF): If !USE_SNPRINTF && pad_ourselves:
1770         Don't consider the width for tmp_length. Check count against tmp_length
1771         before doing the padding. Ensure enough allocation during padding.
1772
1773 2008-03-30  Eric Blake  <ebb9@byu.net>
1774
1775         strtod touchups.
1776         * lib/strtod.c (strtod): Avoid compiler warnings.
1777         Reported by Jim Meyering.
1778
1779 2008-03-30  Bruno Haible  <bruno@clisp.org>
1780
1781         * lib/unistdio/u-vsprintf.h (EOVERFLOW): Remove fallback.
1782         * modules/unistdio/ulc-vsprintf (Depends-on): Add EOVERFLOW.
1783         * modules/unistdio/u8-vsprintf (Depends-on): Add EOVERFLOW.
1784         * modules/unistdio/u8-u8-vsprintf (Depends-on): Add EOVERFLOW.
1785         * modules/unistdio/u16-vsprintf (Depends-on): Add EOVERFLOW.
1786         * modules/unistdio/u16-u16-vsprintf (Depends-on): Add EOVERFLOW.
1787         * modules/unistdio/u32-vsprintf (Depends-on): Add EOVERFLOW.
1788         * modules/unistdio/u32-u32-vsprintf (Depends-on): Add EOVERFLOW.
1789
1790         * lib/unistdio/u-vsnprintf.h (EOVERFLOW): Remove fallback.
1791         * modules/unistdio/ulc-vsnprintf (Depends-on): Add EOVERFLOW.
1792         * modules/unistdio/u8-vsnprintf (Depends-on): Add EOVERFLOW.
1793         * modules/unistdio/u8-u8-vsnprintf (Depends-on): Add EOVERFLOW.
1794         * modules/unistdio/u16-vsnprintf (Depends-on): Add EOVERFLOW.
1795         * modules/unistdio/u16-u16-vsnprintf (Depends-on): Add EOVERFLOW.
1796         * modules/unistdio/u32-vsnprintf (Depends-on): Add EOVERFLOW.
1797         * modules/unistdio/u32-u32-vsnprintf (Depends-on): Add EOVERFLOW.
1798
1799         * lib/unistdio/u-vasprintf.h (EOVERFLOW): Remove fallback.
1800         * modules/unistdio/ulc-vasprintf (Depends-on): Add EOVERFLOW.
1801         * modules/unistdio/u8-vasprintf (Depends-on): Add EOVERFLOW.
1802         * modules/unistdio/u8-u8-vasprintf (Depends-on): Add EOVERFLOW.
1803         * modules/unistdio/u16-vasprintf (Depends-on): Add EOVERFLOW.
1804         * modules/unistdio/u16-u16-vasprintf (Depends-on): Add EOVERFLOW.
1805         * modules/unistdio/u32-vasprintf (Depends-on): Add EOVERFLOW.
1806         * modules/unistdio/u32-u32-vasprintf (Depends-on): Add EOVERFLOW.
1807
1808         * lib/unistdio/ulc-vfprintf.c (EOVERFLOW): Remove fallback.
1809         * modules/unistdio/ulc-vfprintf (Depends-on): Add EOVERFLOW.
1810
1811         * lib/unistdio/ulc-fprintf.c (EOVERFLOW): Remove fallback.
1812         * modules/unistdio/ulc-fprintf (Depends-on): Add EOVERFLOW.
1813
1814         * lib/xvasprintf.c (EOVERFLOW): Remove fallback.
1815         * modules/xvasprintf (Depends-on): Add EOVERFLOW.
1816
1817         * lib/vsprintf.c (EOVERFLOW): Remove fallback.
1818         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Drop gl_EOVERFLOW.
1819         * modules/vsprintf-posix (Depends-on): Add EOVERFLOW.
1820
1821         * lib/vsnprintf.c (EOVERFLOW): Remove fallback.
1822         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Drop gl_EOVERFLOW.
1823         * modules/vsnprintf (Depends-on): Add EOVERFLOW.
1824
1825         * lib/vfprintf.c (EOVERFLOW): Remove fallback.
1826         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Drop gl_EOVERFLOW.
1827         * modules/vfprintf-posix (Depends-on): Add EOVERFLOW.
1828
1829         * lib/vasprintf.c (EOVERFLOW): Remove fallback.
1830         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Drop gl_EOVERFLOW.
1831         * modules/vasprintf (Depends-on): Add EOVERFLOW.
1832
1833         * lib/vasnprintf.c (EOVERFLOW): Remove fallback.
1834         * m4/vasnprintf.m4 (gl_FUNC_VASNPRINTF): Drop gl_EOVERFLOW.
1835         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Drop gl_EOVERFLOW.
1836         * modules/vasnprintf (Files): Remove m4/eoverflow.m4.
1837         (Depends-on): Add EOVERFLOW.
1838         * modules/unistdio/ulc-vasnprintf (Files): Remove m4/eoverflow.m4.
1839         (Depends-on): Add EOVERFLOW.
1840         * modules/unistdio/u8-vasnprintf (Files): Remove m4/eoverflow.m4.
1841         (Depends-on): Add EOVERFLOW.
1842         * modules/unistdio/u8-u8-vasnprintf (Files): Remove m4/eoverflow.m4.
1843         (Depends-on): Add EOVERFLOW.
1844         * modules/unistdio/u16-vasnprintf (Files): Remove m4/eoverflow.m4.
1845         (Depends-on): Add EOVERFLOW.
1846         * modules/unistdio/u16-u16-vasnprintf (Files): Remove m4/eoverflow.m4.
1847         (Depends-on): Add EOVERFLOW.
1848         * modules/unistdio/u32-vasnprintf (Files): Remove m4/eoverflow.m4.
1849         (Depends-on): Add EOVERFLOW.
1850         * modules/unistdio/u32-u32-vasnprintf (Files): Remove m4/eoverflow.m4.
1851         (Depends-on): Add EOVERFLOW.
1852
1853         * lib/sprintf.c (EOVERFLOW): Remove fallback.
1854         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Drop gl_EOVERFLOW.
1855         * modules/sprintf-posix (Depends-on): Add EOVERFLOW.
1856
1857         * lib/snprintf.c (EOVERFLOW): Remove fallback.
1858         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Drop gl_EOVERFLOW.
1859         * modules/snprintf (Depends-on): Add EOVERFLOW.
1860
1861         * lib/poll.c (EOVERFLOW): Remove fallback.
1862         * modules/poll (Depends-on): Add EOVERFLOW.
1863
1864         * lib/getugroups.c (EOVERFLOW): Remove fallback.
1865         * modules/getugroups (Depends-on): Add EOVERFLOW.
1866
1867         * lib/getdelim.c (EOVERFLOW): Remove fallback.
1868         * modules/getdelim (Depends-on): Add EOVERFLOW.
1869
1870         * lib/ftell.c (EOVERFLOW): Remove fallback.
1871         * modules/ftell (Depends-on): Add EOVERFLOW.
1872
1873         * lib/fprintf.c (EOVERFLOW): Remove fallback.
1874         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Drop gl_EOVERFLOW.
1875         * modules/fprintf-posix (Depends-on): Add EOVERFLOW.
1876
1877         * lib/c-stack.c (EOVERFLOW): Remove unused fallback.
1878
1879         * modules/EOVERFLOW-tests: New file.
1880         * tests/test-EOVERFLOW.c: New file.
1881
1882         * modules/EOVERFLOW: New file.
1883         * doc/posix-headers/errno.texi: Mention EOVERFLOW portability problem.
1884
1885 2008-03-30  Bruno Haible  <bruno@clisp.org>
1886
1887         Fix bug introduced on 2007-06-10.
1888         * lib/vasnprintf.c (VASNPRINTF): When performing zero-padding, use
1889         spaces instead of 0 digits for 's' also when ENABLE_UNISTDIO.
1890
1891 2008-03-30  Bruno Haible  <bruno@clisp.org>
1892
1893         Improve freadseek's efficiency after ungetc.
1894         * lib/freadseek.c: Include freadahead.h.
1895         (freadptrinc): New function, extracted from freadseek.
1896         (freadseek): Use it in a loop. Use freadahead to determine the number
1897         of loop iterations.
1898         * modules/freadseek (Depends-on): Add freadahead.
1899         (configure.ac): Require AC_C_INLINE.
1900
1901 2008-03-30  Bruno Haible  <bruno@clisp.org>
1902
1903         * lib/freadseek.c (freadseek): Don't ignore the return value of
1904         freadptr.
1905
1906 2008-03-29  Eric Blake  <ebb9@byu.net>
1907
1908         Add hex float support.
1909         * modules/strtod (Depends-on): Add c-ctype.
1910         (Link): Mention POW_LIB.
1911         * lib/strtod.c (strtod): Recognize hex floats.  Don't allow
1912         whitespace between 'e' and exponent.
1913         * tests/test-strtod.c (main): Enable hex float tests.
1914         * doc/posix-functions/strtod.texi (strtod): Document what gnulib
1915         now provides.
1916
1917         Document various strtod bugs, with some fixes.
1918         * doc/posix-functions/strtod.texi (strtod): Document bugs with
1919         "-0x", "inf", "nan", and hex constants.
1920         * doc/posix-functions/atof.texi (atof): Likewise.
1921         * modules/stdlib (Makefile.am): Support strtod.
1922         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Likewise.
1923         * m4/strtod.m4 (gl_FUNC_STRTOD): Fit in stdlib framework, and
1924         detect additional strtod bugs.
1925         * lib/stdlib.in.h (rpl_strtod): Add declarations.
1926         * lib/strtod.c (strtod): Return -0.0 on negative underflow.  Use
1927         bool where appropriate.  Parse 'inf' and 'nan'.
1928         * tests/test-strtod.c: New file.
1929         * modules/strtod (Depends-on): Add stdbool, stdlib.
1930         (configure.ac): Turn on module indicator.
1931         * modules/strtod-tests: New module.
1932
1933 2008-03-29  Eric Blake  <ebb9@byu.net>
1934
1935         Fix ftell on mingw.
1936         * lib/ftell.c (EOVERFLOW): Define if the system lacks it.
1937         * modules/ftell-tests (Depends-on): Add binary-io.
1938         * modules/ftello-tests (Depends-on): Likewise.
1939         * tests/test-ftell.c (main): Enhance test to cover behavior after
1940         ungetc.  Enforce binary mode.
1941         * tests/test-ftello.c (main): Likewise.
1942
1943         Pass test-freadseek on cygwin.
1944         * modules/freadseek (Depends-on): Use freadptr, not freadahead.
1945         * lib/freadseek.c (freadseek): Don't increment beyond bounds of
1946         ungetc buffer.
1947
1948         * tests/test-fflush2.c (main): Fix typo.
1949
1950 2008-03-29  Bruno Haible  <bruno@clisp.org>
1951
1952         * tests/test-fflush2.c (main): Temporarily disable the contents of
1953         this test.
1954         * m4/fflush.m4 (gl_FUNC_FFLUSH): Add a TODO.
1955         Reported by Eric Blake.
1956
1957 2008-03-28  Simon Josefsson  <simon@josefsson.org>
1958
1959         * lib/gc.h (enum Gc_hash): Add GC_SHA224.
1960         (GC_SHA224_DIGEST_SIZE): Add.
1961
1962         * lib/gc-libgcrypt.c (gc_hash_open): Handle SHA-224.
1963         (gc_hash_digest_length): Likewise.
1964         (gc_hash_buffer): Likewise.
1965
1966 2008-03-25  Bruno Haible  <bruno@clisp.org>
1967
1968         * doc/gnulib-tool.texi (gettextize and autopoint): Explain in more
1969         detail which gettext release to use.
1970         Reported by Simon Josefsson.
1971
1972 2008-03-26  Jim Meyering  <meyering@redhat.com>
1973
1974         gnumakefile: remove file from $(top_builddir), not from $(top_srcdir)
1975         * modules/gnumakefile (clean-GNUmakefile): Also, use
1976         test ... && ... || : syntax rather than if-then ... fi.
1977
1978         gnumakefile: Don't double-quote-expand $(VPATH) value.
1979         * modules/gnumakefile (clean-GNUmakefile): Use single quotes.
1980
1981 2008-03-24  Eric Blake  <ebb9@byu.net>
1982
1983         Alter GNUmakefile to install into top directory.
1984         * modules/maintainer-makefile: Split, and add dependency...
1985         * modules/gnumakefile: to this new module.
1986         * build-aux/GNUmakefile: Move...
1987         * top/GNUmakefile: ...here.
1988         * build-aux/maint.mk: Move...
1989         * top/maint.mk: ...here.
1990         * MODULES.html.sh (Support for maintaining...): Document new
1991         module.
1992
1993 2008-03-23  Bruno Haible  <bruno@clisp.org>
1994
1995         * gnulib-tool: New options --vc-files, --no-vc-files.
1996         (func_usage): Document them.
1997         (vc_files): New variable.
1998         (func_import): Consider vc_files.
1999         (func_create_testdir): Set vc_files to empty.
2000         Suggested by Jim Meyering and Karl Berry.
2001
2002 2008-03-23  Bruno Haible  <bruno@clisp.org>
2003
2004         Fix regex compilation error on HP-UX 11.
2005         * m4/regex.m4 (gl_PREREQ_REGEX): Require AC_TYPE_MBSTATE_T.
2006         * modules/regex (Files): Add m4/mbstate_t.m4.
2007         Reported by Ton Voon <ton.voon@altinity.com>.
2008
2009 2008-03-23  Bruno Haible  <bruno@clisp.org>
2010
2011         * doc/gnulib-tool.texi (gettextize and autopoint): New section.
2012
2013 2008-03-23  Eric Blake  <ebb9@byu.net>
2014             Bruno Haible  <bruno@clisp.org>
2015
2016         Install files from top/ in the destination directory.
2017         * gnulib-tool (func_get_automake_snippet): Synthesize an EXTRA_DIST
2018         augmentation also for the files from top/.
2019         (func_import, func_create_testdir): Rewrite file names:
2020         top/filename -> filename.
2021
2022 2008-03-23  Bruno Haible  <bruno@clisp.org>
2023
2024         Tweak "gnulib --version" output.
2025         * gnulib-tool (func_version): Replace "-dirty" suffix with "-modified".
2026
2027 2008-03-23  Bruno Haible  <bruno@clisp.org>
2028
2029         Tweak "gnulib --version" output.
2030         * gnulib-tool (func_version): Use date of last commit to ChangeLog,
2031         rather than contents of ChangeLog, when possible.
2032
2033 2008-03-21  Eric Blake  <ebb9@byu.net>
2034
2035         More --version tweaks.
2036         * gnulib-tool (func_version): Obey GNU Coding Standards.  Output
2037         date of last ChangeLog entry.
2038
2039 2008-03-21  Jim Meyering  <meyering@redhat.com>
2040
2041         * build-aux/GNUmakefile (_have-git-version-gen): Split long line.
2042
2043 2008-03-20  Eric Blake  <ebb9@byu.net>
2044
2045         VPATH fix.
2046         * build-aux/GNUmakefile (_have_git-version-gen): Look in correct dir.
2047
2048 2008-03-20  Simon Josefsson  <simon@josefsson.org>
2049
2050         * build-aux/GNUmakefile: Make git-version-gen optional.  Add
2051         _build-aux variable.  Suggested by Eric Blake <ebb9@byu.net>.
2052
2053 2008-03-20  Eric Blake  <ebb9@byu.net>
2054
2055         Sync GNUmakefile with coreutils.
2056         * build-aux/GNUmakefile (have-Makefile): Rename...
2057         (_have-Makefile): ...to this, for namespace consideration.
2058         (GNUmakefile.cfg): Include, if present.
2059         (_autoreconf): Define a default.
2060         (_is-dist-target): New rule for rebuilds to pick up intra-release
2061         version.
2062         (maint-cfg.mk): Rename...
2063         (cfg.mk): ...to this.
2064
2065 2008-03-18  Jim Meyering  <meyering@redhat.com>
2066
2067         New script and module: mktempd
2068         * MODULES.html.sh (maint+release support): Add mktempd.
2069         * build-aux/mktempd: New file.
2070         * modules/mktempd: New file.
2071
2072 2008-03-15  Jim Meyering  <meyering@redhat.com>
2073
2074         Undo last change.
2075         * lib/sha1.c, lib/md5.c: 63 != ~63.
2076         Reported by Andreas Schwab.
2077
2078         sha1.c, md5.c: Hoist a redundant expression.
2079         * lib/sha1.c (sha1_process_bytes): AND-off the low bits in
2080         "ctx->buflen" only once, before calling *_process_block.
2081         * lib/md5.c (md5_process_bytes): Likewise.
2082
2083 2008-03-14  Eric Blake  <ebb9@byu.net>
2084
2085         Bump copyright year in files generated by gnulib-tool.
2086         * gnulib-tool (func_emit_copyright_notice): Extract copyright from
2087         gnulib-tool, rather than hard-coding it.
2088
2089         Fix 'gnulib-tool --version' output to work with git.
2090         * gnulib-tool (func_gnulib_dir): New function, extracted from...
2091         (startup): ...here.
2092         (func_version): Use it to invoke git-version-gen, rather than
2093         relying on CVS keyword expansion.  Modernize wording.
2094         (cvsdatestamp, last_checkin_date, version): Kill unused
2095         variables.
2096
2097 2008-03-12  Jim Meyering  <meyering@redhat.com>
2098
2099         Recognize optional cast of the argument to free.
2100         * build-aux/useless-if-before-free: Update regexps.
2101
2102         * build-aux/bootstrap (gnulib_tool): Remove trailing blanks.
2103
2104 2008-03-11  Bruno Haible  <bruno@clisp.org>
2105
2106         Extend AC_LIB_LINKFLAGS to the situation of several libraries provided
2107         by a single package.
2108         * m4/lib-link.m4 (AC_LIB_FROMPACKAGE): New macro.
2109         (AC_LIB_LINKFLAGS_BODY): Use the information stored by
2110         AC_LIB_FROMPACKAGE. Use AC_ARG_WITH instead of AC_LIB_ARG_WITH.
2111         Reported by Sam Steingold <sds@gnu.org>.
2112
2113 2008-03-12  Sergey Poznyakoff  <gray@gnu.org.ua>
2114
2115         * build-aux/bootstrap (version_controlled_file): Adapt for SVN
2116         repositories.
2117
2118 2008-03-11  Bruno Haible  <bruno@clisp.org>
2119
2120         Avoid conflicts between local macro definitions.
2121         * m4/lib-link.m4 (AC_LIB_LINKFLAGS, AC_LIB_HAVE_LINKFLAGS,
2122         AC_LIB_LINKFLAGS_BODY): Use pushdef/popdef instead of define/undefine.
2123
2124 2008-03-10  Peter O'Gorman  <bug-gnulib@mlists.thewrittenword.com>
2125             Bruno Haible  <bruno@clisp.org>
2126
2127         Make va_copy work with some version of xlc on AIX 5.1.
2128         * lib/stdarg.in.h: New file.
2129         * m4/stdarg.m4 (gl_STDARG_H): Initialize STDARG_H and NEXT_STDARG_H.
2130         On AIX, use a <stdarg.h> file substitute.
2131         * modules/stdarg (Files): Add lib/stdarg.in.h.
2132         (Depends-on): Add include_next.
2133         (Makefile.am): Build a stdarg.h substitute if requested.
2134         * doc/posix-functions/va_copy.texi: Document the platforms lacking it.
2135
2136 2008-03-10  Bruno Haible  <bruno@clisp.org>
2137
2138         * m4/include_next.m4 (gl_CHECK_NEXT_HEADERS): Document a restriction.
2139         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Likewise.
2140         Reported by Peter O'Gorman <bug-gnulib@mlists.thewrittenword.com>.
2141
2142 2008-03-10  Bruno Haible  <bruno@clisp.org>
2143
2144         * modules/stdlib (Depends-on): Add include_next, remove
2145         absolute-header.
2146
2147 2008-03-09  Bruno Haible  <bruno@clisp.org>
2148
2149         * lib/freadahead.h (freadahead): Document more precisely.
2150         * lib/freadahead.c (freadahead): When an ungetc is in effect, return
2151         the sum of both buffer sizes.
2152         * tests/test-freadahead.c (main): Also test behaviour after ungetc.
2153         * NEWS: Document the change.
2154
2155 2008-03-09  Bruno Haible  <bruno@clisp.org>
2156
2157         Extend freadptr to return also the buffer size.
2158         * lib/freadptr.h (freadptr): Add sizep argument.
2159         * lib/freadptr.c: Include freadptr.h, not freadahead.h.
2160         (freadptr): Add sizep argument. Determine buffer size like freadahead
2161         does.
2162         * tests/test-freadptr.c: Don't include freadahead.h.
2163         (main): Adapt for new calling convention of freadptr.
2164         * tests/test-freadptr2.c: New file, based on tests/test-freadahead.c.
2165         * tests/test-freadptr2.sh: New file, based on tests/test-freadahead.sh.
2166         * modules/freadptr-tests (Files): Add tests/test-freadptr2.c,
2167         tests/test-freadptr2.sh.
2168         (Depends): Remove freadahead.
2169         (TESTS): Add test-freadptr2.sh.
2170         (check_PROGRAMS): Add test-freadptr2.
2171
2172 2008-03-09  Bruno Haible  <bruno@clisp.org>
2173
2174         * doc/Makefile (%.pdf): Explain how to remedy the save_size error.
2175         Report and solution by Simon Josefsson.
2176
2177 2008-03-06  Bruno Haible  <bruno@clisp.org>
2178
2179         Make fflush after ungetc work on BSD platforms.
2180         * lib/fflush.c (rpl_fflush): Discard ungetc buffer if possible.
2181         * tests/test-fflush2.c: New file.
2182         * tests/test-fflush2.sh: New file.
2183         * modules/fflush-tests (Files): Add tests/test-fflush2.sh,
2184         tests/test-fflush2.c.
2185         (Makefile.am): Build test-fflush2 and run test-fflush2.sh.
2186         * doc/posix-functions/fflush.texi: Document fflush after ungetc bug.
2187
2188 2008-03-06  Eric Blake  <ebb9@byu.net>
2189
2190         Likewise for ftello.
2191         * modules/ftello (Dependencies): Add extensions.
2192         * m4/ftello.m4 (gl_FUNC_FTELLO): Require AC_USE_SYSTEM_EXTENSIONS.
2193
2194 2008-03-06  Bruno Haible  <bruno@clisp.org>
2195
2196         * modules/fseeko (Dependencies): Add extensions.
2197         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Require AC_USE_SYSTEM_EXTENSIONS.
2198         Needed on glibc systems.
2199
2200 2008-03-06  Bruno Haible  <bruno@clisp.org>
2201
2202         * doc/gnulib-tool.texi (@nosuchmodulenote): Avoid line break inside
2203         email address.
2204         Reported by Thien-Thi Nguyen <ttn@gnuvola.org>.
2205
2206 2008-03-06  Bruno Haible  <bruno@clisp.org>
2207
2208         * users.txt: Add libgnupdf.
2209
2210 2008-03-06  Thien-Thi Nguyen  <ttn@gnuvola.org>  (tiny change)
2211
2212         * doc/gnulib-tool.texi (@nosuchmodulenote): New macro.
2213         (Header File Substitutes, Function Substitutes,
2214         Glibc Header File Substitutes, Glibc Function Substitutes): Use it.
2215         (Build robot for gnulib): Fix typo.
2216
2217 2008-03-06  Bruno Haible  <bruno@clisp.org>
2218
2219         * doc/gnulib-tool.texi (VCS Issues): Small updates.
2220         Reported by Thien-Thi Nguyen <ttn@gnuvola.org>.
2221
2222 2008-03-06  Bruno Haible  <bruno@clisp.org>
2223
2224         * doc/func.texi: New file, extracted from doc/gnulib.texi.
2225         * doc/gnulib.texi: Include it.
2226
2227 2008-03-06  Simon Josefsson  <simon@josefsson.org>
2228
2229         * modules/func (License): Change license to unlimited; there was
2230         no LGPL parts in the module anyway.
2231
2232 2008-03-06  Simon Josefsson  <simon@josefsson.org>
2233
2234         * modules/__func__: Renamed to modules/func.
2235         * modules/__func__-tests: Renamed to modules/func-tests.
2236         * tests/test-__func__.c: Renamed to tests/test-func.c.
2237         * m4/__func__.m4: Renamed to m4/func.m4.
2238         * doc/gnulib.texi (__func__): Section renamed to func.
2239         Suggested by Eric Blake <ebb9@byu.net>.
2240
2241 2008-03-06  Simon Josefsson  <simon@josefsson.org>
2242
2243         * doc/gnulib.texi (__func__): Use C99 terminology when talking
2244         about __func__.  Make example self-contained.  Suggested by Eric
2245         Blake <ebb9@byu.net>.
2246
2247         * tests/test-__func__.c (main): Avoid extraneous () around __func.
2248         Suggested by Eric Blake <ebb9@byu.net>.
2249
2250 2008-03-06  Simon Josefsson  <simon@josefsson.org>
2251
2252         * modules/__func__: New file.
2253         * modules/__func__-tests: New file.
2254         * tests/test-__func__.c: New file.
2255         * m4/__func__.m4: New file.
2256         * doc/gnulib.texi (__func__): Document __func__ module.
2257
2258 2008-03-05  Simon Josefsson  <simon@josefsson.org>
2259
2260         * modules/byteswap (License): Re-license as LGPLv2+.
2261
2262 2008-03-05  Simon Josefsson  <simon@josefsson.org>
2263
2264         * doc/Makefile: Add pdf target.
2265
2266 2008-03-05  Simon Josefsson  <simon@josefsson.org>
2267
2268         * modules/inline (License): Use 'unlimited', since there are only
2269         *.m4 files in this module.
2270
2271 2008-03-03  John E. Malmberg  <wb8tyw@qsl.net>  (tiny change)
2272             Bruno Haible  <bruno@clisp.org>
2273
2274         Add support for HP C 7.1 on OpenVMS 8.3.
2275         * lib/alloca.in.h (alloca): Define as alias for DEC C on VMS.
2276
2277 2008-03-03  John E. Malmberg  <wb8tyw@qsl.net>  (tiny change)
2278
2279         Update VMS specifics.
2280         * lib/getopt.c [VMS]: Remove include of unixlib.h.
2281
2282 2008-03-02  Jim Meyering  <meyering@redhat.com>
2283
2284         Remove the last dependency on the "free" module.
2285         * m4/readutmp.m4 (gl_READUTMP): Don't require gl_FUNC_FREE.
2286         Reported by Bob Proulx.
2287
2288         * lib/getdelim.c (getdelim): Don't leak memory upon failed realloc.
2289
2290         Remove useless "if" tests before free.  Deprecate "free" module.
2291         * doc/posix-functions/free.texi: Mention that this
2292         module is no longer useful.
2293         * modules/free (Notice): Say this module is obsolete.
2294         * modules/readutmp (Depends-on): Remove free.
2295         * lib/save-cwd.c (free_cwd): Remove useless "if" before free.
2296         * lib/putenv.c (putenv): Likewise.
2297         * lib/gc-gnulib.c (gc_cipher_close): Likewise.
2298         * lib/getaddrinfo.c (freeaddrinfo): Likewise.
2299         * tests/test-c-strcasestr.c (main): Likewise.
2300         * tests/test-c-strstr.c (main): Likewise.
2301         * tests/test-mbscasestr1.c (main): Likewise.
2302         * tests/test-mbscasestr2.c (main): Likewise.
2303         * tests/test-mbsstr1.c (main): Likewise.
2304         * tests/test-mbsstr2.c (main): Likewise.
2305         * tests/test-memmem.c (main): Likewise.
2306         * tests/test-strcasestr.c (main): Likewise.
2307         * tests/test-striconv.c (main): Likewise.
2308         * tests/test-striconveh.c (main): Likewise.
2309         * tests/test-striconveha.c (main): Likewise.
2310         * tests/test-strstr.c (main): Likewise.
2311
2312         * build-aux/git-version-gen: Adjust a comment and the Usage string.
2313
2314         bootstrap: sync from coreutils again
2315         * build-aux/bootstrap: Remove dangling m4/*.m4 symlinks.
2316
2317 2008-03-01  Jim Meyering  <meyering@redhat.com>
2318
2319         bootstrap: sync from coreutils
2320         * build-aux/bootstrap (update_po_files): Copy a .po file into place
2321         also when the target doesn't exist.
2322
2323 2008-03-01  Eric Blake  <ebb9@byu.net>
2324
2325         Fix bugs in last patch.
2326         * lib/memchr2.c (memchr2): Fix typo.
2327         * tests/test-memchr2.c: Test previous bug, and don't use GNU
2328         extension.
2329         Reported by Bruce Korb.
2330
2331         New module 'memchr2'.
2332         * modules/memchr2: New file.
2333         * modules/memchr2-tests: Likewise.
2334         * lib/memchr2.h: Likewise.
2335         * lib/memchr2.c: Likewise, based on memchr.c.
2336         * tests/test-memchr2.c: New test.
2337         * MODULES.html.sh (String handling): Add memchr2.
2338
2339 2008-02-29  Bruno Haible  <bruno@clisp.org>
2340
2341         * modules/freadseek-tests: New file.
2342         * tests/test-freadseek.sh: New file.
2343         * tests/test-freadseek.c: New file.
2344
2345         New module 'freadseek'.
2346         * modules/freadseek: New file.
2347         * lib/freadseek.h: New file.
2348         * lib/freadseek.c: New file.
2349         * MODULES.html.sh (File stream based Input/Output): Add freadseek.
2350
2351 2008-02-29  Sergey Poznyakoff  <gray@gnu.org.ua>
2352
2353         * users.txt: Add anubis, cpio, mailfromd, mailutils, radius,
2354         wydawca.
2355
2356         * m4/argp.m4 (gl_ARGP): Use AC_TRY_LINK to test if
2357         program_invocation_name and program_invocation_short_name are
2358         present.
2359
2360 2008-02-28  Bruno Haible  <bruno@clisp.org>
2361
2362         * tests/test-freadptr.c: Add a test for behaviour after ungetc.
2363         * tests/test-freadptr.sh: Also test non-seekable stdin.
2364
2365 2008-02-28  Sergey Poznyakoff  <gray@gnu.org.ua>
2366
2367         * build-aux/bootstrap (source_base, m4_base)
2368         (doc_base, tests_base): New variables.
2369         (gnulib_tool_options): Do not hardcode base directories, use
2370         the above variables instead.
2371
2372 2008-02-28  Atsushi SAKAI  <sakaia@jp.fujitsu.com>
2373
2374         * lib/xsize.h: Fix typo in comment: s/tupe/type/.
2375
2376 2008-02-28  Bruno Haible  <bruno@clisp.org>
2377
2378         * modules/freadptr-tests: New file.
2379         * tests/test-freadptr.sh: New file.
2380         * tests/test-freadptr.c: New file.
2381
2382         New module 'freadptr'.
2383         * modules/freadptr: New file.
2384         * lib/freadptr.h: New file.
2385         * lib/freadptr.c: New file.
2386         * MODULES.html.sh (File stream based Input/Output): Add freadptr.
2387
2388 2008-02-26  Karl Berry  <karl@freefriends.org>
2389
2390         Sync from Libtool:
2391         * libltdl/argz.c (argz_add, argz_count): New functions.
2392         * libltdl/argz.in.h: Declare them.
2393         Report by Juan Manuel Guerrero <juan.guerrero@gmx.de>.
2394
2395 2008-02-22  Bruno Haible  <bruno@clisp.org>
2396
2397         * m4/time_r.m4 (gl_TIME_R): Also check that localtime_r's return type
2398         is a pointer type.  Needed for HP-UX 10.
2399         * doc/posix-functions/localtime_r.texi: Mention HP-UX 10.
2400         * doc/posix-functions/gmtime_r.texi: Likewise.
2401         Reported by Peter O'Gorman <bug-gnulib@mlists.thewrittenword.com>.
2402
2403 2008-02-24  Bruno Haible  <bruno@clisp.org>
2404
2405         * modules/environ-tests: New file.
2406         * tests/test-environ.c: New file.
2407
2408         New module 'environ'.
2409         * modules/environ: New file.
2410         * lib/unistd.in.h (environ): New declaration.
2411         * m4/environ.m4: New file.
2412         (gt_CHECK_VAR_DECL): Moved here from m4/setenv.m4. Undefine gt_cv_var
2413         after use.
2414         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_ENVIRON and
2415         HAVE_DECL_ENVIRON.
2416         * modules/unistd (Makefile.am): Substitute also GNULIB_ENVIRON and
2417         HAVE_DECL_ENVIRON.
2418         * doc/posix-functions/environ.texi: Mention module 'environ'. Remove
2419         wrong claim that 'environ' is missing on some systems.
2420         * modules/execute (Depends-on): Add environ.
2421         * lib/execute.c (environ): Remove fallback declaration.
2422         * modules/pipe (Depends-on): Add environ.
2423         * lib/pipe.c (environ): Remove fallback declaration.
2424         * modules/setenv (Depends-on): Add environ.
2425         * lib/setenv.c (environ): Remove fallback declaration.
2426         * modules/unsetenv (Depends-on): Add environ.
2427         * lib/unsetenv.c (environ): Remove fallback declaration.
2428         * m4/setenv.m4 (gt_CHECK_VAR_DECL): Remove macro. Moved to
2429         m4/environ.m4.
2430         (gl_PREREQ_SETENV): Require gl_ENVIRON instead of testing for environ.
2431         (gl_PREREQ_UNSETENV): Likewise.
2432
2433 2008-02-24  Bruno Haible  <bruno@clisp.org>
2434
2435         * doc/posix-functions/environ.texi: Document the MacOS X problem.
2436
2437 2008-02-20  Bob Proulx  <bob@proulx.com>
2438
2439         Enable use of older two part flavor 'git describe'.
2440         * build-aux/git-version-gen: If using the older two part flavor of
2441         git version then recreate the third part now present in the
2442         newer three part flavor of git describe.
2443
2444 2008-02-20  Martin Buchholz  <martin@xemacs.org>  (tiny change)
2445
2446         * lib/fts.c (fts_build): Typo correction to comment.
2447
2448 2008-02-17  Bruno Haible  <bruno@clisp.org>
2449
2450         * lib/git-merge-changelog.c (main) [split_merged_entry]: Avoid
2451         generating no-op conflicts.
2452
2453 2008-02-17  Bruno Haible  <bruno@clisp.org>
2454
2455         Speed up by 10%.
2456         * lib/git-merge-changelog.c (main): Use the iterator to iterate through
2457         result_entries, rather than an index-based loop.
2458
2459 2008-02-17  Bruno Haible  <bruno@clisp.org>
2460
2461         Speed up by 25%.
2462         * lib/git-merge-changelog.c (struct entry): New fields 'hashcode',
2463         'hashcode_cached'.
2464         (entry_create): New function.
2465         (entry_hashcode): Use the cached hashcode if possible.
2466         (read_changelog_file, try_split_merged_entry): Use entry_create.
2467
2468 2008-02-17  Bruno Haible  <bruno@clisp.org>
2469
2470         Speed up from O(n^2) to O(n) for long ChangeLog files.
2471         * lib/git-merge-changelog.c: Include gl_rbtreehash_list.h.
2472         (read_changelog_file): Change implementation of entries_reversed list
2473         to rbtreehash.
2474         * modules/git-merge-changelog (Depends-on): Add rbtreehash-list.
2475
2476 2008-02-17  Bruno Haible  <bruno@clisp.org>
2477
2478         New option --split-merged-entry.
2479         * lib/git-merge-changelog.c (FSTRCMP_STRICTER_THRESHOLD): New macro.
2480         (find_paragraph_end, try_split_merged_entry): New functions.
2481         (long_options): Add option --split-merged-entry.
2482         (usage): Document option --split-merged-entry.
2483         (main): Implement option --split-merged-entry.
2484         Reported by Eric Blake.
2485
2486 2008-02-17  Bruno Haible  <bruno@clisp.org>
2487
2488         * lib/git-merge-changelog.c: Include c-strstr.h.
2489         (main): Support the "git pull --rebase" situation.
2490         * modules/git-merge-changelog (Depends-on): Add c-strstr.
2491         Reported by Eric Blake.
2492
2493 2008-02-16  Eric Blake  <ebb9@byu.net>
2494
2495         Avoid doubling \ in common case of "c-maybe" quoting style.
2496         * lib/quotearg.c (quotearg_buffer_restyled): Don't escape \ when
2497         eliding outer quotes.
2498         * lib/quotearg.h: Document this.
2499         * tests/test-quotearg.c (result_strings, inputs, results_g)
2500         (flag_results, locale_results): Test it by adding a new string to
2501         each test group.
2502         (compare_strings): Test new string.
2503
2504 2008-02-13  Eric Blake  <ebb9@byu.net>
2505
2506         Avoid trigraph quoting in default output.
2507         * lib/quotearg.h (enum quoting_flags): Add QA_SPLIT_TRIGRAPHS.
2508         * lib/quotearg.c (quotearg_buffer_restyled): Don't quote trigraphs
2509         unless explicitly requested.
2510         * tests/test-quotearg.c (flag_results, main): Add additional tests.
2511
2512 2008-02-13  Lasse Collin  <lasse.collin@tukaani.org>
2513
2514         Don't rely on signed integer overflowing to negative value.
2515         * lib/getugroups.c (getugroups): Include <limits.h>.
2516         Instead, compare against INT_MAX, and increment only if the test passes.
2517
2518 2008-02-13  Jim Meyering  <meyering@redhat.com>
2519         and Eric Blake  <ebb9@byu.net>
2520
2521         Avoid shadowing warning and compile errors on Linux.
2522         * tests/test-quotearg.c [ENABLE_NLS]: Disable <libintl.h>
2523         forwarding macros on Linux.
2524         (dcgettext): Define a stub, for Linux.
2525         (results_g, main): Avoid warnings.
2526
2527 2008-02-12  Eric Blake  <ebb9@byu.net>
2528
2529         Silence warning in last patch.
2530         * lib/quotearg.c (quotearg_buffer_restyled): Add missing const.
2531
2532         Quotearg part 4: add tests, fix c-maybe colon quoting.
2533         * lib/quotearg.h: Improve documentation.
2534         * lib/quotearg.c (quotearg_buffer_restyled): Don't add extra
2535         escapes when adding outer quotes.  When quoting trigraphs, use
2536         valid C notation.  When quoting NUL, omit extra characters if next
2537         character is not digit.  Alter prototype.
2538         (quotearg_buffer, quotearg_alloc_mem, quotearg_n_options): Adjust
2539         callers.
2540         * modules/quotearg-tests: New module.
2541         * tests/test-quotearg.c: New test.
2542
2543 2008-02-07  Eric Blake  <ebb9@byu.net>
2544
2545         Quotearg part 3: add flag to control outer quote elision.
2546         * lib/quotearg.h (c_maybe_quoting_style): New style.
2547         (enum quoting_flags): Better documentation of flags.
2548         * lib/quotearg.c (quoting_style_args, quoting_style_vals): Add
2549         c-maybe style.
2550         (quotearg_buffer_restyled): Handle new flag to elide outer
2551         quotes.
2552
2553         Quotearg part 2: add flag that can control NUL elision.
2554         * lib/quotearg.h (set_quoting_flags): New prototype.
2555         * lib/quotearg.c (struct quoting_options): Add flag field.
2556         (set_quoting_flags): New function.
2557         (quotearg_buffer_restyled): Add flags parameter.
2558         (quotearg_alloc_mem): Set the flag if length cannot be returned.
2559         (quotearg_n_options): Set the flag, since length cannot be
2560         returned.
2561         (quoting_options_from_style): Default flags correctly.
2562
2563         Quotearg part 1: more wrappers, restore quotearg_char state.
2564         * lib/quotearg.h (quotearg_alloc_mem, quotearg_n_mem)
2565         (quotearg_mem, quotearg_style_mem, quotearg_char_mem)
2566         (quotearg_colon_mem): New wrappers.
2567         * lib/quotearg.c (quotearg_alloc, quotearg_char): Rewrite...
2568         (quotearg_alloc_mem, quotearg_char_mem): ...in terms of these new
2569         functions.
2570         (quotearg_n_mem, quotearg_mem, quotearg_style_mem)
2571         (quotearg_colon_mem): New functions.
2572
2573 2008-02-11  Bruno Haible  <bruno@clisp.org>
2574
2575         * modules/git-merge-changelog (Makefile.am): Don't use -L and -l for a
2576         library in the current directory: it does not work with parallel make.
2577         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
2578
2579 2008-02-11  Bruno Haible  <bruno@clisp.org>
2580
2581         * .gitattributes: New file.
2582
2583 2008-02-11  Jim Meyering  <meyering@redhat.com>
2584
2585         useless-if-before-free: Fix reversed exit values.
2586         * build-aux/useless-if-before-free: Use correct values
2587         for EXIT_MATCH and EXIT_NO_MATCH.
2588
2589         * build-aux/useless-if-before-free: Close stdout carefully.
2590
2591 2008-02-10  Bruno Haible  <bruno@clisp.org>
2592
2593         New module 'git-merge-changelog'.
2594         * modules/git-merge-changelog: New file.
2595         * lib/git-merge-changelog.c: New file.
2596
2597 2008-02-10  Jim Meyering  <meyering@redhat.com>
2598
2599         useless-if-before-free: New option: --list (-l).
2600
2601         useless-if-before-free: Don't exit immediately upon open failure.
2602         * build-aux/useless-if-before-free: Exit 2 for errors.
2603         Upon failure to open a file, don't exit immediately.
2604         Rather, just warn and continue with any remaining files.
2605
2606 2008-02-10  Bruno Haible  <bruno@clisp.org>
2607
2608         New abstract list operation 'node_set_value'.
2609         * lib/gl_list.h (gl_list_node_set_value): New function.
2610         (struct gl_list_implementation): New field node_set_value.
2611         * lib/gl_list.c (gl_list_node_set_value): New function.
2612         * lib/gl_array_list.c (gl_array_node_set_value): New function.
2613         (gl_array_list_implementation): Update.
2614         * lib/gl_carray_list.c (gl_carray_node_set_value): New function.
2615         (gl_carray_list_implementation): Update.
2616         * lib/gl_anylinked_list2.h (gl_linked_node_set_value): New function.
2617         * lib/gl_linked_list.c (gl_linked_list_implementation): Update.
2618         * lib/gl_linkedhash_list.c (gl_linkedhash_list_implementation): Update.
2619         * lib/gl_anytree_list2.h (gl_tree_node_set_value): New function.
2620         * lib/gl_avltree_list.c (gl_avltree_list_implementation): Update.
2621         * lib/gl_rbtree_list.c (gl_rbtree_list_implementation): Update.
2622         * lib/gl_avltreehash_list.c (gl_avltreehash_list_implementation):
2623         Update.
2624         * lib/gl_rbtreehash_list.c (gl_rbtreehash_list_implementation): Update.
2625         * lib/gl_sublist.c (gl_sublist_node_set_value): New function.
2626         (gl_sublist_list_implementation): Update.
2627
2628 2008-02-10  Bruno Haible  <bruno@clisp.org>
2629
2630         * lib/diffseq.h: Write "ELEMENT const" instead of "const ELEMENT".
2631         Needed when ELEMENT is #defined to 'some_type *'.
2632
2633 2008-02-10  Jim Meyering  <meyering@redhat.com>
2634
2635         New script and module: useless-if-before-free
2636         * MODULES.html.sh (maint+release support): Add useless-if-before-free.
2637         * build-aux/useless-if-before-free: New file.
2638         * modules/useless-if-before-free: New file.
2639
2640         * build-aux/gitlog-to-changelog: Use committer date, not author date.
2641
2642         xstrtol_error: Fix typo.
2643         * lib/xstrtol-error.c (xstrtol_error): The parameter was unused:
2644         s/exit_failure/exit_status/.
2645
2646 2008-02-09  Jim Meyering  <meyering@redhat.com>
2647
2648         New script and module: gitlog-to-changelog
2649         * MODULES.html.sh (maint+release support): Add gitlog-to-changelog.
2650         * modules/gitlog-to-changelog: New file.
2651         * build-aux/gitlog-to-changelog: New file.
2652
2653 2008-02-08  Jim Meyering  <meyering@redhat.com>
2654
2655         Avoid two "parameter unused" warnings.
2656         * lib/stat-time.h (get_stat_birthtime_ns, get_stat_birthtime):
2657         Mark "st" as used.
2658
2659         Use "git COMMAND", not "git-COMMAND".
2660         * build-aux/bootstrap (version_controlled_file): s/git-rm/git-rm/.
2661         * build-aux/announce-gen (get_tool_versions): Correct a diagnostic.
2662         * build-aux/git-version-gen: Use "git status", not "git-status".
2663
2664 2008-02-07  Bruno Haible  <bruno@clisp.org>
2665
2666         * lib/vasnprintf.c (VASNPRINTF): Don't use %n on native Woe32 systems.
2667         Avoids a crash on Windows Vista.
2668         Reported by Adam Strzelecki <ono@java.pl> via
2669         Simon Josefsson <simon@josefsson.org>.
2670
2671 2008-02-06  Bruno Haible  <bruno@clisp.org>
2672
2673         Fix *printf behaviour regarding the left-adjust flag on HP-UX 10.20.
2674         * m4/printf.m4 (gl_PRINTF_FLAG_LEFTADJUST): New macro.
2675         * lib/vasnprintf.c (VASNPRINTF): Handle NEED_PRINTF_FLAG_LEFTADJUST.
2676         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_FLAG_LEFTADJUST): New macro.
2677         (gl_PREREQ_VASNPRINTF_WITH_EXTRAS): Invoke it.
2678         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
2679         gl_PRINTF_FLAG_LEFTADJUST and test its result. Invoke
2680         gl_PREREQ_VASNPRINTF_FLAG_LEFTADJUST.
2681         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
2682         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
2683         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
2684         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
2685         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
2686         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
2687         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
2688         * tests/test-vasnprintf-posix.c (test_function): Add testcases for the
2689         left-adjust flag.
2690         * tests/test-snprintf-posix.h (test_function): Likewise.
2691         * tests/test-sprintf-posix.h (test_function): Likewise.
2692         * tests/test-vasprintf-posix.c (test_function): Likewise.
2693         * doc/posix-functions/fprintf.texi: Update.
2694         * doc/posix-functions/printf.texi: Update.
2695         * doc/posix-functions/snprintf.texi: Update.
2696         * doc/posix-functions/sprintf.texi: Update.
2697         * doc/posix-functions/vfprintf.texi: Update.
2698         * doc/posix-functions/vprintf.texi: Update.
2699         * doc/posix-functions/vsnprintf.texi: Update.
2700         * doc/posix-functions/vsprintf.texi: Update.
2701         Reported by Peter Fales <psfales@alcatel-lucent.com>.
2702
2703 2008-02-06  Bruno Haible  <bruno@clisp.org>
2704
2705         Fix bug introduced on 2008-01-26.
2706         * lib/isnan.c (FUNC): Set to rpl_isnand, not rpl_isnan.
2707
2708 2008-02-06  Bruno Haible  <bruno@clisp.org>
2709
2710         Fix bug introduced on 2007-06-10.
2711         * lib/vasnprintf.c (VASNPRINTF): Perform zero-padding also if
2712         !NEED_PRINTF_FLAG_ZERO.
2713
2714 2008-02-05  Peter O'Gorman <pogma@thewrittenword.com>
2715
2716         getloadavg: use libperfstat on AIX5
2717         * lib/getloadavg.c, m4/getloadavg.m4 [aix]: Use libperfstat
2718
2719 2008-02-03  Bruno Haible  <bruno@clisp.org>
2720
2721         * lib/diffseq.h: Add comments about required #includes.
2722         Reported by Michael Biggs <gnulib@doubleplum.net>.
2723
2724 2008-02-01  Bruno Haible  <bruno@clisp.org>
2725
2726         * users.txt: Add gnuit.
2727
2728 2008-01-31  Bruno Haible  <bruno@clisp.org>
2729
2730         * lib/md4.c (set_uint32): Mark as inline.
2731         * lib/md5.c (set_uint32): Likewise.
2732         * lib/sha1.c (set_uint32): Likewise.
2733         * m4/md4.m4 (gl_MD4): Require AC_C_INLINE.
2734         * m4/md5.m4 (gl_MD5): Likewise.
2735         * m4/sha1.m4 (gl_SHA1): Likewise.
2736
2737 2008-01-31  Jim Meyering  <meyering@redhat.com>
2738
2739         Use "sizeof VAR", rather than a literal "4".
2740         * lib/md5.c (md5_read_ctx): Use sizeof ctx->A, not 4.
2741         * lib/md4.c (md4_read_ctx): Likewise.
2742         * lib/sha1.c (sha1_read_ctx): Likewise.
2743
2744 2008-01-31  Simon Josefsson  <simon@josefsson.org>
2745
2746         * tests/test-sha1.c: New file, based on test-md5.c.
2747
2748         * modules/crypto/sha1-tests: New file.
2749
2750 2008-01-31  Simon Josefsson  <simon@josefsson.org>
2751
2752         * lib/sha1.h (SHA1_DIGEST_SIZE): Define.
2753
2754 2008-01-31  Jim Meyering  <meyering@redhat.com>
2755
2756         Prefer "sizeof v" over the equivalent "4".
2757         * lib/md4.c (set_uint32): Use "sizeof v" as memcpy length, not 4.
2758         * lib/md5.c (set_uint32): Likewise.
2759         * lib/sha1.c (set_uint32): Likewise.
2760
2761 2008-01-31  Simon Josefsson  <simon@josefsson.org>
2762
2763         * lib/sha1.c (set_uint32): Mark function as static.
2764
2765 2008-01-31  Simon Josefsson  <simon@josefsson.org>
2766
2767         md2: clarify comments to say that alignment is not required.
2768         * lib/md2.h: Remove warning about alignment in comment.
2769         * lib/md2.c (md2_read_ctx, md2_finish_ctx): Doc fix, alignment has
2770         never been required.
2771
2772 2008-01-31  Simon Josefsson  <simon@josefsson.org>
2773
2774         md4: adapt alignment constraint fix from sha1.
2775         * lib/md4.c (set_uint32): New function, from sha1.c
2776         (md4_read_ctx): Use it.
2777         (md4_finish_ctx): Doc fix.
2778         * lib/md4.h: Doc fix.
2779
2780 2008-01-31  Simon Josefsson  <simon@josefsson.org>
2781
2782         md5: adapt alignment constraint fix from sha1.
2783         * lib/md5.c (set_uint32): New function, from sha1.c
2784         (md5_read_ctx): Use it.
2785         (md5_finish_ctx): Doc fix.
2786         * lib/md5.h: Doc fix.
2787
2788 2008-01-30  Peter Palfrader  <weasel@debian.org>
2789
2790         sha1: remove the result buffer alignment constraint
2791         * lib/sha1.c (set_uint32): New function.
2792         (sha1_read_ctx): Rewrite to remove the result buffer alignment
2793         constraint.
2794         (sha1_finish_ctx): Remove comment warning about alignment constraint.
2795         * lib/sha1.h: Likewise.
2796
2797 2008-01-30  Andreas Schwab  <schwab@suse.de>
2798             Bruno Haible  <bruno@clisp.org>
2799
2800         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Include <float.h> and ensure a
2801         correct definition of LDBL_MIN_EXP.
2802
2803 2008-01-30  Karl Berry  <karl@gnu.org>
2804
2805         * config/srclist-update: try to preserve x bit on updates.
2806         * config/srclistvars.sh: update for karl.
2807
2808 2008-01-29  Jim Meyering  <meyering@redhat.com>
2809
2810         vasnprintf.c: Avoid warning about unused label
2811         * lib/vasnprintf.c (VASNPRINTF) [!USE_SNPRINTF]: Guard the
2812         "overflow" label definition and associated code with the
2813         same cpp condition that guards the sole use of that label.
2814
2815 2008-01-26  Bruno Haible  <bruno@clisp.org>
2816
2817         * m4/isnanl.m4 (gl_HAVE_ISNANL_NO_LIBM, gl_HAVE_ISNANL_IN_LIBM,
2818         gl_FUNC_ISNANL_WORKS): Test the GCC >= 4.0 built-in.
2819         * lib/isnanl.h (isnanl): Use the GCC >= 4.0 built-in.
2820         * lib/isnanl-nolibm.h (isnanl): Likewise.
2821         Reported by Paul Eggert <eggert@cs.ucla.edu>.
2822
2823 2008-01-26  Bruno Haible  <bruno@clisp.org>
2824
2825         * m4/isnand.m4 (gl_FUNC_ISNAND_NO_LIBM): Test the GCC >= 4.0 built-in.
2826         * lib/isnand.h (isnand): Use the GCC >= 4.0 built-in.
2827
2828 2008-01-26  Bruno Haible  <bruno@clisp.org>
2829
2830         * m4/isnanf.m4 (gl_HAVE_ISNANF_NO_LIBM, gl_ISNANF_WORKS): Test the
2831         GCC >= 4.0 built-in.
2832         * lib/isnanf.h (isnanf): Use the GCC >= 4.0 built-in.
2833
2834 2008-01-26  Bruno Haible  <bruno@clisp.org>
2835
2836         Rename isnan, applicable to 'double' only, to isnand.
2837         * modules/isnand-nolibm: Renamed from modules/isnan-nolibm.
2838         (Files): Add lib/isnand.h, lib/isnand.c. Remove lib/isnan.h.
2839         (configure.ac): Update.
2840         (Include): Replace "isnan.h" with "isnand.h".
2841         * m4/isnand.m4: Renamed from m4/isnan.m4.
2842         (gl_FUNC_ISNAND_NO_LIBM): Renamed from gl_FUNC_ISNAN_NO_LIBM. Set
2843         HAVE_ISNAND_IN_LIBC instead of HAVE_ISNAN_IN_LIBC. Build isnand.c
2844         instead of isnan.c.
2845         * lib/isnand.h: Renamed from lib/isnan.h. Test HAVE_ISNAND_IN_LIBC
2846         instead of HAVE_ISNAN_IN_LIBC.
2847         (isnand): Renamed from isnan.
2848         * lib/isnand.c: New file.
2849         * modules/isnand-nolibm-tests: Renamed from modules/isnan-nolibm-tests.
2850         (Files): Add tests/test-isnand.c. Remove tests/test-isnan.c.
2851         (Makefile.am): Update.
2852         * tests/test-isnand.c: Renamed from tests/test-isnan.c.
2853         Include isnand.h instead of isnan.h.
2854         (main): Test isnand instead of isnan.
2855         * modules/fprintf-posix (Depends-on): Add isnand-nolibm, remove
2856         isnan-nolibm.
2857         * modules/frexp (Depends-on): Likewise.
2858         * modules/frexp-tests (Depends-on): Likewise.
2859         * modules/frexp-nolibm (Depends-on): Likewise.
2860         * modules/frexp-nolibm-tests (Depends-on): Likewise.
2861         * modules/isfinite (Depends-on): Likewise.
2862         * modules/round-tests (Depends-on): Likewise.
2863         * modules/signbit (Depends-on): Likewise.
2864         * modules/signbit-tests (Depends-on): Likewise.
2865         * modules/snprintf-posix (Depends-on): Likewise.
2866         * modules/sprintf-posix (Depends-on): Likewise.
2867         * modules/trunc-tests (Depends-on): Likewise.
2868         * modules/unistdio/u8-vasnprintf (Depends-on): Likewise.
2869         * modules/unistdio/u8-u8-vasnprintf (Depends-on): Likewise.
2870         * modules/unistdio/u16-vasnprintf (Depends-on): Likewise.
2871         * modules/unistdio/u16-u16-vasnprintf (Depends-on): Likewise.
2872         * modules/unistdio/u32-vasnprintf (Depends-on): Likewise.
2873         * modules/unistdio/u32-u32-vasnprintf (Depends-on): Likewise.
2874         * modules/unistdio/ulc-vasnprintf (Depends-on): Likewise.
2875         * modules/vasnprintf-posix (Depends-on): Likewise.
2876         * modules/vasprintf-posix (Depends-on): Likewise.
2877         * modules/vfprintf-posix (Depends-on): Likewise.
2878         * modules/vsnprintf-posix (Depends-on): Likewise.
2879         * modules/vsprintf-posix (Depends-on): Likewise.
2880         * lib/frexp.c: Include isnand.h instead of isnan.h.
2881         (ISNAN): Set to isnand instead of isnan.
2882         * lib/isfinite.c: Include isnand.h instead of isnan.h.
2883         (gl_isfinited): Use isnand instead of isnan.
2884         * lib/signbitd.c: Include isnand.h instead of isnan.h.
2885         (gl_signbitd): Use isnand instead of isnan.
2886         * lib/vasnprintf.c: Include isnand.h instead of isnan.h.
2887         (is_infinite_or_zero, VASNPRINTF): Use isnand instead of isnan.
2888         * tests/test-frexp.c: Include isnand.h instead of isnan.h.
2889         (main): Use isnand instead of isnan.
2890         * tests/test-round1.c: Include isnand.h.
2891         (main): Use isnand instead of isnan.
2892         * tests/test-round2.c: Include isnand.h instead of isnan.h.
2893         (ISNAN): Set to isnand instead of isnan.
2894         * tests/test-trunc1.c: Include isnand.h.
2895         (main): Use isnand instead of isnan.
2896         * tests/test-trunc2.c: Include isnand.h instead of isnan.h.
2897         (equal): Use isnand instead of isnan.
2898         * MODULES.html.sh (Mathematics <math.h>): Replace isnan-nolibm with
2899         isnand-nolibm.
2900         * NEWS: Mention the change.
2901
2902 2008-01-25  Paul Eggert  <eggert@cs.ucla.edu>
2903             Bruno Haible  <bruno@clisp.org>
2904
2905         * m4/signbit.m4 (gl_SIGNBIT): Require a macro definition. Test whether
2906         the GCC builtins for signbits are present and set
2907         REPLACE_SIGNBIT_USING_GCC if so.
2908         * lib/math.in.h (signbit): Define using GCC builtins if
2909         REPLACE_SIGNBIT_USING_GCC is set.
2910         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize
2911         REPLACE_SIGNBIT_USING_GCC.
2912         * modules/math (Makefile.am): Substitute REPLACE_SIGNBIT_USING_GCC.
2913
2914 2008-01-25  Jim Meyering  <meyering@redhat.com>
2915
2916         Prefer <config.h> over "config.h".  See autoconf doc for explanation.
2917         * lib/poll.c: Include <config.h>, not "config.h".
2918         * tests/test-getaddrinfo.c: Likewise.
2919
2920 2008-01-25  Simon Josefsson  <simon@josefsson.org>
2921
2922         * modules/sockets-tests: New file.
2923
2924 2008-01-24  Simon Josefsson  <simon@josefsson.org>
2925
2926         * modules/sockets: New module, can be used to call WSA_Startup and
2927         WSA_Cleanup when needed.
2928
2929         * lib/sockets.h, lib/sockets.c: New files.
2930
2931         * m4/sockets.m4: New file.
2932
2933         * tests/test-sockets.c: New file.
2934
2935 2008-01-19  Bruno Haible  <bruno@clisp.org>
2936
2937         * doc/posix-headers: Renamed from doc/headers.
2938         * doc/posix-functions: Renamed from doc/functions.
2939         * doc/gnulib.texi: Update.
2940
2941 2008-01-19  Bruno Haible  <bruno@clisp.org>
2942
2943         * doc/glibc-functions/strcasestr.texi: Include contents of
2944         doc/functions/strcasestr.texi, fixing the list of platforms.
2945         * doc/functions/strcasestr.texi: Remove file.
2946
2947 2008-01-19  Bruno Haible  <bruno@clisp.org>
2948
2949         * doc/glibc-functions/memmem.texi: Include contents of
2950         doc/functions/memmem.texi.
2951         * doc/functions/memmem.texi: Remove file.
2952
2953 2008-01-18  Bruno Haible  <bruno@clisp.org>
2954
2955         * doc/glibc-functions/*.texi: New files.
2956         * doc/gnulib.texi (Glibc Function Substitutes): Completely rewritten
2957         to use the new files.
2958
2959 2008-01-17  Bruno Haible  <bruno@clisp.org>
2960
2961         * tests/test-gethostname.c (main): Fix printf statement.
2962
2963 2008-01-17  Simon Josefsson  <simon@josefsson.org>
2964
2965         * modules/gethostname-tests: New file.
2966
2967         * tests/test-gethostname.c: New file.
2968
2969 2008-01-17  Simon Josefsson  <simon@josefsson.org>
2970
2971         * lib/gethostname.c: Include string.h unconditionally, strncpy is
2972         used by the UNAME case.  Reported by Bruno Haible
2973         <bruno@clisp.org>.
2974
2975 2008-01-17  Eric Blake  <ebb9@byu.net>
2976
2977         Convert c-strcasestr to be more efficient.
2978         * modules/c-strcasestr (Files): Use Two-Way, not KMP.
2979         (Depends-on): Add c-strcase, remove malloca, strnlen.
2980         * tests/test-c-strcasestr.c (main): Enhance test.
2981         * lib/c-strcasestr.c (c_strcasestr): Rewrite to new algorithm.
2982
2983 2007-01-16  Paolo Bonzini  <bonzini@gnu.org>
2984
2985         * build-aux/bootstrap (MSGID_BUGS_ADDRESS): New overridable variable.
2986         Use it in creating po/Makevars.
2987
2988 2008-01-15  Simon Josefsson  <simon@josefsson.org>
2989
2990         * lib/gc-libgcrypt.c (gc_init): Disable secure memory by default.
2991         Applications that requires it should initialize libgcrypt
2992         manually.
2993
2994 2008-01-16  Simon Josefsson  <simon@josefsson.org>
2995
2996         * lib/gethostname.c [!HAVE_UNAME]: Need string.h for strcpy.
2997
2998 2008-01-15  Paul Eggert  <eggert@cs.ucla.edu>
2999
3000         Fix problem with getdate on mingw32 reported by Simon Josefsson
3001         in <http://lists.gnu.org/archive/html/bug-gnulib/2008-01/msg00192.html>.
3002         * lib/getdate.y (get_date): Check "HAVE_DECL_TZNAME", not "defined
3003         tzname", when deciding whether to declare tzname.
3004         * lib/strftime.c (tzname): Likewise.
3005
3006 2008-01-15  Bruno Haible  <bruno@clisp.org>
3007
3008         Work around a MacOS X 10.5 bug in frexpl().
3009         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Also check denormalized numbers.
3010         * doc/functions/frexpl.texi: Document the bug.
3011         Reported by Elias Pipping <pipping@gentoo.org>.
3012
3013 2008-01-14  Eric Blake  <ebb9@byu.net>
3014
3015         Touch up previous patch.
3016         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR_SIMPLE): Fix typo.
3017         * doc/functions/strcasestr.texi (strcasestr): Document OpenBSD bug.
3018
3019         Convert strcasestr module to use Two-Way algorithm.
3020         * modules/strcasestr-simple: New module, based on the old
3021         strcasestr, but with Two-Way rather than KMP.
3022         * modules/strcasestr (Depends-on): Change to strcasestr-simple.
3023         * lib/string.in.h (rpl_strcasestr): Declare.
3024         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Check for linear
3025         performance.
3026         * lib/strcasestr.c (strcasestr): Simplify, and avoid malloc.
3027         * modules/string (Makefile.am): Support strcasestr.
3028         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Likewise.
3029         * modules/strcasestr-tests (Depends-on): Check for alarm.
3030         * tests/test-strcasestr.c: Augment test.
3031         * lib/str-two-way.h: Clean up stray macro.
3032         * NEWS: Document new module.
3033         * MODULES.html.sh (string handling): Likewise.
3034         * doc/functions/strcasestr.texi: New file.
3035         * doc/gnulib.texi (Function Substitutes): New node.  Move memmem
3036         here, since it is not a POSIX function.
3037
3038 2008-01-14  Colin Watson  <cjwatson@debian.org>
3039             Bruno Haible  <bruno@clisp.org>
3040
3041         * m4/strsignal.m4 (gl_FUNC_STRSIGNAL): Also check whether strsignal
3042         works fine; if not, set REPLACE_STRSIGNAL.
3043         (gl_PREREQ_STRSIGNAL): Require AC_DECL_SYS_SIGLIST.
3044         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
3045         REPLACE_STRSIGNAL.
3046         * lib/string.in.h (strsignal): Consider REPLACE_STRSIGNAL.
3047         * modules/string (Makefile.am): Substitute REPLACE_STRSIGNAL.
3048         * tests/test-strsignal.c (main): Check out-of-range signal numbers.
3049
3050 2008-01-14  Bruno Haible  <bruno@clisp.org>
3051
3052         * modules/strsignal (Include): Change to <string.h>.
3053
3054 2008-01-14  Colin Watson  <cjwatson@debian.org>
3055
3056         * modules/argp (Notice): Add a notice recommending to change
3057         XGETTEXT_OPTIONS.
3058         (configure.ac): Invoke AM_XGETTEXT_OPTION if it exists.
3059
3060 2008-01-13  Colin Watson  <cjwatson@debian.org>
3061
3062         * modules/strsignal-tests: New file.
3063         * tests/test-strsignal.c: New file.
3064
3065         * lib/strsignal.c: New file, from glibc with modifications.
3066         * lib/siglist.h: New file, from glibc with modifications.
3067         * lib/string.in.h (strsignal): New declaration.
3068         * m4/strsignal.m4: New file.
3069         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
3070         GNULIB_STRSIGNAL and HAVE_DECL_STRSIGNAL.
3071         * modules/strsignal: New file.
3072         * modules/string (Makefile.am): Substitute GNULIB_STRSIGNAL and
3073         HAVE_DECL_STRSIGNAL.
3074
3075 2008-01-13  Bruno Haible  <bruno@clisp.org>
3076
3077         * m4/locale-fr.m4 (gt_LOCALE_FR, gt_LOCALE_FR_UTF8): Check that the
3078         locale encoding is not ASCII. Needed for OpenBSD 4.0.
3079         * m4/locale-tr.m4 (gt_LOCALE_TR_UTF8): Likewise.
3080         * m4/locale-zh.m4 (gt_LOCALE_ZH_CN): Likewise.
3081
3082 2008-01-13  Bruno Haible  <bruno@clisp.org>
3083
3084         * lib/argp-fmtstream.h (__attribute__): Don't redefine if
3085         __STRICT_ANSI__ is set: it's not needed by any version of gcc.
3086         * lib/argp.h (__attribute__): Likewise.
3087         * lib/c-stack.c (__attribute__): Likewise.
3088         * lib/error.h (__attribute__): Likewise.
3089         * lib/fts.c (__attribute__): Likewise.
3090         * lib/openat.h (__attribute__): Likewise.
3091         * lib/stdio.in.h (__attribute__): Likewise.
3092         * lib/string.in.h (__attribute__): Likewise.
3093         * lib/utimens.c (__attribute__): Likewise.
3094         * lib/vasnprintf.h (__attribute__): Likewise.
3095         * lib/xalloc.h (__attribute__): Likewise.
3096         * lib/xprintf.h (__attribute__): Likewise.
3097         * lib/xstrtol.h (__attribute__): Likewise.
3098         * lib/xvasprintf.h (__attribute__): Likewise.
3099
3100 2008-01-12  Bruno Haible  <bruno@clisp.org>
3101
3102         * doc/gnulib.texi (Glibc Header File Substitutes): New chapter.
3103         * doc/glibc-headers/a.out.texi: New file.
3104         * doc/glibc-headers/aliases.texi: New file.
3105         * doc/glibc-headers/alloca.texi: New file.
3106         * doc/glibc-headers/ar.texi: New file.
3107         * doc/glibc-headers/argp.texi: New file.
3108         * doc/glibc-headers/argz.texi: New file.
3109         * doc/glibc-headers/byteswap.texi: New file.
3110         * doc/glibc-headers/crypt.texi: New file.
3111         * doc/glibc-headers/endian.texi: New file.
3112         * doc/glibc-headers/envz.texi: New file.
3113         * doc/glibc-headers/err.texi: New file.
3114         * doc/glibc-headers/error.texi: New file.
3115         * doc/glibc-headers/execinfo.texi: New file.
3116         * doc/glibc-headers/fpu_control.texi: New file.
3117         * doc/glibc-headers/fstab.texi: New file.
3118         * doc/glibc-headers/fts.texi: New file.
3119         * doc/glibc-headers/getopt.texi: New file.
3120         * doc/glibc-headers/ieee754.texi: New file.
3121         * doc/glibc-headers/ifaddrs.texi: New file.
3122         * doc/glibc-headers/libintl.texi: New file.
3123         * doc/glibc-headers/mcheck.texi: New file.
3124         * doc/glibc-headers/mntent.texi: New file.
3125         * doc/glibc-headers/obstack.texi: New file.
3126         * doc/glibc-headers/paths.texi: New file.
3127         * doc/glibc-headers/printf.texi: New file.
3128         * doc/glibc-headers/pty.texi: New file.
3129         * doc/glibc-headers/resolv.texi: New file.
3130         * doc/glibc-headers/shadow.texi: New file.
3131         * doc/glibc-headers/sysexits.texi: New file.
3132         * doc/glibc-headers/ttyent.texi: New file.
3133
3134 2008-01-12  Jim Meyering  <meyering@redhat.com>
3135
3136         announce-gen: emit Gnulib's git-based version string.
3137         * build-aux/announce-gen: Remove option: --gnulib-snapshot-time-stamp=S.
3138         New option --gnulib-version=V, where V is expected to be
3139         the output of running git describe in the gnulib directory.
3140         (get_tool_versions): Request feedback on xdelta.  I suspect it's
3141         not useful, and plan to stop publishing an xdelta file with each
3142         coreutils release.
3143
3144         * build-aux/announce-gen: Also check for lzma-compressed files.
3145
3146 2008-01-11  Bruno Haible  <bruno@clisp.org>
3147
3148         * tests/test-memmem.c (main): Increase maximum allowed time.
3149         * tests/test-strstr.c (main): Likewise.
3150
3151 2008-01-11  Bruno Haible  <bruno@clisp.org>
3152
3153         * doc/functions/memmem.texi: Add more precisions about platforms.
3154         * doc/functions/strstr.texi: Likewise.
3155
3156 2008-01-10  Eric Blake  <ebb9@byu.net>
3157
3158         * m4/strstr.m4: Delete cruft from copy-n-paste.
3159         Reported by Bruno Haible.
3160
3161 2008-01-10  Bruno Haible  <bruno@clisp.org>
3162
3163         Make c-strstr rely on strstr.
3164         * lib/c-strstr.c: Don't include str-kmp.h.
3165         (c_strstr): Define in terms of strstr.
3166         * modules/c-strstr (Files): Remove lib/str-kmp.h.
3167         (Depends-on): Remove stdbool, malloca, strnlen. Add strstr.
3168
3169 2008-01-10  Bruno Haible  <bruno@clisp.org>
3170
3171         * doc/gnulib.texi (String Functions in C Locale): New section.
3172         * doc/c-ctype.texi: New file.
3173         * doc/c-strcase.texi: New file.
3174         * doc/c-strcaseeq.texi: New file.
3175         * doc/c-strcasestr.texi: New file.
3176         * doc/c-strstr.texi: New file.
3177         * doc/c-strtod.texi: New file.
3178         * doc/c-strtold.texi: New file.
3179
3180 2008-01-10  Eric Blake  <ebb9@byu.net>
3181
3182         * lib/relocatable.h: Fix a comment.
3183
3184 2008-01-10  Eric Blake  <ebb9@byu.net>
3185
3186         Share two-way algorithm.
3187         * lib/str-two-way.h: New file, merged from...
3188         * lib/memmem.c: ...here...
3189         * lib/strstr.c: ...and here.
3190         * modules/memmem (Files): Use it.
3191         * modules/strstr (Files): Likewise.
3192
3193         Avoid quadratic strstr implementations.
3194         * lib/strstr.c: New file.
3195         * m4/strstr.m4: Likewise.
3196         * modules/strstr: Likewise.
3197         * modules/strstr-tests: Likewise.
3198         * tests/test-strstr.c: Likewise.
3199         * lib/string.in.h (rpl_strstr): Declare.
3200         (memmem) [GNULIB_POSIXCHECK]: Document speed issue.
3201         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Support strstr.
3202         * modules/string (Makefile.am): Likewise.
3203         * MODULES.html.sh (string handling): Mention new module.
3204         * doc/functions/strstr.texi (strstr): Document the bug.
3205
3206 2008-01-10  Bruno Haible  <bruno@clisp.org>
3207
3208         * lib/relocatable.h (relocate): State whether result is freshly
3209         allocated or not.
3210         * lib/relocatable.c (relocate): Return a freshly allocated string
3211         instead of a pointer to a privately held string.
3212         Reported by Sylvain Beucler <beuc@gnu.org>.
3213
3214 2008-01-10  Colin Watson  <cjwatson@debian.org>
3215
3216         * lib/canonicalize-lgpl.c [!_LIBC]: Fix typo in #if directive:
3217         s/S_ISNLK/S_ISLNK/.
3218
3219 2008-01-09  Bruno Haible  <bruno@clisp.org>
3220
3221         * doc/functions/memmem.texi: Use the same structure as snprintf.texi
3222         and other files.
3223         * m4/memmem.m4 (gl_FUNC_MEMMEM): Say "guessing no" instead of "no"
3224         if it's only a guess.
3225         * modules/memmem: Simplify by depending on memmem-simple.
3226
3227 2008-01-09  Bruno Haible  <bruno@clisp.org>
3228
3229         Work around OpenBSD 4.0 tdelete() bug.
3230         * m4/tsearch.m4 (gl_FUNC_TSEARCH): Also check tdelete's return value.
3231         * lib/search.in.h: If REPLACE_TSEARCH is 1, define tsearch etc. as
3232         macros and don't redefine the enum values.
3233         * m4/search_h.m4 (gl_SEARCH_H_DEFAULTS): Initialize REPLACE_TSEARCH.
3234         * modules/search (Makefile.am): Also substitute REPLACE_TSEARCH.
3235         * doc/functions/tdelete.texi: Document the OpenBSD 4.0 bug.
3236
3237 2008-01-09  Bruno Haible  <bruno@clisp.org>
3238
3239         * tests/test-wcwidth.c: Include <string.h> and localcharset.h.
3240         (main): Don't perform the tests if setlocale did not install a UTF-8
3241         locale. Needed on OpenBSD 4.0.
3242         * modules/wcwidth-tests (Depends-on): Add localcharset.
3243
3244 2008-01-09  Paul Eggert  <eggert@cs.ucla.edu>
3245
3246         gl_FUNC_ALLOCA no longer defines HAVE_ALLOCA_H unconditionally.
3247         See <http://lists.gnu.org/archive/html/bug-gnulib/2007-12/msg00149.html>.
3248         * NEWS: announce this.
3249         * m4/alloca.m4 (gl_FUNC_ALLOCA): Don't define HAVE_ALLOCA_H.
3250
3251 2008-01-09  Simon Josefsson  <simon@josefsson.org>
3252         and Eric Blake  <ebb9@byu.net>
3253
3254         Add memmem-simple module.
3255         * m4/memmem.m4 (gl_FUNC_MEMMEM_SIMPLE): New macro.
3256         (gl_FUNC_MEMMEM): Separate performance from presence checks.
3257         * modules/memmem-simple: New file.
3258         * modules/memmem (Description): Tweak.
3259         * MODULES.html.sh (string handling): Mention new module.
3260         * doc/functions/memmem.texi (memmem): Distinguish which flaws are
3261         addressed by memmem-simple.
3262         * NEWS: Document the difference.
3263
3264 2008-01-09  Eric Blake  <ebb9@byu.net>
3265
3266         Give gcc some memmem optimization hints.
3267         * lib/string.in.h (memmem, memrchr, strchrnul, strnlen, strpbrk)
3268         (strcasestr): Declare as pure.
3269         * modules/memmem (Maintainer): Claim my implementation.
3270
3271 2008-01-09  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3272
3273         Support AIX 6.1 and higher.
3274         * build-aux/config.libpath: Likewise.
3275         * build-aux/config.rpath: Likewise.
3276
3277 2008-01-08  Jim Meyering  <meyering@redhat.com>
3278             Bruno Haible  <bruno@clisp.org>
3279
3280         * lib/printf-parse.c (PRINTF_PARSE): Handle a size specifier "q"
3281         on MacOS X and a size specifier "I64" on mingw. Needed for PRIdMAX.
3282         Reported by Peter Fales in
3283         <http://lists.gnu.org/archive/html/bug-coreutils/2007-12/msg00148.html>.
3284
3285 2008-01-08  Bruno Haible  <bruno@clisp.org>
3286
3287         * modules/unictype/category-of (Depends-on): Add
3288         unictype/category-none.
3289         * modules/unictype/category-and-tests (Depends-on): Add
3290         unictype/category-{L,N,Lu,Nd}.
3291         * modules/unictype/category-and-not-tests (Depends-on): Likewise.
3292         * modules/unictype/category-or-tests (Depends-on): Add
3293         unictype/category-{L,N}.
3294         * modules/unictype/category-name-tests (Depends-on): Add
3295         unictype/category-{Z,Nl}.
3296         Reported by Simon Josefsson.
3297
3298 2008-01-08  Bruno Haible  <bruno@clisp.org>
3299
3300         * lib/str-kmp.h (knuth_morris_pratt_unibyte): Document the calling
3301         convention better.
3302         * lib/mbsstr.c (knuth_morris_pratt_multibyte): Likewise.
3303         * lib/mbscasestr.c (knuth_morris_pratt_multibyte): Likewise.
3304         Reported by Peter Miller <millerp@canb.auug.org.au>.
3305
3306 2008-01-08  Eric Blake  <ebb9@byu.net>
3307
3308         Rewrite memmem to guarantee linear complexity without malloc.
3309         * lib/memmem.c (memmem): Use Two-Way rather than
3310         Knuth-Morris-Pratt, to allow O(1) space usage.
3311         (critical_factorization, two_way_short_needle)
3312         (two_way_long_needle): New functions.
3313         (knuth_morris_pratt): Delete.
3314         * modules/memmem (Depends-on): No longer need malloca or stdbool.
3315         Add stdint.
3316         * tests/test-memmem.c (main): Add tests for periodic needle and
3317         sublinear performance.
3318         * doc/functions/memmem.texi (memmem): Document other deficiencies
3319         in cygwin and older glibc.
3320
3321 2008-01-08  Bruno Haible  <bruno@clisp.org>
3322
3323         * modules/memmem-tests (Makefile.am): Remove TESTS_ENVIRONMENT
3324         augmentation.
3325
3326 2008-01-08  Mike Frysinger  <vapier@gentoo.org>
3327
3328         Add a configure time option: --disable-acl.
3329         * m4/acl.m4 (gl_FUNC_ACL): Wrap all ACL logic in a call to
3330         AC_ARG_ENABLE(acl).
3331
3332 2008-01-06  Simon Josefsson  <simon@josefsson.org>
3333
3334         * tests/test-localename.c: Don't include obsolete "setenv.h".
3335
3336         * modules/localename-tests (Depends-on): Need unsetenv.
3337
3338 2008-01-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3339
3340         * DEPENDENCIES: Require Texinfo version 4.6 or newer.
3341
3342 2008-01-06  Colin Watson  <cjwatson@debian.org>
3343
3344         * users.txt: Add man-db.
3345
3346 2008-01-07  Bruno Haible  <bruno@clisp.org>
3347
3348         * doc/gnulib-intro.texi (Library vs Reusable Code): Restore the
3349         previous section name.
3350
3351 2008-01-07  Bruno Haible  <bruno@clisp.org>
3352
3353         * lib/progname.c (set_program_name): Don't strip off a leading
3354         "lt-" prefix outside a .libs directory.
3355         Suggested by Paul Eggert.
3356
3357 2008-01-01  Sylvain Beucler  <beuc@gnu.org>
3358             Bruno Haible  <bruno@clisp.org>
3359
3360         Improve memory cleanup in 'relocatable' module.
3361         * lib/relocatable.h (compute_curr_prefix): Change return type to
3362         'char *'.
3363         * lib/relocatable.c (compute_curr_prefix): Change return type to
3364         'char *'. Free curr_installdir after use.
3365         (relocate): Free curr_prefix_better after use.
3366         * lib/progreloc.c (prepare_relocate): Free curr_prefix after use.
3367
3368 2008-01-01  Bruno Haible  <bruno@clisp.org>
3369
3370         * tests/test-wcwidth.c (main): Relax test of U+2060. Avoids a test
3371         failure on older glibc systems.
3372         Reported by Peter Fales <psfales@alcatel-lucent.com>.
3373
3374 2008-01-05  Eric Blake  <ebb9@byu.net>
3375
3376         Avoid quadratic system memmem.
3377         * m4/memmem.m4 (gl_FUNC_MEMMEM): Check for quadratic memmem.
3378         Reported by Ralf Wildenhues.
3379
3380         Fix memmem test for mingw.
3381         * modules/memmem-tests (configure.ac): Check for alarm.
3382         * tests/test-memmem.c (main): Avoid alarm on platforms that lack
3383         it.
3384         * doc/functions/memmem.texi: New file.
3385         * doc/gnulib.texi (Function Substitutes): Add memmem.
3386         Reported by Bruno Haible.
3387
3388 2008-01-04  Bruno Haible  <bruno@clisp.org>
3389
3390         * m4/strcase.m4 (gl_FUNC_STRCASECMP, gl_FUNC_STRNCASECMP):
3391         Require gl_HEADER_STRINGS_H_DEFAULTS, not
3392         gl_HEADER_STRING_H_DEFAULTS.
3393
3394 2008-01-04  Eric Blake  <ebb9@byu.net>
3395
3396         Shorten duration of memmem test.
3397         * tests/test-memmem.c (main): Use alarm to declare failure if test
3398         is taking too long.
3399         Reported by Ralf Wildenhues.
3400
3401 2007-12-21  Simon Josefsson  <simon@josefsson.org>
3402
3403         * modules/relocatable-prog-wrapper (Depends-on): Add intprops and
3404         string, needed by strerror.
3405
3406 2008-01-03  Colin Watson  <cjwatson@debian.org>
3407             Bruno Haible  <bruno@clisp.org>
3408
3409         * doc/gnulib-tool.texi (Localization): New section.
3410
3411 2008-01-02  Bruno Haible  <bruno@clisp.org>
3412
3413         * lib/memmem.c (knuth_morris_pratt, memmem): Change all 'char *'
3414         variables to 'unsigned char *' type.
3415         Reported by Paul Eggert.
3416
3417 2008-01-02  Jim Meyering  <jim@meyering.net>
3418
3419         * lib/version-etc.c (COPYRIGHT_YEAR): Increase for new year.
3420
3421 2007-12-31  Jim Meyering  <jim@meyering.net>
3422
3423         Avoid use of private FTS type name.
3424         * lib/fts.c (fts_sort): Use FTSENT rather than "struct _ftsent".
3425
3426 2007-12-30  Karl Berry  <karl@gnu.org>
3427
3428         * doc/gnulib.texi (Library vs. Reusable Code): remove period, to
3429         work around defect in Texinfo and/or the standalone Info browser.
3430
3431 2007-12-30  Bruno Haible  <bruno@clisp.org>
3432
3433         Unify 5 copies of the KMP code.
3434         * lib/str-kmp.h: New file.
3435         * lib/c-strcasestr.c: Include str-kmp.h.
3436         (knuth_morris_pratt): Remove function.
3437         (c_strcasestr): Update.
3438         * lib/c-strstr.c: Include str-kmp.h.
3439         (knuth_morris_pratt): Remove function.
3440         (c_strcasestr): Update.
3441         * lib/mbscasestr.c: Include str-kmp.h.
3442         (knuth_morris_pratt_unibyte): Remove function.
3443         * lib/mbsstr.c: Include str-kmp.h.
3444         (knuth_morris_pratt_unibyte): Remove function.
3445         * lib/strcasestr.c: Include str-kmp.h.
3446         (knuth_morris_pratt): Remove function.
3447         (strcasestr): Update.
3448         * modules/c-strcasestr (Files): Add lib/str-kmp.h.
3449         * modules/c-strstr (Files): Likewise.
3450         * modules/mbscasestr (Files): Likewise.
3451         * modules/mbsstr (Files): Likewise.
3452         * modules/strcasestr (Files): Likewise.
3453         Suggested by Paul Eggert.
3454
3455 2007-12-30  Bruno Haible  <bruno@clisp.org>
3456
3457         * lib/xmalloca.c (xmmalloca): Don't define if HAVE_ALLOCA is not
3458         defined.
3459
3460 2007-12-30  Bruno Haible  <bruno@clisp.org>
3461
3462         * lib/xmalloca.h: Include xalloc.h.
3463         (xnmalloca): New macro.
3464
3465 2007-12-30  Bruno Haible  <bruno@clisp.org>
3466
3467         * lib/malloca.h (nmalloca): New macro.
3468         * lib/c-strcasestr.c (knuth_morris_pratt): Use it.
3469         * lib/c-strstr.c (knuth_morris_pratt): Likewise.
3470         * lib/mbscasestr.c (knuth_morris_pratt_unibyte,
3471         knuth_morris_pratt_multibyte): Likewise.
3472         * lib/mbsstr.c (knuth_morris_pratt_unibyte,
3473         knuth_morris_pratt_multibyte): Likewise.
3474         * lib/memmem.c (knuth_morris_pratt): Likewise.
3475         * lib/strcasestr.c (knuth_morris_pratt): Likewise.
3476
3477 2007-12-25  Bruno Haible  <bruno@clisp.org>
3478
3479         Fixup after 2007-10-17 commit. Ensure that 'glob' stays under LGPLv2+.
3480         * lib/glob.c: Don't include openat.h.
3481         (link_exists2_p): Add back the code that deals with the
3482         !GLOB_ALTDIRFUNC case.
3483         (link_exists_p) [!_LIBC && !HAVE_FSTATAT]: Just call link_exists2_p and
3484         let it do the filename concatenation.
3485         * m4/glob.m4 (gl_PREREQ_GLOB): Add check for fstatat.
3486         * modules/glob (Depends-on): Remove openat.
3487
3488 2007-12-31  Bruno Haible  <bruno@clisp.org>
3489
3490         * modules/dirfd (License): Change to LGPLv2+.
3491         Approved by Jim Meyering.
3492
3493 2007-12-29  Paul Eggert  <eggert@cs.ucla.edu>
3494
3495         * lib/memmem.c (knuth_morris_pratt): Check for size_t overflow
3496         when multiplying M by sizeof (size_t).
3497
3498 2007-12-10  Martin Lambers  <marlam@marlam.de>
3499
3500         Override getpagesize on mingw.
3501         * lib/getpagesize.c: New file.
3502         * m4/getpagesize.m4 (gl_FUNC_GETPAGESIZE): Enable replacement on mingw.
3503         * modules/getpagesize (Files): Add lib/getpagesize.c.
3504         * lib/unistd.in.h (getpagesize): Declare if we are using a replacement.
3505         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize
3506         REPLACE_GETPAGESIZE.
3507         * modules/unistd (Makefile.am): Substitute REPLACE_GETPAGESIZE.
3508
3509 2007-12-25  Bruno Haible  <bruno@clisp.org>
3510
3511         * modules/localcharset (Notice): New field.
3512         (configure.ac): Define LOCALCHARSET_TESTS_ENVIRONMENT.
3513         Suggested by Ben Pfaff <blp@cs.stanford.edu>.
3514
3515 2007-12-25  Paul Eggert  <eggert@cs.ucla.edu>
3516             Bruno Haible  <bruno@clisp.org>
3517
3518         Avoid using the syntax symbol() in formatted documentation.
3519         * MODULES.html.sh (func_module): When replacing symbol() with a
3520         hyperlink, remove the parentheses. Show an error if some remain.
3521         Recognize and render the '...' syntax.
3522         * doc/alloca-opt.texi: Remove parentheses from symbol reference.
3523         Rework. Add paragraph about GCC's inlining.
3524         * doc/alloca.texi: Likewise.
3525         * doc/error.texi: Remove parentheses from symbol reference.
3526         * doc/gnulib-intro.texi: Likewise.
3527         * doc/gnulib.texi (alloca, alloca-opt): New nodes.
3528         * modules/fnmatch (Description): Reword to say "the ... function".
3529         * modules/full-read (Description): Likewise.
3530         * modules/full-write (Description): Likewise.
3531         * modules/safe-read (Description): Likewise.
3532         * modules/safe-write (Description): Likewise.
3533         * modules/strchrnul (Description): Likewise.
3534         * modules/trim (Description): Likewise.
3535         * modules/error (Description): Remove parentheses from symbol
3536         references.
3537         * modules/verror (Description): Likewise.
3538         Reported by Karl Berry.
3539
3540 2007-12-25  Bruno Haible  <bruno@clisp.org>
3541
3542         Fixup after 2007-10-16 commit.
3543         * lib/glob.c (glob_in_dir): Don't use ISO C99 syntax.
3544
3545 2007-12-24  Bruno Haible  <bruno@clisp.org>
3546
3547         Make --enable-relocatable work with DESTDIR.
3548         * build-aux/install-reloc: Accept another argument 'destdir'. Use it
3549         to compute installdir from destprog.
3550         * m4/relocatable.m4 (gl_RELOCATABLE_BODY): In INSTALL_PROGRAM_ENV,
3551         also set the RELOC_DESTDIR variable.
3552         Reported by Ð›ÐµÐ²Ð°ÑˆÐµÐ² Ð˜Ð²Ð°Ð½ <octagram@bluebottle.com>.
3553
3554 2007-12-24  Bruno Haible  <bruno@clisp.org>
3555
3556         Fix link error due to xalloc_die().
3557         * lib/progreloc.c: When NO_XMALLOC is defined, use areadlink instead
3558         of xreadlink.
3559         * lib/relocwrapper.c: Update comments.
3560         * build-aux/install-reloc: Remove xreadlink.c from file list.
3561         * modules/relocatable-prog-wrapper (Files): Remove xreadlink.h and
3562         xreadlink.c.
3563         Reported by Ð›ÐµÐ²Ð°ÑˆÐµÐ² Ð˜Ð²Ð°Ð½ <octagram@bluebottle.com>.
3564
3565 2007-12-24  Bruno Haible  <bruno@clisp.org>
3566
3567         Split setenv module into setenv and unsetenv. Get rid of setenv.h.
3568         * lib/setenv.h: Remove file.
3569         * lib/stdlib.in.h (setenv, unsetenv): New declarations, moved here from
3570         lib/setenv.h.
3571         * modules/setenv (Files): Remove lib/setenv.h, lib/unsetenv.c.
3572         (Depends-on): Add stdlib.
3573         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR. Don't invoke
3574         gl_FUNC_UNSETENV.
3575         (Include): Replace setenv.h with <stdlib.h>.
3576         * modules/unsetenv: New file.
3577         * lib/setenv.c: Include <stdlib.h> first, after alloca.h.
3578         * lib/unsetenv.c: Include <stdlib.h> first.
3579         * m4/setenv.m4 (gl_FUNC_SETENV, gl_FUNC_SETENV_SEPARATE): Require
3580         gl_STDLIB_H_DEFAULTS. Conditionally set HAVE_SETENV to 0.
3581         (gl_FUNC_UNSETENV): Require gl_STDLIB_H_DEFAULTS. Conditionally set
3582         HAVE_UNSETENV to 0. Set VOID_UNSETENV as an AC_SUBSTed variable.
3583         * modules/stdlib (Makefile.am): Substitute also GNULIB_SETENV,
3584         HAVE_SETENV, GNULIB_UNSETENV, HAVE_UNSETENV, VOID_UNSETENV.
3585         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_SETENV,
3586         HAVE_SETENV, GNULIB_UNSETENV, HAVE_UNSETENV, VOID_UNSETENV.
3587         * doc/functions/unsetenv.texi: Update.
3588         * modules/xsetenv (Depends-on): Add unsetenv.
3589         * modules/getdate (Depends-on): Likewise.
3590         * lib/xsetenv.h: Include <stdlib.h> instead of setenv.h.
3591         * lib/xsetenv.c: Don't include setenv.h.
3592         * lib/getdate.y: Likewise.
3593         * lib/relocwrapper.c: Likewise.
3594         * modules/relocatable-prog-wrapper (Files): Remove lib/setenv.h.
3595         (Depends-on): Add stdlib.
3596         * NEWS: Mention the changes.
3597         Reported by Ð›ÐµÐ²Ð°ÑˆÐµÐ² Ð˜Ð²Ð°Ð½ <octagram@bluebottle.com>.
3598
3599 2007-12-23  Bruno Haible  <bruno@clisp.org>
3600
3601         * lib/memmem.c (memmem): Use lowercase variable names. Tab
3602         indentation.
3603
3604 2007-12-23  Bruno Haible  <bruno@clisp.org>
3605
3606         * lib/c-strcasestr.c: Add more comments.
3607         * lib/c-strstr.c: Likewise.
3608         * lib/mbscasestr.c: Likewise.
3609         * lib/mbsstr.c: Likewise.
3610         * lib/strcasestr.c: Likewise.
3611         * lib/memmem.c: Likewise.
3612
3613 2007-12-23  Bruno Haible  <bruno@clisp.org>
3614
3615         * tests/test-memmem.c: Include <string.h> first.
3616
3617 2007-12-22  Bruno Haible  <bruno@clisp.org>
3618
3619         * gnulib-tool (func_create_testdir): Change $auxdir while generating
3620         the contents of $testsbase.
3621         Reported by Ralf Wildenhues.
3622
3623 2007-12-22  Bruno Haible  <bruno@clisp.org>
3624
3625         * gnulib-tool (func_emit_tests_Makefile_am): Replace local_ldadd with
3626         two variables local_ldadd_before, local_ldadd_last.
3627
3628 2007-12-20  Eric Blake  <ebb9@byu.net>
3629
3630         Work around circular library issue when cross-compiling.
3631         * lib/progname.c (set_program_name): Use strncmp, not memcmp, so
3632         that progname.o does not need to pull in rpl_memcmp.
3633
3634 2007-12-19  Eric Blake  <ebb9@byu.net>
3635
3636         Fix memmem to avoid O(n^2) worst-case complexity.
3637         * lib/memmem.c (knuth_morris_pratt): New function.
3638         (memmem): Use it if first few naive iterations fail.
3639         * m4/memmem.m4 (gl_FUNC_MEMMEM): Detect cygwin bug.
3640         * modules/memcmp (License): Set to LGPLv2+, not LGPL.
3641         * modules/memchr (License): Likewise.
3642         * modules/memmem (Depends-on): Add memcmp, memchr, stdbool, and
3643         malloca.
3644         * tests/test-memmem.c: Rewrite, borrowing ideas from
3645         test-mbsstr1.c; the old version wouldn't even compile!
3646         * modules/memmem-tests: New file.
3647         * lib/string.in.h (rpl_memmem): Add declaration.
3648         * modules/string (Makefile.am): Substitute REPLACE_MEMMEM.
3649         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Default for
3650         REPLACE_MEMMEM.
3651
3652 2007-12-18  Paul Eggert  <eggert@cs.ucla.edu>
3653
3654         Fix problem with _GL_JUST_INCLUDE_SYSTEM_INTTYPES_H on VMS.
3655         * lib/stdint.in.h (_GL_JUST_INCLUDE_SYSTEM_INTTYPES_H): Define
3656         before any system include files, and undef after them all.  This
3657         should fix a problem on VMS reported by John E. Malmberg in
3658         <http://lists.gnu.org/archive/html/bug-gnulib/2007-12/msg00118.html>.
3659
3660 2007-12-17  Eric Blake  <ebb9@byu.net>
3661
3662         Revert addition of verify, for BSD/OS.
3663         * lib/fseeko.c [!HAVE_FSEEKO]: Allow off_t > long, even though it
3664         can't handle large files, for the sake of obsolete platforms.
3665         * modules/fseeko (Depends-on): Remove verify.
3666         * doc/functions/fseeko.texi (fseeko): Document BSD/OS limitation.
3667         * doc/functions/ftello.texi (ftello): Likewise.
3668         * doc/functions/fgetpos.texi (fgetpos): Likewise.
3669         Reported by Larry Jones.
3670
3671 2007-12-17  Petr Salinger  <Petr.Salinger@seznam.cz>
3672
3673         getcwd.c: Use a more readable witness: HAVE_OPENAT_SUPPORT
3674         * lib/getcwd.c: Define and use HAVE_OPENAT_SUPPORT, in place of AT_FDCWD.
3675
3676 2007-12-17  Jim Meyering  <meyering@redhat.com>
3677
3678         Port to GNU/kFreeBSD - FreeBSD kernel + GNU libc,
3679         which has no openat syscall, yet <fcntl.h> does define AT_FDCWD.
3680         * lib/getcwd.c: Undef AT_FDCWD if there is no openat function.
3681         * modules/getcwd (Depends-on): Add openat.
3682         Reported by Petr Salinger.
3683
3684 2007-12-17  Bruno Haible  <bruno@clisp.org>
3685
3686         * m4/printf.m4 (gl_PRINTF_INFINITE_LONG_DOUBLE): Use GL_NOCRASH to
3687         avoid a segmentation fault of the configure test on x86_64 systems.
3688
3689 2007-12-15  Jim Meyering  <meyering@redhat.com>
3690
3691         * build-aux/gnupload (GPG): Don't hard-code absolute name of gpg binary.
3692
3693 2007-12-13  Eric Blake  <ebb9@byu.net>
3694
3695         Another fseek test.
3696         * tests/test-fseek.c (main): Also test ungetc handling.
3697         * tests/test-fseeko.c (main): Likewise.
3698         * modules/fseeko (Depends-on): Add verify.
3699         * lib/fseeko.c [!HAVE_FSEEKO]: Verify that off_t is not too
3700         large.
3701         Reported by Larry Jones.
3702
3703         Fix fseeko on mingw.
3704         * lib/fseeko.c (rpl_fseeko) [_IOERR]: Reset EOF flag on successful
3705         seek.
3706
3707         Beef up fseek tests.
3708         * tests/test-fseek.c (main): Also test eof handling.
3709         * tests/test-fseeko.c (main): Likewise.
3710         Reported by Larry Jones.
3711
3712 2007-12-13  Larry Jones  <lawrence.jones@siemens.com>  (tiny change)
3713
3714         Fix fseeko on BSD-based platforms.
3715         * lib/fseeko.c (rpl_fseeko) [__sferror]: Reset EOF flag on
3716         successful seek.
3717
3718 2007-12-12  Eric Blake  <ebb9@byu.net>
3719
3720         Allow circular dependency of separate libtests.a
3721         * gnulib-tool (func_emit_tests_Makefile_am): Add AM_LIBTOOLFLAGS
3722         when use_libtests.
3723
3724 2007-12-11  Eric Blake  <ebb9@byu.net>
3725
3726         Fix bug with -0.0L in previous patch.
3727         * lib/isnan.c (rpl_isnanl): Make robust to -0.0L and pad bits.
3728         * tests/test-isnan.c (main): Also test on zeroes.
3729         * tests/test-isnanf.c (main): Likewise.
3730         * tests/test-isnanl.h (main): Likewise.
3731
3732         Detect pseudo-denormals on x86 even when cross-compiling.
3733         * lib/isnan.c (rpl_isnanl) [!KNOWN_EXPBIT0_LOCATION
3734         && USE_LONG_DOUBLE && x86]: Add one more check to filter out
3735         invalid bit patterns that happen to satisfy ==.
3736
3737         Avoid link failures with separate libtests.a.
3738         * gnulib-tool (func_emit_tests_Makefile_am): Also list local_ldadd
3739         last, to satisfy circular dependencies.
3740
3741 2007-12-11  Eric Blake  <ebb9@byu.net>
3742         and Bruno Haible  <bruno@clisp.org>
3743
3744         Fix OpenBSD 4.0 <float.h> handling of long double.
3745         * m4/float_h.m4 (gl_FLOAT_H): Also claim OpenBSD is broken.
3746         * lib/float.in.h [__OpenBSD__]: Add fixes for OpenBSD.
3747         * doc/headers/float.texi (float.h): Document OpenBSD bug.
3748
3749 2007-12-11  Jim Meyering  <meyering@redhat.com>
3750
3751         * users.txt: Add libvirt.
3752
3753         Support versions of autoconf prior to 2.59c.
3754         * gnulib-tool (func_emit_initmacro_done): Define m4_foreach_w
3755         if it is not already defined.
3756
3757 2007-12-09  Bruno Haible  <bruno@clisp.org>
3758
3759         Let 'gnulib-tool --import' collect sources needed for the tests in
3760         tests/ rather than in lib/.
3761         * gnulib-tool (func_emit_tests_Makefile_am): Accept use_libtests
3762         argument. If true, add rules to generate libtests.a, and put libtests.a
3763         into $(LDADD). Consider source files in subdirectories and set
3764         uses_subdirs.
3765         (func_emit_initmacro_start, func_emit_initmacro_end,
3766         func_emit_initmacro_done): Pass all arguments explicitly.
3767         (func_import): Determine two module lists main_modules,
3768         testsrelated_modules. Determine use_libtests. Determine two variables
3769         sed_transform_main_lib_file, sed_transform_testsrelated_lib_file
3770         instead of just sed_transform_lib_file. Determine two variables
3771         main_files and testsrelated_files. Compute 'files' as the union of
3772         both. Adjust sed_rewrite_old_files, sed_rewrite_new_files,
3773         func_add_or_update. In the generated gnulib-comp.m4, collect the
3774         object files for tests/ in different variables than those for lib/.
3775         Substitute LIBTESTS_LIBDEPS.
3776         (func_create_testdir): Combine the uses_subdirs results from
3777         func_emit_lib_Makefile_am and from func_emit_tests_Makefile_am.
3778
3779 2007-12-09  Bruno Haible  <bruno@clisp.org>
3780
3781         * gnulib-tool (func_emit_tests_Makefile_am): Expand references to
3782         the build-aux directory.
3783
3784 2007-12-09  Bruno Haible  <bruno@clisp.org>
3785
3786         * gnulib-tool (func_emit_tests_Makefile_am): Remove redundant code
3787         introduced on 2006-09-09.
3788
3789 2007-12-07  Jim Meyering  <meyering@redhat.com>
3790
3791         Let these macros work also with autoconf-2.59.
3792         * m4/getline.m4 (gl_FUNC_GETLINE): Require only autoconf-2.59.  2.60
3793         is not needed, since gnulib now permits use of AC_CHECK_DECLS_ONCE.
3794         * m4/getdelim.m4 (gl_FUNC_GETDELIM): Likewise.
3795
3796 2007-12-06  Jim Meyering  <meyering@redhat.com>
3797
3798         Avoid a configure-time syntax error in gl_FUNC_ACL.
3799         * m4/acl.m4 (gl_FUNC_ACL): Be careful to check for the acl_trivial
3800         function in each branch, before testing the cache variable.
3801
3802 2007-12-04  Eric Blake  <ebb9@byu.net>
3803
3804         Make scripts executable.
3805         * build-aux/config.guess: Add execute permissions.
3806         * build-aux/config.sub: Likewise.
3807         * build-aux/gendocs.sh: Likewise.
3808
3809         Fix frexp on mingw.
3810         * m4/frexp.m4 (gl_FUNC_FREXP_WORKS): Detect mingw bug when
3811         cross-compiling.
3812         * doc/functions/frexp.texi (frexp): Document the bug.
3813
3814         Make cygwin fseeko check more reliable.
3815         * m4/stdio_h.m4 (gl_STDIN_LARGE_OFFSET) [__CYGWIN__]: Use cygwin
3816         version numbers, rather than unrelated feature check.
3817         * doc/functions/fseeko.texi (fseeko): Tweak failure report.
3818         * doc/functions/ftello.texi (ftello): Likewise.
3819         Reported by Bruno Haible.
3820
3821         * m4/strerror.m4: Bump version number.
3822
3823 2007-12-03  Bruno Haible  <bruno@clisp.org>
3824
3825         * doc/functions/mprotect.texi: Mention the mingw problem.
3826
3827 2007-12-03  Eric Blake  <ebb9@byu.net>
3828
3829         * m4/strerror.m4 (gl_FUNC_STRERROR_SEPARATE): Ensure
3830         REPLACE_STRERROR is initialized before this macro.
3831
3832 2007-12-03  Paul Eggert  <eggert@cs.ucla.edu>
3833
3834         Add support for Solaris 10 ACLs.  Also, ACLs are Gnulib, not Autoconf.
3835         * modules/acl (configure.ac): Rename AC_FUNC_ACL to gl_FUNC_ACL.
3836         * m4/acl.m4 (gl_FUNC_ACL): Renamed from AC_FUNC_ACL.  On Solaris,
3837         put -lsec in even for programs other than 'ls'.  This fixes a problem
3838         for gettext reported by Bruno Haible in
3839         <http://lists.gnu.org/archive/html/bug-gnulib/2007-12/msg00007.html>.
3840         * lib/acl.c (copy_acl, qset_acl) [USE_ACL && defined ACL_NO_TRIVIAL]:
3841         Add support for Solaris 10.  This isn't efficient, but should get the
3842         job done for now.
3843
3844 2007-12-03  James Youngman  <jay@gnu.org>
3845
3846         * doc/regexprops-generic.texi: change "an close-group" to "a
3847         close-group" and "illegal" to "not allowed".
3848
3849 2007-11-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3850
3851         * lib/unictype/pr_byname.c: Include unictype/pr_byname.h instead of
3852         pr_byname.h. Needed for the rare case when the maintainer has done
3853         "make maintainer-clean" in the source directory and then attempts a
3854         build outside the source directory.
3855         * lib/unictype/scripts.c: Include unictype/scripts_byname.h instead of
3856         scripts_byname.h.
3857
3858 2007-12-02  Martin Lambers <marlam@marlam.de>
3859             Bruno Haible  <bruno@clisp.org>
3860
3861         * lib/getpagesize.h: Remove file.
3862         * lib/unistd.in.h: Include declaration of getpagesize here.
3863         * m4/getpagesize.m4 (gl_FUNC_GETPAGESIZE): Renamed from gl_GETPAGESIZE.
3864         Invoke gl_UNISTD_H_DEFAULTS. Set HAVE_GETPAGESIZE, HAVE_OS_H,
3865         HAVE_SYS_PARAM_H.
3866         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_GETPAGESIZE,
3867         HAVE_GETPAGESIZE, HAVE_OS_H, HAVE_SYS_PARAM_H.
3868         * modules/getpagesize (Files): Remove lib/getpagesize.h.
3869         (Depends-on): Add unistd.
3870         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
3871         (Include): Use <unistd.h> instead of getpagesize.h.
3872         * modules/unistd (Makefile.am): Substitute also GNULIB_GETPAGESIZE,
3873         HAVE_GETPAGESIZE, HAVE_OS_H, HAVE_SYS_PARAM_H.
3874         * m4/pagealign_alloc.m4 (gl_PREREQ_PAGEALIGN_ALLOC): Remove
3875         gl_GETPAGESIZE invocation, already handled by module dependency.
3876         * lib/pagealign_alloc.c: Don't include getpagesize.h.
3877
3878 2007-12-02  Bruno Haible  <bruno@clisp.org>
3879
3880         * modules/strings-tests: New file.
3881         * tests/test-strings.c: New file.
3882
3883         Move declarations of str{,n}casecmp from <string.h> to <strings.h>.
3884         * lib/strings.in.h: New file.
3885         * lib/string.in.h (strcasecmp, strncasecmp): Remove declarations.
3886         * m4/strings_h.m4: New file.
3887         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Remove initialization
3888         of HAVE_STRCASECMP, HAVE_DECL_STRNCASECMP.
3889         * modules/strings: New file.
3890         * modules/string (Makefile.am): Update.
3891         * modules/strcase (Include): Mention <strings.h>, not <string.h>.
3892         Reported by Karl Berry.
3893
3894 2007-12-01  Eric Blake  <ebb9@byu.net>
3895
3896         * m4/stdio_h.m4 (gl_STDIN_LARGE_OFFSET) [__CYGWIN__]: Rewrite to
3897         accomodate fix in cygwin 1.5.25.
3898
3899 2007-12-01  Jim Meyering  <meyering@redhat.com>
3900
3901         Fix a bug that inhibited much of the utf8-optimization in regcomp.c.
3902         * lib/regcomp.c (optimize_utf8): Fix a typo, s/idx/ctx_type/,
3903         that would inhibit utf8-optimization of a regexp containing line-
3904         or buffer-anchors, e.g., `^', `$'.
3905
3906 2007-11-30  Bruno Haible  <bruno@clisp.org>
3907
3908         * lib/lock.h (gl_recursive_lock_init) [PTHREAD &&
3909         PTHREAD_RECURSIVE_MUTEX_INITIALIZER]: Call
3910         glthread_recursive_lock_init.
3911         * lib/lock.c (glthread_recursive_lock_init)
3912         [PTHREAD_RECURSIVE_MUTEX_INITIALIZER]: New function.
3913         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
3914
3915 2007-11-28  Paul Eggert  <eggert@cs.ucla.edu>
3916
3917         New function qset_acl, like set_acl but with syscall semantics.
3918         * lib/acl.h (qset_acl): New decl.
3919         * lib/acl.c (qset_acl): New function.
3920         (set_acl): Use new function.  Use more-consistent diagnostics.
3921
3922 2007-11-28  Jim Meyering  <meyering@redhat.com>
3923
3924         * modules/physmem (License): Change from GPL to LGPLv2+.
3925
3926 2007-11-26  Bruno Haible  <bruno@clisp.org>
3927
3928         * lib/vasnprintf.c (decode_long_double): Don't abort if the
3929         'long double' type has excess precision.
3930         Reported by Jim Meyering in
3931         <http://lists.gnu.org/archive/html/bug-gnulib/2007-11/msg00120.html>.
3932
3933 2007-11-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
3934
3935         * doc/fdl.texi, doc/gpl-3.0.texi, doc/lgpl-3.0.texi:
3936         Sync from <http://gnu.org/licenses>.
3937         * modules/agpl-3.0, doc/agpl-3.0.texi: New module,
3938         with license text from same location.
3939         * doc/maintain.texi, doc/standards.texi:  Sync from
3940         <http://savannah.gnu.org/projects/gnustandards>.
3941
3942 2007-11-22  OndÅ™ej Vašík  <ovasik@redhat.com>
3943         and Jim Meyering  <meyering@redhat.com>
3944
3945         Adjust getdate' grammar to accept a slightly more regular language.
3946         E.g., accept "YYYYMMDD +N days" as well as "YYYYMMDD N days".
3947         Before, the former was rejected.
3948         * lib/getdate.y (digits_to_date_time): New function, factored
3949         out of ...
3950         (number): ...here.  Just call digits_to_date_time.
3951         (hybrid): New non-terminal to handle an <unsigned number,
3952         signed relative offset> sequence consistently.
3953
3954 2007-11-18  Jim Meyering  <meyering@redhat.com>
3955
3956         Pull my changes from coreutils:
3957         bootstrap: fix typo to enable use of $gnulib_tool_option_extras.
3958         * build-aux/bootstrap (gnulib_tool_options): Add a space before the
3959         use of $gnulib_tool_option_extras, so that it's separated from the
3960         preceding argument.
3961
3962         Fix bootstrap failure to handle files like lib/uniwidth/cjk.h.
3963         * build-aux/bootstrap (cp_mark_as_generated): Create any required
3964         parent destination directories before copying a file into place.
3965
3966 2007-11-18  Sergey Poznyakoff  <gray@gnu.org.ua>
3967
3968         bootstrap: work also with 4-argument variant of AC_INIT
3969         * build-aux/bootstrap (gnulib_extra_files): Adjust sed command.
3970
3971 2007-11-16  Paul Eggert  <eggert@cs.ucla.edu>
3972
3973         Port test-getaddrinfo to Solaris.
3974         Problem reported by Bruno Haible in
3975         <http://lists.gnu.org/archive/html/bug-gnulib/2007-03/msg00171.html>.
3976         * tests/test-getaddrinfo.c (simple): Add a comment asking for an
3977         explanation of setting 'hints'.
3978         Don't reject an implementation merely because it returns EAI_SERVICE.
3979         (EAI_SERVICE): Define to 0 if not defined.
3980
3981 2007-11-15  Paul Eggert  <eggert@cs.ucla.edu>
3982
3983         The license of gnu-make and posix-shell is now "GPLed build tool".
3984         * modules/gnu-make (License): Likewise.
3985         * modules/posix-shell (License): Likewise.
3986
3987         New module posix-shell, for determining a POSIX shell
3988         or perhaps something that is close enough to a POSIX shell.
3989         * m4/posix-shell.m4: New file.
3990         * modules/posix-shell: New file.
3991
3992         * MODULES.html.sh: Mention new module.
3993
3994         New module gnu-make, for determining whether we're using GNU Make.
3995         * m4/gnu-make.m4: New file.
3996         * modules/gnu-make: New file.
3997         * MODULES.html.sh: Mention new module.
3998
3999 2007-11-14  Jim Meyering  <meyering@redhat.com>
4000
4001         Define a sometimes-link-required function using ARGMATCH_DIE_DECL.
4002         * tests/test-argmatch.c (ARGMATCH_DIE_DECL): When defined,
4003         use this macro to create a function _definition_.
4004         Remove useless "#undef ARGMATCH_DIE".
4005
4006 2007-11-14  Bruno Haible  <bruno@clisp.org>
4007
4008         * lib/config.charset: Update for OpenBSD 4.1.
4009         Reported and helped by Ben Pfaff <blp@cs.stanford.edu>.
4010
4011 2007-11-12  Paul Eggert  <eggert@cs.ucla.edu>
4012
4013         Document 64-bit #if problems in stdint.texi.
4014         * doc/headers/stdint.texi (stdint.h): Mention problems with
4015         64-bit-#if, and how to work around them.
4016
4017         Don't insist on 'long long int' support in the preprocessor.  It
4018         breaks too many things.  For example, PRIdMAX still uses a 'long
4019         long int' format with the latest Sun compiler, even though
4020         HAVE_LONG_LONG_INT isn't defined due to that compiler's
4021         preprocessor problem.  This causes the latest coreutils to dump
4022         core on Solaris 10 sparc with the Sun C compiler.
4023         Instead, fix the 2007-10-16 problem in a different way, by evaluating
4024         the troublesome expressions at configure-time, not at #if-time.
4025         * m4/longlong.m4 (_AC_TYPE_LONG_LONG_SNIPPET): Don't test the
4026         preprocessor.
4027         * m4/inttypes.m4 (gl_INTTYPES_H): Move the #if checks into
4028         compile-time C checks, done at 'configure'-time.
4029         (gl_INTTYPES_CHECK_LONG_LONG_INT_CONDITION): New macro.
4030         * modules/inttypes (Makefile): Substitute the new symbols that
4031         gl_INTTYPES_H now generates.
4032         * lib/inttypes.in.h: Don't use constants wider than 'long' in #if.
4033
4034 2007-11-12  Bruno Haible  <bruno@clisp.org>
4035
4036         Tests for Unicode character classification functions.
4037
4038         * modules/unictype/bidicategory-byname-tests: New file.
4039         * modules/unictype/bidicategory-name-tests: New file.
4040         * modules/unictype/bidicategory-of-tests: New file.
4041         * modules/unictype/bidicategory-test-tests: New file.
4042         * modules/unictype/block-list-tests: New file.
4043         * modules/unictype/block-of-tests: New file.
4044         * modules/unictype/block-test-tests: New file.
4045         * modules/unictype/category-C-tests: New file.
4046         * modules/unictype/category-Cc-tests: New file.
4047         * modules/unictype/category-Cf-tests: New file.
4048         * modules/unictype/category-Cn-tests: New file.
4049         * modules/unictype/category-Co-tests: New file.
4050         * modules/unictype/category-Cs-tests: New file.
4051         * modules/unictype/category-L-tests: New file.
4052         * modules/unictype/category-Ll-tests: New file.
4053         * modules/unictype/category-Lm-tests: New file.
4054         * modules/unictype/category-Lo-tests: New file.
4055         * modules/unictype/category-Lt-tests: New file.
4056         * modules/unictype/category-Lu-tests: New file.
4057         * modules/unictype/category-M-tests: New file.
4058         * modules/unictype/category-Mc-tests: New file.
4059         * modules/unictype/category-Me-tests: New file.
4060         * modules/unictype/category-Mn-tests: New file.
4061         * modules/unictype/category-N-tests: New file.
4062         * modules/unictype/category-Nd-tests: New file.
4063         * modules/unictype/category-Nl-tests: New file.
4064         * modules/unictype/category-No-tests: New file.
4065         * modules/unictype/category-P-tests: New file.
4066         * modules/unictype/category-Pc-tests: New file.
4067         * modules/unictype/category-Pd-tests: New file.
4068         * modules/unictype/category-Pe-tests: New file.
4069         * modules/unictype/category-Pf-tests: New file.
4070         * modules/unictype/category-Pi-tests: New file.
4071         * modules/unictype/category-Po-tests: New file.
4072         * modules/unictype/category-Ps-tests: New file.
4073         * modules/unictype/category-S-tests: New file.
4074         * modules/unictype/category-Sc-tests: New file.
4075         * modules/unictype/category-Sk-tests: New file.
4076         * modules/unictype/category-Sm-tests: New file.
4077         * modules/unictype/category-So-tests: New file.
4078         * modules/unictype/category-Z-tests: New file.
4079         * modules/unictype/category-Zl-tests: New file.
4080         * modules/unictype/category-Zp-tests: New file.
4081         * modules/unictype/category-Zs-tests: New file.
4082         * modules/unictype/category-and-not-tests: New file.
4083         * modules/unictype/category-and-tests: New file.
4084         * modules/unictype/category-byname-tests: New file.
4085         * modules/unictype/category-name-tests: New file.
4086         * modules/unictype/category-none-tests: New file.
4087         * modules/unictype/category-of-tests: New file.
4088         * modules/unictype/category-or-tests: New file.
4089         * modules/unictype/category-test-withtable-tests: New file.
4090         * modules/unictype/combining-class-tests: New file.
4091         * modules/unictype/ctype-alnum-tests: New file.
4092         * modules/unictype/ctype-alpha-tests: New file.
4093         * modules/unictype/ctype-blank-tests: New file.
4094         * modules/unictype/ctype-cntrl-tests: New file.
4095         * modules/unictype/ctype-digit-tests: New file.
4096         * modules/unictype/ctype-graph-tests: New file.
4097         * modules/unictype/ctype-lower-tests: New file.
4098         * modules/unictype/ctype-print-tests: New file.
4099         * modules/unictype/ctype-punct-tests: New file.
4100         * modules/unictype/ctype-space-tests: New file.
4101         * modules/unictype/ctype-upper-tests: New file.
4102         * modules/unictype/ctype-xdigit-tests: New file.
4103         * modules/unictype/decimal-digit-tests: New file.
4104         * modules/unictype/digit-tests: New file.
4105         * modules/unictype/mirror-tests: New file.
4106         * modules/unictype/numeric-tests: New file.
4107         * modules/unictype/property-alphabetic-tests: New file.
4108         * modules/unictype/property-ascii-hex-digit-tests: New file.
4109         * modules/unictype/property-bidi-arabic-digit-tests: New file.
4110         * modules/unictype/property-bidi-arabic-right-to-left-tests: New file.
4111         * modules/unictype/property-bidi-block-separator-tests: New file.
4112         * modules/unictype/property-bidi-boundary-neutral-tests: New file.
4113         * modules/unictype/property-bidi-common-separator-tests: New file.
4114         * modules/unictype/property-bidi-control-tests: New file.
4115         * modules/unictype/property-bidi-embedding-or-override-tests: New file.
4116         * modules/unictype/property-bidi-eur-num-separator-tests: New file.
4117         * modules/unictype/property-bidi-eur-num-terminator-tests: New file.
4118         * modules/unictype/property-bidi-european-digit-tests: New file.
4119         * modules/unictype/property-bidi-hebrew-right-to-left-tests: New file.
4120         * modules/unictype/property-bidi-left-to-right-tests: New file.
4121         * modules/unictype/property-bidi-non-spacing-mark-tests: New file.
4122         * modules/unictype/property-bidi-other-neutral-tests: New file.
4123         * modules/unictype/property-bidi-pdf-tests: New file.
4124         * modules/unictype/property-bidi-segment-separator-tests: New file.
4125         * modules/unictype/property-bidi-whitespace-tests: New file.
4126         * modules/unictype/property-byname-tests: New file.
4127         * modules/unictype/property-combining-tests: New file.
4128         * modules/unictype/property-composite-tests: New file.
4129         * modules/unictype/property-currency-symbol-tests: New file.
4130         * modules/unictype/property-dash-tests: New file.
4131         * modules/unictype/property-decimal-digit-tests: New file.
4132         * modules/unictype/property-default-ignorable-code-point-tests: New file.
4133         * modules/unictype/property-deprecated-tests: New file.
4134         * modules/unictype/property-diacritic-tests: New file.
4135         * modules/unictype/property-extender-tests: New file.
4136         * modules/unictype/property-format-control-tests: New file.
4137         * modules/unictype/property-grapheme-base-tests: New file.
4138         * modules/unictype/property-grapheme-extend-tests: New file.
4139         * modules/unictype/property-grapheme-link-tests: New file.
4140         * modules/unictype/property-hex-digit-tests: New file.
4141         * modules/unictype/property-hyphen-tests: New file.
4142         * modules/unictype/property-id-continue-tests: New file.
4143         * modules/unictype/property-id-start-tests: New file.
4144         * modules/unictype/property-ideographic-tests: New file.
4145         * modules/unictype/property-ids-binary-operator-tests: New file.
4146         * modules/unictype/property-ids-trinary-operator-tests: New file.
4147         * modules/unictype/property-ignorable-control-tests: New file.
4148         * modules/unictype/property-iso-control-tests: New file.
4149         * modules/unictype/property-join-control-tests: New file.
4150         * modules/unictype/property-left-of-pair-tests: New file.
4151         * modules/unictype/property-line-separator-tests: New file.
4152         * modules/unictype/property-logical-order-exception-tests: New file.
4153         * modules/unictype/property-lowercase-tests: New file.
4154         * modules/unictype/property-math-tests: New file.
4155         * modules/unictype/property-non-break-tests: New file.
4156         * modules/unictype/property-not-a-character-tests: New file.
4157         * modules/unictype/property-numeric-tests: New file.
4158         * modules/unictype/property-other-alphabetic-tests: New file.
4159         * modules/unictype/property-other-default-ignorable-code-point-tests: New file.
4160         * modules/unictype/property-other-grapheme-extend-tests: New file.
4161         * modules/unictype/property-other-id-continue-tests: New file.
4162         * modules/unictype/property-other-id-start-tests: New file.
4163         * modules/unictype/property-other-lowercase-tests: New file.
4164         * modules/unictype/property-other-math-tests: New file.
4165         * modules/unictype/property-other-uppercase-tests: New file.
4166         * modules/unictype/property-paired-punctuation-tests: New file.
4167         * modules/unictype/property-paragraph-separator-tests: New file.
4168         * modules/unictype/property-pattern-syntax-tests: New file.
4169         * modules/unictype/property-pattern-white-space-tests: New file.
4170         * modules/unictype/property-private-use-tests: New file.
4171         * modules/unictype/property-punctuation-tests: New file.
4172         * modules/unictype/property-quotation-mark-tests: New file.
4173         * modules/unictype/property-radical-tests: New file.
4174         * modules/unictype/property-sentence-terminal-tests: New file.
4175         * modules/unictype/property-soft-dotted-tests: New file.
4176         * modules/unictype/property-space-tests: New file.
4177         * modules/unictype/property-terminal-punctuation-tests: New file.
4178         * modules/unictype/property-test-tests: New file.
4179         * modules/unictype/property-titlecase-tests: New file.
4180         * modules/unictype/property-unassigned-code-value-tests: New file.
4181         * modules/unictype/property-unified-ideograph-tests: New file.
4182         * modules/unictype/property-uppercase-tests: New file.
4183         * modules/unictype/property-variation-selector-tests: New file.
4184         * modules/unictype/property-white-space-tests: New file.
4185         * modules/unictype/property-xid-continue-tests: New file.
4186         * modules/unictype/property-xid-start-tests: New file.
4187         * modules/unictype/property-zero-width-tests: New file.
4188         * modules/unictype/scripts-tests: New file.
4189         * modules/unictype/syntax-c-ident-tests: New file.
4190         * modules/unictype/syntax-c-whitespace-tests: New file.
4191         * modules/unictype/syntax-java-ident-tests: New file.
4192         * modules/unictype/syntax-java-whitespace-tests: New file.
4193         * tests/unictype/test-bidi_byname.c: New file.
4194         * tests/unictype/test-bidi_name.c: New file.
4195         * tests/unictype/test-bidi_of.c: New file.
4196         * tests/unictype/test-bidi_test.c: New file.
4197         * tests/unictype/test-block_list.c: New file.
4198         * tests/unictype/test-block_of.c: New file.
4199         * tests/unictype/test-block_test.c: New file.
4200         * tests/unictype/test-categ_and.c: New file.
4201         * tests/unictype/test-categ_and_not.c: New file.
4202         * tests/unictype/test-categ_byname.c: New file.
4203         * tests/unictype/test-categ_name.c: New file.
4204         * tests/unictype/test-categ_none.c: New file.
4205         * tests/unictype/test-categ_of.c: New file.
4206         * tests/unictype/test-categ_or.c: New file.
4207         * tests/unictype/test-categ_test_withtable.c: New file.
4208         * tests/unictype/test-combining.c: New file.
4209         * tests/unictype/test-decdigit.c: New file.
4210         * tests/unictype/test-digit.c: New file.
4211         * tests/unictype/test-mirror.c: New file.
4212         * tests/unictype/test-numeric.c: New file.
4213         * tests/unictype/test-pr_byname.c: New file.
4214         * tests/unictype/test-pr_test.c: New file.
4215         * tests/unictype/test-predicate-part1.h: New file.
4216         * tests/unictype/test-predicate-part2.h: New file.
4217         * tests/unictype/test-scripts.c: New file.
4218         * tests/unictype/test-sy_c_ident.c: New file.
4219         * tests/unictype/test-sy_java_ident.c: New file.
4220
4221         * tests/unictype/test-categ_C.c: New file, generated by gen-ctype.c
4222         for Unicode 5.0.0.
4223         * tests/unictype/test-categ_Cc.c: Likewise.
4224         * tests/unictype/test-categ_Cf.c: Likewise.
4225         * tests/unictype/test-categ_Cn.c: Likewise.
4226         * tests/unictype/test-categ_Co.c: Likewise.
4227         * tests/unictype/test-categ_Cs.c: Likewise.
4228         * tests/unictype/test-categ_L.c: Likewise.
4229         * tests/unictype/test-categ_Ll.c: Likewise.
4230         * tests/unictype/test-categ_Lm.c: Likewise.
4231         * tests/unictype/test-categ_Lo.c: Likewise.
4232         * tests/unictype/test-categ_Lt.c: Likewise.
4233         * tests/unictype/test-categ_Lu.c: Likewise.
4234         * tests/unictype/test-categ_M.c: Likewise.
4235         * tests/unictype/test-categ_Mc.c: Likewise.
4236         * tests/unictype/test-categ_Me.c: Likewise.
4237         * tests/unictype/test-categ_Mn.c: Likewise.
4238         * tests/unictype/test-categ_N.c: Likewise.
4239         * tests/unictype/test-categ_Nd.c: Likewise.
4240         * tests/unictype/test-categ_Nl.c: Likewise.
4241         * tests/unictype/test-categ_No.c: Likewise.
4242         * tests/unictype/test-categ_P.c: Likewise.
4243         * tests/unictype/test-categ_Pc.c: Likewise.
4244         * tests/unictype/test-categ_Pd.c: Likewise.
4245         * tests/unictype/test-categ_Pe.c: Likewise.
4246         * tests/unictype/test-categ_Pf.c: Likewise.
4247         * tests/unictype/test-categ_Pi.c: Likewise.
4248         * tests/unictype/test-categ_Po.c: Likewise.
4249         * tests/unictype/test-categ_Ps.c: Likewise.
4250         * tests/unictype/test-categ_S.c: Likewise.
4251         * tests/unictype/test-categ_Sc.c: Likewise.
4252         * tests/unictype/test-categ_Sk.c: Likewise.
4253         * tests/unictype/test-categ_Sm.c: Likewise.
4254         * tests/unictype/test-categ_So.c: Likewise.
4255         * tests/unictype/test-categ_Z.c: Likewise.
4256         * tests/unictype/test-categ_Zl.c: Likewise.
4257         * tests/unictype/test-categ_Zp.c: Likewise.
4258         * tests/unictype/test-categ_Zs.c: Likewise.
4259         * tests/unictype/test-ctype_alnum.c: Likewise.
4260         * tests/unictype/test-ctype_alpha.c: Likewise.
4261         * tests/unictype/test-ctype_blank.c: Likewise.
4262         * tests/unictype/test-ctype_cntrl.c: Likewise.
4263         * tests/unictype/test-ctype_digit.c: Likewise.
4264         * tests/unictype/test-ctype_graph.c: Likewise.
4265         * tests/unictype/test-ctype_lower.c: Likewise.
4266         * tests/unictype/test-ctype_print.c: Likewise.
4267         * tests/unictype/test-ctype_punct.c: Likewise.
4268         * tests/unictype/test-ctype_space.c: Likewise.
4269         * tests/unictype/test-ctype_upper.c: Likewise.
4270         * tests/unictype/test-ctype_xdigit.c: Likewise.
4271         * tests/unictype/test-decdigit.h: Likewise.
4272         * tests/unictype/test-digit.h: Likewise.
4273         * tests/unictype/test-numeric.h: Likewise.
4274         * tests/unictype/test-pr_alphabetic.c: Likewise.
4275         * tests/unictype/test-pr_ascii_hex_digit.c: Likewise.
4276         * tests/unictype/test-pr_bidi_arabic_digit.c: Likewise.
4277         * tests/unictype/test-pr_bidi_arabic_right_to_left.c: Likewise.
4278         * tests/unictype/test-pr_bidi_block_separator.c: Likewise.
4279         * tests/unictype/test-pr_bidi_boundary_neutral.c: Likewise.
4280         * tests/unictype/test-pr_bidi_common_separator.c: Likewise.
4281         * tests/unictype/test-pr_bidi_control.c: Likewise.
4282         * tests/unictype/test-pr_bidi_embedding_or_override.c: Likewise.
4283         * tests/unictype/test-pr_bidi_eur_num_separator.c: Likewise.
4284         * tests/unictype/test-pr_bidi_eur_num_terminator.c: Likewise.
4285         * tests/unictype/test-pr_bidi_european_digit.c: Likewise.
4286         * tests/unictype/test-pr_bidi_hebrew_right_to_left.c: Likewise.
4287         * tests/unictype/test-pr_bidi_left_to_right.c: Likewise.
4288         * tests/unictype/test-pr_bidi_non_spacing_mark.c: Likewise.
4289         * tests/unictype/test-pr_bidi_other_neutral.c: Likewise.
4290         * tests/unictype/test-pr_bidi_pdf.c: Likewise.
4291         * tests/unictype/test-pr_bidi_segment_separator.c: Likewise.
4292         * tests/unictype/test-pr_bidi_whitespace.c: Likewise.
4293         * tests/unictype/test-pr_combining.c: Likewise.
4294         * tests/unictype/test-pr_composite.c: Likewise.
4295         * tests/unictype/test-pr_currency_symbol.c: Likewise.
4296         * tests/unictype/test-pr_dash.c: Likewise.
4297         * tests/unictype/test-pr_decimal_digit.c: Likewise.
4298         * tests/unictype/test-pr_default_ignorable_code_point.c: Likewise.
4299         * tests/unictype/test-pr_deprecated.c: Likewise.
4300         * tests/unictype/test-pr_diacritic.c: Likewise.
4301         * tests/unictype/test-pr_extender.c: Likewise.
4302         * tests/unictype/test-pr_format_control.c: Likewise.
4303         * tests/unictype/test-pr_grapheme_base.c: Likewise.
4304         * tests/unictype/test-pr_grapheme_extend.c: Likewise.
4305         * tests/unictype/test-pr_grapheme_link.c: Likewise.
4306         * tests/unictype/test-pr_hex_digit.c: Likewise.
4307         * tests/unictype/test-pr_hyphen.c: Likewise.
4308         * tests/unictype/test-pr_id_continue.c: Likewise.
4309         * tests/unictype/test-pr_id_start.c: Likewise.
4310         * tests/unictype/test-pr_ideographic.c: Likewise.
4311         * tests/unictype/test-pr_ids_binary_operator.c: Likewise.
4312         * tests/unictype/test-pr_ids_trinary_operator.c: Likewise.
4313         * tests/unictype/test-pr_ignorable_control.c: Likewise.
4314         * tests/unictype/test-pr_iso_control.c: Likewise.
4315         * tests/unictype/test-pr_join_control.c: Likewise.
4316         * tests/unictype/test-pr_left_of_pair.c: Likewise.
4317         * tests/unictype/test-pr_line_separator.c: Likewise.
4318         * tests/unictype/test-pr_logical_order_exception.c: Likewise.
4319         * tests/unictype/test-pr_lowercase.c: Likewise.
4320         * tests/unictype/test-pr_math.c: Likewise.
4321         * tests/unictype/test-pr_non_break.c: Likewise.
4322         * tests/unictype/test-pr_not_a_character.c: Likewise.
4323         * tests/unictype/test-pr_numeric.c: Likewise.
4324         * tests/unictype/test-pr_other_alphabetic.c: Likewise.
4325         * tests/unictype/test-pr_other_default_ignorable_code_point.c: Likewise.
4326         * tests/unictype/test-pr_other_grapheme_extend.c: Likewise.
4327         * tests/unictype/test-pr_other_id_continue.c: Likewise.
4328         * tests/unictype/test-pr_other_id_start.c: Likewise.
4329         * tests/unictype/test-pr_other_lowercase.c: Likewise.
4330         * tests/unictype/test-pr_other_math.c: Likewise.
4331         * tests/unictype/test-pr_other_uppercase.c: Likewise.
4332         * tests/unictype/test-pr_paired_punctuation.c: Likewise.
4333         * tests/unictype/test-pr_paragraph_separator.c: Likewise.
4334         * tests/unictype/test-pr_pattern_syntax.c: Likewise.
4335         * tests/unictype/test-pr_pattern_white_space.c: Likewise.
4336         * tests/unictype/test-pr_private_use.c: Likewise.
4337         * tests/unictype/test-pr_punctuation.c: Likewise.
4338         * tests/unictype/test-pr_quotation_mark.c: Likewise.
4339         * tests/unictype/test-pr_radical.c: Likewise.
4340         * tests/unictype/test-pr_sentence_terminal.c: Likewise.
4341         * tests/unictype/test-pr_soft_dotted.c: Likewise.
4342         * tests/unictype/test-pr_space.c: Likewise.
4343         * tests/unictype/test-pr_terminal_punctuation.c: Likewise.
4344         * tests/unictype/test-pr_titlecase.c: Likewise.
4345         * tests/unictype/test-pr_unassigned_code_value.c: Likewise.
4346         * tests/unictype/test-pr_unified_ideograph.c: Likewise.
4347         * tests/unictype/test-pr_uppercase.c: Likewise.
4348         * tests/unictype/test-pr_variation_selector.c: Likewise.
4349         * tests/unictype/test-pr_white_space.c: Likewise.
4350         * tests/unictype/test-pr_xid_continue.c: Likewise.
4351         * tests/unictype/test-pr_xid_start.c: Likewise.
4352         * tests/unictype/test-pr_zero_width.c: Likewise.
4353         * tests/unictype/test-sy_c_whitespace.c: Likewise.
4354         * tests/unictype/test-sy_java_whitespace.c: Likewise.
4355
4356 2007-11-12  Bruno Haible  <bruno@clisp.org>
4357
4358         Unicode character classification functions.
4359         * lib/unictype.h: New file.
4360         * modules/unictype/base: New file.
4361         * modules/unictype/category-L: New file.
4362         * modules/unictype/category-Lu: New file.
4363         * modules/unictype/category-Ll: New file.
4364         * modules/unictype/category-Lt: New file.
4365         * modules/unictype/category-Lm: New file.
4366         * modules/unictype/category-Lo: New file.
4367         * modules/unictype/category-M: New file.
4368         * modules/unictype/category-Mn: New file.
4369         * modules/unictype/category-Mc: New file.
4370         * modules/unictype/category-Me: New file.
4371         * modules/unictype/category-N: New file.
4372         * modules/unictype/category-Nd: New file.
4373         * modules/unictype/category-Nl: New file.
4374         * modules/unictype/category-No: New file.
4375         * modules/unictype/category-P: New file.
4376         * modules/unictype/category-Pc: New file.
4377         * modules/unictype/category-Pd: New file.
4378         * modules/unictype/category-Ps: New file.
4379         * modules/unictype/category-Pe: New file.
4380         * modules/unictype/category-Pi: New file.
4381         * modules/unictype/category-Pf: New file.
4382         * modules/unictype/category-Po: New file.
4383         * modules/unictype/category-S: New file.
4384         * modules/unictype/category-Sm: New file.
4385         * modules/unictype/category-Sc: New file.
4386         * modules/unictype/category-Sk: New file.
4387         * modules/unictype/category-So: New file.
4388         * modules/unictype/category-Z: New file.
4389         * modules/unictype/category-Zs: New file.
4390         * modules/unictype/category-Zl: New file.
4391         * modules/unictype/category-Zp: New file.
4392         * modules/unictype/category-C: New file.
4393         * modules/unictype/category-Cc: New file.
4394         * modules/unictype/category-Cf: New file.
4395         * modules/unictype/category-Cs: New file.
4396         * modules/unictype/category-Co: New file.
4397         * modules/unictype/category-Cn: New file.
4398         * modules/unictype/category-or: New file.
4399         * modules/unictype/category-of: New file.
4400         * modules/unictype/category-test: New file.
4401         * modules/unictype/category-test-withtable: New file.
4402         * modules/unictype/category-byname: New file.
4403         * modules/unictype/category-none: New file.
4404         * modules/unictype/category-and: New file.
4405         * modules/unictype/category-and-not: New file.
4406         * modules/unictype/category-name: New file.
4407         * modules/unictype/combining-class: New file.
4408         * modules/unictype/category-all: New file.
4409         * modules/unictype/bidicategory-all: New file.
4410         * modules/unictype/bidicategory-byname: New file.
4411         * modules/unictype/bidicategory-name: New file.
4412         * modules/unictype/bidicategory-of: New file.
4413         * modules/unictype/bidicategory-test: New file.
4414         * modules/unictype/decimal-digit: New file.
4415         * modules/unictype/digit: New file.
4416         * modules/unictype/numeric: New file.
4417         * modules/unictype/mirror: New file.
4418         * modules/unictype/property-white-space: New file.
4419         * modules/unictype/property-alphabetic: New file.
4420         * modules/unictype/property-other-alphabetic: New file.
4421         * modules/unictype/property-not-a-character: New file.
4422         * modules/unictype/property-default-ignorable-code-point: New file.
4423         * modules/unictype/property-other-default-ignorable-code-point: New
4424         file.
4425         * modules/unictype/property-deprecated: New file.
4426         * modules/unictype/property-logical-order-exception: New file.
4427         * modules/unictype/property-variation-selector: New file.
4428         * modules/unictype/property-private-use: New file.
4429         * modules/unictype/property-unassigned-code-value: New file.
4430         * modules/unictype/property-uppercase: New file.
4431         * modules/unictype/property-other-uppercase: New file.
4432         * modules/unictype/property-lowercase: New file.
4433         * modules/unictype/property-other-lowercase: New file.
4434         * modules/unictype/property-titlecase: New file.
4435         * modules/unictype/property-soft-dotted: New file.
4436         * modules/unictype/property-id-start: New file.
4437         * modules/unictype/property-other-id-start: New file.
4438         * modules/unictype/property-id-continue: New file.
4439         * modules/unictype/property-other-id-continue: New file.
4440         * modules/unictype/property-xid-start: New file.
4441         * modules/unictype/property-xid-continue: New file.
4442         * modules/unictype/property-pattern-white-space: New file.
4443         * modules/unictype/property-pattern-syntax: New file.
4444         * modules/unictype/property-join-control: New file.
4445         * modules/unictype/property-grapheme-base: New file.
4446         * modules/unictype/property-grapheme-extend: New file.
4447         * modules/unictype/property-other-grapheme-extend: New file.
4448         * modules/unictype/property-grapheme-link: New file.
4449         * modules/unictype/property-bidi-control: New file.
4450         * modules/unictype/property-bidi-left-to-right: New file.
4451         * modules/unictype/property-bidi-hebrew-right-to-left: New file.
4452         * modules/unictype/property-bidi-arabic-right-to-left: New file.
4453         * modules/unictype/property-bidi-european-digit: New file.
4454         * modules/unictype/property-bidi-eur-num-separator: New file.
4455         * modules/unictype/property-bidi-eur-num-terminator: New file.
4456         * modules/unictype/property-bidi-arabic-digit: New file.
4457         * modules/unictype/property-bidi-common-separator: New file.
4458         * modules/unictype/property-bidi-block-separator: New file.
4459         * modules/unictype/property-bidi-segment-separator: New file.
4460         * modules/unictype/property-bidi-whitespace: New file.
4461         * modules/unictype/property-bidi-non-spacing-mark: New file.
4462         * modules/unictype/property-bidi-boundary-neutral: New file.
4463         * modules/unictype/property-bidi-pdf: New file.
4464         * modules/unictype/property-bidi-embedding-or-override: New file.
4465         * modules/unictype/property-bidi-other-neutral: New file.
4466         * modules/unictype/property-hex-digit: New file.
4467         * modules/unictype/property-ascii-hex-digit: New file.
4468         * modules/unictype/property-ideographic: New file.
4469         * modules/unictype/property-unified-ideograph: New file.
4470         * modules/unictype/property-radical: New file.
4471         * modules/unictype/property-ids-binary-operator: New file.
4472         * modules/unictype/property-ids-trinary-operator: New file.
4473         * modules/unictype/property-zero-width: New file.
4474         * modules/unictype/property-space: New file.
4475         * modules/unictype/property-non-break: New file.
4476         * modules/unictype/property-iso-control: New file.
4477         * modules/unictype/property-format-control: New file.
4478         * modules/unictype/property-dash: New file.
4479         * modules/unictype/property-hyphen: New file.
4480         * modules/unictype/property-punctuation: New file.
4481         * modules/unictype/property-line-separator: New file.
4482         * modules/unictype/property-paragraph-separator: New file.
4483         * modules/unictype/property-quotation-mark: New file.
4484         * modules/unictype/property-sentence-terminal: New file.
4485         * modules/unictype/property-terminal-punctuation: New file.
4486         * modules/unictype/property-currency-symbol: New file.
4487         * modules/unictype/property-math: New file.
4488         * modules/unictype/property-other-math: New file.
4489         * modules/unictype/property-paired-punctuation: New file.
4490         * modules/unictype/property-left-of-pair: New file.
4491         * modules/unictype/property-combining: New file.
4492         * modules/unictype/property-composite: New file.
4493         * modules/unictype/property-decimal-digit: New file.
4494         * modules/unictype/property-numeric: New file.
4495         * modules/unictype/property-diacritic: New file.
4496         * modules/unictype/property-extender: New file.
4497         * modules/unictype/property-ignorable-control: New file.
4498         * modules/unictype/property-test: New file.
4499         * modules/unictype/property-byname: New file.
4500         * modules/unictype/property-all: New file.
4501         * modules/unictype/scripts: New file.
4502         * modules/unictype/scripts-all: New file.
4503         * modules/unictype/block-of: New file.
4504         * modules/unictype/block-test: New file.
4505         * modules/unictype/block-list: New file.
4506         * modules/unictype/block-all: New file.
4507         * modules/unictype/syntax-c-whitespace: New file.
4508         * modules/unictype/syntax-java-whitespace: New file.
4509         * modules/unictype/syntax-c-ident: New file.
4510         * modules/unictype/syntax-java-ident: New file.
4511         * modules/unictype/ctype-alnum: New file.
4512         * modules/unictype/ctype-alpha: New file.
4513         * modules/unictype/ctype-cntrl: New file.
4514         * modules/unictype/ctype-digit: New file.
4515         * modules/unictype/ctype-graph: New file.
4516         * modules/unictype/ctype-lower: New file.
4517         * modules/unictype/ctype-print: New file.
4518         * modules/unictype/ctype-punct: New file.
4519         * modules/unictype/ctype-space: New file.
4520         * modules/unictype/ctype-upper: New file.
4521         * modules/unictype/ctype-xdigit: New file.
4522         * modules/unictype/ctype-blank: New file.
4523         * lib/unictype/bidi_byname.c: New file.
4524         * lib/unictype/bidi_name.c: New file.
4525         * lib/unictype/bidi_of.c: New file.
4526         * lib/unictype/bidi_test.c: New file.
4527         * lib/unictype/bitmap.h: New file.
4528         * lib/unictype/block_test.c: New file.
4529         * lib/unictype/blocks.c: New file.
4530         * lib/unictype/categ_C.c: New file.
4531         * lib/unictype/categ_Cc.c: New file.
4532         * lib/unictype/categ_Cf.c: New file.
4533         * lib/unictype/categ_Cn.c: New file.
4534         * lib/unictype/categ_Co.c: New file.
4535         * lib/unictype/categ_Cs.c: New file.
4536         * lib/unictype/categ_L.c: New file.
4537         * lib/unictype/categ_Ll.c: New file.
4538         * lib/unictype/categ_Lm.c: New file.
4539         * lib/unictype/categ_Lo.c: New file.
4540         * lib/unictype/categ_Lt.c: New file.
4541         * lib/unictype/categ_Lu.c: New file.
4542         * lib/unictype/categ_M.c: New file.
4543         * lib/unictype/categ_Mc.c: New file.
4544         * lib/unictype/categ_Me.c: New file.
4545         * lib/unictype/categ_Mn.c: New file.
4546         * lib/unictype/categ_N.c: New file.
4547         * lib/unictype/categ_Nd.c: New file.
4548         * lib/unictype/categ_Nl.c: New file.
4549         * lib/unictype/categ_No.c: New file.
4550         * lib/unictype/categ_P.c: New file.
4551         * lib/unictype/categ_Pc.c: New file.
4552         * lib/unictype/categ_Pd.c: New file.
4553         * lib/unictype/categ_Pe.c: New file.
4554         * lib/unictype/categ_Pf.c: New file.
4555         * lib/unictype/categ_Pi.c: New file.
4556         * lib/unictype/categ_Po.c: New file.
4557         * lib/unictype/categ_Ps.c: New file.
4558         * lib/unictype/categ_S.c: New file.
4559         * lib/unictype/categ_Sc.c: New file.
4560         * lib/unictype/categ_Sk.c: New file.
4561         * lib/unictype/categ_Sm.c: New file.
4562         * lib/unictype/categ_So.c: New file.
4563         * lib/unictype/categ_Z.c: New file.
4564         * lib/unictype/categ_Zl.c: New file.
4565         * lib/unictype/categ_Zp.c: New file.
4566         * lib/unictype/categ_Zs.c: New file.
4567         * lib/unictype/categ_and.c: New file.
4568         * lib/unictype/categ_and_not.c: New file.
4569         * lib/unictype/categ_byname.c: New file.
4570         * lib/unictype/categ_name.c: New file.
4571         * lib/unictype/categ_none.c: New file.
4572         * lib/unictype/categ_of.c: New file.
4573         * lib/unictype/categ_or.c: New file.
4574         * lib/unictype/categ_test.c: New file.
4575         * lib/unictype/combining.c: New file.
4576         * lib/unictype/ctype_alnum.c: New file.
4577         * lib/unictype/ctype_alpha.c: New file.
4578         * lib/unictype/ctype_blank.c: New file.
4579         * lib/unictype/ctype_cntrl.c: New file.
4580         * lib/unictype/ctype_digit.c: New file.
4581         * lib/unictype/ctype_graph.c: New file.
4582         * lib/unictype/ctype_lower.c: New file.
4583         * lib/unictype/ctype_print.c: New file.
4584         * lib/unictype/ctype_punct.c: New file.
4585         * lib/unictype/ctype_space.c: New file.
4586         * lib/unictype/ctype_upper.c: New file.
4587         * lib/unictype/ctype_xdigit.c: New file.
4588         * lib/unictype/decdigit.c: New file.
4589         * lib/unictype/digit.c: New file.
4590         * lib/unictype/identsyntaxmap.h: New file.
4591         * lib/unictype/mirror.c: New file.
4592         * lib/unictype/numeric.c: New file.
4593         * lib/unictype/pr_alphabetic.c: New file.
4594         * lib/unictype/pr_ascii_hex_digit.c: New file.
4595         * lib/unictype/pr_bidi_arabic_digit.c: New file.
4596         * lib/unictype/pr_bidi_arabic_right_to_left.c: New file.
4597         * lib/unictype/pr_bidi_block_separator.c: New file.
4598         * lib/unictype/pr_bidi_boundary_neutral.c: New file.
4599         * lib/unictype/pr_bidi_common_separator.c: New file.
4600         * lib/unictype/pr_bidi_control.c: New file.
4601         * lib/unictype/pr_bidi_embedding_or_override.c: New file.
4602         * lib/unictype/pr_bidi_eur_num_separator.c: New file.
4603         * lib/unictype/pr_bidi_eur_num_terminator.c: New file.
4604         * lib/unictype/pr_bidi_european_digit.c: New file.
4605         * lib/unictype/pr_bidi_hebrew_right_to_left.c: New file.
4606         * lib/unictype/pr_bidi_left_to_right.c: New file.
4607         * lib/unictype/pr_bidi_non_spacing_mark.c: New file.
4608         * lib/unictype/pr_bidi_other_neutral.c: New file.
4609         * lib/unictype/pr_bidi_pdf.c: New file.
4610         * lib/unictype/pr_bidi_segment_separator.c: New file.
4611         * lib/unictype/pr_bidi_whitespace.c: New file.
4612         * lib/unictype/pr_byname.c: New file.
4613         * lib/unictype/pr_byname.gperf: New file.
4614         * lib/unictype/pr_combining.c: New file.
4615         * lib/unictype/pr_composite.c: New file.
4616         * lib/unictype/pr_currency_symbol.c: New file.
4617         * lib/unictype/pr_dash.c: New file.
4618         * lib/unictype/pr_decimal_digit.c: New file.
4619         * lib/unictype/pr_default_ignorable_code_point.c: New file.
4620         * lib/unictype/pr_deprecated.c: New file.
4621         * lib/unictype/pr_diacritic.c: New file.
4622         * lib/unictype/pr_extender.c: New file.
4623         * lib/unictype/pr_format_control.c: New file.
4624         * lib/unictype/pr_grapheme_base.c: New file.
4625         * lib/unictype/pr_grapheme_extend.c: New file.
4626         * lib/unictype/pr_grapheme_link.c: New file.
4627         * lib/unictype/pr_hex_digit.c: New file.
4628         * lib/unictype/pr_hyphen.c: New file.
4629         * lib/unictype/pr_id_continue.c: New file.
4630         * lib/unictype/pr_id_start.c: New file.
4631         * lib/unictype/pr_ideographic.c: New file.
4632         * lib/unictype/pr_ids_binary_operator.c: New file.
4633         * lib/unictype/pr_ids_trinary_operator.c: New file.
4634         * lib/unictype/pr_ignorable_control.c: New file.
4635         * lib/unictype/pr_iso_control.c: New file.
4636         * lib/unictype/pr_join_control.c: New file.
4637         * lib/unictype/pr_left_of_pair.c: New file.
4638         * lib/unictype/pr_line_separator.c: New file.
4639         * lib/unictype/pr_logical_order_exception.c: New file.
4640         * lib/unictype/pr_lowercase.c: New file.
4641         * lib/unictype/pr_math.c: New file.
4642         * lib/unictype/pr_non_break.c: New file.
4643         * lib/unictype/pr_not_a_character.c: New file.
4644         * lib/unictype/pr_numeric.c: New file.
4645         * lib/unictype/pr_other_alphabetic.c: New file.
4646         * lib/unictype/pr_other_default_ignorable_code_point.c: New file.
4647         * lib/unictype/pr_other_grapheme_extend.c: New file.
4648         * lib/unictype/pr_other_id_continue.c: New file.
4649         * lib/unictype/pr_other_id_start.c: New file.
4650         * lib/unictype/pr_other_lowercase.c: New file.
4651         * lib/unictype/pr_other_math.c: New file.
4652         * lib/unictype/pr_other_uppercase.c: New file.
4653         * lib/unictype/pr_paired_punctuation.c: New file.
4654         * lib/unictype/pr_paragraph_separator.c: New file.
4655         * lib/unictype/pr_pattern_syntax.c: New file.
4656         * lib/unictype/pr_pattern_white_space.c: New file.
4657         * lib/unictype/pr_private_use.c: New file.
4658         * lib/unictype/pr_punctuation.c: New file.
4659         * lib/unictype/pr_quotation_mark.c: New file.
4660         * lib/unictype/pr_radical.c: New file.
4661         * lib/unictype/pr_sentence_terminal.c: New file.
4662         * lib/unictype/pr_soft_dotted.c: New file.
4663         * lib/unictype/pr_space.c: New file.
4664         * lib/unictype/pr_terminal_punctuation.c: New file.
4665         * lib/unictype/pr_test.c: New file.
4666         * lib/unictype/pr_titlecase.c: New file.
4667         * lib/unictype/pr_unassigned_code_value.c: New file.
4668         * lib/unictype/pr_unified_ideograph.c: New file.
4669         * lib/unictype/pr_uppercase.c: New file.
4670         * lib/unictype/pr_variation_selector.c: New file.
4671         * lib/unictype/pr_white_space.c: New file.
4672         * lib/unictype/pr_xid_continue.c: New file.
4673         * lib/unictype/pr_xid_start.c: New file.
4674         * lib/unictype/pr_zero_width.c: New file.
4675         * lib/unictype/scripts.c: New file.
4676         * lib/unictype/sy_c_ident.c: New file.
4677         * lib/unictype/sy_c_whitespace.c: New file.
4678         * lib/unictype/sy_java_ident.c: New file.
4679         * lib/unictype/sy_java_whitespace.c: New file.
4680
4681         * lib/unictype/bidi_of.h: New file, generated by gen-ctype.c for
4682         Unicode 5.0.0.
4683         * lib/unictype/blocks.h: Likewise.
4684         * lib/unictype/categ_C.h: Likewise.
4685         * lib/unictype/categ_Cc.h: Likewise.
4686         * lib/unictype/categ_Cf.h: Likewise.
4687         * lib/unictype/categ_Cn.h: Likewise.
4688         * lib/unictype/categ_Co.h: Likewise.
4689         * lib/unictype/categ_Cs.h: Likewise.
4690         * lib/unictype/categ_L.h: Likewise.
4691         * lib/unictype/categ_Ll.h: Likewise.
4692         * lib/unictype/categ_Lm.h: Likewise.
4693         * lib/unictype/categ_Lo.h: Likewise.
4694         * lib/unictype/categ_Lt.h: Likewise.
4695         * lib/unictype/categ_Lu.h: Likewise.
4696         * lib/unictype/categ_M.h: Likewise.
4697         * lib/unictype/categ_Mc.h: Likewise.
4698         * lib/unictype/categ_Me.h: Likewise.
4699         * lib/unictype/categ_Mn.h: Likewise.
4700         * lib/unictype/categ_N.h: Likewise.
4701         * lib/unictype/categ_Nd.h: Likewise.
4702         * lib/unictype/categ_Nl.h: Likewise.
4703         * lib/unictype/categ_No.h: Likewise.
4704         * lib/unictype/categ_P.h: Likewise.
4705         * lib/unictype/categ_Pc.h: Likewise.
4706         * lib/unictype/categ_Pd.h: Likewise.
4707         * lib/unictype/categ_Pe.h: Likewise.
4708         * lib/unictype/categ_Pf.h: Likewise.
4709         * lib/unictype/categ_Pi.h: Likewise.
4710         * lib/unictype/categ_Po.h: Likewise.
4711         * lib/unictype/categ_Ps.h: Likewise.
4712         * lib/unictype/categ_S.h: Likewise.
4713         * lib/unictype/categ_Sc.h: Likewise.
4714         * lib/unictype/categ_Sk.h: Likewise.
4715         * lib/unictype/categ_Sm.h: Likewise.
4716         * lib/unictype/categ_So.h: Likewise.
4717         * lib/unictype/categ_Z.h: Likewise.
4718         * lib/unictype/categ_Zl.h: Likewise.
4719         * lib/unictype/categ_Zp.h: Likewise.
4720         * lib/unictype/categ_Zs.h: Likewise.
4721         * lib/unictype/categ_of.h: Likewise.
4722         * lib/unictype/combining.h: Likewise.
4723         * lib/unictype/ctype_alnum.h: Likewise.
4724         * lib/unictype/ctype_alpha.h: Likewise.
4725         * lib/unictype/ctype_blank.h: Likewise.
4726         * lib/unictype/ctype_cntrl.h: Likewise.
4727         * lib/unictype/ctype_digit.h: Likewise.
4728         * lib/unictype/ctype_graph.h: Likewise.
4729         * lib/unictype/ctype_lower.h: Likewise.
4730         * lib/unictype/ctype_print.h: Likewise.
4731         * lib/unictype/ctype_punct.h: Likewise.
4732         * lib/unictype/ctype_space.h: Likewise.
4733         * lib/unictype/ctype_upper.h: Likewise.
4734         * lib/unictype/ctype_xdigit.h: Likewise.
4735         * lib/unictype/decdigit.h: Likewise.
4736         * lib/unictype/digit.h: Likewise.
4737         * lib/unictype/mirror.h: Likewise.
4738         * lib/unictype/numeric.h: Likewise.
4739         * lib/unictype/pr_alphabetic.h: Likewise.
4740         * lib/unictype/pr_ascii_hex_digit.h: Likewise.
4741         * lib/unictype/pr_bidi_arabic_digit.h: Likewise.
4742         * lib/unictype/pr_bidi_arabic_right_to_left.h: Likewise.
4743         * lib/unictype/pr_bidi_block_separator.h: Likewise.
4744         * lib/unictype/pr_bidi_boundary_neutral.h: Likewise.
4745         * lib/unictype/pr_bidi_common_separator.h: Likewise.
4746         * lib/unictype/pr_bidi_control.h: Likewise.
4747         * lib/unictype/pr_bidi_embedding_or_override.h: Likewise.
4748         * lib/unictype/pr_bidi_eur_num_separator.h: Likewise.
4749         * lib/unictype/pr_bidi_eur_num_terminator.h: Likewise.
4750         * lib/unictype/pr_bidi_european_digit.h: Likewise.
4751         * lib/unictype/pr_bidi_hebrew_right_to_left.h: Likewise.
4752         * lib/unictype/pr_bidi_left_to_right.h: Likewise.
4753         * lib/unictype/pr_bidi_non_spacing_mark.h: Likewise.
4754         * lib/unictype/pr_bidi_other_neutral.h: Likewise.
4755         * lib/unictype/pr_bidi_pdf.h: Likewise.
4756         * lib/unictype/pr_bidi_segment_separator.h: Likewise.
4757         * lib/unictype/pr_bidi_whitespace.h: Likewise.
4758         * lib/unictype/pr_combining.h: Likewise.
4759         * lib/unictype/pr_composite.h: Likewise.
4760         * lib/unictype/pr_currency_symbol.h: Likewise.
4761         * lib/unictype/pr_dash.h: Likewise.
4762         * lib/unictype/pr_decimal_digit.h: Likewise.
4763         * lib/unictype/pr_default_ignorable_code_point.h: Likewise.
4764         * lib/unictype/pr_deprecated.h: Likewise.
4765         * lib/unictype/pr_diacritic.h: Likewise.
4766         * lib/unictype/pr_extender.h: Likewise.
4767         * lib/unictype/pr_format_control.h: Likewise.
4768         * lib/unictype/pr_grapheme_base.h: Likewise.
4769         * lib/unictype/pr_grapheme_extend.h: Likewise.
4770         * lib/unictype/pr_grapheme_link.h: Likewise.
4771         * lib/unictype/pr_hex_digit.h: Likewise.
4772         * lib/unictype/pr_hyphen.h: Likewise.
4773         * lib/unictype/pr_id_continue.h: Likewise.
4774         * lib/unictype/pr_id_start.h: Likewise.
4775         * lib/unictype/pr_ideographic.h: Likewise.
4776         * lib/unictype/pr_ids_binary_operator.h: Likewise.
4777         * lib/unictype/pr_ids_trinary_operator.h: Likewise.
4778         * lib/unictype/pr_ignorable_control.h: Likewise.
4779         * lib/unictype/pr_iso_control.h: Likewise.
4780         * lib/unictype/pr_join_control.h: Likewise.
4781         * lib/unictype/pr_left_of_pair.h: Likewise.
4782         * lib/unictype/pr_line_separator.h: Likewise.
4783         * lib/unictype/pr_logical_order_exception.h: Likewise.
4784         * lib/unictype/pr_lowercase.h: Likewise.
4785         * lib/unictype/pr_math.h: Likewise.
4786         * lib/unictype/pr_non_break.h: Likewise.
4787         * lib/unictype/pr_not_a_character.h: Likewise.
4788         * lib/unictype/pr_numeric.h: Likewise.
4789         * lib/unictype/pr_other_alphabetic.h: Likewise.
4790         * lib/unictype/pr_other_default_ignorable_code_point.h: Likewise.
4791         * lib/unictype/pr_other_grapheme_extend.h: Likewise.
4792         * lib/unictype/pr_other_id_continue.h: Likewise.
4793         * lib/unictype/pr_other_id_start.h: Likewise.
4794         * lib/unictype/pr_other_lowercase.h: Likewise.
4795         * lib/unictype/pr_other_math.h: Likewise.
4796         * lib/unictype/pr_other_uppercase.h: Likewise.
4797         * lib/unictype/pr_paired_punctuation.h: Likewise.
4798         * lib/unictype/pr_paragraph_separator.h: Likewise.
4799         * lib/unictype/pr_pattern_syntax.h: Likewise.
4800         * lib/unictype/pr_pattern_white_space.h: Likewise.
4801         * lib/unictype/pr_private_use.h: Likewise.
4802         * lib/unictype/pr_punctuation.h: Likewise.
4803         * lib/unictype/pr_quotation_mark.h: Likewise.
4804         * lib/unictype/pr_radical.h: Likewise.
4805         * lib/unictype/pr_sentence_terminal.h: Likewise.
4806         * lib/unictype/pr_soft_dotted.h: Likewise.
4807         * lib/unictype/pr_space.h: Likewise.
4808         * lib/unictype/pr_terminal_punctuation.h: Likewise.
4809         * lib/unictype/pr_titlecase.h: Likewise.
4810         * lib/unictype/pr_unassigned_code_value.h: Likewise.
4811         * lib/unictype/pr_unified_ideograph.h: Likewise.
4812         * lib/unictype/pr_uppercase.h: Likewise.
4813         * lib/unictype/pr_variation_selector.h: Likewise.
4814         * lib/unictype/pr_white_space.h: Likewise.
4815         * lib/unictype/pr_xid_continue.h: Likewise.
4816         * lib/unictype/pr_xid_start.h: Likewise.
4817         * lib/unictype/pr_zero_width.h: Likewise.
4818         * lib/unictype/scripts.h: Likewise.
4819         * lib/unictype/scripts_byname.gperf: Likewise.
4820         * lib/unictype/sy_c_ident.h: Likewise.
4821         * lib/unictype/sy_c_whitespace.h: Likewise.
4822         * lib/unictype/sy_java_ident.h: Likewise.
4823         * lib/unictype/sy_java_whitespace.h: Likewise.
4824
4825         * lib/unictype/Makefile: New file.
4826         * lib/unictype/gen-ctype.c: New file, based on gen-unicode-ctype.c in
4827         glibc.
4828         * lib/unictype/3level.h: New file, copied from glibc.
4829         * lib/unictype/3levelbit.h: New file.
4830
4831 2007-11-11  Bruno Haible  <bruno@clisp.org>
4832
4833         * modules/gperf: New file.
4834         * modules/iconv_open (Depends-on): Add it.
4835         (Makefile.am): Remove the GPERF definition.
4836
4837 2007-11-11  Bruno Haible  <bruno@clisp.org>
4838
4839         * m4/round.m4 (gl_FUNC_ROUND): Test against NetBSD 3.0 bug.
4840         * doc/functions/round.texi: Mention the NetBSD 3.0 bug.
4841
4842 2007-11-11  Bruno Haible  <bruno@clisp.org>
4843
4844         * tests/test-argmatch.c (ARGMATCH_DIE): Undefine.
4845         (usage): Remove function.
4846
4847 2007-11-11  Bruno Haible  <bruno@clisp.org>
4848
4849         * m4/roundf.m4 (gl_FUNC_ROUNDF): Use gl_FUNC_FLOORF_LIBS and
4850         gl_FUNC_CEILF_LIBS.
4851         * m4/round.m4 (gl_FUNC_ROUND): Use gl_FUNC_FLOOR_LIBS and
4852         gl_FUNC_CEIL_LIBS.
4853         * m4/roundl.m4 (gl_FUNC_ROUNDL): Use gl_FUNC_FLOORL_LIBS and
4854         gl_FUNC_CEILL_LIBS.
4855         * modules/roundf (Files): Add m4/floorf.m4, m4/ceilf.m4.
4856         * modules/round (Files): Add m4/floor.m4, m4/ceil.m4.
4857         * modules/roundl (Files): Add m4/floorl.m4, m4/ceill.m4.
4858
4859 2007-11-11  Bruno Haible  <bruno@clisp.org>
4860
4861         * m4/roundf.m4 (gl_FUNC_ROUNDF): Handle the case that floorf and
4862         roundf were declared but do not exist on functions.
4863         * m4/roundl.m4 (gl_FUNC_ROUNDL): Handle the case that floorl and
4864         roundl were declared but do not exist on functions.
4865         * lib/round.c (HAVE_FLOOR_AND_CEIL): Use HAVE_FLOORF_AND_CEILF and
4866         HAVE_FLOORL_AND_CEILL, respectively.
4867         Needed for Sun C on Solaris 10.
4868
4869 2007-11-11  Bruno Haible  <bruno@clisp.org>
4870
4871         * m4/roundf.m4 (gl_FUNC_ROUNDF): Set REPLACE_ROUNDF instead of
4872         HAVE_DECL_ROUNDF. Remove redundant AC_SUBST.
4873         * m4/round.m4 (gl_FUNC_ROUND): Set REPLACE_ROUND instead of
4874         HAVE_DECL_ROUND. Remove redundant AC_SUBST.
4875         * m4/roundl.m4 (gl_FUNC_ROUNDL): Set REPLACE_ROUNDL instead of
4876         HAVE_DECL_ROUNDL. Remove redundant AC_SUBST.
4877         * lib/math.in.h (roundf): Use REPLACE_ROUNDF instead of
4878         HAVE_DECL_ROUNDF.
4879         (round): Use REPLACE_ROUND instead of HAVE_DECL_ROUND.
4880         (roundl): Use REPLACE_ROUNDL instead of HAVE_DECL_ROUNDL.
4881         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize REPLACE_ROUND* instead
4882         of HAVE_DECL_ROUND*.
4883         * modules/math (Makefile.am): Update.
4884
4885 2007-11-10  Bruno Haible  <bruno@clisp.org>
4886
4887         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_PARSE): Use same check for
4888         ptrdiff_t as m4/intl.m4.
4889
4890 2007-11-10  Jim Meyering  <meyering@redhat.com>
4891
4892         Avoid link failure for the argmatch test.
4893         * tests/test-argmatch.c (usage): Define function to avoid a link
4894         failure: argmatch_die requires a usage function.
4895
4896 2007-11-09  Bruno Haible  <bruno@clisp.org>
4897
4898         * doc/functions/snprintf.texi: Mention BeOS deficiency.
4899         * doc/functions/vsnprintf.texi: Likewise.
4900         * lib/vasnprintf.c (VASNPRINTF): Ensure that we never call snprintf
4901         with a size argument < 2.
4902
4903 2007-11-09  Bruno Haible  <bruno@clisp.org>
4904
4905         * lib/vasnprintf.c (VASNPRINTF): Increase reallocation of snprintf
4906         buffer. Fixes an inefficiency introduced on 2007-11-03.
4907
4908 2007-11-09  Bruno Haible  <bruno@clisp.org>
4909
4910         * m4/locale-tr.m4 (gt_LOCALE_TR_UTF8) [BeOS]: Make this test return
4911         none instead of tr_TR. Fixes a failure of test-c-strcasecmp.c.
4912
4913 2007-11-08  Jim Meyering  <meyering@redhat.com>
4914
4915         Change cache variable name prefix "jm_" to "gl_" everywhere.
4916         * m4/d-type.m4, m4/jm-winsz1.m4, m4/jm-winsz2.m4, m4/link-follow.m4:
4917         * m4/putenv.m4, m4/strtoimax.m4, m4/strtoumax.m4, m4/unlink-busy.m4:
4918         * m4/uptime.m4: s/gl_/jm_/
4919
4920 2007-11-07  Bruno Haible  <bruno@clisp.org>
4921
4922         Update to GNU gettext 0.17.
4923         * m4/intl.m4: Update to GNU gettext 0.17.
4924         * m4/po.m4: Likewise.
4925         * modules/gettext (Files): Remove m4/ulonglong.m4.
4926         (configure.ac): Require gettext infrastructure from version 0.17.
4927
4928 2007-11-06  Bruno Haible  <bruno@clisp.org>
4929
4930         * lib/fbufmode.c (fbufmode) [QNX]: Use numerical values for flags; the
4931         symbolic values are not defined in a public header.
4932         * lib/freadable.c (freadable) [QNX]: Likewise.
4933         * lib/freadahead.c (freadahead) [QNX]: Likewise.
4934         * lib/freading.c (freading) [QNX]: Likewise.
4935         * lib/fseterr.c (fseterr) [QNX]: Likewise.
4936         * lib/fwritable.c (fwritable) [QNX]: Likewise.
4937         * lib/fwriting.c (fwriting) [QNX]: Likewise.
4938         * lib/fpurge.c (fpurge) [QNX]: Likewise. Add a return statement.
4939         Reported by Alain Magloire.
4940
4941         * m4/fpending.m4 (gl_FUNC_FPENDING): Add a variant for QNX.
4942
4943 2007-11-05  Bruno Haible  <bruno@clisp.org>
4944
4945         * lib/vasnprintf.c (VASNPRINTF): Expand the NEED_PRINTF_DIRECTIVE_A
4946         code when NEED_PRINTF_LONG_DOUBLE or NEED_PRINTF_DOUBLE is set.
4947         Needed on Cygwin, where !NEED_PRINTF_DIRECTIVE_A && NEED_PRINTF_DOUBLE.
4948         Reported by Eric Blake.
4949
4950 2007-10-27  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
4951             Bruno Haible  <bruno@clisp.org>
4952
4953         * modules/malloc (configure.ac): Define GNULIB_MALLOC_GNU always.
4954         * modules/realloc (configure.ac): Define GNULIB_REALLOC_GNU always.
4955         * lib/realloc.c (SYSTEM_MALLOC_GLIBC_COMPATIBLE): New macro.
4956         (malloc): Undefine also before including <stdlib.h>.
4957         (rpl_realloc): Turn malloc(0) into malloc(1) if necessary.
4958         Needed on OSF/1 4.0.
4959
4960 2007-11-05  Jim Meyering  <meyering@redhat.com>
4961
4962         git-version-gen: sync from coreutils.
4963         * build-aux/git-version-gen: Add comments.
4964         Change the first '-' to '.' in the snapshot version string,
4965         e.g., 6.9-377-08144 -> 6.9.377-08144
4966         Remove first parameter.
4967         Don't declare a version "-dirty" merely because a time
4968         stamp has changed.
4969
4970 2007-11-04  Bruno Haible  <bruno@clisp.org>
4971
4972         * lib/lock.h: Protect all macro definitions containing an 'if'
4973         statement through a "do { ... } while (0)".
4974         * lib/tls.h: Likewise.
4975
4976 2007-11-04  Bruno Haible  <bruno@clisp.org>
4977
4978         * lib/vasnprintf.c (DCHAR_IS_TCHAR, DCHAR_CPY): Undefine at the end.
4979
4980 2007-11-04  Bruno Haible  <bruno@clisp.org>
4981
4982         * m4/printf.m4 (gl_PRINTF_ENOMEM): Use GL_NOCRASH.
4983         * modules/fprintf-posix (Depends-on): Add nocrash.
4984         * modules/snprintf-posix (Depends-on): Likewise.
4985         * modules/sprintf-posix (Depends-on): Likewise.
4986         * modules/vasnprintf-posix (Depends-on): Likewise.
4987         * modules/vasprintf-posix (Depends-on): Likewise.
4988         * modules/vfprintf-posix (Depends-on): Likewise.
4989         * modules/vsnprintf-posix (Depends-on): Likewise.
4990         * modules/vsprintf-posix (Depends-on): Likewise.
4991         * modules/unistdio/u8-vasnprintf (Depends-on): Likewise.
4992         * modules/unistdio/u8-u8-vasnprintf (Depends-on): Likewise.
4993         * modules/unistdio/u16-vasnprintf (Depends-on): Likewise.
4994         * modules/unistdio/u16-u16-vasnprintf (Depends-on): Likewise.
4995         * modules/unistdio/u32-vasnprintf (Depends-on): Likewise.
4996         * modules/unistdio/u32-u32-vasnprintf (Depends-on): Likewise.
4997         * modules/unistdio/ulc-vasnprintf (Depends-on): Likewise.
4998
4999 2007-11-04  Bruno Haible  <bruno@clisp.org>
5000
5001         * modules/nocrash: New file.
5002         * m4/nocrash.m4: New file, taken from GNU clisp. Code taken from
5003         GNU libsigsegv, with permission of GNU libsigsegv's copyright holders.
5004
5005 2007-11-04  Bruno Haible  <bruno@clisp.org>
5006
5007         * tests/test-vasnprintf-posix.c (test_function): Add some tests of
5008         precision handling.
5009         * tests/test-vasprintf-posix.c (test_function): Likewise.
5010         * tests/test-snprintf-posix.h (test_function): Likewise.
5011         * tests/test-sprintf-posix.h (test_function): Likewise.
5012
5013         Fix *printf behaviour for large precisions on mingw and BeOS.
5014         * m4/printf.m4 (gl_PRINTF_PRECISION): New macro.
5015         * lib/vasnprintf.c (VASNPRINTF): Handle NEED_PRINTF_UNBOUNDED_PRECISION.
5016         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_PRECISION): New macro.
5017         (gl_PREREQ_VASNPRINTF_WITH_EXTRAS): Invoke it.
5018         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
5019         gl_PRINTF_PRECISION and test its result. Invoke
5020         gl_PREREQ_VASNPRINTF_PRECISION.
5021         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
5022         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
5023         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
5024         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
5025         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
5026         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
5027         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
5028         * doc/functions/fprintf.texi: Update.
5029         * doc/functions/printf.texi: Update.
5030         * doc/functions/snprintf.texi: Update.
5031         * doc/functions/sprintf.texi: Update.
5032         * doc/functions/vfprintf.texi: Update.
5033         * doc/functions/vprintf.texi: Update.
5034         * doc/functions/vsnprintf.texi: Update.
5035         * doc/functions/vsprintf.texi: Update.
5036
5037 2007-11-04  Bruno Haible  <bruno@clisp.org>
5038
5039         * lib/vasnprintf.c (scale10_round_decimal_decoded): Fix shift loop.
5040
5041 2007-11-04  Bruno Haible  <bruno@clisp.org>
5042
5043         * modules/relocatable-prog (Files): Add m4/lib-ld.m4.
5044         Reported by Sylvain Beucler <beuc@gnu.org>.
5045
5046 2007-11-03  Bruno Haible  <bruno@clisp.org>
5047
5048         * tests/test-fprintf-posix2.sh: New file.
5049         * tests/test-fprintf-posix2.c: New file.
5050         * modules/fprintf-posix-tests (Files): Add them.
5051         (TESTS): Add test-fprintf-posix2.sh.
5052         (configure.ac): Check for getrlimit and setrlimit.
5053         (check_PROGRAMS): Add test-fprintf-posix2.
5054
5055         * tests/test-printf-posix2.sh: New file.
5056         * tests/test-printf-posix2.c: New file.
5057         * modules/printf-posix-tests (Files): Add them.
5058         (TESTS): Add test-printf-posix2.sh.
5059         (configure.ac): Check for getrlimit and setrlimit.
5060         (check_PROGRAMS): Add test-printf-posix2.
5061
5062         Fix *printf behaviour in out-of-memory situations on MacOS X and *BSD.
5063         * m4/printf.m4 (gl_PRINTF_ENOMEM): New macro.
5064         * lib/vasnprintf.c: Implement NEED_PRINTF_DOUBLE.
5065         (decode_double): New function, copied from decode_long_double.
5066         (scale10_round_decimal_decoded): New function, extracted from
5067         scale10_round_decimal_long_double.
5068         (scale10_round_decimal_long_double): Use it.
5069         (scale10_round_decimal_double): New function.
5070         (floorlog10): New function.
5071         (VASNPRINTF): Handle NEED_PRINTF_DOUBLE case.
5072         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_ENOMEM): New macro.
5073         (gl_PREREQ_VASNPRINTF_WITH_EXTRAS): Invoke it.
5074         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
5075         gl_PRINTF_ENOMEM and test its result. Invoke
5076         gl_PREREQ_VASNPRINTF_ENOMEM.
5077         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
5078         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
5079         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
5080         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
5081         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
5082         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
5083         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
5084         * modules/fprintf-posix (Depends-on): Add frexp-nolibm.
5085         * modules/snprintf-posix (Depends-on): Likewise.
5086         * modules/sprintf-posix (Depends-on): Likewise.
5087         * modules/vasnprintf-posix (Depends-on): Likewise.
5088         * modules/vasprintf-posix (Depends-on): Likewise.
5089         * modules/vfprintf-posix (Depends-on): Likewise.
5090         * modules/vsnprintf-posix (Depends-on): Likewise.
5091         * modules/vsprintf-posix (Depends-on): Likewise.
5092         * doc/functions/fprintf.texi: Update.
5093         * doc/functions/printf.texi: Update.
5094         * doc/functions/snprintf.texi: Update.
5095         * doc/functions/sprintf.texi: Update.
5096         * doc/functions/vfprintf.texi: Update.
5097         * doc/functions/vprintf.texi: Update.
5098         * doc/functions/vsnprintf.texi: Update.
5099         * doc/functions/vsprintf.texi: Update.
5100
5101 2007-11-03  Bruno Haible  <bruno@clisp.org>
5102
5103         * modules/frexp-nolibm-tests: New file.
5104
5105         * modules/frexp-nolibm: New file.
5106         * m4/frexp.m4 (gl_FUNC_FREXP_NO_LIBM): New macro.
5107
5108 2007-11-03  Bruno Haible  <bruno@clisp.org>
5109
5110         * lib/vasnprintf.c (VASNPRINTF): Don't assume that snprintf's return
5111         value is C99 compliant.
5112         Needed for OSF/1 5.1.
5113
5114 2007-11-03  Bruno Haible  <bruno@clisp.org>
5115
5116         Fix out-of-memory handling of vasnprintf.
5117         * lib/printf-parse.c: Include <errno.h>.
5118         (PRINTF_PARSE): When failing, set errno to EINVAL or ENOMEM.
5119         * lib/vasnprintf.c (VASNPRINTF): When PRINTF_PARSE fails, assume errno
5120         is already set.
5121
5122 2007-11-02  Eric Blake  <ebb9@byu.net>
5123
5124         Fix tests on cygwin.
5125         * modules/xprintf-posix-tests (Makefile.am): Link against -lintl.
5126
5127 2007-11-01  Bruno Haible  <bruno@clisp.org>
5128
5129         * lib/stdlib.in.h (putenv): Remove the "not POSIX compliant everywhere"
5130         warning.
5131         * doc/functions/putenv.texi: Clarify that the 'putenv' module is not
5132         needed for POSIX compatibility.
5133
5134 2007-11-01  Paul Eggert  <eggert@cs.ucla.edu>
5135
5136         * m4/putenv.m4 (gl_FUNC_PUTENV): Also mention that we're checking
5137         for compatibility with GNU.
5138
5139 2007-11-01  Bruno Haible  <bruno@clisp.org>
5140
5141         * lib/putenv.c: Include <stdlib.h>. Remove rpl_putenv declaration.
5142         (putenv): Renamed from rpl_putenv. Change argument type from
5143         'const char *' to 'char *'.
5144         * m4/putenv.m4 (gl_FUNC_PUTENV): Require gl_STDLIB_H_DEFAULTS. Instead
5145         of defining putenv in config.h, just set REPLACE_PUTENV.
5146         * modules/putenv (Depends-on): Add stdlib.
5147         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
5148         (Include): Use <stdlib.h>.
5149         * lib/stdlib.in.h (putenv): New declaration.
5150         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize GNULIB_PUTENV and
5151         REPLACE_PUTENV.
5152         * modules/stdlib (Makefile.am): Substitute GNULIB_PUTENV and
5153         REPLACE_PUTENV.
5154         Needed for MacOS X 10.5.0.
5155         Reported by Peter O'Gorman <peter@pogma.com>.
5156
5157 2007-11-01  Jim Meyering  <meyering@redhat.com>
5158
5159         Treat an empty date string exactly like "0".
5160         * lib/getdate.y (get_date): Once any isspace or TZ= prefix is consumed,
5161         if the remaining date string (to be parsed) is empty, use "0".
5162         Reported by Mischa Molhoek and discussed in this thread:
5163         <http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/11726>.
5164
5165 2007-10-31  Bruno Haible  <bruno@clisp.org>
5166
5167         * m4/intmax_t.m4 (gl_AC_TYPE_INTMAX_T, gt_AC_TYPE_INTMAX_T): Use
5168         AC_TYPE_LONG_LONG_INT instead of gl_AC_TYPE_LONG_LONG.
5169         * m4/uintmax_t.m4 (gl_AC_TYPE_UINTMAX_T): Use
5170         AC_TYPE_UNSIGNED_LONG_LONG_INT instead of gl_AC_TYPE_UNSIGNED_LONG_LONG.
5171         * m4/longlong.m4 (gl_AC_TYPE_LONG_LONG): Remove macro.
5172         * m4/ulonglong.m4 (gl_AC_TYPE_UNSIGNED_LONG_LONG): Remove macro.
5173
5174 2007-10-31  Bruno Haible  <bruno@clisp.org>
5175
5176         * m4/longlong.m4 (_AC_TYPE_LONG_LONG_SNIPPET): New macro, extracted
5177         from AC_TYPE_LONG_LONG_INT and AC_TYPE_UNSIGNED_LONG_LONG_INT.
5178         (AC_TYPE_LONG_LONG_INT): Use it.
5179         (AC_TYPE_UNSIGNED_LONG_LONG_INT): Moved here from m4/ulonglong.m4. Use
5180         it as well.
5181         * m4/ulonglong.m4 (AC_TYPE_UNSIGNED_LONG_LONG_INT): Remove macro; moved
5182         to m4/longlong.m4.
5183         * modules/stdint (Files): Remove m4/ulonglong.m4.
5184         * modules/strtoull (Files): Use m4/longlong.m4 instead of
5185         m4/ulonglong.m4.
5186         * modules/strtoumax (Files): Likewise.
5187
5188 2007-10-30  Bruno Haible  <bruno@clisp.org>
5189
5190         * modules/xvasprintf-posix: New file.
5191         Suggested by Eric Blake.
5192
5193 2007-10-30  Bruno Haible  <bruno@clisp.org>
5194
5195         * modules/xprintf-posix-tests: New file.
5196         * tests/test-xprintf-posix.sh: New file.
5197         * tests/test-xprintf-posix.c: New file.
5198         * tests/test-xfprintf-posix.c: New file.
5199
5200         * modules/xprintf-posix: New file.
5201
5202 2007-10-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5203
5204         * modules/fbufmode-tests (MOSTLYCLEANFILES): Remove temp files.
5205         * modules/freadable-tests (MOSTLYCLEANFILES): Likewise.
5206         * modules/fwritable-tests (MOSTLYCLEANFILES): Likewise.
5207
5208 2007-10-29  Bruno Haible  <bruno@clisp.org>
5209
5210         * m4/floorf.m4 (gl_FUNC_FLOORF_LIBS): Rename the cache variable to
5211         contain the special marker '_cv_'.
5212         * m4/floor.m4 (gl_FUNC_FLOOR_LIBS): Likewise.
5213         * m4/floorl.m4 (gl_FUNC_FLOORL_LIBS): Likewise.
5214         * m4/ceilf.m4 (gl_FUNC_CEILF_LIBS): Likewise.
5215         * m4/ceil.m4 (gl_FUNC_CEIL_LIBS): Likewise.
5216         * m4/ceill.m4 (gl_FUNC_CEILL_LIBS): Likewise.
5217         Reported by Ralf Wildenhues.
5218
5219 2007-10-29  Bruno Haible  <bruno@clisp.org>
5220
5221         * gnulib-tool (func_import): When --lgpl is not specified, set
5222         sed_transform_lib_file to convert LGPL and GPLv2+ copyright headers to
5223         GPLv3.
5224         Reported by Simon Josefsson.
5225
5226 2007-10-28  Bruno Haible  <bruno@clisp.org>
5227
5228         * lib/math.in.h: Test REPLACE_ISFINITE instead of HAVE_DECL_ISFINITE.
5229         * m4/isfinite.m4 (gl_ISFINITE): Initialize REPLACE_ISFINITE instead of
5230         HAVE_DECL_ISFINITE.
5231         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Update.
5232         * modules/math (Makefile.am): Substitute REPLACE_ISFINITE instead of
5233         HAVE_DECL_ISFINITE.
5234
5235 2007-10-28  Bruno Haible  <bruno@clisp.org>
5236
5237         * lib/stdint.in.h (_STDINT_MAX): Subtract 1 from an unused signed
5238         integer shift in the signed case. Fixes warnings with OSF/1 5.1 cc.
5239
5240 2007-10-28  Bruno Haible  <bruno@clisp.org>
5241
5242         Fix link errors with Sun C 5.0 on Solaris 10.
5243         * m4/floorf.m4 (gl_FUNC_FLOORF): Consider also the case that the
5244         function is declared but not present in the compiler's libm.
5245         * m4/floorl.m4 (gl_FUNC_FLOORL): Likewise.
5246         * m4/ceilf.m4 (gl_FUNC_CEILF): Likewise.
5247         * m4/ceill.m4 (gl_FUNC_CEILL: Likewise.
5248         * lib/math.in.h: Test REPLACE_CEILF instead of HAVE_DECL_CEILF.
5249         Test REPLACE_CEILL instead of HAVE_DECL_CEILL.
5250         Test REPLACE_FLOORF instead of HAVE_DECL_FLOORF.
5251         Test REPLACE_FLOORL instead of HAVE_DECL_FLOORL.
5252         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Update.
5253         * modules/math (Makefile.am): Substitute REPLACE_CEILF instead of
5254         HAVE_DECL_CEILF, REPLACE_CEILL instead of HAVE_DECL_CEILL,
5255         REPLACE_FLOORF instead of HAVE_DECL_FLOORF, REPLACE_FLOORL instead of
5256         HAVE_DECL_FLOORL.
5257
5258 2007-10-28  Bruno Haible  <bruno@clisp.org>
5259
5260         * m4/floorl.m4 (gl_FUNC_FLOORL_LIBS): New macro, extracted from
5261         gl_FUNC_FLOORL. Cache the result.
5262         (gl_FUNC_FLOORL): Use it.
5263         * m4/ceill.m4 (gl_FUNC_CEILL_LIBS): New macro, extracted from
5264         gl_FUNC_CEILL. Cache the result.
5265         (gl_FUNC_CEILL): Use it.
5266
5267         * m4/floor.m4 (gl_FUNC_FLOOR_LIBS): New macro, extracted from
5268         gl_FUNC_FLOOR. Cache the result.
5269         (gl_FUNC_FLOOR): Use it.
5270         * m4/ceil.m4 (gl_FUNC_CEIL_LIBS): New macro, extracted from
5271         gl_FUNC_CEIL. Cache the result.
5272         (gl_FUNC_CEIL): Use it.
5273
5274         * m4/floorf.m4 (gl_FUNC_FLOORF_LIBS): New macro, extracted from
5275         gl_FUNC_FLOORF. Cache the result.
5276         (gl_FUNC_FLOORF): Use it.
5277         * m4/ceilf.m4 (gl_FUNC_CEILF_LIBS): New macro, extracted from
5278         gl_FUNC_CEILF. Cache the result.
5279         (gl_FUNC_CEILF): Use it.
5280
5281 2007-10-28  Bruno Haible  <bruno@clisp.org>
5282
5283         * gnulib-tool: Allow specifying the LGPL version number through
5284         --lgpl=2 or --lgpl=3.
5285         (func_usage): Document --lgpl with argument.
5286         Handle --lgpl=... arguments.
5287         (func_import): Recognize also gl_LGPL calls with an argument. When
5288         --lgpl=2 is used and the module's license is just LGPL, report an
5289         error. Set sed_transform_lib_file according to the lgpl variable. In
5290         the generated files, use --lgpl or gl_LGPL invocations with argument,
5291         if necessary.
5292         * doc/gnulib-intro.texi (Copyright): Explain how to get modules under
5293         an LGPv2+ license.
5294         * doc/gnulib-tool.texi (Modified imports): Update explanation of
5295         gl_LGPL macro.
5296
5297 2007-10-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5298             Bruno Haible  <bruno@clisp.org>
5299
5300         * lib/unistr.h (u8_uctomb_aux): Declare also if !HAVE_INLINE.
5301         (u16_uctomb_aux): Likewise.
5302         * lib/unistr/u8-uctomb-aux.c (u8_uctomb_aux): Define also if
5303         !HAVE_INLINE.
5304         * lib/unistr/u16-uctomb-aux.c (u16_uctomb_aux): Likewise
5305
5306 2007-10-28  Bruno Haible  <bruno@clisp.org>
5307
5308         * modules/error: Add a notice recommending to change XGETTEXT_OPTIONS.
5309         Invoke AM_GETTEXT_OPTION if it exists.
5310         * modules/vasprintf: Likewise.
5311         * modules/verror: Likewise.
5312         * modules/xprintf: Likewise.
5313         * modules/xvasprintf: Likewise.
5314
5315 2007-10-27  Ben Pfaff  <blp@gnu.org>
5316
5317         * lib/math.in.h: Define isfinite macro and prototypes for
5318         gl_isfinitef, gl_isfinited, gl_isfinitel if we are providing
5319         implementations.
5320         * m4/math_h.m4: New substitutions for isfinite module.
5321         * lib/isfinite.c: New file.
5322         * m4/isfinite.m4: New file.
5323         * modules/math: Replace isfinite-related @VARS@ in math.in.h.
5324         * modules/isfinite: New file.
5325         * modules/isfinite-tests: New file.
5326         * tests/tests-isfinite.c: New file.
5327         * doc/functions/isfinite.texi: Mention isfinite module.
5328         * MODULES.html.sh: Mention new module.
5329
5330 2007-10-27  Ben Pfaff  <blp@gnu.org>
5331
5332         Ralf Wildenhues reported that Tru64 4.0D declares the round
5333         functions but does not have definitions.
5334         * m4/check-math-lib.m4 (gl_CHECK_MATH_LIB): If the target function
5335         cannot be found in any library, set the output variable to
5336         "missing" instead of "".
5337         * m4/round.m4: Also use our substitute if we cannot find round in
5338         any library, even if it is declared.
5339         * m4/roundf.m4: Likewise for roundf.
5340         * m4/roundl.m4: Likewise for roundl.
5341         * lib/math.in.h: Undefine roundf, round, roundl before defining
5342         their replacements, to allow for hypothetical systems where these
5343         may be defined as macros but not available in libraries.
5344
5345 2007-10-27  Bruno Haible  <bruno@clisp.org>
5346
5347         * doc/gnulib.texi: Invoke @firstparagraphindent.
5348         * doc/gnulib-tool.texi (Simple update): Mention possible incompatible
5349         changes in gnulib.
5350         (Source changes): New section.
5351
5352 2007-10-26  Bruno Haible  <bruno@clisp.org>
5353
5354         * m4/gnulib-common.m4 (AC_C_RESTRICT): New overriding definition,
5355         borrowed from autoconf.
5356
5357 2007-10-26  Bruno Haible  <bruno@clisp.org>
5358
5359         * lib/strerror.c (rpl_strerror): Return "Unknown error ..." also if
5360         strerror returned the empty string. Needed on HP-UX 11.00.
5361
5362 2007-10-24  Micah Cowan  <micah@cowan.name>
5363
5364         Remove vestiges of cvs-gnulib-checkout process.  Now we use git.
5365         * build-aux/bootstrap: Remove support for now-unnecessary option,
5366         --cvs-user, and envvars CVS_USER, CVS_RSH.
5367
5368 2007-10-24  Jim Meyering  <meyering@redhat.com>
5369
5370         Avoid diagnostics from sha1sum when there is no cached checksum.
5371         * build-aux/bootstrap (update_po_files): Skip the sha1sum check
5372         if the po.s1 file hasn't been created yet.
5373
5374         * build-aux/bootstrap: Sync from coreutils:
5375         2007-10-24  Jim Meyering  <meyering@redhat.com>
5376         Get gnulib from the git repository, not from an obsolete cvs one.
5377         * build-aux/bootstrap: Suggestion from Micah Cowan.
5378         2007-10-04  Jim Meyering  <jim@meyering.net>
5379         * build-aux/bootstrap (slurp): Adapt to _.h -> .in.h name change.
5380         (update_po_files): Work also when there are no .po files in po/.
5381
5382 2007-10-24  Paul Eggert  <eggert@cs.ucla.edu>
5383
5384         * README: Append ".git" to git and cg examples.
5385         Problem reported by Benoit Sigoure.
5386
5387 2007-10-23  Micah Cowan  <micah@cowan.name>
5388
5389         * users.txt: Add wget.
5390
5391 2007-10-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5392
5393         Fix linking of some unistdio tests on FreeBSD.
5394         * modules/unistdio/u16-vsnprintf-tests
5395         (test_u16_vsprintf1_LDADD): Add @LIBINTL@.
5396         * modules/unistdio/u16-vsprintf-tests
5397         (test_u16_vsnprintf1_LDADD): Likewise.
5398         * modules/unistdio/u32-vsnprintf-tests
5399         (test_u32_vsnprintf1_LDADD): Likewise.
5400         * modules/unistdio/u32-vsprintf-tests
5401         (test_u32_vsprintf1_LDADD): Likewise.
5402         * modules/unistdio/u8-vsnprintf-tests
5403         (test_u8_vsnprintf1_LDADD): Likewise.
5404         * modules/unistdio/u8-vsprintf-tests
5405         (test_u8_vsprintf1_LDADD): Likewise.
5406         * modules/unistdio/ulc-vsnprintf-tests
5407         (test_ulc_vsnprintf1_LDADD): Likewise.
5408         * modules/unistdio/ulc-vsprintf-tests
5409         (test_ulc_vsprintf1_LDADD): Likewise.
5410
5411         Fix linking of some uniconv tests on FreeBSD.
5412         * modules/uniconv/u16-conv-from-enc-tests
5413         (test_u16_conv_from_enc_LDADD): Link $(LDADD) before @LIBICONV@.
5414         * modules/uniconv/u16-conv-to-enc-tests
5415         (test_u16_conv_to_enc_LDADD): Likewise.
5416         * modules/uniconv/u16-strconv-from-enc-tests
5417         (test_u16_strconv_from_enc_LDADD): Likewise.
5418         * modules/uniconv/u16-strconv-to-enc-tests
5419         (test_u16_strconv_to_enc_LDADD): Likewise.
5420         * modules/uniconv/u32-conv-from-enc-tests
5421         (test_u32_conv_from_enc_LDADD): Likewise.
5422         * modules/uniconv/u32-conv-to-enc-tests
5423         (test_u32_conv_to_enc_LDADD): Likewise.
5424         * modules/uniconv/u32-strconv-from-enc-tests
5425         (test_u32_strconv_from_enc_LDADD): Likewise.
5426         * modules/uniconv/u32-strconv-to-enc-tests
5427         (test_u32_strconv_to_enc_LDADD): Likewise.
5428         * modules/uniconv/u8-conv-from-enc-tests
5429         (test_u8_conv_from_enc_LDADD): Likewise.
5430         * modules/uniconv/u8-conv-to-enc-tests
5431         (test_u8_conv_to_enc_LDADD): Likewise.
5432         * modules/uniconv/u8-strconv-from-enc-tests
5433         (test_u8_strconv_from_enc_LDADD): Likewise.
5434         * modules/uniconv/u8-strconv-to-enc-tests
5435         (test_u8_strconv_to_enc_LDADD): Likewise.
5436
5437 2007-10-22  Bruno Haible  <bruno@clisp.org>
5438
5439         * lib/stdint.in.h: Add check that intmax_t and uintmax_t have the same
5440         size.
5441
5442 2007-10-22  Eric Blake  <ebb9@byu.net>
5443
5444         Tweak x*printf documentation.
5445         * lib/xprintf.c (xprintf, xvprintf, xfprintf, xvfprintf): Adjust
5446         variable name and comments.
5447         Suggested by Bruno Haible.
5448
5449 2007-10-22  Bruno Haible  <bruno@clisp.org>
5450
5451         * lib/acl.c (copy_acl): Fix file name in comment.
5452
5453 2007-10-22  Paul Eggert  <eggert@cs.ucla.edu>
5454
5455         Fix Tru64 problem with stdbool.h.
5456         * lib/stdbool.in.h (false, true):
5457         [! (defined __cplusplus || defined __BEOS__) && !defined __GNUC__]:
5458         Don't declare as an enum in this situation; it runs afoul of Tru64.
5459         Problem reported by Steven M. Schweda in
5460         <http://lists.gnu.org/archive/html/bug-autoconf/2007-10/msg00019.html>.
5461
5462 2007-10-22  Eric Blake  <ebb9@byu.net>
5463
5464         Also wrap vf?printf.
5465         * lib/xprintf.h (xvprintf, xvfprintf): New declarations.
5466         * lib/xprintf.c (xprintf, xfprintf): Work for C89.
5467         (xvprintf, xvfprintf): New functions.
5468
5469 2007-10-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5470
5471         * modules/fstrcmp-tests (test_fstrcmp_LDADD): New, add
5472         @LIBINTL@ for FreeBSD 6.2, $(LIBTHREAD) for AIX 4.3.3.
5473
5474         * lib/uniconv/u16-conv-to-enc.c (U_MBLEN): Define.
5475         * lib/uniconv/u32-conv-to-enc.c (U_MBLEN): Likewise.
5476
5477 2007-10-22  Paul Eggert  <eggert@cs.ucla.edu>
5478
5479         * lib/acl.c (copy_acl): Adjust to IRIX 6.5.  Problem reported
5480         by Bruno Haible.
5481
5482 2007-10-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5483
5484         * lib/getloadavg.c
5485         [defined (__osf__) && (defined (__alpha) || defined (__alpha__)]:
5486         Undef `sys' after including sys/table.h, for Tru64 4.0D.
5487
5488         * tests/test-i-ring.c: Work for C89.
5489
5490 2007-10-22  Bruno Haible  <bruno@clisp.org>
5491
5492         * m4/ulonglong.m4 (AC_TYPE_UNSIGNED_LONG_LONG_INT): Use -1ull, not
5493         -1u, in preprocessor expression, so that we don't test for the bug
5494         in HP-UX 11.00 cpp.  Testing for this bug caused problems; see
5495         <http://lists.gnu.org/archive/html/bug-gnulib/2007-10/msg00329.html>.
5496
5497 2007-10-22  Eric Blake  <ebb9@byu.net>
5498
5499         * tests/test-yesno.sh: Silence stderr during test.
5500
5501 2007-10-22  Simon Josefsson  <simon@josefsson.org>
5502
5503         * modules/crypto/gc-camellia: New file.
5504
5505         * m4/gc-camellia.m4: New file.
5506
5507         * lib/gc-libgcrypt.c (gc_cipher_open): Support Camellia.
5508
5509         * lib/gc.h (enum Gc_cipher): Add GC_CAMELLIA128, GC_CAMELLIA256.
5510
5511 2007-10-22  Simon Josefsson  <simon@josefsson.org>
5512
5513         * build-aux/maint.mk (gzip_rsyncable): Don't fail if gzip sends
5514         --help to stdout.  Reported by sms@antinode.org (Steven
5515         M. Schweda).
5516
5517 2007-10-22  Simon Josefsson  <simon@josefsson.org>
5518
5519         * users.txt: Fix link to libksba.
5520
5521 2007-10-21  Ben Pfaff  <blp@gnu.org>
5522
5523         * modules/roundf-tests: Add dependency on floorf, ceilf to allow
5524         round.c roundf implementation that depends on floorf and ceilf to
5525         be tested unconditionally.
5526
5527 2007-10-21  Ben Pfaff  <blp@gnu.org>
5528
5529         * m4/check-libm-func.m4: Removed.
5530         * m4/check-math-lib.m4: New file.
5531         * m4/round.m4: Rewrite to use gl_CHECK_MATH_LIB.
5532         * m4/roundf.m4: Ditto, and fix lack of HAVE_DECL_ROUNDF
5533         definition and lack of AC_LIBOBJ([roundf]).
5534         * m4/roundl.m4: Ditto, and similarly for roundl.
5535         * modules/round: Reference new m4 file.
5536         * modules/roundf: Ditto.
5537         * modules/roundl: Ditto.
5538         * tests/test-round2.c (main): Use ROUND instead of round.
5539         Bug report from Bruno Haible.
5540
5541 2007-10-21  Bruno Haible  <bruno@clisp.org>
5542
5543         * lib/printf-parse.c: Don't assume <stdint.h> exists in IN_LIBASPRINTF
5544         context.
5545
5546 2007-10-21  Bruno Haible  <bruno@clisp.org>
5547
5548         * tests/test-wcwidth.c (main): Allow negative result for some control
5549         characters.
5550
5551         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Check also the width of U+200B.
5552         Needed on OSF/1 5.1.
5553
5554 2007-10-21  Bruno Haible  <bruno@clisp.org>
5555
5556         * tests/test-floorf1.c: Include isnanf.h.
5557         (main): Use isnanf() instead of isnan().
5558         * tests/test-ceilf1.c: Include isnanf.h.
5559         (main): Use isnanf() instead of isnan().
5560         * tests/test-truncf1.c: Include isnanf.h.
5561         (main): Use isnanf() instead of isnan().
5562         * tests/test-roundf1.c: Include isnanf.h.
5563         (main): Use isnanf() instead of isnan().
5564
5565 2007-10-21  Eric Blake  <ebb9@byu.net>
5566
5567         * users.txt: Update URL for m4.
5568
5569 2007-10-21  Bruno Haible  <bruno@clisp.org>
5570
5571         * users.txt: Add clisp. Update URLs to Simon Josefsson's projects.
5572
5573 2007-10-21  Bruno Haible  <bruno@clisp.org>
5574
5575         * gnulib-tool (func_create_megatestdir): Determine the cvsdate from
5576         Git's management files if the CVS files are not present.
5577
5578 2007-10-20  Bruno Haible  <bruno@clisp.org>
5579
5580         * lib/count-one-bits.h (COUNT_ONE_BITS): Use the builtin also for
5581         gcc-3.4.x.
5582
5583 2007-10-20  Ben Pfaff  <blp@gnu.org>
5584
5585         * lib/math.in.h: Declare round, roundf, roundl if we are providing
5586         implementations.
5587         * m4/math_h.m4: New substitutions for round, roundf, roundl modules.
5588         * lib/round.c: New file.
5589         * lib/roundf.c: New file.
5590         * lib/roundl.c: New file.
5591         * m4/round.m4: New file.
5592         * m4/roundf.m4: New file.
5593         * m4/roundl.m4: New file.
5594         * m4/check-libm-func-m4: New file.
5595         * modules/math: Replace round, roundf, roundl related @VARS@ in
5596         math.in.h.
5597         * modules/round: New file.
5598         * modules/round-tests: New file.
5599         * modules/roundf: New file.
5600         * modules/roundf-tests: New file.
5601         * modules/roundl: New file.
5602         * modules/roundl-tests: New file.
5603         * tests/test-round1.c: New file.
5604         * tests/test-round2.c: New file.
5605         * tests/test-roundf1.c: New file.
5606         * tests/test-roundf2.c: New file.
5607         * tests/test-roundl.c: New file.
5608         * doc/functions/round.texi: Mention round module.
5609         * doc/functions/roundf.texi: Mention roundf module.
5610         * doc/functions/roundl.texi: Mention roundl module.
5611         * MODULES.html.sh: Mention new modules.
5612         Thanks to Bruno Haible for suggestions.
5613
5614 2007-10-20  Jim Meyering  <meyering@redhat.com>
5615
5616         * lib/xprintf.c: Include <config.h> unconditionally.
5617
5618         Change xprintf's license to GPL.
5619         * modules/xprintf (License): s/LGPL/GPL/, since this module
5620         depends on modules (exit and exitfail) which are GPL.
5621         Suggestion from Bruno Haible.
5622
5623         xprintf fixes.
5624         * lib/xprintf.c (xprintf, xfprintf): Use va_end.
5625         Use a clearer diagnostic.
5626         Patch from Bruno Haible.
5627
5628 2007-10-20  Bruno Haible  <bruno@clisp.org>
5629
5630         * lib/vasnprintf.c (VASNPRINTF): Don't report overflow if the available
5631         length is INT_MAX and sizeof (DCHAR_T) > sizeof (TCHAR_T).
5632         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
5633
5634 2007-10-20  Bruno Haible  <bruno@clisp.org>
5635
5636         * tests/test-floorf2.c (correct_result_p): Don't rely on excess
5637         precision in the comparison result > x - 1 or similar.
5638         * tests/test-ceilf2.c (correct_result_p): Likewise.
5639         * tests/test-truncf2.c (correct_result_p): Likewise.
5640         * tests/test-trunc2.c (correct_result_p): Likewise.
5641         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
5642
5643 2007-10-20  Bruno Haible  <bruno@clisp.org>
5644
5645         * modules/ceil: New file.
5646         * m4/ceil.m4: New file.
5647         * doc/functions/ceil.texi: Mention the 'ceil' module.
5648
5649 2007-10-20  Bruno Haible  <bruno@clisp.org>
5650
5651         * modules/floor: New file.
5652         * m4/floor.m4: New file.
5653         * doc/functions/floor.texi: Mention the 'floor' module.
5654
5655 2007-10-20  Bruno Haible  <bruno@clisp.org>
5656
5657         * modules/ceilf-tests (Depends-on): Add fprintf-posix. Needed for use
5658         of %a.
5659         * modules/floorf-tests (Depends-on): Likewise.
5660         * modules/truncf-tests (Depends-on): Likewise.
5661         * modules/trunc-tests (Depends-on): Likewise.
5662         Reported by Ben Pfaff.
5663
5664 2007-10-19  Jim Meyering  <meyering@redhat.com>
5665
5666         * lib/xprintf.c (xprintf, xfprintf): Test err < 0, not just "err".
5667         Don't bother testing specific errno values.  Just test ferror.
5668
5669         New module: xprintf
5670         * modules/xprintf, lib/xprintf.c, lib/xprintf.h: New files.
5671
5672 2007-10-19  Bruno Haible  <bruno@clisp.org>
5673
5674         * modules/csharpexec (Makefile.am): Use @FOO@ syntax instead of $(FOO)
5675         syntax.
5676         * modules/javaexec (Makefile.am): Likewise.
5677         * modules/relocatable-prog (Makefile.am): Likewise.
5678         Suggested by Jim Meyering.
5679
5680 2007-10-18  Bruno Haible  <bruno@clisp.org>
5681
5682         * lib/vasnprintf.c (VASNPRINTF): Don't use %n on glibc >= 2.3 systems.
5683         Reported by Jim Meyering.
5684
5685 2007-10-18  Eric Blake  <ebb9@byu.net>
5686
5687         * modules/filenamecat-tests (Makefile.am): Link against -lintl.
5688
5689 2007-10-18  Bruno Haible  <bruno@clisp.org>
5690
5691         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_N, gl_SNPRINTF_DIRECTIVE_N): Put
5692         the format string into writable memory. Needed in Fortify conditions.
5693
5694 2007-10-18  Colin Watson <cjwatson@debian.org>  (tiny change)
5695             Bruno Haible  <bruno@clisp.org>
5696
5697         * lib/trim.c: Include config.h unconditionally. Include trim.h always.
5698         Include ctype.h always. Include stdlib.h, not mbuiter.h, for MB_CUR_MAX.
5699         * modules/trim (Depends-on): Add mbchar.
5700         (configure.ac): Add gl_FUNC_MBRTOWC.
5701         (Makefile.am): Augment lib_SOURCES.
5702
5703 2007-10-17  Paul Eggert  <eggert@cs.ucla.edu>
5704
5705         Modify glob.c to use fstatat and dirfd, to simplify it.
5706         Suggested by Eric Blake.
5707         * lib/glob.c (__fxstatat64) [!_LIBC]: New macro.
5708         Don't include <stdbool.h>; not used.
5709         (link_exists2_p, glob_in_dir) [!_LIBC]: No longer a special case.
5710         (link_exists_p): Simplify implementation, since we can now assume
5711         dirfd and fstatat.
5712         * modules/glob (Depends-on): Add dirfd, openat.  Remove stdbool.
5713
5714 2007-10-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5715
5716         * gnulib-tool (func_get_dependencies): Fix sed script to
5717         match only tests.
5718
5719 2007-10-17  Bruno Haible  <bruno@clisp.org>
5720
5721         * m4/locale-fr.m4 (gt_LOCALE_FR, gt_LOCALE_FR_UTF8): On Cygwin, don't
5722         allow locale names without encoding suffix.
5723         * m4/locale-tr.m4 (gt_LOCALE_TR_UTF8): Likewise.
5724         * m4/locale-zh.m4 (gt_LOCALE_ZH_CN): Likewise.
5725
5726 2007-10-16  Bruno Haible  <bruno@clisp.org>
5727
5728         * lib/getcwd.c (__getcwd): Define with explicit rpl_ prefix.
5729         * lib/getgroups.c (getgroups): Likewise.
5730         * lib/gettimeofday.c (localtime, gmtime, tzset): Likewise.
5731
5732 2007-10-16  Bruno Haible  <bruno@clisp.org>
5733
5734         * modules/absolute-header (License): Change from LGPL to LGPLv2+.
5735         * modules/malloc-posix (License): Likewise.
5736         * modules/realloc-posix (License): Likewise.
5737         * modules/calloc-posix (License): Likewise.
5738         * modules/intprops (License): Change from GPL to LGPL, with
5739         Paul Eggert's approval.
5740
5741 2007-10-16  Paul Eggert  <eggert@cs.ucla.edu>
5742
5743         Merge glibc changes into lib/glob.c.
5744
5745         * lib/glob.c (glob_in_dir): Sync with glibc/posix/glob.c, dated
5746         2007-10-15 04:59:03 UTC.  Here are the changes:
5747
5748         2007-10-14  Ulrich Drepper  <drepper@redhat.com>
5749
5750         * lib/glob.c: Reimplement link_exists_p to use fstatat64.
5751
5752         * lib/glob.c: Add some branch prediction throughout.
5753
5754         2007-10-07  Ulrich Drepper  <drepper@redhat.com>
5755
5756         [BZ #5103]
5757         * lib/glob.c (glob): Recognize patterns starting \/.
5758
5759         2007-02-14  Jakub Jelinek  <jakub@redhat.com>
5760
5761         [BZ #3996]
5762         * lib/glob.c (attribute_hidden): Define if not defined.
5763         (glob): Unescape dirname, filename or username when needed and not
5764         GLOB_NOESCAPE.  Handle \/ correctly.  Handle GLOB_MARK if filename
5765         is NULL.  Handle unescaped [ in pattern without closing ].
5766         Don't pass GLOB_CHECK down to recursive glob for directories.
5767         (__glob_pattern_type): New function.
5768         (__glob_pattern_p): Implement using __glob_pattern_type.
5769         (glob_in_dir): Handle GLOB_NOCHECK patterns containing no meta
5770         characters and backslashes if not GLOB_NOESCAPE or unterminated [.
5771         Remove unreachable code.
5772
5773         2006-09-30  Ulrich Drepper  <drepper@redhat.com>
5774
5775         * lib/glob.c (glob_in_dir): Add some comments and asserts to
5776         explain why there are no leaks.
5777
5778         2006-09-25  Jakub Jelinek  <jakub@redhat.com>
5779
5780         [BZ #3253]
5781         * lib/glob.c (glob_in_dir): Don't alloca one struct globlink at a
5782         time, rather allocate increasingly bigger arrays of pointers, if
5783         possible with alloca, if too large with malloc.
5784
5785 2007-10-16  Paul Eggert  <eggert@cs.ucla.edu>
5786
5787         Check for 64-bit int errors in HP-UX 10.20 preprocessor.
5788         Problem reported by H.Merijn Brand in
5789         <http://lists.gnu.org/archive/html/bug-tar/2007-10/msg00018.html>.
5790         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Check preprocessor too.
5791         * m4/ulonglong.m4 (AC_TYPE_UNSIGNED_LONG_LONG_INT): Likewise.
5792
5793 2007-10-15  Bruno Haible  <bruno@clisp.org>
5794
5795         * lib/fchdir.c (close, open, closedir, opendir, dup, dup2): Define
5796         with explicit rpl_ prefix.
5797         * lib/fopen.c (fopen): Likewise.
5798         * lib/freopen.c (freopen): Likewise.
5799         * lib/iconv.c (iconv): Likewise.
5800         * lib/iconv_close.c (iconv_close): Likewise.
5801
5802 2007-10-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
5803
5804         * m4/iconv_open (gl_FUNC_ICONV_OPEN_UTF): Fix cache variable name.
5805
5806 2007-10-15  Bruno Haible  <bruno@clisp.org>
5807
5808         * m4/getaddrinfo.m4 (gl_GETADDRINFO, gl_PREREQ_GETADDRINFO): Use
5809         <stddef.h> instead of <stdlib.h> since we only need NULL.
5810         Reported by Ben Pfaff <blp@cs.stanford.edu>.
5811
5812 2007-10-15  Bruno Haible  <bruno@clisp.org>
5813
5814         * doc/gnulib-tool.texi (Initial import): Swap order of -I directives.
5815         Replace paragraph talking about LIBOBJS.
5816         Reported by Colin Watson <cjwatson@debian.org>.
5817
5818 2007-10-15  Bruno Haible  <bruno@clisp.org>
5819
5820         * m4/getaddrinfo.m4 (gl_GETADDRINFO, gl_PREREQ_GETADDRINFO): Include
5821         <stdlib.h> before using NULL.
5822
5823 2007-10-15  Simon Josefsson  <simon@josefsson.org>
5824
5825         * m4/getaddrinfo.m4: Use NULL rather than 0 for pointers.
5826         Reported by Albert Chin <china@thewrittenword.com>.
5827
5828 2007-10-14  Bruno Haible  <bruno@clisp.org>
5829
5830         * modules/iconv_open-utf-tests: New file.
5831         * tests/test-iconv-utf.c: New file.
5832
5833         Enhance iconv_open to support UTF-16BE, UTF-16LE, UTF-32BE, UTF-32LE.
5834         * modules/iconv_open-utf: New file.
5835         * lib/iconv.in.h (_ICONV_UTF8_UTF*, _ICONV_UTF*_UTF8): New macros.
5836         (iconv, iconv_close): New declarations.
5837         * lib/iconv_open.c: Include c-strcase.h. Don't require ICONV_FLAVOR to
5838         be defined.
5839         (iconv_open): Add special handling of conversion between UTF-8 and
5840         UTF-{16,32}{BE,LE}.
5841         * lib/iconv.c: New file, incorporating code from GNU libiconv 1.11.
5842         * lib/iconv_close.c: New file.
5843         * m4/iconv_open.m4 (gl_REPLACE_ICONV_OPEN): New macro, extracted from
5844         gl_FUNC_ICONV_OPEN.
5845         (gl_FUNC_ICONV_OPEN): Use it.
5846         (gl_FUNC_ICONV_OPEN_UTF): New macro.
5847         * m4/iconv_h.m4 (gl_ICONV_H_DEFAULTS): Initialize also REPLACE_ICONV
5848         and REPLACE_ICONV_UTF.
5849         * modules/iconv_open (Depends-on): Add c-strcase.
5850         (Makefile.am): Substitute also REPLACE_ICONV, REPLACE_ICONV_UTF,
5851         ICONV_CONST.
5852         * doc/functions/iconv_open.texi: Mention the iconv_open-utf module.
5853
5854 2007-10-13  Albert Chin  <china@thewrittenword.com>
5855             Bruno Haible  <bruno@clisp.org>
5856
5857         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Perform the test for getaddrinfo
5858         through a link check that includes <netdb.h>. Needed for OSF/1 5.1.
5859
5860 2007-10-13  Bruno Haible  <bruno@clisp.org>
5861
5862         * lib/argp-fmtstream.h (ARGP_FS_EI): If __GNUC_STDC_INLINE__ is
5863         defined, use the ISO C99 inline semantics.
5864         * lib/argp.h (ARGP_EI): Likewise.
5865
5866 2007-10-13  Bruno Haible  <bruno@clisp.org>
5867
5868         Handle 'inline' change in gcc 4.3.0.
5869         * lib/argp-fmtstream.h (argp_fmtstream_putc, argp_fmtstream_puts,
5870         argp_fmtstream_write, argp_fmtstream_set_lmargin,
5871         argp_fmtstream_set_rmargin, argp_fmtstream_set_wmargin,
5872         argp_fmtstream_point): Disable 'extern' declaration if the function
5873         definition is going to be provided inline.
5874         (ARGP_FS_EI): If __GNUC_STDC_INLINE__ is defined, use the GNU C inline
5875         semantics, not the ISO C99 inline semantics.
5876         * lib/argp.h (argp_usage, _option_is_short, _option_is_end): Disable
5877         'extern' declaration if the function definition is going to be provided
5878         inline.
5879         (ARGP_EI): Don't assume GNU C. If __GNUC_STDC_INLINE__ is defined, use
5880         the GNU C inline semantics, not the ISO C99 inline semantics. With
5881         GCC 4.2, avoid a warning.
5882
5883 2007-10-13  Bruno Haible  <bruno@clisp.org>
5884
5885         * lib/freading.h (freading): Enable the use of __freading for
5886         glibc >= 2.7.
5887         * lib/freading.c (freading): Likewise.
5888
5889 2007-10-12  Paul Eggert  <eggert@cs.ucla.edu>
5890
5891         * lib/argp-fmtstream.h (ARGP_FS_EI): Work around GCC 4.2.1 diagnostic
5892         "warning: C99 inline functions are not supported; using GNU89".
5893
5894 2007-10-12  Bruno Haible  <bruno@clisp.org>
5895
5896         * lib/ceil.c (FUNC): Avoid rounding errors for values near a power
5897         of 2.
5898         * tests/test-ceilf2.c: New file.
5899         * modules/ceilf-tests: (Files, Depends-on, Makefile.am): Add new test.
5900
5901         * tests/test-ceilf1.c: Renamed from tests/test-ceilf.c.
5902         * modules/ceilf-tests: Update.
5903
5904 2007-10-12  Bruno Haible  <bruno@clisp.org>
5905
5906         * lib/floor.c (FUNC): Avoid rounding errors for values near a power
5907         of 2.
5908         * tests/test-floorf2.c: New file.
5909         * modules/floorf-tests: (Files, Depends-on, Makefile.am): Add new test.
5910
5911         * tests/test-floorf1.c: Renamed from tests/test-floorf.c.
5912         * modules/floorf-tests: Update.
5913
5914 2007-10-12  Bruno Haible  <bruno@clisp.org>
5915
5916         * tests/test-trunc2.c: New file.
5917         * modules/trunc-tests: (Files, Depends-on, Makefile.am): Add new test.
5918
5919         * tests/test-trunc1.c: Renamed from tests/test-trunc.c.
5920         * modules/trunc-tests: Update.
5921
5922 2007-10-12  Bruno Haible  <bruno@clisp.org>
5923
5924         * lib/trunc.c (FUNC): Avoid rounding errors for values near a power
5925         of 2.
5926         * tests/test-truncf2.c: New file.
5927         * modules/truncf-tests: (Files, Depends-on, Makefile.am): Add new test.
5928
5929         * tests/test-truncf1.c: Renamed from tests/test-truncf.c.
5930         * modules/truncf-tests: Update.
5931
5932 2007-10-11  Eric Blake  <ebb9@byu.net>
5933
5934         Don't claim strerror is broken on Interix.
5935         * doc/functions/strerror.texi (strerror): Known broken systems are
5936         now Solaris 8, and not Interix.
5937         * m4/strerror.m4 (gl_FUNC_STRERROR_SEPARATE): No longer filter out
5938         Interix on cross-compile.
5939         Reported by Martin Koeppe in
5940         http://lists.gnu.org/archive/html/bug-gnulib/2007-10/msg00005.html.
5941
5942 2007-10-11  Bruno Haible  <bruno@clisp.org>
5943
5944         * modules/i-ring-tests: New file.
5945         * tests/test-i-ring.c: Renamed from lib/i-ring-test.c. Use ASSERT
5946         instead of assert.
5947
5948 2007-10-11  Bruno Haible  <bruno@clisp.org>
5949
5950         * modules/filenamecat-tests: New file.
5951         * tests/test-filenamecat.c: New file, extracted from lib/filenamecat.c.
5952         * lib/filenamecat.c: Remove test code.
5953
5954 2007-10-11  Paul Eggert  <eggert@cs.ucla.edu>
5955
5956         Simplify and modernize strerror substitute, partly to fix Solaris 8 bug.
5957
5958         * lib/strerror.c: Include <string.h> always, to test interface,
5959         and to remove the need for the dummy.
5960         Include intprops.h to compute width instead of doing it ourselves
5961         and missing a CHAR_BIT declaration, which broke tar 1.19 on Solaris 8.
5962         (strerror): Define it to return NULL if there's no system strerror.
5963         (rpl_strerror): Use INT_STRLEN_BOUND to compute bound.
5964         Omit !HAVE_STRERROR code.  We don't need to worry about supporting
5965         ancient pre-strerror Unix systems well any more.  Saying "unknown
5966         system error" is enough.
5967         * lib/string.in.h (strerror): Simplify the ifdef to reflect the
5968         simpler strerror.c implementation.
5969         * m4/strerror.m4 (gl_FUNC_STRERROR_SEPARATE, gl_PREREQ_STDERROR):
5970         Simplify the tests to reflect the simpler strerror implementation.
5971         * modules/strerror (Depends-on): Add intprops.
5972
5973 2007-10-09  Eric Blake  <ebb9@byu.net>
5974
5975         Silence test-fpending.
5976         * modules/fpending-tests (Files): Add wrapper script.
5977         * tests/test-fpending.sh: New file.
5978
5979 2007-10-09  Bruno Haible  <bruno@clisp.org>
5980
5981         * MODULES.html.sh (func_module): Don't create a hyperlink for
5982         function names like 'printf_frexp'.
5983         (Misc): Add crc, memxor.
5984         (Characteristics of floating types): New section.
5985         (Mathematics): Add ceilf, ceill, floorf, floorl, frexpl-nolibm,
5986         isnanf-nolibm, signbit, trunc, truncf, truncl.
5987         (Enhancements for ISO C 99 functions): New subsection Input/output.
5988         (Support for systems lacking POSIX:2001): Add arpa_inet, calloc-posix,
5989         fcntl, fopen, freopen, fseek, fseeko, ftell, ftello, iconv_open,
5990         locale, malloc-posix, netinet_in, open, realloc-posix, signal, sleep.
5991         (Compatibility checks for POSIX:2001 functions): Add clock-time.
5992         (Enhancements for POSIX:2001 functions): Add chdir-long.
5993         (File system functions): Add areadlink, chdir-safer, read-file.
5994         Remove cycle-check.
5995         (File system as inode set): New section.
5996         (Date and time): Add gethrxtime.
5997         (Multithreading): Add openmp.
5998         (Internationalization functions): Add localename.
5999         (Unicode string functions): Add unistr/u*-mbsnlen.
6000         (Support for maintaining and releasing projects): Add git-version-gen.
6001         (Lone files): Remove directories.
6002
6003 2007-10-08  Ben Pfaff  <blp@gnu.org>
6004
6005         * lib/xmalloca.h: Fix typo in comment.
6006
6007 2007-10-08  Paul Eggert  <eggert@cs.ucla.edu>
6008
6009         * lib/xnanosleep.c (xnanosleep): Don't assume GCC 4.3.0 behavior
6010         when avoiding problems with integer overflow.  Use a portable test
6011         instead.
6012
6013 2007-10-08  Simon Josefsson  <simon@josefsson.org>
6014
6015         * modules/dummy (License): Change to LGPLv2+.
6016         * modules/float (License): Likewise
6017         * modules/realloc (License): Likewise
6018         * modules/stdlib (License): Likewise
6019
6020 2007-10-07  Bruno Haible  <bruno@clisp.org>
6021
6022         * trunc.c (TWO_MANT_DIG): Change type to DOUBLE.
6023         * floor.c (TWO_MANT_DIG): Likewise.
6024         * ceil.c (TWO_MANT_DIG): Likewise.
6025         Reported by Ben Pfaff.
6026
6027 2007-10-07  Bruno Haible  <bruno@clisp.org>
6028
6029         Avoid gcc warnings "declaration of 'exp' shadows a global declaration".
6030         * lib/math.in.h (frexp, frexpl): Change parameter name to 'expptr'.
6031         * lib/frexp.c (FUNC): Likewise.
6032         * lib/printf-frexp.h (printf_frexp): Likewise.
6033         * lib/printf-frexpl.h (printf_frexpl): Likewise.
6034         * lib/printf-frexp.c (FUNC): Likewise.
6035         Suggested by Jim Meyering.
6036
6037 2007-10-07  Jim Meyering  <meyering@redhat.com>
6038
6039         Make xnanosleep's integer overflow test more robust.
6040         * lib/xnanosleep.c (xnanosleep): Declare a temporary to be "volatile",
6041         so that gcc-4.3.0 doesn't optimize away this test for overflow.
6042
6043 2007-10-07  Bruno Haible  <bruno@clisp.org>
6044
6045         * NEWS: Mention the license change.
6046
6047         * doc/gnulib-intro.texi (Copyright): Update the meaning of the license
6048         abbreviations in the modules files.
6049
6050         Change copyright notice from GPLv2+ to GPLv3+.
6051         * README: Change copyright notice.
6052         * MODULES.html.sh: Likewise.
6053         * build-aux/bootstrap.conf: Likewise.
6054         * build-aux/config.libpath: Likewise.
6055         * build-aux/csharpcomp.sh.in: Likewise.
6056         * build-aux/csharpexec.sh.in: Likewise.
6057         * build-aux/install-reloc: Likewise.
6058         * build-aux/javacomp.sh.in: Likewise.
6059         * build-aux/javaexec.sh.in: Likewise.
6060         * build-aux/ldd.sh.in: Likewise.
6061         * build-aux/reloc-ldflags: Likewise.
6062         * build-aux/relocatable.sh.in: Likewise.
6063         * build-aux/x-to-1.in: Likewise.
6064         * check-module: Likewise.
6065         * config/srclistvars.sh: Likewise.
6066         * gnulib-tool: Likewise.
6067         * lib/acl-internal.h: Likewise.
6068         * lib/acl.c: Likewise.
6069         * lib/acl.h: Likewise.
6070         * lib/acl_entries.c: Likewise.
6071         * lib/areadlink-with-size.c: Likewise.
6072         * lib/areadlink.c: Likewise.
6073         * lib/areadlink.h: Likewise.
6074         * lib/argmatch.c: Likewise.
6075         * lib/argmatch.h: Likewise.
6076         * lib/argp-ba.c: Likewise.
6077         * lib/argp-eexst.c: Likewise.
6078         * lib/argp-fmtstream.c: Likewise.
6079         * lib/argp-fmtstream.h: Likewise.
6080         * lib/argp-fs-xinl.c: Likewise.
6081         * lib/argp-help.c: Likewise.
6082         * lib/argp-namefrob.h: Likewise.
6083         * lib/argp-parse.c: Likewise.
6084         * lib/argp-pin.c: Likewise.
6085         * lib/argp-pv.c: Likewise.
6086         * lib/argp-pvh.c: Likewise.
6087         * lib/argp-xinl.c: Likewise.
6088         * lib/argp.h: Likewise.
6089         * lib/at-func.c: Likewise.
6090         * lib/atanl.c: Likewise.
6091         * lib/backupfile.c: Likewise.
6092         * lib/backupfile.h: Likewise.
6093         * lib/basename.c: Likewise.
6094         * lib/binary-io.h: Likewise.
6095         * lib/byteswap.in.h: Likewise.
6096         * lib/c-stack.c: Likewise.
6097         * lib/c-stack.h: Likewise.
6098         * lib/c-strcasestr.c: Likewise.
6099         * lib/c-strcasestr.h: Likewise.
6100         * lib/c-strstr.c: Likewise.
6101         * lib/c-strstr.h: Likewise.
6102         * lib/c-strtod.c: Likewise.
6103         * lib/calloc.c: Likewise.
6104         * lib/canon-host.c: Likewise.
6105         * lib/canon-host.h: Likewise.
6106         * lib/canonicalize-lgpl.c: Likewise.
6107         * lib/canonicalize.c: Likewise.
6108         * lib/canonicalize.h: Likewise.
6109         * lib/ceil.c: Likewise.
6110         * lib/ceilf.c: Likewise.
6111         * lib/ceill.c: Likewise.
6112         * lib/chdir-long.c: Likewise.
6113         * lib/chdir-long.h: Likewise.
6114         * lib/chdir-safer.c: Likewise.
6115         * lib/chdir-safer.h: Likewise.
6116         * lib/chown.c: Likewise.
6117         * lib/classpath.c: Likewise.
6118         * lib/classpath.h: Likewise.
6119         * lib/clean-temp.c: Likewise.
6120         * lib/clean-temp.h: Likewise.
6121         * lib/cloexec.c: Likewise.
6122         * lib/close-stream.c: Likewise.
6123         * lib/closein.c: Likewise.
6124         * lib/closein.h: Likewise.
6125         * lib/closeout.c: Likewise.
6126         * lib/closeout.h: Likewise.
6127         * lib/concat-filename.c: Likewise.
6128         * lib/copy-file.c: Likewise.
6129         * lib/copy-file.h: Likewise.
6130         * lib/count-one-bits.h: Likewise.
6131         * lib/crc.c: Likewise.
6132         * lib/crc.h: Likewise.
6133         * lib/creat-safer.c: Likewise.
6134         * lib/csharpcomp.c: Likewise.
6135         * lib/csharpcomp.h: Likewise.
6136         * lib/csharpexec.c: Likewise.
6137         * lib/csharpexec.h: Likewise.
6138         * lib/cycle-check.c: Likewise.
6139         * lib/cycle-check.h: Likewise.
6140         * lib/diacrit.c: Likewise.
6141         * lib/diacrit.h: Likewise.
6142         * lib/diffseq.h: Likewise.
6143         * lib/dirchownmod.c: Likewise.
6144         * lib/dirent.in.h: Likewise.
6145         * lib/dirfd.c: Likewise.
6146         * lib/dirfd.h: Likewise.
6147         * lib/dirname.c: Likewise.
6148         * lib/dirname.h: Likewise.
6149         * lib/dummy.c: Likewise.
6150         * lib/dup-safer.c: Likewise.
6151         * lib/dup2.c: Likewise.
6152         * lib/eealloc.h: Likewise.
6153         * lib/error.c: Likewise.
6154         * lib/error.h: Likewise.
6155         * lib/euidaccess.c: Likewise.
6156         * lib/exclude.c: Likewise.
6157         * lib/exclude.h: Likewise.
6158         * lib/execute.c: Likewise.
6159         * lib/execute.h: Likewise.
6160         * lib/exitfail.c: Likewise.
6161         * lib/exitfail.h: Likewise.
6162         * lib/expl.c: Likewise.
6163         * lib/fatal-signal.c: Likewise.
6164         * lib/fatal-signal.h: Likewise.
6165         * lib/fbufmode.c: Likewise.
6166         * lib/fbufmode.h: Likewise.
6167         * lib/fchdir.c: Likewise.
6168         * lib/fchmodat.c: Likewise.
6169         * lib/fchownat.c: Likewise.
6170         * lib/fcntl--.h: Likewise.
6171         * lib/fcntl-safer.h: Likewise.
6172         * lib/fcntl.in.h: Likewise.
6173         * lib/fd-safer.c: Likewise.
6174         * lib/fflush.c: Likewise.
6175         * lib/file-has-acl.c: Likewise.
6176         * lib/file-set.c: Likewise.
6177         * lib/file-type.c: Likewise.
6178         * lib/file-type.h: Likewise.
6179         * lib/fileblocks.c: Likewise.
6180         * lib/filemode.c: Likewise.
6181         * lib/filemode.h: Likewise.
6182         * lib/filename.h: Likewise.
6183         * lib/filenamecat.c: Likewise.
6184         * lib/filenamecat.h: Likewise.
6185         * lib/findprog.c: Likewise.
6186         * lib/findprog.h: Likewise.
6187         * lib/float.in.h: Likewise.
6188         * lib/floor.c: Likewise.
6189         * lib/floorf.c: Likewise.
6190         * lib/floorl.c: Likewise.
6191         * lib/fopen-safer.c: Likewise.
6192         * lib/fopen.c: Likewise.
6193         * lib/fpending.c: Likewise.
6194         * lib/fpending.h: Likewise.
6195         * lib/fprintf.c: Likewise.
6196         * lib/fprintftime.h: Likewise.
6197         * lib/fpucw.h: Likewise.
6198         * lib/fpurge.c: Likewise.
6199         * lib/fpurge.h: Likewise.
6200         * lib/freadable.c: Likewise.
6201         * lib/freadable.h: Likewise.
6202         * lib/freadahead.c: Likewise.
6203         * lib/freadahead.h: Likewise.
6204         * lib/freading.c: Likewise.
6205         * lib/freading.h: Likewise.
6206         * lib/free.c: Likewise.
6207         * lib/freopen.c: Likewise.
6208         * lib/frexp.c: Likewise.
6209         * lib/frexpl.c: Likewise.
6210         * lib/fseek.c: Likewise.
6211         * lib/fseterr.c: Likewise.
6212         * lib/fseterr.h: Likewise.
6213         * lib/fstatat.c: Likewise.
6214         * lib/fstrcmp.c: Likewise.
6215         * lib/fstrcmp.h: Likewise.
6216         * lib/fsusage.c: Likewise.
6217         * lib/fsusage.h: Likewise.
6218         * lib/ftell.c: Likewise.
6219         * lib/ftello.c: Likewise.
6220         * lib/fts-cycle.c: Likewise.
6221         * lib/fts.c: Likewise.
6222         * lib/fts_.h: Likewise.
6223         * lib/full-read.c: Likewise.
6224         * lib/full-read.h: Likewise.
6225         * lib/full-write.c: Likewise.
6226         * lib/full-write.h: Likewise.
6227         * lib/fwritable.c: Likewise.
6228         * lib/fwritable.h: Likewise.
6229         * lib/fwriteerror.c: Likewise.
6230         * lib/fwriteerror.h: Likewise.
6231         * lib/fwriting.c: Likewise.
6232         * lib/fwriting.h: Likewise.
6233         * lib/gcd.c: Likewise.
6234         * lib/gcd.h: Likewise.
6235         * lib/getcwd.c: Likewise.
6236         * lib/getdate.h: Likewise.
6237         * lib/getdate.y: Likewise.
6238         * lib/getdomainname.c: Likewise.
6239         * lib/getdomainname.h: Likewise.
6240         * lib/getgroups.c: Likewise.
6241         * lib/gethostname.c: Likewise.
6242         * lib/gethrxtime.c: Likewise.
6243         * lib/gethrxtime.h: Likewise.
6244         * lib/getloadavg.c: Likewise.
6245         * lib/getndelim2.c: Likewise.
6246         * lib/getndelim2.h: Likewise.
6247         * lib/getnline.c: Likewise.
6248         * lib/getnline.h: Likewise.
6249         * lib/getopt.c: Likewise.
6250         * lib/getopt.in.h: Likewise.
6251         * lib/getopt1.c: Likewise.
6252         * lib/getopt_int.h: Likewise.
6253         * lib/getpagesize.h: Likewise.
6254         * lib/getsubopt.c: Likewise.
6255         * lib/gettime.c: Likewise.
6256         * lib/getugroups.c: Likewise.
6257         * lib/getugroups.h: Likewise.
6258         * lib/getusershell.c: Likewise.
6259         * lib/gl_anyavltree_list1.h: Likewise.
6260         * lib/gl_anyavltree_list2.h: Likewise.
6261         * lib/gl_anyhash_list1.h: Likewise.
6262         * lib/gl_anyhash_list2.h: Likewise.
6263         * lib/gl_anylinked_list1.h: Likewise.
6264         * lib/gl_anylinked_list2.h: Likewise.
6265         * lib/gl_anyrbtree_list1.h: Likewise.
6266         * lib/gl_anyrbtree_list2.h: Likewise.
6267         * lib/gl_anytree_list1.h: Likewise.
6268         * lib/gl_anytree_list2.h: Likewise.
6269         * lib/gl_anytree_oset.h: Likewise.
6270         * lib/gl_anytreehash_list1.h: Likewise.
6271         * lib/gl_anytreehash_list2.h: Likewise.
6272         * lib/gl_array_list.c: Likewise.
6273         * lib/gl_array_list.h: Likewise.
6274         * lib/gl_array_oset.c: Likewise.
6275         * lib/gl_array_oset.h: Likewise.
6276         * lib/gl_avltree_list.c: Likewise.
6277         * lib/gl_avltree_list.h: Likewise.
6278         * lib/gl_avltree_oset.c: Likewise.
6279         * lib/gl_avltree_oset.h: Likewise.
6280         * lib/gl_avltreehash_list.c: Likewise.
6281         * lib/gl_avltreehash_list.h: Likewise.
6282         * lib/gl_carray_list.c: Likewise.
6283         * lib/gl_carray_list.h: Likewise.
6284         * lib/gl_linked_list.c: Likewise.
6285         * lib/gl_linked_list.h: Likewise.
6286         * lib/gl_linkedhash_list.c: Likewise.
6287         * lib/gl_linkedhash_list.h: Likewise.
6288         * lib/gl_list.c: Likewise.
6289         * lib/gl_list.h: Likewise.
6290         * lib/gl_oset.c: Likewise.
6291         * lib/gl_oset.h: Likewise.
6292         * lib/gl_rbtree_list.c: Likewise.
6293         * lib/gl_rbtree_list.h: Likewise.
6294         * lib/gl_rbtree_oset.c: Likewise.
6295         * lib/gl_rbtree_oset.h: Likewise.
6296         * lib/gl_rbtreehash_list.c: Likewise.
6297         * lib/gl_rbtreehash_list.h: Likewise.
6298         * lib/gl_sublist.c: Likewise.
6299         * lib/gl_sublist.h: Likewise.
6300         * lib/group-member.c: Likewise.
6301         * lib/group-member.h: Likewise.
6302         * lib/hard-locale.c: Likewise.
6303         * lib/hard-locale.h: Likewise.
6304         * lib/hash-pjw.c: Likewise.
6305         * lib/hash-pjw.h: Likewise.
6306         * lib/hash-triple.c: Likewise.
6307         * lib/hash.c: Likewise.
6308         * lib/hash.h: Likewise.
6309         * lib/human.c: Likewise.
6310         * lib/human.h: Likewise.
6311         * lib/i-ring.c: Likewise.
6312         * lib/i-ring.h: Likewise.
6313         * lib/idcache.c: Likewise.
6314         * lib/imaxabs.c: Likewise.
6315         * lib/imaxdiv.c: Likewise.
6316         * lib/inet_pton.c: Likewise.
6317         * lib/inet_pton.h: Likewise.
6318         * lib/intprops.h: Likewise.
6319         * lib/inttostr.c: Likewise.
6320         * lib/inttostr.h: Likewise.
6321         * lib/inttypes.in.h: Likewise.
6322         * lib/isapipe.c: Likewise.
6323         * lib/isdir.c: Likewise.
6324         * lib/isnan.c: Likewise.
6325         * lib/isnan.h: Likewise.
6326         * lib/isnanf.c: Likewise.
6327         * lib/isnanf.h: Likewise.
6328         * lib/isnanl-nolibm.h: Likewise.
6329         * lib/isnanl.c: Likewise.
6330         * lib/isnanl.h: Likewise.
6331         * lib/javacomp.c: Likewise.
6332         * lib/javacomp.h: Likewise.
6333         * lib/javaexec.c: Likewise.
6334         * lib/javaexec.h: Likewise.
6335         * lib/javaversion.c: Likewise.
6336         * lib/javaversion.h: Likewise.
6337         * lib/javaversion.java: Likewise.
6338         * lib/lbrkprop.h: Likewise.
6339         * lib/lchmod.h: Likewise.
6340         * lib/lchown.c: Likewise.
6341         * lib/ldexpl.c: Likewise.
6342         * lib/linebreak.c: Likewise.
6343         * lib/linebreak.h: Likewise.
6344         * lib/linebuffer.c: Likewise.
6345         * lib/linebuffer.h: Likewise.
6346         * lib/locale.in.h: Likewise.
6347         * lib/logl.c: Likewise.
6348         * lib/long-options.c: Likewise.
6349         * lib/long-options.h: Likewise.
6350         * lib/lstat.c: Likewise.
6351         * lib/lstat.h: Likewise.
6352         * lib/math.in.h: Likewise.
6353         * lib/mbchar.c: Likewise.
6354         * lib/mbchar.h: Likewise.
6355         * lib/mbfile.h: Likewise.
6356         * lib/mbiter.h: Likewise.
6357         * lib/mbscasecmp.c: Likewise.
6358         * lib/mbscasestr.c: Likewise.
6359         * lib/mbschr.c: Likewise.
6360         * lib/mbscspn.c: Likewise.
6361         * lib/mbslen.c: Likewise.
6362         * lib/mbsncasecmp.c: Likewise.
6363         * lib/mbsnlen.c: Likewise.
6364         * lib/mbspbrk.c: Likewise.
6365         * lib/mbspcasecmp.c: Likewise.
6366         * lib/mbsrchr.c: Likewise.
6367         * lib/mbssep.c: Likewise.
6368         * lib/mbsspn.c: Likewise.
6369         * lib/mbsstr.c: Likewise.
6370         * lib/mbstok_r.c: Likewise.
6371         * lib/mbswidth.c: Likewise.
6372         * lib/mbswidth.h: Likewise.
6373         * lib/mbuiter.h: Likewise.
6374         * lib/memcasecmp.c: Likewise.
6375         * lib/memcasecmp.h: Likewise.
6376         * lib/memchr.c: Likewise.
6377         * lib/memcmp.c: Likewise.
6378         * lib/memcoll.c: Likewise.
6379         * lib/memcoll.h: Likewise.
6380         * lib/memcpy.c: Likewise.
6381         * lib/memrchr.c: Likewise.
6382         * lib/mkancesdirs.c: Likewise.
6383         * lib/mkdir-p.c: Likewise.
6384         * lib/mkdir-p.h: Likewise.
6385         * lib/mkdir.c: Likewise.
6386         * lib/mkdirat.c: Likewise.
6387         * lib/mkdtemp.c: Likewise.
6388         * lib/mkstemp-safer.c: Likewise.
6389         * lib/mkstemp.c: Likewise.
6390         * lib/modechange.c: Likewise.
6391         * lib/modechange.h: Likewise.
6392         * lib/mountlist.c: Likewise.
6393         * lib/mountlist.h: Likewise.
6394         * lib/mpsort.c: Likewise.
6395         * lib/nanosleep.c: Likewise.
6396         * lib/obstack.c: Likewise.
6397         * lib/obstack.h: Likewise.
6398         * lib/open-safer.c: Likewise.
6399         * lib/open.c: Likewise.
6400         * lib/openat-die.c: Likewise.
6401         * lib/openat-priv.h: Likewise.
6402         * lib/openat-proc.c: Likewise.
6403         * lib/openat.c: Likewise.
6404         * lib/openat.h: Likewise.
6405         * lib/pagealign_alloc.c: Likewise.
6406         * lib/pagealign_alloc.h: Likewise.
6407         * lib/physmem.c: Likewise.
6408         * lib/physmem.h: Likewise.
6409         * lib/pipe-safer.c: Likewise.
6410         * lib/pipe.c: Likewise.
6411         * lib/pipe.h: Likewise.
6412         * lib/posixtm.c: Likewise.
6413         * lib/posixtm.h: Likewise.
6414         * lib/posixver.c: Likewise.
6415         * lib/printf-frexp.c: Likewise.
6416         * lib/printf-frexp.h: Likewise.
6417         * lib/printf-frexpl.c: Likewise.
6418         * lib/printf-frexpl.h: Likewise.
6419         * lib/printf.c: Likewise.
6420         * lib/progname.c: Likewise.
6421         * lib/progname.h: Likewise.
6422         * lib/progreloc.c: Likewise.
6423         * lib/putenv.c: Likewise.
6424         * lib/quote.c: Likewise.
6425         * lib/quote.h: Likewise.
6426         * lib/quotearg.c: Likewise.
6427         * lib/quotearg.h: Likewise.
6428         * lib/raise.c: Likewise.
6429         * lib/readline.c: Likewise.
6430         * lib/readline.h: Likewise.
6431         * lib/readlink.c: Likewise.
6432         * lib/readtokens.c: Likewise.
6433         * lib/readtokens.h: Likewise.
6434         * lib/readtokens0.c: Likewise.
6435         * lib/readtokens0.h: Likewise.
6436         * lib/readutmp.c: Likewise.
6437         * lib/readutmp.h: Likewise.
6438         * lib/realloc.c: Likewise.
6439         * lib/relocwrapper.c: Likewise.
6440         * lib/rename-dest-slash.c: Likewise.
6441         * lib/rename.c: Likewise.
6442         * lib/rmdir.c: Likewise.
6443         * lib/rpmatch.c: Likewise.
6444         * lib/safe-read.c: Likewise.
6445         * lib/safe-read.h: Likewise.
6446         * lib/safe-write.c: Likewise.
6447         * lib/safe-write.h: Likewise.
6448         * lib/same-inode.h: Likewise.
6449         * lib/same.c: Likewise.
6450         * lib/same.h: Likewise.
6451         * lib/save-cwd.c: Likewise.
6452         * lib/save-cwd.h: Likewise.
6453         * lib/savedir.c: Likewise.
6454         * lib/savedir.h: Likewise.
6455         * lib/savewd.c: Likewise.
6456         * lib/savewd.h: Likewise.
6457         * lib/search.in.h: Likewise.
6458         * lib/setenv.c: Likewise.
6459         * lib/setenv.h: Likewise.
6460         * lib/settime.c: Likewise.
6461         * lib/sh-quote.c: Likewise.
6462         * lib/sh-quote.h: Likewise.
6463         * lib/sig2str.c: Likewise.
6464         * lib/sig2str.h: Likewise.
6465         * lib/signal.in.h: Likewise.
6466         * lib/signbitd.c: Likewise.
6467         * lib/signbitf.c: Likewise.
6468         * lib/signbitl.c: Likewise.
6469         * lib/sigprocmask.c: Likewise.
6470         * lib/sincosl.c: Likewise.
6471         * lib/sleep.c: Likewise.
6472         * lib/sprintf.c: Likewise.
6473         * lib/sqrtl.c: Likewise.
6474         * lib/stat-time.h: Likewise.
6475         * lib/stdio--.h: Likewise.
6476         * lib/stdio-safer.h: Likewise.
6477         * lib/stdlib--.h: Likewise.
6478         * lib/stdlib-safer.h: Likewise.
6479         * lib/stdlib.in.h: Likewise.
6480         * lib/stpcpy.c: Likewise.
6481         * lib/stpncpy.c: Likewise.
6482         * lib/strchrnul.c: Likewise.
6483         * lib/strcspn.c: Likewise.
6484         * lib/strerror.c: Likewise.
6485         * lib/strftime.c: Likewise.
6486         * lib/strftime.h: Likewise.
6487         * lib/striconveh.c: Likewise.
6488         * lib/striconveh.h: Likewise.
6489         * lib/striconveha.c: Likewise.
6490         * lib/striconveha.h: Likewise.
6491         * lib/stripslash.c: Likewise.
6492         * lib/strnlen1.c: Likewise.
6493         * lib/strnlen1.h: Likewise.
6494         * lib/strtod.c: Likewise.
6495         * lib/strtoimax.c: Likewise.
6496         * lib/strtok_r.c: Likewise.
6497         * lib/strtol.c: Likewise.
6498         * lib/strtoll.c: Likewise.
6499         * lib/strtoul.c: Likewise.
6500         * lib/strtoull.c: Likewise.
6501         * lib/sysexits.in.h: Likewise.
6502         * lib/tempname.c: Likewise.
6503         * lib/tempname.h: Likewise.
6504         * lib/timespec.h: Likewise.
6505         * lib/tls.c: Likewise.
6506         * lib/tls.h: Likewise.
6507         * lib/tmpdir.c: Likewise.
6508         * lib/tmpdir.h: Likewise.
6509         * lib/tmpfile-safer.c: Likewise.
6510         * lib/tmpfile.c: Likewise.
6511         * lib/trigl.c: Likewise.
6512         * lib/trigl.h: Likewise.
6513         * lib/trim.c: Likewise.
6514         * lib/trim.h: Likewise.
6515         * lib/trunc.c: Likewise.
6516         * lib/truncf.c: Likewise.
6517         * lib/truncl.c: Likewise.
6518         * lib/tsearch.c: Likewise.
6519         * lib/unicodeio.c: Likewise.
6520         * lib/unicodeio.h: Likewise.
6521         * lib/unistd--.h: Likewise.
6522         * lib/unistd-safer.h: Likewise.
6523         * lib/unistdio/ulc-fprintf.c: Likewise.
6524         * lib/unistdio/ulc-vfprintf.c: Likewise.
6525         * lib/unlinkdir.c: Likewise.
6526         * lib/unlinkdir.h: Likewise.
6527         * lib/unlocked-io.h: Likewise.
6528         * lib/unsetenv.c: Likewise.
6529         * lib/userspec.c: Likewise.
6530         * lib/utime.c: Likewise.
6531         * lib/utimecmp.c: Likewise.
6532         * lib/utimecmp.h: Likewise.
6533         * lib/utimens.c: Likewise.
6534         * lib/verify.h: Likewise.
6535         * lib/verror.c: Likewise.
6536         * lib/verror.h: Likewise.
6537         * lib/version-etc-fsf.c: Likewise.
6538         * lib/version-etc.c: Likewise.
6539         * lib/version-etc.h: Likewise.
6540         * lib/vfprintf.c: Likewise.
6541         * lib/vprintf.c: Likewise.
6542         * lib/vsprintf.c: Likewise.
6543         * lib/w32spawn.h: Likewise.
6544         * lib/wait-process.c: Likewise.
6545         * lib/wait-process.h: Likewise.
6546         * lib/wcwidth.c: Likewise.
6547         * lib/write-any-file.c: Likewise.
6548         * lib/xalloc-die.c: Likewise.
6549         * lib/xalloc.h: Likewise.
6550         * lib/xasprintf.c: Likewise.
6551         * lib/xgetcwd.c: Likewise.
6552         * lib/xgetcwd.h: Likewise.
6553         * lib/xgetdomainname.c: Likewise.
6554         * lib/xgetdomainname.h: Likewise.
6555         * lib/xgethostname.c: Likewise.
6556         * lib/xmalloc.c: Likewise.
6557         * lib/xmalloca.c: Likewise.
6558         * lib/xmalloca.h: Likewise.
6559         * lib/xmemcoll.c: Likewise.
6560         * lib/xnanosleep.c: Likewise.
6561         * lib/xreadlink.c: Likewise.
6562         * lib/xreadlink.h: Likewise.
6563         * lib/xsetenv.c: Likewise.
6564         * lib/xsetenv.h: Likewise.
6565         * lib/xstriconv.c: Likewise.
6566         * lib/xstriconv.h: Likewise.
6567         * lib/xstrndup.c: Likewise.
6568         * lib/xstrndup.h: Likewise.
6569         * lib/xstrtod.c: Likewise.
6570         * lib/xstrtod.h: Likewise.
6571         * lib/xstrtol-error.c: Likewise.
6572         * lib/xstrtol.c: Likewise.
6573         * lib/xstrtol.h: Likewise.
6574         * lib/xtime.h: Likewise.
6575         * lib/xvasprintf.c: Likewise.
6576         * lib/xvasprintf.h: Likewise.
6577         * lib/yesno.c: Likewise.
6578         * lib/yesno.h: Likewise.
6579         * posix-modules: Likewise.
6580         * tests/test-alloca-opt.c: Likewise.
6581         * tests/test-arcfour.c: Likewise.
6582         * tests/test-arctwo.c: Likewise.
6583         * tests/test-argmatch.c: Likewise.
6584         * tests/test-argp-2.sh: Likewise.
6585         * tests/test-argp.c: Likewise.
6586         * tests/test-arpa_inet.c: Likewise.
6587         * tests/test-array_list.c: Likewise.
6588         * tests/test-array_oset.c: Likewise.
6589         * tests/test-atexit.c: Likewise.
6590         * tests/test-avltree_list.c: Likewise.
6591         * tests/test-avltree_oset.c: Likewise.
6592         * tests/test-avltreehash_list.c: Likewise.
6593         * tests/test-base64.c: Likewise.
6594         * tests/test-binary-io.c: Likewise.
6595         * tests/test-byteswap.c: Likewise.
6596         * tests/test-c-ctype.c: Likewise.
6597         * tests/test-c-strcasecmp.c: Likewise.
6598         * tests/test-c-strcasestr.c: Likewise.
6599         * tests/test-c-strncasecmp.c: Likewise.
6600         * tests/test-c-strstr.c: Likewise.
6601         * tests/test-canonicalize-lgpl.c: Likewise.
6602         * tests/test-canonicalize.c: Likewise.
6603         * tests/test-carray_list.c: Likewise.
6604         * tests/test-ceilf.c: Likewise.
6605         * tests/test-ceill.c: Likewise.
6606         * tests/test-count-one-bits.c: Likewise.
6607         * tests/test-crc.c: Likewise.
6608         * tests/test-dirname.c: Likewise.
6609         * tests/test-fbufmode.c: Likewise.
6610         * tests/test-fcntl.c: Likewise.
6611         * tests/test-fflush.c: Likewise.
6612         * tests/test-floorf.c: Likewise.
6613         * tests/test-floorl.c: Likewise.
6614         * tests/test-fopen.c: Likewise.
6615         * tests/test-fprintf-posix.c: Likewise.
6616         * tests/test-fprintf-posix.h: Likewise.
6617         * tests/test-fpurge.c: Likewise.
6618         * tests/test-freadable.c: Likewise.
6619         * tests/test-freadahead.c: Likewise.
6620         * tests/test-freading.c: Likewise.
6621         * tests/test-freopen.c: Likewise.
6622         * tests/test-frexp.c: Likewise.
6623         * tests/test-frexpl.c: Likewise.
6624         * tests/test-fseek.c: Likewise.
6625         * tests/test-fseeko.c: Likewise.
6626         * tests/test-fseterr.c: Likewise.
6627         * tests/test-fstrcmp.c: Likewise.
6628         * tests/test-ftell.c: Likewise.
6629         * tests/test-ftello.c: Likewise.
6630         * tests/test-fwritable.c: Likewise.
6631         * tests/test-fwriting.c: Likewise.
6632         * tests/test-getaddrinfo.c: Likewise.
6633         * tests/test-getpass.c: Likewise.
6634         * tests/test-gettimeofday.c: Likewise.
6635         * tests/test-hmac-md5.c: Likewise.
6636         * tests/test-hmac-sha1.c: Likewise.
6637         * tests/test-iconv.c: Likewise.
6638         * tests/test-iconvme.c: Likewise.
6639         * tests/test-inttypes.c: Likewise.
6640         * tests/test-isnan.c: Likewise.
6641         * tests/test-isnanf.c: Likewise.
6642         * tests/test-isnanl-nolibm.c: Likewise.
6643         * tests/test-isnanl.c: Likewise.
6644         * tests/test-isnanl.h: Likewise.
6645         * tests/test-ldexpl.c: Likewise.
6646         * tests/test-linked_list.c: Likewise.
6647         * tests/test-linkedhash_list.c: Likewise.
6648         * tests/test-locale.c: Likewise.
6649         * tests/test-localename.c: Likewise.
6650         * tests/test-lock.c: Likewise.
6651         * tests/test-lseek.c: Likewise.
6652         * tests/test-malloca.c: Likewise.
6653         * tests/test-math.c: Likewise.
6654         * tests/test-mbscasecmp.c: Likewise.
6655         * tests/test-mbscasestr1.c: Likewise.
6656         * tests/test-mbscasestr2.c: Likewise.
6657         * tests/test-mbscasestr3.c: Likewise.
6658         * tests/test-mbscasestr4.c: Likewise.
6659         * tests/test-mbschr.c: Likewise.
6660         * tests/test-mbscspn.c: Likewise.
6661         * tests/test-mbsncasecmp.c: Likewise.
6662         * tests/test-mbspbrk.c: Likewise.
6663         * tests/test-mbspcasecmp.c: Likewise.
6664         * tests/test-mbsrchr.c: Likewise.
6665         * tests/test-mbsspn.c: Likewise.
6666         * tests/test-mbsstr1.c: Likewise.
6667         * tests/test-mbsstr2.c: Likewise.
6668         * tests/test-mbsstr3.c: Likewise.
6669         * tests/test-md5.c: Likewise.
6670         * tests/test-memmem.c: Likewise.
6671         * tests/test-netinet_in.c: Likewise.
6672         * tests/test-open.c: Likewise.
6673         * tests/test-printf-frexp.c: Likewise.
6674         * tests/test-printf-frexpl.c: Likewise.
6675         * tests/test-printf-posix.c: Likewise.
6676         * tests/test-printf-posix.h: Likewise.
6677         * tests/test-rbtree_list.c: Likewise.
6678         * tests/test-rbtree_oset.c: Likewise.
6679         * tests/test-rbtreehash_list.c: Likewise.
6680         * tests/test-read-file.c: Likewise.
6681         * tests/test-rijndael.c: Likewise.
6682         * tests/test-search.c: Likewise.
6683         * tests/test-signbit.c: Likewise.
6684         * tests/test-sleep.c: Likewise.
6685         * tests/test-snprintf-posix.c: Likewise.
6686         * tests/test-snprintf-posix.h: Likewise.
6687         * tests/test-snprintf.c: Likewise.
6688         * tests/test-sprintf-posix.c: Likewise.
6689         * tests/test-sprintf-posix.h: Likewise.
6690         * tests/test-stat-time.c: Likewise.
6691         * tests/test-stdbool.c: Likewise.
6692         * tests/test-stdint.c: Likewise.
6693         * tests/test-stdio.c: Likewise.
6694         * tests/test-stdlib.c: Likewise.
6695         * tests/test-stpncpy.c: Likewise.
6696         * tests/test-strcasestr.c: Likewise.
6697         * tests/test-striconv.c: Likewise.
6698         * tests/test-striconveh.c: Likewise.
6699         * tests/test-striconveha.c: Likewise.
6700         * tests/test-string.c: Likewise.
6701         * tests/test-sys_select.c: Likewise.
6702         * tests/test-sys_socket.c: Likewise.
6703         * tests/test-sys_stat.c: Likewise.
6704         * tests/test-sys_time.c: Likewise.
6705         * tests/test-sysexits.c: Likewise.
6706         * tests/test-time.c: Likewise.
6707         * tests/test-tls.c: Likewise.
6708         * tests/test-trunc.c: Likewise.
6709         * tests/test-truncf.c: Likewise.
6710         * tests/test-truncl.c: Likewise.
6711         * tests/test-unistd.c: Likewise.
6712         * tests/test-vasnprintf-posix.c: Likewise.
6713         * tests/test-vasnprintf-posix2.c: Likewise.
6714         * tests/test-vasnprintf.c: Likewise.
6715         * tests/test-vasprintf-posix.c: Likewise.
6716         * tests/test-vasprintf.c: Likewise.
6717         * tests/test-verify.c: Likewise.
6718         * tests/test-vfprintf-posix.c: Likewise.
6719         * tests/test-vprintf-posix.c: Likewise.
6720         * tests/test-vsnprintf-posix.c: Likewise.
6721         * tests/test-vsnprintf.c: Likewise.
6722         * tests/test-vsprintf-posix.c: Likewise.
6723         * tests/test-wchar.c: Likewise.
6724         * tests/test-wctype.c: Likewise.
6725         * tests/test-wcwidth.c: Likewise.
6726         * tests/test-xstrtol.c: Likewise.
6727         * tests/test-xvasprintf.c: Likewise.
6728         * tests/uniconv/test-u16-conv-from-enc.c: Likewise.
6729         * tests/uniconv/test-u16-conv-to-enc.c: Likewise.
6730         * tests/uniconv/test-u16-strconv-from-enc.c: Likewise.
6731         * tests/uniconv/test-u16-strconv-to-enc.c: Likewise.
6732         * tests/uniconv/test-u32-conv-from-enc.c: Likewise.
6733         * tests/uniconv/test-u32-conv-to-enc.c: Likewise.
6734         * tests/uniconv/test-u32-strconv-from-enc.c: Likewise.
6735         * tests/uniconv/test-u32-strconv-to-enc.c: Likewise.
6736         * tests/uniconv/test-u8-conv-from-enc.c: Likewise.
6737         * tests/uniconv/test-u8-conv-to-enc.c: Likewise.
6738         * tests/uniconv/test-u8-strconv-from-enc.c: Likewise.
6739         * tests/uniconv/test-u8-strconv-to-enc.c: Likewise.
6740         * tests/uniname/test-uninames.c: Likewise.
6741         * tests/unistdio/test-u16-asnprintf1.c: Likewise.
6742         * tests/unistdio/test-u16-asnprintf1.h: Likewise.
6743         * tests/unistdio/test-u16-printf1.h: Likewise.
6744         * tests/unistdio/test-u16-vasnprintf1.c: Likewise.
6745         * tests/unistdio/test-u16-vasnprintf2.c: Likewise.
6746         * tests/unistdio/test-u16-vasnprintf3.c: Likewise.
6747         * tests/unistdio/test-u16-vasprintf1.c: Likewise.
6748         * tests/unistdio/test-u16-vsnprintf1.c: Likewise.
6749         * tests/unistdio/test-u16-vsprintf1.c: Likewise.
6750         * tests/unistdio/test-u32-asnprintf1.c: Likewise.
6751         * tests/unistdio/test-u32-asnprintf1.h: Likewise.
6752         * tests/unistdio/test-u32-printf1.h: Likewise.
6753         * tests/unistdio/test-u32-vasnprintf1.c: Likewise.
6754         * tests/unistdio/test-u32-vasnprintf2.c: Likewise.
6755         * tests/unistdio/test-u32-vasnprintf3.c: Likewise.
6756         * tests/unistdio/test-u32-vasprintf1.c: Likewise.
6757         * tests/unistdio/test-u32-vsnprintf1.c: Likewise.
6758         * tests/unistdio/test-u32-vsprintf1.c: Likewise.
6759         * tests/unistdio/test-u8-asnprintf1.c: Likewise.
6760         * tests/unistdio/test-u8-asnprintf1.h: Likewise.
6761         * tests/unistdio/test-u8-printf1.h: Likewise.
6762         * tests/unistdio/test-u8-vasnprintf1.c: Likewise.
6763         * tests/unistdio/test-u8-vasnprintf2.c: Likewise.
6764         * tests/unistdio/test-u8-vasnprintf3.c: Likewise.
6765         * tests/unistdio/test-u8-vasprintf1.c: Likewise.
6766         * tests/unistdio/test-u8-vsnprintf1.c: Likewise.
6767         * tests/unistdio/test-u8-vsprintf1.c: Likewise.
6768         * tests/unistdio/test-ulc-asnprintf1.c: Likewise.
6769         * tests/unistdio/test-ulc-asnprintf1.h: Likewise.
6770         * tests/unistdio/test-ulc-printf1.h: Likewise.
6771         * tests/unistdio/test-ulc-vasnprintf1.c: Likewise.
6772         * tests/unistdio/test-ulc-vasnprintf2.c: Likewise.
6773         * tests/unistdio/test-ulc-vasnprintf3.c: Likewise.
6774         * tests/unistdio/test-ulc-vasprintf1.c: Likewise.
6775         * tests/unistdio/test-ulc-vsnprintf1.c: Likewise.
6776         * tests/unistdio/test-ulc-vsprintf1.c: Likewise.
6777         * tests/uniwidth/test-u16-strwidth.c: Likewise.
6778         * tests/uniwidth/test-u16-width.c: Likewise.
6779         * tests/uniwidth/test-u32-strwidth.c: Likewise.
6780         * tests/uniwidth/test-u32-width.c: Likewise.
6781         * tests/uniwidth/test-u8-strwidth.c: Likewise.
6782         * tests/uniwidth/test-u8-width.c: Likewise.
6783         * tests/uniwidth/test-uc_width.c: Likewise.
6784         * config/srclist-update: Likewise.
6785         (fixlicense): Update to GPLv3+.
6786
6787         Change copyright notice from LGPLv2.1+ to LGPLv3+.
6788         * tests/test-tsearch.c: Change copyright notice.
6789
6790         Change copyright notice from LGPLv2.0+ to LGPLv3+.
6791         * lib/c-strcaseeq.h: Change copyright notice.
6792         * lib/streq.h: Likewise.
6793         * lib/uniconv.h: Likewise.
6794         * lib/uniconv/u-conv-from-enc.h: Likewise.
6795         * lib/uniconv/u-conv-to-enc.h: Likewise.
6796         * lib/uniconv/u-strconv-from-enc.h: Likewise.
6797         * lib/uniconv/u-strconv-to-enc.h: Likewise.
6798         * lib/uniconv/u16-conv-from-enc.c: Likewise.
6799         * lib/uniconv/u16-conv-to-enc.c: Likewise.
6800         * lib/uniconv/u16-strconv-from-enc.c: Likewise.
6801         * lib/uniconv/u16-strconv-from-locale.c: Likewise.
6802         * lib/uniconv/u16-strconv-to-enc.c: Likewise.
6803         * lib/uniconv/u16-strconv-to-locale.c: Likewise.
6804         * lib/uniconv/u32-conv-from-enc.c: Likewise.
6805         * lib/uniconv/u32-conv-to-enc.c: Likewise.
6806         * lib/uniconv/u32-strconv-from-enc.c: Likewise.
6807         * lib/uniconv/u32-strconv-from-locale.c: Likewise.
6808         * lib/uniconv/u32-strconv-to-enc.c: Likewise.
6809         * lib/uniconv/u32-strconv-to-locale.c: Likewise.
6810         * lib/uniconv/u8-conv-from-enc.c: Likewise.
6811         * lib/uniconv/u8-conv-to-enc.c: Likewise.
6812         * lib/uniconv/u8-strconv-from-enc.c: Likewise.
6813         * lib/uniconv/u8-strconv-from-locale.c: Likewise.
6814         * lib/uniconv/u8-strconv-to-enc.c: Likewise.
6815         * lib/uniconv/u8-strconv-to-locale.c: Likewise.
6816         * lib/uniname.h: Likewise.
6817         * lib/uniname/uniname.c: Likewise.
6818         * lib/unistdio.h: Likewise.
6819         * lib/unistdio/u-asnprintf.h: Likewise.
6820         * lib/unistdio/u-asprintf.h: Likewise.
6821         * lib/unistdio/u-printf-args.c: Likewise.
6822         * lib/unistdio/u-printf-args.h: Likewise.
6823         * lib/unistdio/u-printf-parse.h: Likewise.
6824         * lib/unistdio/u-snprintf.h: Likewise.
6825         * lib/unistdio/u-sprintf.h: Likewise.
6826         * lib/unistdio/u-vasprintf.h: Likewise.
6827         * lib/unistdio/u-vsnprintf.h: Likewise.
6828         * lib/unistdio/u-vsprintf.h: Likewise.
6829         * lib/unistdio/u16-asnprintf.c: Likewise.
6830         * lib/unistdio/u16-asprintf.c: Likewise.
6831         * lib/unistdio/u16-printf-parse.c: Likewise.
6832         * lib/unistdio/u16-snprintf.c: Likewise.
6833         * lib/unistdio/u16-sprintf.c: Likewise.
6834         * lib/unistdio/u16-u16-asnprintf.c: Likewise.
6835         * lib/unistdio/u16-u16-asprintf.c: Likewise.
6836         * lib/unistdio/u16-u16-snprintf.c: Likewise.
6837         * lib/unistdio/u16-u16-sprintf.c: Likewise.
6838         * lib/unistdio/u16-u16-vasnprintf.c: Likewise.
6839         * lib/unistdio/u16-u16-vasprintf.c: Likewise.
6840         * lib/unistdio/u16-u16-vsnprintf.c: Likewise.
6841         * lib/unistdio/u16-u16-vsprintf.c: Likewise.
6842         * lib/unistdio/u16-vasnprintf.c: Likewise.
6843         * lib/unistdio/u16-vasprintf.c: Likewise.
6844         * lib/unistdio/u16-vsnprintf.c: Likewise.
6845         * lib/unistdio/u16-vsprintf.c: Likewise.
6846         * lib/unistdio/u32-asnprintf.c: Likewise.
6847         * lib/unistdio/u32-asprintf.c: Likewise.
6848         * lib/unistdio/u32-printf-parse.c: Likewise.
6849         * lib/unistdio/u32-snprintf.c: Likewise.
6850         * lib/unistdio/u32-sprintf.c: Likewise.
6851         * lib/unistdio/u32-u32-asnprintf.c: Likewise.
6852         * lib/unistdio/u32-u32-asprintf.c: Likewise.
6853         * lib/unistdio/u32-u32-snprintf.c: Likewise.
6854         * lib/unistdio/u32-u32-sprintf.c: Likewise.
6855         * lib/unistdio/u32-u32-vasnprintf.c: Likewise.
6856         * lib/unistdio/u32-u32-vasprintf.c: Likewise.
6857         * lib/unistdio/u32-u32-vsnprintf.c: Likewise.
6858         * lib/unistdio/u32-u32-vsprintf.c: Likewise.
6859         * lib/unistdio/u32-vasnprintf.c: Likewise.
6860         * lib/unistdio/u32-vasprintf.c: Likewise.
6861         * lib/unistdio/u32-vsnprintf.c: Likewise.
6862         * lib/unistdio/u32-vsprintf.c: Likewise.
6863         * lib/unistdio/u8-asnprintf.c: Likewise.
6864         * lib/unistdio/u8-asprintf.c: Likewise.
6865         * lib/unistdio/u8-printf-parse.c: Likewise.
6866         * lib/unistdio/u8-snprintf.c: Likewise.
6867         * lib/unistdio/u8-sprintf.c: Likewise.
6868         * lib/unistdio/u8-u8-asnprintf.c: Likewise.
6869         * lib/unistdio/u8-u8-asprintf.c: Likewise.
6870         * lib/unistdio/u8-u8-snprintf.c: Likewise.
6871         * lib/unistdio/u8-u8-sprintf.c: Likewise.
6872         * lib/unistdio/u8-u8-vasnprintf.c: Likewise.
6873         * lib/unistdio/u8-u8-vasprintf.c: Likewise.
6874         * lib/unistdio/u8-u8-vsnprintf.c: Likewise.
6875         * lib/unistdio/u8-u8-vsprintf.c: Likewise.
6876         * lib/unistdio/u8-vasnprintf.c: Likewise.
6877         * lib/unistdio/u8-vasprintf.c: Likewise.
6878         * lib/unistdio/u8-vsnprintf.c: Likewise.
6879         * lib/unistdio/u8-vsprintf.c: Likewise.
6880         * lib/unistdio/ulc-asnprintf.c: Likewise.
6881         * lib/unistdio/ulc-asprintf.c: Likewise.
6882         * lib/unistdio/ulc-printf-parse.c: Likewise.
6883         * lib/unistdio/ulc-snprintf.c: Likewise.
6884         * lib/unistdio/ulc-sprintf.c: Likewise.
6885         * lib/unistdio/ulc-vasnprintf.c: Likewise.
6886         * lib/unistdio/ulc-vasprintf.c: Likewise.
6887         * lib/unistdio/ulc-vsnprintf.c: Likewise.
6888         * lib/unistdio/ulc-vsprintf.c: Likewise.
6889         * lib/unistr.h: Likewise.
6890         * lib/unistr/u-cpy-alloc.h: Likewise.
6891         * lib/unistr/u-cpy.h: Likewise.
6892         * lib/unistr/u-endswith.h: Likewise.
6893         * lib/unistr/u-move.h: Likewise.
6894         * lib/unistr/u-set.h: Likewise.
6895         * lib/unistr/u-startswith.h: Likewise.
6896         * lib/unistr/u-stpcpy.h: Likewise.
6897         * lib/unistr/u-stpncpy.h: Likewise.
6898         * lib/unistr/u-strcat.h: Likewise.
6899         * lib/unistr/u-strcpy.h: Likewise.
6900         * lib/unistr/u-strcspn.h: Likewise.
6901         * lib/unistr/u-strdup.h: Likewise.
6902         * lib/unistr/u-strlen.h: Likewise.
6903         * lib/unistr/u-strncat.h: Likewise.
6904         * lib/unistr/u-strncpy.h: Likewise.
6905         * lib/unistr/u-strnlen.h: Likewise.
6906         * lib/unistr/u-strpbrk.h: Likewise.
6907         * lib/unistr/u-strspn.h: Likewise.
6908         * lib/unistr/u-strstr.h: Likewise.
6909         * lib/unistr/u-strtok.h: Likewise.
6910         * lib/unistr/u16-check.c: Likewise.
6911         * lib/unistr/u16-chr.c: Likewise.
6912         * lib/unistr/u16-cmp.c: Likewise.
6913         * lib/unistr/u16-cpy-alloc.c: Likewise.
6914         * lib/unistr/u16-cpy.c: Likewise.
6915         * lib/unistr/u16-endswith.c: Likewise.
6916         * lib/unistr/u16-mblen.c: Likewise.
6917         * lib/unistr/u16-mbsnlen.c: Likewise.
6918         * lib/unistr/u16-mbtouc-aux.c: Likewise.
6919         * lib/unistr/u16-mbtouc-unsafe-aux.c: Likewise.
6920         * lib/unistr/u16-mbtouc-unsafe.c: Likewise.
6921         * lib/unistr/u16-mbtouc.c: Likewise.
6922         * lib/unistr/u16-mbtoucr.c: Likewise.
6923         * lib/unistr/u16-move.c: Likewise.
6924         * lib/unistr/u16-next.c: Likewise.
6925         * lib/unistr/u16-prev.c: Likewise.
6926         * lib/unistr/u16-set.c: Likewise.
6927         * lib/unistr/u16-startswith.c: Likewise.
6928         * lib/unistr/u16-stpcpy.c: Likewise.
6929         * lib/unistr/u16-stpncpy.c: Likewise.
6930         * lib/unistr/u16-strcat.c: Likewise.
6931         * lib/unistr/u16-strchr.c: Likewise.
6932         * lib/unistr/u16-strcmp.c: Likewise.
6933         * lib/unistr/u16-strcpy.c: Likewise.
6934         * lib/unistr/u16-strcspn.c: Likewise.
6935         * lib/unistr/u16-strdup.c: Likewise.
6936         * lib/unistr/u16-strlen.c: Likewise.
6937         * lib/unistr/u16-strmblen.c: Likewise.
6938         * lib/unistr/u16-strmbtouc.c: Likewise.
6939         * lib/unistr/u16-strncat.c: Likewise.
6940         * lib/unistr/u16-strncmp.c: Likewise.
6941         * lib/unistr/u16-strncpy.c: Likewise.
6942         * lib/unistr/u16-strnlen.c: Likewise.
6943         * lib/unistr/u16-strpbrk.c: Likewise.
6944         * lib/unistr/u16-strrchr.c: Likewise.
6945         * lib/unistr/u16-strspn.c: Likewise.
6946         * lib/unistr/u16-strstr.c: Likewise.
6947         * lib/unistr/u16-strtok.c: Likewise.
6948         * lib/unistr/u16-to-u32.c: Likewise.
6949         * lib/unistr/u16-to-u8.c: Likewise.
6950         * lib/unistr/u16-uctomb-aux.c: Likewise.
6951         * lib/unistr/u16-uctomb.c: Likewise.
6952         * lib/unistr/u32-check.c: Likewise.
6953         * lib/unistr/u32-chr.c: Likewise.
6954         * lib/unistr/u32-cmp.c: Likewise.
6955         * lib/unistr/u32-cpy-alloc.c: Likewise.
6956         * lib/unistr/u32-cpy.c: Likewise.
6957         * lib/unistr/u32-endswith.c: Likewise.
6958         * lib/unistr/u32-mblen.c: Likewise.
6959         * lib/unistr/u32-mbsnlen.c: Likewise.
6960         * lib/unistr/u32-mbtouc-unsafe.c: Likewise.
6961         * lib/unistr/u32-mbtouc.c: Likewise.
6962         * lib/unistr/u32-mbtoucr.c: Likewise.
6963         * lib/unistr/u32-move.c: Likewise.
6964         * lib/unistr/u32-next.c: Likewise.
6965         * lib/unistr/u32-prev.c: Likewise.
6966         * lib/unistr/u32-set.c: Likewise.
6967         * lib/unistr/u32-startswith.c: Likewise.
6968         * lib/unistr/u32-stpcpy.c: Likewise.
6969         * lib/unistr/u32-stpncpy.c: Likewise.
6970         * lib/unistr/u32-strcat.c: Likewise.
6971         * lib/unistr/u32-strchr.c: Likewise.
6972         * lib/unistr/u32-strcmp.c: Likewise.
6973         * lib/unistr/u32-strcpy.c: Likewise.
6974         * lib/unistr/u32-strcspn.c: Likewise.
6975         * lib/unistr/u32-strdup.c: Likewise.
6976         * lib/unistr/u32-strlen.c: Likewise.
6977         * lib/unistr/u32-strmblen.c: Likewise.
6978         * lib/unistr/u32-strmbtouc.c: Likewise.
6979         * lib/unistr/u32-strncat.c: Likewise.
6980         * lib/unistr/u32-strncmp.c: Likewise.
6981         * lib/unistr/u32-strncpy.c: Likewise.
6982         * lib/unistr/u32-strnlen.c: Likewise.
6983         * lib/unistr/u32-strpbrk.c: Likewise.
6984         * lib/unistr/u32-strrchr.c: Likewise.
6985         * lib/unistr/u32-strspn.c: Likewise.
6986         * lib/unistr/u32-strstr.c: Likewise.
6987         * lib/unistr/u32-strtok.c: Likewise.
6988         * lib/unistr/u32-to-u16.c: Likewise.
6989         * lib/unistr/u32-to-u8.c: Likewise.
6990         * lib/unistr/u32-uctomb.c: Likewise.
6991         * lib/unistr/u8-check.c: Likewise.
6992         * lib/unistr/u8-chr.c: Likewise.
6993         * lib/unistr/u8-cmp.c: Likewise.
6994         * lib/unistr/u8-cpy-alloc.c: Likewise.
6995         * lib/unistr/u8-cpy.c: Likewise.
6996         * lib/unistr/u8-endswith.c: Likewise.
6997         * lib/unistr/u8-mblen.c: Likewise.
6998         * lib/unistr/u8-mbsnlen.c: Likewise.
6999         * lib/unistr/u8-mbtouc-aux.c: Likewise.
7000         * lib/unistr/u8-mbtouc-unsafe-aux.c: Likewise.
7001         * lib/unistr/u8-mbtouc-unsafe.c: Likewise.
7002         * lib/unistr/u8-mbtouc.c: Likewise.
7003         * lib/unistr/u8-mbtoucr.c: Likewise.
7004         * lib/unistr/u8-move.c: Likewise.
7005         * lib/unistr/u8-next.c: Likewise.
7006         * lib/unistr/u8-prev.c: Likewise.
7007         * lib/unistr/u8-set.c: Likewise.
7008         * lib/unistr/u8-startswith.c: Likewise.
7009         * lib/unistr/u8-stpcpy.c: Likewise.
7010         * lib/unistr/u8-stpncpy.c: Likewise.
7011         * lib/unistr/u8-strcat.c: Likewise.
7012         * lib/unistr/u8-strchr.c: Likewise.
7013         * lib/unistr/u8-strcmp.c: Likewise.
7014         * lib/unistr/u8-strcpy.c: Likewise.
7015         * lib/unistr/u8-strcspn.c: Likewise.
7016         * lib/unistr/u8-strdup.c: Likewise.
7017         * lib/unistr/u8-strlen.c: Likewise.
7018         * lib/unistr/u8-strmblen.c: Likewise.
7019         * lib/unistr/u8-strmbtouc.c: Likewise.
7020         * lib/unistr/u8-strncat.c: Likewise.
7021         * lib/unistr/u8-strncmp.c: Likewise.
7022         * lib/unistr/u8-strncpy.c: Likewise.
7023         * lib/unistr/u8-strnlen.c: Likewise.
7024         * lib/unistr/u8-strpbrk.c: Likewise.
7025         * lib/unistr/u8-strrchr.c: Likewise.
7026         * lib/unistr/u8-strspn.c: Likewise.
7027         * lib/unistr/u8-strstr.c: Likewise.
7028         * lib/unistr/u8-strtok.c: Likewise.
7029         * lib/unistr/u8-to-u16.c: Likewise.
7030         * lib/unistr/u8-to-u32.c: Likewise.
7031         * lib/unistr/u8-uctomb-aux.c: Likewise.
7032         * lib/unistr/u8-uctomb.c: Likewise.
7033         * lib/unitypes.h: Likewise.
7034         * lib/uniwidth.h: Likewise.
7035         * lib/uniwidth/cjk.h: Likewise.
7036         * lib/uniwidth/u16-strwidth.c: Likewise.
7037         * lib/uniwidth/u16-width.c: Likewise.
7038         * lib/uniwidth/u32-strwidth.c: Likewise.
7039         * lib/uniwidth/u32-width.c: Likewise.
7040         * lib/uniwidth/u8-strwidth.c: Likewise.
7041         * lib/uniwidth/u8-width.c: Likewise.
7042         * lib/uniwidth/width.c: Likewise.
7043
7044 2007-10-07  Bruno Haible  <bruno@clisp.org>
7045
7046         * lib/inttypes.in.h: Change copyright notice from LGPL to GPL.
7047         The file is still under LGPL (see modules/inttypes).
7048
7049 2007-10-06  Bruno Haible  <bruno@clisp.org>
7050
7051         * modules/trunc (Dependencies): Add 'extensions'.
7052         * m4/trunc.m4 (gl_FUNC_TRUNC): Require gl_USE_SYSTEM_EXTENSIONS.
7053         Reported by Ben Pfaff <blp@gnu.org>.
7054
7055 2007-10-06  Bruno Haible  <bruno@clisp.org>
7056
7057         * modules/freopen-tests: New file.
7058         * tests/test-freopen.c: New file.
7059
7060         * modules/fopen-tests: New file.
7061         * tests/test-fopen.c: New file.
7062
7063         * modules/fopen: New file.
7064         * lib/fopen.c: New file.
7065         * m4/fopen.m4: New file.
7066         * modules/freopen: New file.
7067         * lib/freopen.c: New file.
7068         * m4/freopen.m4: New file.
7069         * lib/stdio.in.h (fopen, freopen): New declarations.
7070         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Initialize also GNULIB_FOPEN,
7071         GNULIB_FREOPEN, REPLACE_FOPEN, REPLACE_FREOPEN.
7072         * modules/stdio (Makefile.am): Substitute also GNULIB_FOPEN,
7073         GNULIB_FREOPEN, REPLACE_FOPEN, REPLACE_FREOPEN.
7074         * doc/functions/fopen.texi: Mention the 'fopen' module.
7075         * doc/functions/freopen.texi: Mention the 'freopen' module.
7076
7077 2007-10-06  Bruno Haible  <bruno@clisp.org>
7078
7079         * modules/open-tests: New file.
7080         * tests/test-open.c: New file.
7081
7082         * modules/open: New file.
7083         * lib/open.c: New file.
7084         * m4/open.m4: New file.
7085         * lib/fchdir.c (open): If the gnulib module 'open' is used, do what
7086         lib/open.c does.
7087         * lib/fcntl.in.h (open): Declare also if replaced by the 'open' module.
7088         * m4/fcntl_h.m4 (gl_FCNTL_MODULE_INDICATOR, gl_FCNTL_H_DEFAULTS): New
7089         macros.
7090         (gl_FCNTL_H): Require gl_FCNTL_H_DEFAULTS.
7091         * modules/fcntl (Makefile.am): Also substitute GNULIB_OPEN and
7092         REPLACE_OPEN.
7093         * doc/functions/open.texi: Mention the 'open' module.
7094
7095 2007-10-04  Bruno Haible  <bruno@clisp.org>
7096
7097         * modules/ceill-tests: New file.
7098         * tests/test-ceill.c: New file.
7099
7100         * modules/ceill: New file.
7101         * lib/ceill.c: Replace entire file.
7102         * m4/ceill.m4: New file.
7103         * lib/math.in.h (ceill): Replace declaration.
7104         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_CEILL.
7105         * modules/math (Makefile.am): Substitute also GNULIB_CEILL.
7106         * doc/functions/ceill.texi: Mention the 'ceill' module.
7107         * modules/mathl (Files): Remove lib/ceill.c.
7108         (Depends-on): Add ceill.
7109
7110 2007-10-04  Bruno Haible  <bruno@clisp.org>
7111
7112         * modules/ceilf-tests: New file.
7113         * tests/test-ceilf.c: New file.
7114
7115         * modules/ceilf: New file.
7116         * lib/ceil.c: New file.
7117         * lib/ceilf.c: New file.
7118         * m4/ceilf.m4: New file.
7119         * lib/math.in.h (ceilf): New declaration.
7120         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_CEILF and
7121         HAVE_DECL_CEILF.
7122         * modules/math (Makefile.am): Substitute also GNULIB_CEILF and
7123         HAVE_DECL_CEILF.
7124         * doc/functions/ceilf.texi: Mention the 'ceilf' module.
7125
7126 2007-10-04  Bruno Haible  <bruno@clisp.org>
7127
7128         * modules/floorl-tests: New file.
7129         * tests/test-floorl.c: New file.
7130
7131         * modules/floorl: New file.
7132         * lib/floorl.c: Replace entire file.
7133         * m4/floorl.m4: New file.
7134         * lib/math.in.h (floorl): Replace declaration.
7135         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_FLOORL.
7136         * modules/math (Makefile.am): Substitute also GNULIB_FLOORL.
7137         * doc/functions/floorl.texi: Mention the 'floorl' module.
7138         * modules/mathl (Files): Remove lib/floorl.c.
7139         (Depends-on): Add floorl.
7140
7141 2007-10-04  Bruno Haible  <bruno@clisp.org>
7142
7143         * modules/floorf-tests: New file.
7144         * tests/test-floorf.c: New file.
7145
7146         * modules/floorf: New file.
7147         * lib/floor.c: New file.
7148         * lib/floorf.c: New file.
7149         * m4/floorf.m4: New file.
7150         * lib/math.in.h (floorf): New declaration.
7151         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_FLOORF and
7152         HAVE_DECL_FLOORF.
7153         * modules/math (Makefile.am): Substitute also GNULIB_FLOORF and
7154         HAVE_DECL_FLOORF.
7155         * doc/functions/floorf.texi: Mention the 'floorf' module.
7156
7157 2007-10-04  Benoit Sigoure  <tsuna@lrde.epita.fr>
7158             Bruno Haible  <bruno@clisp.org>
7159
7160         Advertise for the Git server instead of the CVS server.
7161         * doc/gnulib-intro.texi (Steady Development): Mention the Git
7162         repository instead of the CVS one.
7163         * doc/gnulib-tool.texi (VCS Issues): Renamed from "CVS Issues". Talk
7164         about all VCS systems generically.
7165         * doc/gnulib.texi (Introduction): Capitalize `Git'.
7166
7167 2007-10-04  Bruno Haible  <bruno@clisp.org>
7168
7169         * doc/gnulib.texi (Function Substitutes): Explain what an absent module
7170         means.
7171         Reported by Benoît Sigoure <tsuna@lrde.epita.fr>.
7172
7173 2007-10-04  Bruno Haible  <bruno@clisp.org>
7174
7175         * modules/truncl-tests: New file.
7176         * tests/test-truncl.c: New file.
7177
7178         * modules/truncl: New file.
7179         * lib/truncl.c: New file.
7180         * m4/truncl.m4: New file.
7181         * lib/math.in.h (truncl): New declaration.
7182         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_TRUNCL and
7183         HAVE_DECL_TRUNCL.
7184         * modules/math (Makefile.am): Substitute also GNULIB_TRUNCL and
7185         HAVE_DECL_TRUNCL.
7186         * doc/functions/truncl.texi: Mention the 'truncl' module.
7187
7188 2007-10-04  Bruno Haible  <bruno@clisp.org>
7189
7190         * modules/truncf-tests: New file.
7191         * tests/test-truncf.c: New file.
7192
7193         * modules/truncf: New file.
7194         * lib/trunc.c: Make paramerizable through USE_* macros.
7195         * lib/truncf.c: New file.
7196         * m4/truncf.m4: New file.
7197         * lib/math.in.h (truncf): New declaration.
7198         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_TRUNCF and
7199         HAVE_DECL_TRUNCF.
7200         * modules/math (Makefile.am): Substitute also GNULIB_TRUNCF and
7201         HAVE_DECL_TRUNCF.
7202         * doc/functions/truncf.texi: Mention the 'truncf' module.
7203
7204 2007-10-03  Bruno Haible  <bruno@clisp.org>
7205
7206         * gnulib-tool (func_get_automake_snippet): Synthesize an EXTRA_DIST
7207         augmentation also for tests modules.
7208         * modules/argp-tests (Makefile.am): Remove EXTRA_DIST augmentation.
7209         * modules/atexit-tests (Makefile.am): Likewise.
7210         * modules/binary-io-tests (Makefile.am): Likewise.
7211         * modules/c-strcase-tests (Makefile.am): Likewise.
7212         * modules/canonicalize-lgpl-tests (Makefile.am): Likewise.
7213         * modules/canonicalize-tests (Makefile.am): Likewise.
7214         * modules/closein-tests (Makefile.am): Likewise.
7215         * modules/fprintf-posix-tests (Makefile.am): Likewise.
7216         * modules/freadahead-tests (Makefile.am): Likewise.
7217         * modules/fseek-tests (Makefile.am): Likewise.
7218         * modules/fseeko-tests (Makefile.am): Likewise.
7219         * modules/ftell-tests (Makefile.am): Likewise.
7220         * modules/ftello-tests (Makefile.am): Likewise.
7221         * modules/isnanl-nolibm-tests (Makefile.am): Likewise.
7222         * modules/isnanl-tests (Makefile.am): Likewise.
7223         * modules/lseek-tests (Makefile.am): Likewise.
7224         * modules/mbscasecmp-tests (Makefile.am): Likewise.
7225         * modules/mbscasestr-tests (Makefile.am): Likewise.
7226         * modules/mbschr-tests (Makefile.am): Likewise.
7227         * modules/mbscspn-tests (Makefile.am): Likewise.
7228         * modules/mbsncasecmp-tests (Makefile.am): Likewise.
7229         * modules/mbspbrk-tests (Makefile.am): Likewise.
7230         * modules/mbspcasecmp-tests (Makefile.am): Likewise.
7231         * modules/mbsrchr-tests (Makefile.am): Likewise.
7232         * modules/mbsspn-tests (Makefile.am): Likewise.
7233         * modules/mbsstr-tests (Makefile.am): Likewise.
7234         * modules/printf-posix-tests (Makefile.am): Likewise.
7235         * modules/snprintf-posix-tests (Makefile.am): Likewise.
7236         * modules/sprintf-posix-tests (Makefile.am): Likewise.
7237         * modules/tsearch-tests (Makefile.am): Likewise.
7238         * modules/uniname/uniname-tests (Makefile.am): Likewise.
7239         * modules/unistdio/u16-vasnprintf-tests (Makefile.am): Likewise.
7240         * modules/unistdio/u32-vasnprintf-tests (Makefile.am): Likewise.
7241         * modules/unistdio/u8-vasnprintf-tests (Makefile.am): Likewise.
7242         * modules/unistdio/ulc-vasnprintf-tests (Makefile.am): Likewise.
7243         * modules/vasnprintf-posix-tests (Makefile.am): Likewise.
7244         * modules/vfprintf-posix-tests (Makefile.am): Likewise.
7245         * modules/vprintf-posix-tests (Makefile.am): Likewise.
7246         * modules/vsnprintf-posix-tests (Makefile.am): Likewise.
7247         * modules/vsprintf-posix-tests (Makefile.am): Likewise.
7248         * modules/xstrtoimax-tests (Makefile.am): Likewise.
7249         * modules/xstrtol-tests (Makefile.am): Likewise.
7250         * modules/xstrtoumax-tests (Makefile.am): Likewise.
7251         * modules/yesno-tests (Makefile.am): Likewise.
7252
7253 2007-10-03  Bruno Haible  <bruno@clisp.org>
7254
7255         * modules/trunc-tests: New file.
7256         * tests/test-trunc.c: New file.
7257
7258         * modules/trunc: New file.
7259         * lib/trunc.c: New file.
7260         * m4/trunc.m4: New file.
7261         * lib/math.in.h (trunc): New declaration.
7262         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_TRUNC and
7263         HAVE_DECL_TRUNC.
7264         * modules/math (Makefile.am): Substitute also GNULIB_TRUNC and
7265         HAVE_DECL_TRUNC.
7266         * doc/functions/trunc.texi: Mention the 'trunc' module.
7267
7268 2007-10-03  Bruno Haible  <bruno@clisp.org>
7269
7270         * tests/test-fpending.c: New file, mostly copied
7271         from coreutils/lib/t-fpending.c.
7272         * modules/fpending-tests: New file.
7273
7274 2007-10-03  Bruno Haible  <bruno@clisp.org>
7275
7276         Port the stdio extensions to QNX (untested).
7277         * lib/fseterr.c (fseterr): Add support for QNX.
7278         * lib/fbufmode.c (fbufmode): Likewise.
7279         * lib/freadable.c (freadable): Likewise.
7280         * lib/fwritable.c (fwritable): Likewise.
7281         * lib/freading.c (freading): Likewise.
7282         * lib/fwriting.c (fwriting): Likewise.
7283         * lib/freadahead.c (freadahed): Likewise.
7284         * lib/fpurge.c (fpurge): Likewise.
7285         * lib/fseeko.c (rpl_fseeko): Likewise.
7286
7287 2007-10-03  Bruno Haible  <bruno@clisp.org>
7288             Jim Meyering  <jim@meyering.net>
7289             Eric Blake  <ebb9@byu.net>
7290
7291         * doc/relocatable.texi: Use @command instead of @program.
7292
7293 2007-10-02  Jim Meyering  <jim@meyering.net>
7294
7295         Perform one more "_.h" -> ".in.h" substitution.
7296         * modules/unistd (Makefile.am) [unistd.h]: Use unistd.h.in
7297         instead of unistd_.h here, too.
7298
7299 2007-10-01  Bruno Haible  <bruno@clisp.org>
7300
7301         * gnulib-tool (func_emit_initmacro_done): Special case for alloca.c.
7302         Needed for the alloca-opt module.
7303
7304 2007-09-30  Bruno Haible  <bruno@clisp.org>
7305
7306         * lib/alloca.in.h: Renamed from lib/alloca_.h.
7307         * modules/alloca-opt (Files, Makefile.am): Use alloca.in.h instead of
7308         alloca_.h.
7309         * lib/argz.in.h: Renamed from lib/argz_.h.
7310         * modules/argz (Files, Makefile.am): Use argz.in.h instead of argz_.h.
7311         * lib/byteswap.in.h: Renamed from lib/byteswap_.h.
7312         * modules/byteswap (Files, Makefile.am): Use byteswap.in.h instead of
7313         byteswap_.h.
7314         * lib/dirent.in.h: Renamed from lib/dirent_.h.
7315         * modules/fchdir (Files, Makefile.am): Use dirent.in.h instead of
7316         dirent_.h.
7317         * lib/fcntl.in.h: Renamed from lib/fcntl_.h.
7318         * modules/fcntl (Files, Makefile.am): Use fcntl.in.h instead of
7319         fcntl_.h.
7320         * lib/float.in.h: Renamed from lib/float_.h.
7321         * modules/float (Files, Makefile.am): Use float.in.h instead of
7322         float_.h.
7323         * lib/fnmatch.in.h: Renamed from lib/fnmatch_.h.
7324         * modules/fnmatch (Files, Makefile.am): Use fnmatch.in.h instead of
7325         fnmatch_.h.
7326         * lib/getopt.in.h: Renamed from lib/getopt_.h.
7327         * modules/getopt (Files, Makefile.am): Use getopt.in.h instead of
7328         getopt_.h.
7329         * lib/glob.in.h: Renamed from lib/glob_.h.
7330         * modules/glob (Files, Makefile.am): Use glob.in.h instead of glob_.h.
7331         * lib/iconv.in.h: Renamed from lib/iconv_.h.
7332         * modules/iconv_open (Files, Makefile.am): Use iconv.in.h instead of
7333         iconv_.h.
7334         * lib/inttypes.in.h: Renamed from lib/inttypes_.h.
7335         * modules/inttypes (Files, Makefile.am): Use inttypes.in.h instead of
7336         inttypes_.h.
7337         * lib/locale.in.h: Renamed from lib/locale_.h.
7338         * modules/locale (Files, Makefile.am): Use locale.in.h instead of
7339         locale_.h.
7340         * lib/math.in.h: Renamed from lib/math_.h.
7341         * modules/math (Files, Makefile.am): Use math.in.h instead of math_.h.
7342         * lib/netinet_in.in.h: Renamed from lib/netinet_in_.h.
7343         * modules/netinet_in (Files, Makefile.am): Use netinet_in.in.h instead
7344         of netinet_in_.h. Add dependency.
7345         * lib/poll.in.h: Renamed from lib/poll_.h.
7346         * modules/poll (Files, Makefile.am): Use poll.in.h instead of poll_.h.
7347         * lib/search.in.h: Renamed from lib/search_.h.
7348         * modules/search (Files, Makefile.am): Use search.in.h instead of
7349         search_.h.
7350         * lib/signal.in.h: Renamed from lib/signal_.h.
7351         * modules/signal (Files, Makefile.am): Use signal.in.h instead of
7352         _signal.h.
7353         * lib/stdbool.in.h: Renamed from lib/stdbool_.h.
7354         * modules/stdbool (Files, Makefile.am): Use stdbool.in.h instead of
7355         stdbool_.h.
7356         * lib/stdint.in.h: Renamed from lib/stdint_.h.
7357         * modules/stdint (Files, Makefile.am): Use stdint.in.h instead of
7358         stdint_.h.
7359         * lib/stdio.in.h: Renamed from lib/stdio_.h.
7360         * modules/stdio (Files, Makefile.am): Use stdio.in.h instead of
7361         stdio_.h.
7362         * lib/stdlib.in.h: Renamed from lib/stdlib_.h.
7363         * modules/stdlib (Files, Makefile.am): Use stdlib.in.h instead of
7364         stdlib_.h.
7365         * lib/string.in.h: Renamed from lib/string_.h.
7366         * modules/string (Files, Makefile.am): Use string.in.h instead of
7367         string_.h.
7368         * doc/gnulib-tool.texi (Initial import): Update.
7369         * lib/sys_select.in.h: Renamed from lib/sys_select_.h.
7370         * modules/sys_select (Files, Makefile.am): Use sys_select.in.h instead
7371         of sys_select_.h. Add dependency.
7372         * lib/sys_socket.in.h: Renamed from lib/sys_socket_.h.
7373         * modules/sys_socket (Files, Makefile.am): Use sys_socket.in.h instead
7374         of sys_socket_.h.
7375         * lib/sys_stat.in.h: Renamed from lib/sys_stat_.h.
7376         * modules/sys_stat (Files, Makefile.am): Use sys_stat.in.h instead of
7377         sys_stat_.h.
7378         * lib/sys_time.in.h: Renamed from lib/sys_time_.h.
7379         * modules/sys_time (Files, Makefile.am): Use sys_time.in.h instead of
7380         sys_time_.h.
7381         * lib/sysexits.in.h: Renamed from lib/sysexits_.h.
7382         * modules/sysexits (Files, Makefile.am): Use sysexits.in.h instead of
7383         sysexits_.h.
7384         * lib/time.in.h: Renamed from lib/time_.h.
7385         * modules/time (Files, Makefile.am): Use time.in.h instead of time_.h.
7386         * lib/unistd.in.h: Renamed from lib/unistd_.h.
7387         * modules/unistd (Files, Makefile.am): Use unistd.in.h instead of
7388         unistd_.h.
7389         * lib/wchar.in.h: Renamed from lib/wchar_.h.
7390         * modules/wchar (Files, Makefile.am): Use wchar.in.h instead of
7391         wchar_.h.
7392         * lib/wctype.in.h: Renamed from lib/wctype_.h.
7393         * modules/wctype (Files, Makefile.am): Use wctype.in.h instead of
7394         wctype_.h.
7395         * build-aux/bootstrap (slurp): Update.
7396         * lib/.cppi-disable: Update.
7397
7398 2007-09-30  Bruno Haible  <bruno@clisp.org>
7399
7400         * tests/test-getaddrinfo.c (AF_UNSPEC): Provide a fallback definition.
7401         Needed on BeOS.
7402
7403 2007-09-30  Bruno Haible  <bruno@clisp.org>
7404
7405         * modules/dirname-tests (check_PROGRAMS): Renamed from noinst_PROGRAMS.
7406
7407 2007-09-29  Bruno Haible  <bruno@clisp.org>
7408
7409         * lib/stdio_.h (getdelim, getline): Add identifiers. Doc tweak.
7410
7411 2007-09-29  Bruno Haible  <bruno@clisp.org>
7412
7413         * lib/xreadlink.c (xreadlink): Simplify to a wrapper around areadlink.
7414         * modules/xreadlink (Depends-on): Add areadlink, remove readlink etc.
7415         * build-aux/install-reloc: Compile also areadlink.c.
7416         * modules/relocatable-prog-wrapper (Files): Add lib/areadlink.[hc].
7417
7418 2007-09-29  Bruno Haible  <bruno@clisp.org>
7419
7420         * gnulib-tool (func_emit_initmacro_done): Indentation.
7421
7422 2007-09-29  Bruno Haible  <bruno@clisp.org>
7423
7424         * README: Add CVS checkout update instructions.
7425         Info from Bob Proulx <bob@proulx.com>.
7426
7427 2007-09-28  Eric Blake  <ebb9@byu.net>
7428
7429         Provide move-if-change.
7430         * build-aux/move-if-change: New file, based on best practice
7431         rather than any canonical upstream location.
7432
7433 2007-09-28  Jim Meyering  <jim@meyering.net>
7434
7435         Fix canonicalize loop-detection corner case.
7436         Do not attempt to stat the symlink values stored via seen_triple.
7437         Without this, coreutils' tests/misc/readlink-fp-loop test would fail
7438         on linux-2.6.18, (but not 2.6.22).
7439         * lib/canonicalize.c (seen_triple): Use triple_compare_ino_str, not
7440         triple_compare.  The former compares dev,ino,filename, while the latter
7441         would actually stat dirname(filename) when dev and ino were equal.
7442         * lib/hash-triple.c: Install <string.h>.
7443         (STREQ): Define.
7444         (triple_compare_ino_str): New function.
7445         * lib/hash-triple.h (triple_compare_ino_str): Declare it.
7446
7447 2007-09-28  Eric Blake  <ebb9@byu.net>
7448
7449         Enforce that AC_REPLACE_FUNCS files exist.
7450         * gnulib-tool (func_emit_initmacro_done): Make AC_LIBSOURCES
7451         override check for typos.
7452
7453         Fix test-closein on Solaris 10.
7454         * tests/test-closein.c (main): Don't assume stdin can be inherited
7455         closed on all systems.
7456         * tests/test-closein.sh: Likewise.
7457         Reported by Piotr Tarnowski.
7458
7459 2007-09-28  Jim Meyering  <jim@meyering.net>
7460
7461         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Fix typo in comment.
7462
7463 2007-09-27  Jim Meyering  <jim@meyering.net>
7464
7465         canonicalize: Avoid a false-positive cycle failure.
7466         * modules/canonicalize (Depends-on): Add file-set and hash-triple.
7467         Sort.  Remove cycle-check.
7468         * lib/canonicalize.c: Include file-set.h and hash-triple.h,
7469         not cycle-check.h.
7470         (seen_triple): New function.
7471         (canonicalize_filename_mode): Use it instead of cycle-check.
7472         * tests/test-canonicalize.c: Add a test for this bug.
7473         * tests/test-canonicalize.sh: Set up and run the test.
7474
7475         New module, file-set, from coreutils.
7476         * modules/file-set: Define it.
7477         * lib/file-set.c, lib/file-set.h: Implement.
7478
7479         New module, hash-triple, from coreutils.
7480         * modules/hash-triple: Define it.
7481         * lib/hash-triple.c, lib/hash-triple.h: Implement.
7482
7483 2007-09-25  Eric Blake  <ebb9@byu.net>
7484
7485         Fix strerror on Interix.
7486         * lib/string_.h (strerror): Declare replacement.
7487         * doc/functions/strerror.texi (strerror): Document the Interix
7488         shortcoming.
7489         * modules/string (Makefile.am): Support new hooks.
7490         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Add new hooks.
7491         * m4/strerror.m4 (gl_FUNC_STRERROR): Defer to
7492         gl_FUNC_STRERROR_SEPARATE.
7493         (gl_FUNC_STRERROR_SEPARATE): Check for Interix bug.
7494         * lib/strerror.c (rpl_strerror): Provide replacement.
7495         * modules/strerror (Depends-on): Add string.
7496         (configure.ac): Detect use of module.
7497         * tests/test-strerror.c: New file.
7498         * modules/strerror-tests: New test module.
7499         * modules/argp (Depends-on): Add strerror.
7500         * modules/error (Depends-on): Likewise.
7501         Reported by Martin Koeppe.
7502
7503 2007-09-24  Bruno Haible  <bruno@clisp.org>
7504
7505         * README: Update git instructions.
7506
7507 2007-09-24  Eric Blake  <ebb9@byu.net>
7508
7509         Revert fpending breakage from 2007-09-08.
7510         * m4/fpending.m4 (gl_FUNC_FPENDING): Don't require existence of
7511         __fpending.c.
7512
7513 2007-09-24  Jim Meyering  <jim@meyering.net>
7514
7515         filenamecat.c: Add a test.
7516         * lib/filenamecat.c (main) [TEST_FILE_NAME_CONCAT]: Add a test
7517         showing how the function works when DIR is the empty string.
7518
7519 2007-09-21  Simon Josefsson  <simon@josefsson.org>
7520
7521         * tests/test-canonicalize.sh: Turn on executable bit.
7522
7523 2007-09-19  Eric Blake  <ebb9@byu.net>
7524
7525         * README: Update CVS instructions.
7526
7527 2007-09-18  Bruno Haible  <bruno@clisp.org>
7528
7529         * modules/areadlink: New file.
7530         * lib/areadlink.h (areadlink): New declaration.
7531         * lib/areadlink.c: New file, based on lib/xreadlink.c.
7532
7533 2007-09-17  Jim Meyering  <jim@meyering.net>
7534
7535         * lib/savewd.c (ESTALE) [!defined]: Define.
7536         Reported to be required on Interix by Martin Koeppe.
7537
7538 2007-09-17  Bruno Haible  <bruno@clisp.org>
7539
7540         * gnulib-tool (func_version): Use $version.
7541
7542 2007-09-16  Bruno Haible  <bruno@clisp.org>
7543
7544         * m4/printf.m4 (gl_PRINTF_LONG_DOUBLE, gl_PRINTF_INFINITE,
7545         gl_PRINTF_INFINITE_LONG_DOUBLE): Increase buf's size from 100 to 10000.
7546         Needed on glibc-2.6.1 with -fstack-protector -D_FORTIFY_SOURCE=2.
7547         Reported by Greg Schafer <gschafer@zip.com.au>.
7548
7549 2007-09-15  Bruno Haible  <bruno@clisp.org>
7550
7551         * gnulib-tool (sed): Try a little harder to make bash understand the
7552         alias.
7553         Reported by Bruce Korb <bruce.korb@gmail.com>.
7554
7555 2007-09-13  Eric Blake  <ebb9@byu.net>
7556
7557         * ChangeLog: Remove conflict markers.
7558
7559 2007-09-13  Simon Josefsson  <simon@josefsson.org>
7560
7561         * lib/gc-gnulib.c (gc_hash_open): Catch NULL calloc return value.
7562         Reported by Bruno Haible <bruno@clisp.org>.
7563
7564 2007-09-12  Bruno Haible  <bruno@clisp.org>
7565
7566         * m4/lock.m4: Don't provide an AC_USE_SYSTEM_EXTENSIONS definition.
7567         (gl_LOCK_EARLY_BODY): Use AC_GNU_SOURCE when AC_USE_SYSTEM_EXTENSIONS
7568         is not defined.
7569
7570 2007-09-12  Eric Blake  <ebb9@byu.net>
7571
7572         Track CVS Autoconf on AC_USE_SYSTEM_EXTENSIONS.
7573         * m4/extensions.m4 (AC_USE_SYSTEM_EXTENSIONS): Update to CVS
7574         Autoconf definition.
7575         * modules/euidaccess (Depends-on): Add extensions, for
7576         AC_USE_SYSTEM_EXTENSIONS with autoconf <= 2.59.
7577         * modules/fnmatch (Depends-on): Likewise.
7578         * modules/getaddrinfo (Depends-on): Likewise.
7579         * modules/getdelim (Depends-on): Likewise.
7580         * modules/getline (Depends-on): Likewise.
7581         * modules/getsubopt (Depends-on): Likewise.
7582         * modules/gettext (Depends-on): Likewise.
7583         * modules/group-member (Depends-on): Likewise.
7584         * modules/mbchar (Depends-on): Likewise.
7585         * modules/memmem (Depends-on): Likewise.
7586         * modules/mempcpy (Depends-on): Likewise.
7587         * modules/memrchr (Depends-on): Likewise.
7588         * modules/pagealign_alloc (Depends-on): Likewise.
7589         * modules/readutmp (Depends-on): Likewise.
7590         * modules/stpcpy (Depends-on): Likewise.
7591         * modules/stpncpy (Depends-on): Likewise.
7592         * modules/strchrnul (Depends-on): Likewise.
7593         * modules/strndup (Depends-on): Likewise.
7594         * modules/strsep (Depends-on): Likewise.
7595         * modules/strverscmp (Depends-on): Likewise.
7596         * modules/vasprintf (Depends-on): Likewise.
7597         * modules/wcwidth (Depends-on): Likewise.
7598         * m4/euidaccess.m4 (gl_FUNC_EUIDACCESS): AC_GNU_SOURCE will be
7599         obsolete in Autoconf 2.62; use AC_USE_SYSTEM_EXTENSIONS instead.
7600         * m4/fnmatch.m4 (gl_FUNC_FNMATCH_GNU): Likewise.
7601         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDR_INFO): Likewise.
7602         * m4/getdelim.m4 (gl_FUNC_GETDELIM): Likewise.
7603         * m4/getline.m4 (gl_FUNC_GETLINE): Likewise.
7604         * m4/getsubopt.m4 (gl_FUNC_GETSUBOPT): Likewise.
7605         * m4/glob.m4 (gl_PREREQ_GLOB): Likewise.
7606         * m4/group-member.m4 (gl_FUNC_GROUP_MEMBER): Likewise.
7607         * m4/mbchar.m4 (gl_MBCHAR): Likewise.
7608         * m4/memmem.m4 (gl_FUNC_MEMMEM): Likewise.
7609         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY): Likewise.
7610         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Likewise.
7611         * m4/mmap-anon.m4 (gl_FUNC_MMAP_ANON): Likewise.
7612         * m4/pagealign_alloc.m4 (gl_PAGEALIGN_ALLOC): Likewise.
7613         * m4/readutmp.m4 (gl_READUTMP): Likewise.
7614         * m4/regex.m4 (gl_PREREQ_REGEX): Likewise.
7615         * m4/stpcpy.m4 (gl_FUNC_STPCPY): Likewise.
7616         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Likewise.
7617         * m4/strchrnul.m4 (gl_FUNC_STRCHRNUL): Likewise.
7618         * m4/strndup.m4 (gl_FUNC_STRNDUP): Likewise.
7619         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Likewise.
7620         * m4/strsep.m4 (gl_FUNC_STRSEP): Likewise.
7621         * m4/strverscmp.m4 (gl_FUNC_STRVERSCMP): Likewise.
7622         * m4/vasprintf.m4 (gl_PREREQ_VASPRINTF_H): Likewise.
7623         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Likewise.
7624         * m4/lock.m4 (gl_LOCK_EARLY_BODY): Likewise, but provide fallback,
7625         so that lock.m4 can be used in gettext without extensions module.
7626
7627 2007-09-11  Bruno Haible  <bruno@clisp.org>
7628
7629         * m4/isc-posix.m4: Remove file.
7630         Suggested by Eric Blake.
7631
7632 2007-09-11  Eric Blake  <ebb9@byu.net>
7633
7634         * ChangeLog: Restore lines accidentally truncated 2007-04-06.
7635
7636 2007-09-10  Bruno Haible  <bruno@clisp.org>
7637
7638         * posix-modules: Fix typo in error message.
7639         Reported by Matt <mkraai@beckman.com>.
7640
7641 2007-09-09  Bruno Haible  <bruno@clisp.org>
7642
7643         * doc/functions/getdelim.texi: Update list of platforms lacking the
7644         function.
7645         * doc/functions/getline.texi: Likewise.
7646
7647 2007-09-09  Jim Meyering  <jim@meyering.net>
7648
7649         * lib/hash.c (hash_initialize): Detect calloc failure.
7650         Reported by Bruno Haible.
7651
7652 2007-09-09  Bruno Haible  <bruno@clisp.org>
7653
7654         * lib/canonicalize-lgpl.c (__realpath): Set errno to ENOMEM when
7655         malloc or realloc fails.
7656
7657 2007-09-09  Bruno Haible  <bruno@clisp.org>
7658
7659         * modules/getcwd (Depends-on): Add malloc-posix.
7660         * modules/glob (Depends-on): Likewise.
7661         * modules/putenv (Depends-on): Likewise.
7662         * modules/strdup (Depends-on): Likewise.
7663         * modules/getdelim (Depends-on): Add realloc-posix.
7664         * modules/read-file (Depends-on): Likewise.
7665
7666 2007-09-09  Bruno Haible  <bruno@clisp.org>
7667
7668         * m4/malloc.m4 (gl_CHECK_MALLOC_POSIX): New macro.
7669         (gl_FUNC_MALLOC_POSIX): Require it.
7670         * m4/realloc.m4 (gl_FUNC_REALLOC_POSIX): Likewise.
7671         * m4/calloc.m4 (gl_FUNC_CALLOC_POSIX): Likewise.
7672         * modules/realloc (Files): Add m4/malloc.m4.
7673         * modules/calloc (Files): Likewise.
7674
7675 2007-09-09  Bruno Haible  <bruno@clisp.org>
7676
7677         * modules/malloc-posix: New file.
7678         * modules/malloc (Depends-on): Add malloc-posix.
7679         * lib/malloc.c: Include errno.h.
7680         (rpl_malloc): Merge the requirements of a glibc-compatible malloc
7681         and a POSIX-compatible malloc into a single function. Set ENOMEM
7682         when returning NULL.
7683         * m4/malloc.m4: New file.
7684         * doc/functions/malloc.texi: Mention the malloc-posix module.
7685         * lib/stdlib_.h (malloc): New declaration.
7686         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize
7687         GNULIB_MALLOC_POSIX and HAVE_MALLOC_POSIX.
7688         * modules/stdlib (stdlib.h): Substitute also GNULIB_MALLOC_POSIX
7689         and HAVE_MALLOC_POSIX.
7690
7691 2007-09-09  Bruno Haible  <bruno@clisp.org>
7692
7693         * modules/realloc-posix: New file.
7694         * modules/realloc (Depends-on): Add realloc-posix.
7695         * lib/realloc.c: Include errno.h.
7696         (rpl_realloc): Merge the requirements of a glibc-compatible realloc
7697         and a POSIX-compatible realloc into a single function. Set ENOMEM
7698         when returning NULL.
7699         * m4/realloc.m4: New file.
7700         * doc/functions/realloc.texi: Mention the realloc-posix module.
7701         * lib/stdlib_.h (realloc): New declaration.
7702         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize
7703         GNULIB_REALLOC_POSIX and HAVE_REALLOC_POSIX.
7704         * modules/stdlib (stdlib.h): Substitute also GNULIB_REALLOC_POSIX
7705         and HAVE_REALLOC_POSIX.
7706
7707 2007-09-09  Bruno Haible  <bruno@clisp.org>
7708
7709         * modules/calloc-posix: New file.
7710         * modules/calloc (Depends-on): Add calloc-posix.
7711         * lib/calloc.c: Include errno.h.
7712         (rpl_calloc): Merge the requirements of a glibc-compatible calloc
7713         and a POSIX-compatible calloc into a single function. Set ENOMEM
7714         when returning NULL.
7715         * m4/calloc.m4 (gl_FUNC_CALLOC_POSIX): New macro.
7716         * doc/functions/calloc.texi: Mention the calloc-posix module.
7717         * lib/stdlib_.h (calloc): New declaration.
7718         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Initialize
7719         GNULIB_CALLOC_POSIX and HAVE_CALLOC_POSIX.
7720         * modules/stdlib (stdlib.h): Substitute also GNULIB_CALLOC_POSIX
7721         and HAVE_CALLOC_POSIX.
7722
7723 2007-09-09  Bruno Haible  <bruno@clisp.org>
7724
7725         Allow for modules to show an arbitrary notice.
7726         * modules/TEMPLATE-EXTENDED: Add 'Notice' field.
7727         * gnulib-tool: New option --extract-notice.
7728         (func_usage): Document it.
7729         (sed_extract_prog): Update.
7730         (func_get_notice): New function.
7731         (func_modules_notice): New function.
7732         (func_import, func_create_testdir): Invoke it.
7733         Suggested by Jim Meyering.
7734
7735 2007-09-09  Bruno Haible  <bruno@clisp.org>
7736
7737         * gnulib-tool: New options --verbose, --quiet.
7738         (func_usage): Document them.
7739         (verbose): New variable.
7740         (func_execute_command): New function.
7741         (func_import): Don't show the module list and the file list if
7742         $verbose < 0.
7743         (func_create_testdir): Likewise. Use func_execute_command.
7744         (func_create_megatestdir): Use func_execute_command.
7745
7746 2007-09-08  Bruno Haible  <bruno@clisp.org>
7747
7748         * gnulib-tool (func_import): Prefer rsync over wget when available,
7749         for fetching the PO files.
7750
7751 2007-09-08  Bruno Haible  <bruno@clisp.org>
7752
7753         * posix-modules: New file. Portions copied from gnulib-tool.
7754         * doc/gnulib.texi (POSIX Substitutes Library): New chapter.
7755
7756 2007-09-08  Jim Meyering  <jim@meyering.net>
7757
7758         Rename __fpending.c -> fpending.c and __fpending.h -> fpending.h
7759         * lib/fpending.h: Rename from __fpending.h.
7760         * lib/fpending.c: Rename from __fpending.c.
7761         Include "fpending.h", not "__fpending.h".
7762         * lib/__fpending.h, lib/__fpending.c: Remove files.
7763         * modules/fpending (Files): Reflect new file names.
7764         * lib/close-stream.c: Include "fpending.h", not "__fpending.h".
7765
7766 2007-09-08  Bruno Haible  <bruno@clisp.org>
7767
7768         * m4/inttypes-h.m4: Remove stub file.
7769
7770 2007-09-07  Simon Josefsson  <simon@josefsson.org>
7771
7772         * doc/headers/stdint.texi: Discuss #include_next issue.
7773
7774 2007-09-06  Paul Eggert  <eggert@cs.ucla.edu>
7775
7776         * build-aux/bootstrap: Remove obsolete comment about wget --help.
7777
7778 2007-09-06  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
7779
7780         * m4/time_h.m4 (gl_CHECK_TYPE_STRUCT_TIMESPEC): Fix misspelling
7781         in variable name.
7782
7783 2007-09-03  Jim Meyering  <jim@meyering.net>
7784
7785         New module: git-version-gen.
7786         * modules/git-version-gen: New file.
7787
7788         Import changes from coreutils for bootstrap script.
7789
7790         * build-aux/bootstrap (WGET_COMMAND): Remove code to set this variable.
7791
7792         bootstrap: uses rsync to download the .po files
7793         * build-aux/bootstrap (po_download_command_format): New global.
7794         (download_po_files): Use rsync.
7795         (update_po_files): Don't remove .po files after download,
7796         so future rsync runs can take advantage of the copies.
7797
7798         * build-aux/bootstrap (gnulib_tool): Make sha1sum check quietly.
7799
7800         Solve the unnecessary-.po-file-regeneration problem once and for all.
7801         * build-aux/bootstrap (download_po_files): New function, renamed from
7802         get_translations.  Now, downloads, but doesn't update LINGUAS.
7803         (update_po_files): New function.
7804
7805         bootstrap: Ignore more.
7806         * build-aux/bootstrap (symlink_to_dir): Add a directory name like
7807         uniwidth to e.g., lib/.gitignore.
7808         (slurp): Handle the sys_stat_.h -> sys mapping, too.
7809
7810         * build-aux/bootstrap: New setting: vc_ignore.
7811         (insert_sorted_if_absent): Create $file if absent.
7812         Adapt to new, possibly empty, list: $vc_ignore.
7813
7814         bootstrap: generate more ignorable names
7815         * build-aux/bootstrap (slurp): When generating ignorable names,
7816         also map .sin to .sed, .gperf to .c, and .y to .c.
7817
7818 2007-09-03  Jim Meyering  <jim@meyering.net>
7819
7820         * build-aux/git-version-gen: New file, from coreutils.  For details, see
7821         http://git.sv.gnu.org/gitweb/?p=coreutils.git;a=commitdiff;h=bfe49f506
7822
7823 2007-09-02  Bruno Haible  <bruno@clisp.org>
7824
7825         Fix mis-recognition of 'mcs' on QNX 6.
7826         * m4/csharpcomp.m4 (gt_CSHARPCOMP): Test whether the "mcs --version"
7827         output contains the string "Mono".
7828         * lib/csharpcomp.c (compile_csharp_using_mono): Likewise.
7829         Reported by <kraai@ftbfs.org> at <https://savannah.gnu.org/bugs/?18337>.
7830
7831 2007-09-01  Bruno Haible  <bruno@clisp.org>
7832
7833         Fix collision between uniwidth/* and linebreak modules.
7834         * lib/linebreak.h (locale_charset, uc_width, u8_width, u16_width,
7835         u32_width): Remove declarations.
7836         * lib/linebreak.c: Include uniwidth.h, uniwidth/cjk.h, streq.h.
7837         (u32_mbtouc_unsafe, streq9, streq8, streq7, streq6, streq5, streq4,
7838         streq3, streq2, streq1, streq0): Remove functions.
7839         (STREQ): Remove macro.
7840         (is_cjk_encoding): Remove function.
7841         (nonspacing_table_data, nonspacing_table_ind): Remove constants.
7842         (uc_width, u8_width, u16_width, u32_width): Remove functions.
7843         * modules/linebreak (Depends-on): Add streq, uniwidth/width.
7844         * NEWS: Document the change.
7845
7846 2007-09-01  Bruno Haible  <bruno@clisp.org>
7847
7848         * lib/streq.h: Add double-inclusion guard.
7849
7850 2007-09-01  Karl Berry  <karl@gnu.org>
7851
7852         * MODULES.html.sh: Rename mreadlink_with_size to areadlink_with_size.
7853
7854 2007-08-28  Jim Meyering  <jim@meyering.net>
7855
7856         Rename mreadlink_with_size to areadlink_with_size.
7857         * NEWS: Document the change.
7858         * lib/mreadlink-with-size.c (mreadlink_with_size): Rename this to...
7859         * lib/areadlink-with-size.c (areadlink_with_size): ...this.
7860         * lib/mreadlink.h: Rename this to...
7861         * lib/areadlink.h: ...this.
7862         * modules/mreadlink-with-size: Rename this to...
7863         * modules/areadlink-with-size: ...this.
7864         * lib/canonicalize.c: Reflect the renaming.
7865         * modules/canonicalize: Likewise.
7866
7867 2007-08-26  Bruno Haible  <bruno@clisp.org>
7868
7869         * gnulib-tool (func_import): When deciding which files to remove,
7870         consider also dangling symbolic links.
7871         Reported by Eric Blake.
7872
7873 2007-08-26  Bruno Haible  <bruno@clisp.org>
7874
7875         * gnulib-tool (func_ln_if_changed): Use "test -h", not "test -L".
7876
7877 2007-08-23  Simon Josefsson  <simon@josefsson.org>
7878
7879         * lib/readline.c: Don't include getline.h, the prototype is now
7880         found in stdio.h.
7881
7882 2007-08-23  Jim Meyering  <jim@meyering.net>
7883
7884         Getdelim touchup.
7885         * lib/getdelim.c (getdelim): Don't bother to save/restore errno
7886         around the funlockfile call, since funlockfile never sets errno.
7887         Don't set errno upon failed realloc.
7888
7889 2007-08-22  Eric Blake  <ebb9@byu.net>
7890
7891         Getline touchups.
7892         * lib/getdelim.c (getdelim): Revert regression that required *n to
7893         be 0 when *lineptr is NULL.  Preserve errno across funlockfile.
7894         * m4/getdelim.m4 (gl_FUNC_GETDELIM): Check for declaration of
7895         getdelim, rather than whether implementation is missing.
7896         * m4/getline.m4 (gl_FUNC_GETLINE): Likewise for getline.
7897         * lib/stdio_.h (getline): Also declare if replacement is
7898         required.
7899         * doc/functions/getdelim.texi: New file.
7900         * doc/functions/getline.texi: Likewise.
7901         * doc/gnulib.texi (Function Substitutes): Add new files.
7902         Reported by Bruno Haible.
7903
7904 2007-08-22  Ludovic Courtès  <ludo@gnu.org>
7905
7906         * users.txt: Add Guile.
7907
7908 2007-08-22  Eric Blake  <ebb9@byu.net>
7909
7910         * tests/test-getdelim.c (main): Use remove, not unlink.
7911         * tests/test-getline.c (main): Likewise.
7912
7913         Move getline and getdelim into stdio.h, per POSIX 200x.
7914         * modules/getline (Files): Remove getline.h.
7915         (Depends-on): Add stdio.
7916         (configure.ac): Add module indicator.
7917         * modules/getdelim (Files): Remove getdelim.h.
7918         (Depends-on): Add stdio.
7919         (configure.ac): Add module indicator.
7920         * modules/stdio (Makefile.am): Work with new indicators.
7921         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Add new defaults.
7922         * m4/getdelim.m4 (gl_FUNC_GETDELIM): Work with stdio needs.
7923         * m4/getline.m4 (gl_FUNC_GETLINE): Likewise.
7924         * lib/getdelim.h: Delete.
7925         * lib/getline.h: Delete.
7926         * lib/stdio_.h (getdelim, getline): Declare.
7927         * modules/getdelim-tests: New module.
7928         * modules/getline-tests: Likewise.
7929         * tests/test-getdelim.c: New file.
7930         * tests/test-getline.c: Likewise.
7931         * NEWS: Document the change.
7932         * lib/getline.c: Update choice of header.
7933         * lib/csharpcomp.c: Likewise.
7934         * lib/getpass.c: Likewise.
7935         * lib/javacomp.c: Likewise.
7936         * lib/javaversion.c: Likewise.
7937         * lib/yesno.c: Likewise.
7938         * lib/getdelim.c: Likewise.
7939         (getdelim): Set errno on failure, and avoid memory leak.
7940
7941 2007-08-19  Bruno Haible  <bruno@clisp.org>
7942
7943         * modules/closein (Depends-on): Add freadahead.
7944         * lib/closein.c: Include freadahead.h.
7945         (close_stdin): Skip the fseeko and fflush calls if freadahead(stdin)
7946         is zero.
7947
7948 2007-08-19  Bruno Haible  <bruno@clisp.org>
7949
7950         * modules/freadahead-tests: New file.
7951         * tests/test-freadahead.sh: New file.
7952         * tests/test-freadahead.c: New file.
7953
7954         * modules/freadahead: New file.
7955         * lib/freadahead.h: New file.
7956         * lib/freadahead.c: New file.
7957         * MODULES.html.sh (File stream based Input/Output): Add freadahead,
7958         fbufmode, fpurge, freadable, fwritable.
7959
7960 2007-08-19  Eric Blake  <ebb9@byu.net>
7961
7962         Test yesno in combination with closein.
7963         * lib/yesno.c (yesno): Document use of stdin.
7964         * modules/yesno-tests (Files): New module.
7965         * tests/test-yesno.c (main): New file.
7966         * tests/test-yesno.sh: Likewise.
7967
7968 2007-08-19  Bruno Haible  <bruno@clisp.org>
7969
7970         * lib/fbufmode.c (fbufmode): Add tentative support for Solaris/AMD64.
7971         * lib/fseeko.c (rpl_fseeko): Likewise.
7972         * lib/fseterr.c (fseterr): Likewise.
7973
7974 2007-08-19  Bruno Haible  <bruno@clisp.org>
7975
7976         * tests/test-lseek.c (main): Disable a test for BeOS.
7977         * doc/functions/lseek.texi: Document the BeOS bug.
7978
7979 2007-08-19  Bruno Haible  <bruno@clisp.org>
7980             Eric Blake  <ebb9@byu.net>
7981
7982         * lib/lseek.c: Include <sys/stat.h>.
7983         (rpl_lseek): Add workaround code also for Unix platforms.
7984         Needed for BeOS.
7985         * m4/lseek.m4 (gl_FUNC_LSEEK): When cross-compiling, fail on BeOS.
7986         * doc/functions/lseek.texi: Document BeOS definiency.
7987
7988 2007-08-18  Bruno Haible  <bruno@clisp.org>
7989
7990         * modules/fstrcmp-tests: New file.
7991         * tests/test-fstrcmp.c: New file.
7992
7993 2007-08-18  Bruno Haible  <bruno@clisp.org>
7994
7995         * modules/fstrcmp: New file, from GNU gettext with modifications.
7996         * lib/fstrcmp.h: New file, from GNU gettext.
7997         * lib/fstrcmp.c: New file, from GNU gettext.
7998         * MODULES.html.sh (String handling): Add fstrcmp.
7999
8000 2007-08-18  Bruno Haible  <bruno@clisp.org>
8001
8002         * lib/diffseq.h (struct context): Change type of 'heuristic' field to
8003         'bool'.
8004         (diag, compareseq): Remove const from the ctxt argument.
8005         (USE_HEURISTIC): Undefine at the end.
8006
8007 2007-08-18  Jim Meyering  <jim@meyering.net>
8008
8009         New file: lib/idcache.h
8010         * NEWS: Mention the addition.
8011         * modules/idcache (Files): Add lib/idcache.h
8012         * lib/idcache.c: Include "idcache.h".
8013         Don't include <sys/types.h>.
8014         Add a FIXME comment.
8015         Move file-scoped "static" declarations to the top.
8016         * lib/idcache.h: New file.  Include <sys/types.h> here, instead.
8017
8018 2007-08-17  Bruno Haible  <bruno@clisp.org>
8019         and Paul Eggert  <eggert@cs.ucla.edu>
8020
8021         * MODULES.html.sh: Add diffseq.
8022         * modules/diffseq: New file.
8023         * lib/diffseq.h: New file, from GNU gettext with a few minor changes,
8024         extracted from GNU gettext's fstrcmp.c and GNU diff's analyze.c.
8025
8026 2007-08-15  Paul Eggert  <eggert@cs.ucla.edu>
8027
8028         Import changes from coreutils for bootstrap script.
8029
8030         2007-07-21  Paul Eggert  <eggert@cs.ucla.edu>
8031
8032         * build-aux/bootstrap (slurp): Work even in environments where
8033         "ls" defaults to "ls -A".  Put in a FIXME, though, since the
8034         current code does not slurp files whose names start with ".", and
8035         this looks like it might be a troublesome area.
8036
8037         2007-07-11  Jim Meyering  <jim@meyering.net>
8038
8039         If there's a GPL vN copyright comment, require that N == 3.
8040
8041         2007-07-08  Jim Meyering  <jim@meyering.net>
8042
8043         Run the coreutils-specific code only if tests/Makefile.am.in exists.
8044         * build-aux/bootstrap (mam_template): Move definition out of loop.
8045
8046         Create symlinks for gl/{lib,m4}/*, just as for gnulib/{lib,m4}/*.
8047
8048         * build-aux/bootstrap (symlink_to_dir): Rename function from
8049         symlink_to_gnulib.  Add a directory parameter.  Update all
8050         callers.
8051         (cp_mark_as_generated): Also check for -- and link to -- files in
8052         gl/.
8053
8054         2007-07-08  Jim Meyering  <jim@meyering.net>
8055
8056         Adapt to deeper hierarchy in gnulib.
8057         * build-aux/bootstrap (symlink_to_dir): If the destination
8058         directory doesn't exist, create it. This is required at least for
8059         "lib/uniwidth/cjk.h".
8060
8061         2007-05-15  Jim Meyering  <jim@meyering.net>
8062
8063         * build-aux/bootstrap: Now that generated Makefile.am files
8064         are no longer under version control, they must be created at
8065         bootstrap time.
8066
8067 2007-08-14  Ben Pfaff  <blp@gnu.org>
8068
8069         * lib/count-one-bits.h: Add comments.  From Bruno Haible.
8070
8071 2007-08-14  Paul Eggert  <eggert@cs.ucla.edu>
8072
8073         * lib/count-one-bits.h: Don't include <limits.h>; no longer needed
8074         given the changes below.
8075         (COUNT_ONE_BITS): Use 'verify' rather than 'verify_true'.  Work
8076         even on hosts that have padding bits beyond the supported 64.
8077
8078 2007-08-10  Paul Eggert  <eggert@cs.ucla.edu>
8079
8080         * NEWS: In xstrtol, remove STRTOL_FATAL_ERROR and add xstrtol_fatal.
8081         * lib/xstrtol.h: Don't include exitfail.h; that's now internal to
8082         xstrtol.c.  Include getopt.h, since xstrtol_fatal's signature
8083         depends on it.
8084         (xstrtol_error): Remove.
8085         (xstrtol_fatal): New decl, replacing the functionality of xstrtol_error
8086         but with a different signature.
8087         (ATTRIBUTE_NORETURN, __attribute__): New macros.
8088         * lib/xstrtol-error.c: Include exitfail.h.
8089         (xstrtol_fatal): New function, with a different signature from the
8090         old xstrtol_error, so that the caller need not worry about passing
8091         in an exit status, or about storage management of the option argument.
8092         (xstrtol_error): Now a static function.  Redo signature to
8093         implement xstrtol_fatal.  Output the correct number of hyphens in
8094         front of the option so that the caller need not worry about
8095         storage management.
8096         (N_): New macro.
8097         (_): Remove; not used now.
8098         * modules/xstrtol: Depend on getopt.
8099         * tests/test-xstrtol.c (main): Use new xstrtol_error function instead
8100         of old STRTOL_FATAL_ERROR macro.
8101         * tests/test-xstrtol.sh (t-xstrtol.xo): Adjust to match new behavior
8102         of test program.
8103         * tests/test-xstrtoimax.sh (t-xstrtoimax.xo): Likewise.
8104         * tests/test-xstrtoumax.sh (t-xstrtoumax.xo): Likewise.
8105
8106 2007-08-08  Eric Blake  <ebb9@byu.net>
8107
8108         * lib/xstrtol-error.c: Add missing include.
8109
8110         Move xstrtol messages into gnulib domain, when --pobase is used.
8111         * lib/xstrtol.h (_STRTOL_ERROR): Move messages out of macro...
8112         * lib/xstrtol-error.c (xstrtol_error): ...into new file.
8113         * modules/xstrtol (Files): Distribute new file.
8114         * m4/xstrtol.m4 (gl_XSTRTOL): Build new file.
8115         * lib/xstrtol.c (TESTING_XSTRTO): Move tests...
8116         * tests/test-xstrtol.c: ...into new file.
8117         * tests/test-xstrtoul.c: Also test xstrtoul.
8118         * tests/test-xstrtoimax.c: Also test xstrtoimax.
8119         * tests/test-xstrtoumax.c: Also test xstrtoumax.
8120         * tests/test-xstrtol.sh: Drive the tests.
8121         * tests/test-xstrtoimax.sh: Likewise.
8122         * tests/test-xstrtoumax.sh: Likewise.
8123         * modules/xstrtol-tests: New module.
8124         * modules/xstrtoimax-tests: Likewise.
8125         * modules/xstrtoumax-tests: Likewise.
8126
8127 2007-08-08  Jim Meyering  <jim@meyering.net>
8128
8129         New function: mfile_name_concat.
8130         * lib/filenamecat.c (mfile_name_concat): New function, just like
8131         file_name_concat, but return NULL upon failure rather than exiting
8132         with a diagnostic.
8133         * lib/filenamecat.h: Declare it.
8134
8135 2007-08-07  Bruno Haible  <bruno@clisp.org>
8136
8137         * m4/inttypes.m4 (gl_INTTYPES_H): Use GL_TRIGGER_STDC_LIMIT_MACROS
8138         instead of __STDC_LIMIT_MACROS_TRIGGER. This avoids a redefinition
8139         warning from gcc.
8140         Reported by Eric Blake.
8141
8142 2007-08-07  Simon Josefsson  <simon@josefsson.org>
8143
8144         * modules/crypto/arctwo (License): Use the synonymous term "LGPLv2+".
8145         * modules/crypto/arcfour (License): Likewise.
8146         * modules/crypto/des-tests (License): Likewise.
8147         * modules/crypto/gc-arctwo-tests (License): Likewise.
8148         * modules/crypto/gc-des-tests (License): Likewise.
8149         * modules/crypto/gc-hmac-md5-tests (License): Likewise.
8150         * modules/crypto/gc-hmac-sha1-tests (License): Likewise.
8151         * modules/crypto/gc-md2-tests (License): Likewise.
8152         * modules/crypto/gc-md4-tests (License): Likewise.
8153         * modules/crypto/gc-md5-tests (License): Likewise.
8154         * modules/crypto/gc-pbkdf2-sha1-tests (License): Likewise.
8155         * modules/crypto/gc-rijndael-tests (License): Likewise.
8156         * modules/crypto/gc-sha1-tests (License): Likewise.
8157         * modules/crypto/gc-tests (License): Likewise.
8158         * modules/crypto/hmac-md5 (License): Likewise.
8159         * modules/crypto/hmac-sha1 (License): Likewise.
8160         * modules/crypto/md2-tests (License): Likewise.
8161         * modules/crypto/md4-tests (License): Likewise.
8162         * modules/crypto/md5 (License): Likewise.
8163         * modules/crypto/rijndael (License): Likewise.
8164         * modules/crypto/sha1 (License): Likewise.
8165         * modules/memxor (License): Likewise.
8166
8167 2007-08-06  Paul Eggert  <eggert@cs.ucla.edu>
8168         and Bruno Haible  <bruno@clisp.org>
8169
8170         * NEWS: Describe interface changes to human, xstrtol.
8171         * lib/human.h: Include <xstrtol.h>.
8172         (human_options): Return enum strtol_error, not int.  Remove
8173         bool arg; take int * instead.
8174         * lib/human.c: Don't include "gettext.h".
8175         (_): Remove; no longer used.
8176         Don't include <xstrtol.h>, since human.h does it.
8177         (human_options): Adjust to abovementioned interface changes.
8178         Do not report error to stderr; that's now the caller's
8179         responsibility.
8180         * lib/xstrtol.c (main) [defined TESTING_XSTRTO]: Adjust to
8181         interface change.
8182         * lib/xstrtol.h (_STRTOL_ERROR): Take Option, Arg rather than
8183         Str, Argument_type_string.  All uses changed.  Put " argument"
8184         in diagnostics to make them clearer.  Change wording of suffix
8185         message for clarity.
8186         (STRTOL_FATAL_ERROR): Take Option, Arg rather than Str,
8187         Argument_type_string.
8188         (STRTOL_FATAL_WARN): Remove; no longer used.
8189         * modules/human (Depends-on): Remove gettext-h.
8190
8191 2007-08-06  Simon Josefsson  <simon@josefsson.org>
8192
8193         * build-aux/maint.mk, build-aux/GNUmakefile: Relicense to GPLv3+.
8194
8195 2007-07-31  Bruno Haible  <bruno@clisp.org>
8196
8197         * m4/stdint.m4 (gl_STDINT_H): Test whether WCHAR_MIN and WCHAR_MAX
8198         are defined by <stdint.h> (as opposed to <wchar.h>, as on Dragonfly).
8199         Reported by Joerg Sonnenberger <joerg@britannica.bec.de>.
8200
8201 2007-07-31  Bruno Haible  <bruno@clisp.org>
8202
8203         * lib/fflush.c (rpl_fflush): On BSD systems, use the __SNPT flag.
8204         Suggested by Joerg Sonnenberger <joerg@britannica.bec.de>.
8205
8206 2007-07-30  Bruno Haible  <bruno@clisp.org>
8207
8208         * modules/base64 (License): Use the synonymous term "LGPLv2+".
8209         * modules/c-ctype (License): Likewise.
8210         * modules/c-strcase (License): Likewise.
8211         * modules/check-version (License): Likewise.
8212         * modules/iconv (License): Likewise.
8213         * modules/iconv_open (License): Likewise.
8214         * modules/read-file (License): Likewise.
8215         * modules/striconv (License): Likewise.
8216         * modules/strverscmp (License): Likewise.
8217         * modules/vasprintf (License): Likewise.
8218         * modules/crypto/des (License): Likewise.
8219         * modules/crypto/gc (License): Likewise.
8220         * modules/crypto/gc-arcfour (License): Likewise.
8221         * modules/crypto/gc-arctwo (License): Likewise.
8222         * modules/crypto/gc-des (License): Likewise.
8223         * modules/crypto/gc-hmac-md5 (License): Likewise.
8224         * modules/crypto/gc-hmac-sha1 (License): Likewise.
8225         * modules/crypto/gc-md2 (License): Likewise.
8226         * modules/crypto/gc-md4 (License): Likewise.
8227         * modules/crypto/gc-md5 (License): Likewise.
8228         * modules/crypto/gc-pbkdf2-sha1 (License): Likewise.
8229         * modules/crypto/gc-random (License): Likewise.
8230         * modules/crypto/gc-rijndael (License): Likewise.
8231         * modules/crypto/gc-sha1 (License): Likewise.
8232         * modules/crypto/md2 (License): Likewise.
8233         * modules/crypto/md4 (License): Likewise.
8234
8235 2007-07-30  Jim Meyering  <jim@meyering.net>
8236
8237         * lib/fts.c (fts_read): Upon failure to chdir into a subdirectory,
8238         set fts_info to FTS_DNR, not to FTS_ERR, so that the caller knows
8239         it has valid stat data.  This bug would cause du not to count the
8240         sizes of inaccessible directories.
8241         Patch by Bryan Mason <bmason@redhat.com>, via Jose Maria Plans
8242         in <http://bugzilla.redhat.com/250077>.
8243
8244 2007-07-25  Peter O'Gorman  <peter@pogma.com>
8245             Bruno Haible  <bruno@clisp.org>
8246
8247         * m4/include_next.m4 (gl_INCLUDE_NEXT): Test whether #include_next
8248         really works. Needed because AIX 4.3 "xlc -E" doesn't understand
8249         #include_next, gives a diagnostic about it, but reports no error in
8250         the exit code.
8251         Reported by Gary V. Vaughan <gary@thewrittenword.com>.
8252
8253 2007-07-24  Ben Pfaff  <blp@gnu.org>
8254
8255         Improve name: "count-one-bits" is better than "popcount".
8256         * MODULES.html.sh: Update name.
8257         * lib/popcount.h: Renamed lib/count-one-bits.h.
8258         (popcount): Renamed count_one_bits.
8259         (popcountl): Renamed count_one_bits_l.
8260         (popcountll): Renamed count_one_bits_ll.
8261         * m4/popcount.m4: Renamed m4/count-one-bits.m4.
8262         * modules/popcount: Renamed module/count-one-bits.
8263         * modules/popcount-tests: Renamed module/count-one-bits-tests.
8264         * tests/test-popcount.c: Renamed tests/test-count-one-bits.c.
8265
8266 2007-07-23  Ben Pfaff  <blp@gnu.org>
8267
8268         * lib/popcount.h (popcount32): Reduce size of constants, to allow
8269         better code generation, and add U to large constants to avoid
8270         warnings, in non-GCC case.
8271         Suggested by Bruno Haible.
8272
8273 2007-07-23  Ben Pfaff  <blp@gnu.org>
8274
8275         * lib/popcount.h: Use verify_true instead of if...abort.
8276         * modules/popcount: Depend on verify module.
8277         Suggested by Jim Meyering.
8278
8279 2007-07-23  Bruno Haible  <bruno@clisp.org>
8280
8281         * gnulib-tool (func_import): Create a .cvsignore file also when the
8282         directory is not yet in CVS but the toplevel directory is. When
8283         creating a .cvsignore file, add ".deps" and ".dirstamp" to it.
8284         Reported by Karl Berry.
8285
8286 2007-07-22  Ben Pfaff  <blp@gnu.org>
8287
8288         * lib/popcount.h: Use faster, branchless algorithm for non-GCC
8289         case.
8290         Suggested by Eric Blake.
8291
8292 2007-07-22  Ben Pfaff  <blp@gnu.org>
8293
8294         New module: popcount.
8295         * MODULES.html.sh: Add popcount.
8296         * modules/popcount: New file.
8297         * modules/popcount-tests: New file.
8298         * tests/test-popcount.c: New file.
8299         * lib/popcount.h: New file.
8300         * m4/popcount.m4: New file.
8301
8302 2007-07-22  Paul Eggert  <eggert@cs.ucla.edu>
8303
8304         * build-aux/announce-gen: Update to GPLv3.
8305
8306         * build-aux/config.guess: Update from config.
8307
8308 2007-07-21  Bruno Haible  <bruno@clisp.org>
8309
8310         * lib/error.c (_) [ENABLE_NLS]: Define to gettext.
8311         * lib/verror.c (_) [ENABLE_NLS]: Likewise.
8312
8313 2007-07-20  Jim Meyering  <jim@meyering.net>
8314
8315         * check-module: Diagnose a self-dependency.
8316
8317 2007-07-19  Bruno Haible  <bruno@clisp.org>
8318
8319         * gnulib-tool (func_import): Don't abort if pobase or po_domain is
8320         empty.
8321         Reported by Eric Blake.
8322
8323 2007-07-18  Bruno Haible  <bruno@clisp.org>
8324
8325         * gnulib-tool: New options --po-base, --po-domain.
8326         (func_usage): Document them.
8327         (pobase, po_domain): New variables.
8328         (func_emit_lib_Makefile_am): Augment AM_CPPFLAGS, defining
8329         DEFAULT_TEXT_DOMAIN.
8330         (func_emit_po_Makevars, func_emit_po_POTFILES_in): New functions.
8331         (func_import): Consider pobase and po_domain. Create a po/ directory.
8332         (func_create_testdir): Set pobase and po_domain to empty.
8333         * build-aux/po/Makefile.in.in: New file, from GNU gettext 0.16.1.
8334         * build-aux/po/remove-potcdate.sin: New file, from GNU gettext 0.16.1.
8335
8336 2007-07-18  Bruno Haible  <bruno@clisp.org>
8337
8338         * gnulib-tool (func_get_automake_snippet): Synthesize also an
8339         EXTRA_DIST augmentation for files in build-aux/.
8340
8341 2007-07-16  Bruno Haible  <bruno@clisp.org>
8342
8343         * modules/lseek (License): Use the synonymous term "LGPLv2+".
8344         * modules/getdelim (License): Likewise.
8345
8346 2007-07-16  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
8347
8348         * modules/arpa_inet (License): Use the synonymous term LGPLv2+.
8349         * modules/d-type (License): Likewise.
8350         * modules/extensions (License): Likewise.
8351         * modules/fnmatch (License): Likewise.
8352         * modules/fseeko (License): Likewise.
8353         * modules/getaddrinfo (License): Likewise.
8354         * modules/getline (License): Likewise.
8355         * modules/getlogin_r (License): Likewise.
8356         * modules/getpass (License): Likewise.
8357         * modules/gettimeofday (License): Likewise.
8358         * modules/glob (License): Likewise.
8359         * modules/inet_ntop (License): Likewise.
8360         * modules/malloc (License): Likewise.
8361         * modules/malloca (License): Likewise.
8362         * modules/memmem (License): Likewise.
8363         * modules/mempcpy (License): Likewise.
8364         * modules/memset (License): Likewise.
8365         * modules/minmax (License): Likewise.
8366         * modules/mktime (License): Likewise.
8367         * modules/netinet_in (License): Likewise.
8368         * modules/pathmax (License): Likewise.
8369         * modules/poll (License): Likewise.
8370         * modules/regex (License): Likewise.
8371         * modules/snprintf (License): Likewise.
8372         * modules/stdbool (License): Likewise.
8373         * modules/stdint (License): Likewise.
8374         * modules/stdio (License): Likewise.
8375         * modules/strcase (License): Likewise.
8376         * modules/strcasestr (License): Likewise.
8377         * modules/strdup (License): Likewise.
8378         * modules/string (License): Likewise.
8379         * modules/strndup (License): Likewise.
8380         * modules/strnlen (License): Likewise.
8381         * modules/strpbrk (License): Likewise.
8382         * modules/strptime (License): Likewise.
8383         * modules/strsep (License): Likewise.
8384         * modules/sys_select (License): Likewise.
8385         * modules/sys_socket (License): Likewise.
8386         * modules/sys_stat (License): Likewise.
8387         * modules/sys_time (License): Likewise.
8388         * modules/time (License): Likewise.
8389         * modules/time_r (License): Likewise.
8390         * modules/timegm (License): Likewise.
8391         * modules/unistd (License): Likewise.
8392         * modules/vsnprintf (License): Likewise.
8393         * modules/wctype (License): Likewise.
8394
8395 2007-07-16  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8396
8397         * modules/argz (License): LGPLv2+.
8398
8399 2007-07-15  Karl Berry  <karl@gnu.org>
8400
8401         * doc/gnulib.texi: revise node structure per new fdl.texi.
8402
8403 2007-07-14  Bruno Haible  <bruno@clisp.org>
8404
8405         * lib/uniname/gen-uninames.lisp (main): Emit a "do not edit" line to
8406         the output file.
8407         * lib/uniname/uninames.h: Regenerated.
8408
8409 2007-07-14  Karl Berry  <karl@gnu.org>
8410
8411         * doc/*gpl*.texi, doc/fdl.texi: new versions, consistently
8412         omitting sectioning and index commands.
8413
8414 2007-07-13  Bruno Haible  <bruno@clisp.org>
8415
8416         New gnulib-tool option --more-symlinks.
8417         * gnulib-tool (func_usage): Document --more-symlinks.
8418         (do_copyrights): New variable.
8419         Recognize option --more-symlinks.
8420         (func_import): Don't add a copyright notice transform to
8421         sed_transform_lib_file if do_copyrights is empty.
8422
8423 2007-07-13  Bruno Haible  <bruno@clisp.org>
8424
8425         * lib/vasnprintf.c (decimal_point_char): Define also if
8426         (NEED_PRINTF_LONG_DOUBLE || NEED_PRINTF_INFINITE_DOUBLE)
8427         && !NEED_PRINTF_DIRECTIVE_A.
8428         Reported by Clemens Koller <clemens.koller@anagramm.de> via
8429         Gary V. Vaughan <gary@gnu.org>.
8430
8431 2007-07-13  Paul Eggert  <eggert@cs.ucla.edu>
8432
8433         * lib/inttypes_.h: Undo previous change, since it was fixed
8434         in a different way in the 2007-07-02 fix to m4/inttypes.m4.
8435
8436 2007-07-13  Bruno Haible  <bruno@clisp.org>
8437
8438         * lib/stdint_.h: Fix typo: _GL_JUST_INCLUDE_SYSTEM_INTTYPES_H was
8439         misspelled as _GL_JUST_INCLUDE_ABSOLUTE_INTTYPES_H.
8440
8441 2007-07-13  Jim Meyering  <jim@meyering.net>
8442
8443         df: Don't fail for Tru64's "file-on-file mount".
8444         * m4/fsusage.m4 (gl_FSUSAGE): Reject Tru64's buggy statvfs,
8445         so we fall through and use statfs instead.  Details here:
8446         <http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/10878>
8447         Reported by Albert Chin.
8448
8449 2007-07-13  Bruno Haible  <bruno@clisp.org>
8450
8451         * modules/alloca-opt (License): Use the synonymous term "LGPLv2+".
8452         * modules/configmake (License): Likewise.
8453         * modules/gettext (License): Likewise.
8454         * modules/gettext-h (License): Likewise.
8455         * modules/include_next (License): Likewise.
8456         * modules/link-warning (License): Likewise.
8457         * modules/localcharset (License): Likewise.
8458         * modules/localename (License): Likewise.
8459         * modules/lock (License): Likewise.
8460         * modules/relocatable-lib-lgpl (License): Likewise.
8461         * modules/size_max (License): Likewise.
8462         * modules/vasnprintf (License): Likewise.
8463         * modules/wchar (License): Likewise.
8464         * modules/xsize (License): Likewise.
8465
8466 2007-07-13  Bruno Haible  <bruno@clisp.org>
8467
8468         * gnulib-tool (func_import): Treat LGPLv2 as synonymous to LGPL.
8469         (func_create_testdir): Handle copying terms "GPLv2+" and "LGPLv2+".
8470
8471 2007-07-12  Bruno Haible  <bruno@clisp.org>
8472
8473         * doc/gnulib-intro.texi (Copyright): Clarify the license abbreviations
8474         in the modules files.
8475
8476 2007-07-11  Karl Berry  <karl@gnu.org>
8477
8478         * MODULES.html.sh (func_module): use
8479          sed -e '\|^'"${includefile}"'$|d'
8480          instead of /.../d, to avoid errors on $includefile's containing /.
8481
8482 2007-07-10  Sergey Poznyakoff  <gray@gnu.org.ua>
8483
8484         * gnulib-tool (func_import): Avoid duplication of --avoid
8485         statements
8486         (func_dest_tmpfilename,func_create_testdir): Translate `-' in file
8487         names to `_' in variable names.
8488
8489 2007-07-10  Eric Blake  <ebb9@byu.net>
8490
8491         * lib/version-etc.c (version_etc_va): Default to GPLv3+.
8492         * NEWS: Document this change.
8493
8494 2007-07-08  Bruno Haible  <bruno@clisp.org>
8495
8496         Update to Unicode 5.0.
8497         * lib/uniwidth/width.c (nonspacing_table_data): Add U+00AD,
8498         U+0350..U+035F, U+05A2, U+05BA, U+05C5, U+05C7, U+0600..U+0603,
8499         U+0610..U+0615, U+0656..U+065E, U+07EB..U+07F3, U+0A01, U+0AE2..U+0AE3,
8500         U+0CBC. Remove U+0CBF, U+0CC6. Add U+0CE2..U+0CE3, U+135F,
8501         U+17B4..U+17B5, U+17DD. Remove U+180E. Add U+1920..U+1922,
8502         U+1927..U+192B, U+1932, U+1939..U+193B, U+1A17..U+1A18, U+1B00..U+1B03,
8503         U+1B34, U+1B36..U+1B3A, U+1B3C, U+1B42, U+1B6B..U+1B73, U+1DC0..U+1DCA,
8504         U+1DFE..U+1DFF, U+20EB..U+20EF, U+A802, U+A806, U+A80B, U+A825..U+A826,
8505         U+10A01..U+10A03, U+10A05..U+10A06, U+10A0C..U+10A0F, U+10A38..U+10A3A,
8506         U+10A3F, U+1D242..U+1D244.
8507         (nonspacing_table_ind): Update.
8508         (uc_width): Assign width 0 to U+E0100..U+E01EF. Assign width 1 to
8509         U+4DC0..U+4DFF. Assign width 2 to U+2329..U+232A, U+FE10..U+FE1F.
8510
8511 2007-07-08  Bruno Haible  <bruno@clisp.org>
8512
8513         Update to Unicode 5.0.
8514         * lib/uniname/gen-uninames.lisp (main): Add the range 0x12xxx to the
8515         code transform. Extend the name index field of unicode_name_to_code and
8516         unicode_code_to_name from 16 to 24 bits.
8517         * lib/uniname/uniname.c (unicode_character_name,
8518         unicode_name_character): Add the range 0x12xxx to the code transform.
8519         * lib/uniname/uninames.h: Regenerated.
8520         * tests/uniname/UnicodeDataNames.txt: Update to Unicode 5.0.
8521
8522 2007-07-07  Bruno Haible  <bruno@clisp.org>
8523
8524         * modules/wcwidth-tests: New file.
8525         * tests/test-wcwidth.c: New file.
8526
8527         Work around MacOS X wcwidth() bug.
8528         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Test against MacOS X 10.3 bug.
8529         * lib/wcwidth.c: Include localcharset.h, streq.h, uniwidth.h.
8530         (rpl_wcwidth): Special-case the UTF-8 locales. Fall back to the
8531         original wcwidth in non-UTF-8 locales.
8532         * modules/wcwidth (Depends-on): Add localcharset, streq,
8533         uniwidth/width.
8534         * doc/functions/wcwidth.texi: Update.
8535
8536 2007-07-07  Bruno Haible  <bruno@clisp.org>
8537
8538         * lib/wchar_.h: Include the GL_LINK_WARNING macro.
8539         (wcwidth): New declaration.
8540         * m4/wchar.m4 (gl_WCHAR_MODULE_INDICATOR, gl_WCHAR_H_DEFAULTS): New
8541         macros.
8542         (gl_WCHAR_H): Require gl_WCHAR_H_DEFAULTS. Don't set WCHAR_H to empty
8543         here. Prepare for creating <wchar.h> unconditionally.
8544         * modules/wchar (Depends-on): Add link-warning.
8545         (Makefile.am): Substitute also GNULIB_WCWIDTH, HAVE_DECL_WCWIDTH,
8546         REPLACE_WCWIDTH, and GL_LINK_WARNING.
8547         * lib/wcwidth.h: Remove file.
8548         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Require gl_WCHAR_H_DEFAULTS. Set
8549         HAVE_DECL_WCWIDTH, REPLACE_WCWIDTH, WCHAR_H.
8550         * modules/wcwidth (Files): Remove lib/wcwidth.h.
8551         (configure.ac): Invoke gl_WCHAR_MODULE_INDICATOR.
8552         (Include): Replace wcwidth.h with <wchar.h>.
8553         * lib/wcwidth.c: Include <wchar.h> instead of wcwidth.h.
8554         * lib/mbchar.h: Don't include wcwidth.h.
8555         * lib/mbswidth.c: Likewise.
8556         * NEWS: Mention the change.
8557
8558 2007-07-07  Bruno Haible  <bruno@clisp.org>
8559
8560         * lib/wcwidth.c: New file, extracted from lib/wcwidth.h.
8561         * lib/wcwidth.h: Don't include wctype.h. Replace inline function
8562         definition with an external declaration.
8563         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Use wcwidth.c when wcwidth is not
8564         defined as a function. Remove AC_C_INLINE requirement.
8565         * modules/wcwidth (Files): Add lib/wcwidth.c.
8566         (Makefile.am): Remove redundant statement.
8567
8568 2007-07-07  Bruno Haible  <bruno@clisp.org>
8569
8570         * MODULES.html.sh (Unicode string functions): Add the new modules.
8571
8572         * tests/uniwidth/test-u32-strwidth.c: New file.
8573         * modules/uniwidth/u32-strwidth-tests: New file.
8574
8575         * lib/uniwidth/u32-strwidth.c: New file.
8576         * modules/uniwidth/u32-strwidth: New file.
8577
8578         * tests/uniwidth/test-u16-strwidth.c: New file.
8579         * modules/uniwidth/u16-strwidth-tests: New file.
8580
8581         * lib/uniwidth/u16-strwidth.c: New file.
8582         * modules/uniwidth/u16-strwidth: New file.
8583
8584         * tests/uniwidth/test-u8-strwidth.c: New file.
8585         * modules/uniwidth/u8-strwidth-tests: New file.
8586
8587         * lib/uniwidth/u8-strwidth.c: New file.
8588         * modules/uniwidth/u8-strwidth: New file.
8589
8590         * tests/uniwidth/test-u32-width.c: New file.
8591         * modules/uniwidth/u32-width-tests: New file.
8592
8593         * lib/uniwidth/u32-width.c: New file.
8594         * modules/uniwidth/u32-width: New file.
8595
8596         * tests/uniwidth/test-u16-width.c: New file.
8597         * modules/uniwidth/u16-width-tests: New file.
8598
8599         * lib/uniwidth/u16-width.c: New file.
8600         * modules/uniwidth/u16-width: New file.
8601
8602         * tests/uniwidth/test-u8-width.c: New file.
8603         * modules/uniwidth/u8-width-tests: New file.
8604
8605         * lib/uniwidth/u8-width.c: New file.
8606         * modules/uniwidth/u8-width: New file.
8607
8608         * tests/uniwidth/test-uc_width.c: New file.
8609         * modules/uniwidth/width-tests: New file.
8610
8611         * lib/uniwidth/width.c: New file, from GNU libiconv.
8612         * lib/uniwidth/cjk.h: New file, from GNU libiconv.
8613         * modules/uniwidth/width: New file.
8614
8615         * lib/uniwidth.h: New file, from GNU libiconv.
8616         * modules/uniwidth/base: New file.
8617
8618 2007-07-07  Bruno Haible  <bruno@clisp.org>
8619
8620         * lib/uniname.h: New file, from GNU gettext.
8621         * lib/uniname/gen-uninames.lisp: New file, from GNU gettext.
8622         * lib/uniname/uninames.h: New file, from GNU gettext.
8623         * lib/uniname/uniname.c: New file, from GNU gettext.
8624         * tests/uniname/test-uninames.sh: New file.
8625         * tests/uniname/test-uninames.c: New file, from GNU gettext.
8626         * tests/uniname/UnicodeDataNames.txt: New file, from GNU gettext.
8627         * modules/uniname/base: New file.
8628         * modules/uniname/uniname: New file.
8629         * modules/uniname/uniname-tests: New file.
8630         * MODULES.html.sh (Unicode string functions): Add the new modules.
8631
8632 2007-07-06  Bruno Haible  <bruno@clisp.org>
8633
8634         * doc/Makefile (TEXI2HTML): Specify a --reference-limit.
8635
8636 2007-07-06  Bruno Haible  <bruno@clisp.org>
8637
8638         * lib/sys_time_.h: Use a recursion-safe inclusion guard rather than
8639         a split double-inclusion guard. Needed for cygwin, where <sys/time.h>
8640         includes <cygwin/sys_time.h> which includes <sys/select.h> which
8641         include <sys/time.h>.
8642         Reported by Eric Blake.
8643
8644 2007-07-06  Eric Blake  <ebb9@byu.net>
8645
8646         Fix testing canonicalize on cygwin.
8647         * modules/canonicalize-lgpl-tests (test_canonicalize_lgpl_LDADD):
8648         Revert patch from 2007-06-19.
8649         * tests/test-canonicalize-lgpl.c (main): Instead, skip test when
8650         canonicalize module is also in use.
8651         * tests/test-canonicalize.c: New file.
8652         * tests/test-canonicalize.sh: Likewise.
8653         * modules/canonicalize-tests: Likewise.
8654
8655 2007-07-06  Jim Meyering  <jim@meyering.net>
8656
8657         * lib/getugroups.c (getugroups): Detect getgrent failure.
8658         Adjust comment to reflect reality: this function may return -1.
8659
8660 2007-07-05  Sergey Poznyakoff  <gray@gnu.org.ua>
8661
8662         * build-aux/bootstrap (TP_URL,get_translations): Update to use
8663         the new TP address.
8664         (usage): Fix typo
8665         (gnulib_mk): New variable.
8666
8667 2007-07-05  Jim Meyering  <jim@meyering.net>
8668
8669         Don't let endgrent clobber errno, no matter how improbable.
8670         * lib/getugroups.c (getugroups): Save and restore errno around
8671         endgrent call.
8672
8673         Close the group DB even when failing with 2^31 or more members.
8674         * lib/getugroups.c (getugroups): Don't return without calling endgrent.
8675
8676 2007-07-04  Jim Meyering  <jim@meyering.net>
8677
8678         * lib/getugroups.h: New file.
8679         * lib/getugroups.c: Include "getugroups.h".
8680         Remove uses of "register" keyword.
8681         Move local variable, "cp", down into scope where used.
8682         Give "username" parameter the "const" attribute.
8683         * modules/getugroups (Files): Add lib/getugroups.h
8684
8685 2007-07-04  Karl Berry  <karl@gnu.org>
8686
8687         * MODULES.html.sh (func_all_modules): Complete rename of
8688         gpl/lgpl to gpl-2.0 and lgpl-2.1, and add gpl-3.0.
8689
8690 2007-07-02  Bruno Haible  <bruno@clisp.org>
8691
8692         * m4/inttypes.m4 (gl_INTTYPES_H): Define __STDC_LIMIT_MACROS in C++
8693         mode, when inttypes.h comes from gnulib.
8694         Reported by Joel E. Denny <jdenny@ces.clemson.edu>.
8695
8696 2007-07-02  Simon Josefsson  <simon@josefsson.org>
8697
8698         * NEWS: Mention lgpl module name change.
8699
8700         * modules/lgpl-2.1: Renamed from lgpl.
8701
8702         * NEWS: Mention gpl module name change.
8703
8704         * modules/gpl-3.0: New file, based on gpl-2.0.
8705
8706         * modules/gpl-2.0: Renamed from gpl.
8707
8708         * modules/gpl: Fix filename, doc/gpl.texi is now found at
8709         doc/gpl-2.0.texi.
8710
8711 2007-07-02  Paul Eggert  <eggert@cs.ucla.edu>
8712
8713         * lib/inttypes_.h [defined __cplusplus&&!defined __STDC_LIMIT_MACROS]:
8714         #define __STDC_LIMIT_MACROS temporarily while including
8715         <stdint.h>, so that __STDC_LIMIT_MACROS is defined.
8716         Problem reported by Joel E. Denny in
8717         <http://lists.gnu.org/archive/html/bug-gnulib/2007-07/msg00008.html>.
8718
8719 2007-07-01  Bruno Haible  <bruno@clisp.org>
8720
8721         * lib/unistdio.h: New file.
8722         * lib/unistdio/u-asnprintf.h: New file.
8723         * lib/unistdio/u-asprintf.h: New file.
8724         * lib/unistdio/u-printf-args.c: New file.
8725         * lib/unistdio/u-printf-args.h: New file.
8726         * lib/unistdio/u-printf-parse.h: New file.
8727         * lib/unistdio/u-snprintf.h: New file.
8728         * lib/unistdio/u-sprintf.h: New file.
8729         * lib/unistdio/u-vasprintf.h: New file.
8730         * lib/unistdio/u-vsnprintf.h: New file.
8731         * lib/unistdio/u-vsprintf.h: New file.
8732         * lib/unistdio/ulc-asnprintf.c: New file.
8733         * lib/unistdio/ulc-asprintf.c: New file.
8734         * lib/unistdio/ulc-fprintf.c: New file, based on lib/fprintf.c.
8735         * lib/unistdio/ulc-printf-parse.c: New file.
8736         * lib/unistdio/ulc-snprintf.c: New file.
8737         * lib/unistdio/ulc-sprintf.c: New file.
8738         * lib/unistdio/ulc-vasnprintf.c: New file.
8739         * lib/unistdio/ulc-vasprintf.c: New file.
8740         * lib/unistdio/ulc-vfprintf.c: New file, based on lib/vfprintf.c.
8741         * lib/unistdio/ulc-vsnprintf.c: New file.
8742         * lib/unistdio/ulc-vsprintf.c: New file.
8743         * lib/unistdio/u8-asnprintf.c: New file.
8744         * lib/unistdio/u8-asprintf.c: New file.
8745         * lib/unistdio/u8-printf-parse.c: New file.
8746         * lib/unistdio/u8-snprintf.c: New file.
8747         * lib/unistdio/u8-sprintf.c: New file.
8748         * lib/unistdio/u8-vasnprintf.c: New file.
8749         * lib/unistdio/u8-vasprintf.c: New file.
8750         * lib/unistdio/u8-vsnprintf.c: New file.
8751         * lib/unistdio/u8-vsprintf.c: New file.
8752         * lib/unistdio/u8-u8-asnprintf.c: New file.
8753         * lib/unistdio/u8-u8-asprintf.c: New file.
8754         * lib/unistdio/u8-u8-snprintf.c: New file.
8755         * lib/unistdio/u8-u8-sprintf.c: New file.
8756         * lib/unistdio/u8-u8-vasnprintf.c: New file.
8757         * lib/unistdio/u8-u8-vasprintf.c: New file.
8758         * lib/unistdio/u8-u8-vsnprintf.c: New file.
8759         * lib/unistdio/u8-u8-vsprintf.c: New file.
8760         * lib/unistdio/u16-asnprintf.c: New file.
8761         * lib/unistdio/u16-asprintf.c: New file.
8762         * lib/unistdio/u16-printf-parse.c: New file.
8763         * lib/unistdio/u16-snprintf.c: New file.
8764         * lib/unistdio/u16-sprintf.c: New file.
8765         * lib/unistdio/u16-vasnprintf.c: New file.
8766         * lib/unistdio/u16-vasprintf.c: New file.
8767         * lib/unistdio/u16-vsnprintf.c: New file.
8768         * lib/unistdio/u16-vsprintf.c: New file.
8769         * lib/unistdio/u16-u16-asnprintf.c: New file.
8770         * lib/unistdio/u16-u16-asprintf.c: New file.
8771         * lib/unistdio/u16-u16-snprintf.c: New file.
8772         * lib/unistdio/u16-u16-sprintf.c: New file.
8773         * lib/unistdio/u16-u16-vasnprintf.c: New file.
8774         * lib/unistdio/u16-u16-vasprintf.c: New file.
8775         * lib/unistdio/u16-u16-vsnprintf.c: New file.
8776         * lib/unistdio/u16-u16-vsprintf.c: New file.
8777         * lib/unistdio/u32-asnprintf.c: New file.
8778         * lib/unistdio/u32-asprintf.c: New file.
8779         * lib/unistdio/u32-printf-parse.c: New file.
8780         * lib/unistdio/u32-snprintf.c: New file.
8781         * lib/unistdio/u32-sprintf.c: New file.
8782         * lib/unistdio/u32-vasnprintf.c: New file.
8783         * lib/unistdio/u32-vasprintf.c: New file.
8784         * lib/unistdio/u32-vsnprintf.c: New file.
8785         * lib/unistdio/u32-vsprintf.c: New file.
8786         * lib/unistdio/u32-u32-asnprintf.c: New file.
8787         * lib/unistdio/u32-u32-asprintf.c: New file.
8788         * lib/unistdio/u32-u32-snprintf.c: New file.
8789         * lib/unistdio/u32-u32-sprintf.c: New file.
8790         * lib/unistdio/u32-u32-vasnprintf.c: New file.
8791         * lib/unistdio/u32-u32-vasprintf.c: New file.
8792         * lib/unistdio/u32-u32-vsnprintf.c: New file.
8793         * lib/unistdio/u32-u32-vsprintf.c: New file.
8794         * tests/unistdio/test-ulc-asnprintf1.c: New file.
8795         * tests/unistdio/test-ulc-asnprintf1.h: New file.
8796         * tests/unistdio/test-ulc-printf1.h: New file.
8797         * tests/unistdio/test-ulc-vasnprintf1.c: New file.
8798         * tests/unistdio/test-ulc-vasnprintf2.c: New file.
8799         * tests/unistdio/test-ulc-vasnprintf2.sh: New file.
8800         * tests/unistdio/test-ulc-vasnprintf3.c: New file.
8801         * tests/unistdio/test-ulc-vasnprintf3.sh: New file.
8802         * tests/unistdio/test-ulc-vasprintf1.c: New file.
8803         * tests/unistdio/test-ulc-vsnprintf1.c: New file.
8804         * tests/unistdio/test-ulc-vsprintf1.c: New file.
8805         * tests/unistdio/test-u8-asnprintf1.c: New file.
8806         * tests/unistdio/test-u8-asnprintf1.h: New file.
8807         * tests/unistdio/test-u8-printf1.h: New file.
8808         * tests/unistdio/test-u8-vasnprintf1.c: New file.
8809         * tests/unistdio/test-u8-vasnprintf2.c: New file.
8810         * tests/unistdio/test-u8-vasnprintf2.sh: New file.
8811         * tests/unistdio/test-u8-vasnprintf3.c: New file.
8812         * tests/unistdio/test-u8-vasnprintf3.sh: New file.
8813         * tests/unistdio/test-u8-vasprintf1.c: New file.
8814         * tests/unistdio/test-u8-vsnprintf1.c: New file.
8815         * tests/unistdio/test-u8-vsprintf1.c: New file.
8816         * tests/unistdio/test-u16-asnprintf1.c: New file.
8817         * tests/unistdio/test-u16-asnprintf1.h: New file.
8818         * tests/unistdio/test-u16-printf1.h: New file.
8819         * tests/unistdio/test-u16-vasnprintf1.c: New file.
8820         * tests/unistdio/test-u16-vasnprintf2.c: New file.
8821         * tests/unistdio/test-u16-vasnprintf2.sh: New file.
8822         * tests/unistdio/test-u16-vasnprintf3.c: New file.
8823         * tests/unistdio/test-u16-vasnprintf3.sh: New file.
8824         * tests/unistdio/test-u16-vasprintf1.c: New file.
8825         * tests/unistdio/test-u16-vsnprintf1.c: New file.
8826         * tests/unistdio/test-u16-vsprintf1.c: New file.
8827         * tests/unistdio/test-u32-asnprintf1.c: New file.
8828         * tests/unistdio/test-u32-asnprintf1.h: New file.
8829         * tests/unistdio/test-u32-printf1.h: New file.
8830         * tests/unistdio/test-u32-vasnprintf1.c: New file.
8831         * tests/unistdio/test-u32-vasnprintf2.c: New file.
8832         * tests/unistdio/test-u32-vasnprintf2.sh: New file.
8833         * tests/unistdio/test-u32-vasnprintf3.c: New file.
8834         * tests/unistdio/test-u32-vasnprintf3.sh: New file.
8835         * tests/unistdio/test-u32-vasprintf1.c: New file.
8836         * tests/unistdio/test-u32-vsnprintf1.c: New file.
8837         * tests/unistdio/test-u32-vsprintf1.c: New file.
8838         * modules/unistdio/base: New file.
8839         * modules/unistdio/u-printf-args: New file.
8840         * modules/unistdio/ulc-asnprintf: New file.
8841         * modules/unistdio/ulc-asprintf: New file.
8842         * modules/unistdio/ulc-fprintf: New file.
8843         * modules/unistdio/ulc-printf-parse: New file.
8844         * modules/unistdio/ulc-snprintf: New file.
8845         * modules/unistdio/ulc-sprintf: New file.
8846         * modules/unistdio/ulc-vasnprintf: New file.
8847         * modules/unistdio/ulc-vasprintf: New file.
8848         * modules/unistdio/ulc-vfprintf: New file.
8849         * modules/unistdio/ulc-vsnprintf: New file.
8850         * modules/unistdio/ulc-vsprintf: New file.
8851         * modules/unistdio/u8-asnprintf: New file.
8852         * modules/unistdio/u8-asprintf: New file.
8853         * modules/unistdio/u8-printf-parse: New file.
8854         * modules/unistdio/u8-snprintf: New file.
8855         * modules/unistdio/u8-sprintf: New file.
8856         * modules/unistdio/u8-vasnprintf: New file.
8857         * modules/unistdio/u8-vasprintf: New file.
8858         * modules/unistdio/u8-vsnprintf: New file.
8859         * modules/unistdio/u8-vsprintf: New file.
8860         * modules/unistdio/u8-u8-asnprintf: New file.
8861         * modules/unistdio/u8-u8-asprintf: New file.
8862         * modules/unistdio/u8-u8-snprintf: New file.
8863         * modules/unistdio/u8-u8-sprintf: New file.
8864         * modules/unistdio/u8-u8-vasnprintf: New file.
8865         * modules/unistdio/u8-u8-vasprintf: New file.
8866         * modules/unistdio/u8-u8-vsnprintf: New file.
8867         * modules/unistdio/u8-u8-vsprintf: New file.
8868         * modules/unistdio/u16-asnprintf: New file.
8869         * modules/unistdio/u16-asprintf: New file.
8870         * modules/unistdio/u16-printf-parse: New file.
8871         * modules/unistdio/u16-snprintf: New file.
8872         * modules/unistdio/u16-sprintf: New file.
8873         * modules/unistdio/u16-vasnprintf: New file.
8874         * modules/unistdio/u16-vasprintf: New file.
8875         * modules/unistdio/u16-vsnprintf: New file.
8876         * modules/unistdio/u16-vsprintf: New file.
8877         * modules/unistdio/u16-u16-asnprintf: New file.
8878         * modules/unistdio/u16-u16-asprintf: New file.
8879         * modules/unistdio/u16-u16-snprintf: New file.
8880         * modules/unistdio/u16-u16-sprintf: New file.
8881         * modules/unistdio/u16-u16-vasnprintf: New file.
8882         * modules/unistdio/u16-u16-vasprintf: New file.
8883         * modules/unistdio/u16-u16-vsnprintf: New file.
8884         * modules/unistdio/u16-u16-vsprintf: New file.
8885         * modules/unistdio/u32-asnprintf: New file.
8886         * modules/unistdio/u32-asprintf: New file.
8887         * modules/unistdio/u32-printf-parse: New file.
8888         * modules/unistdio/u32-snprintf: New file.
8889         * modules/unistdio/u32-sprintf: New file.
8890         * modules/unistdio/u32-vasnprintf: New file.
8891         * modules/unistdio/u32-vasprintf: New file.
8892         * modules/unistdio/u32-vsnprintf: New file.
8893         * modules/unistdio/u32-vsprintf: New file.
8894         * modules/unistdio/u32-u32-asnprintf: New file.
8895         * modules/unistdio/u32-u32-asprintf: New file.
8896         * modules/unistdio/u32-u32-snprintf: New file.
8897         * modules/unistdio/u32-u32-sprintf: New file.
8898         * modules/unistdio/u32-u32-vasnprintf: New file.
8899         * modules/unistdio/u32-u32-vasprintf: New file.
8900         * modules/unistdio/u32-u32-vsnprintf: New file.
8901         * modules/unistdio/u32-u32-vsprintf: New file.
8902         * modules/unistdio/ulc-asnprintf-tests: New file.
8903         * modules/unistdio/ulc-vasnprintf-tests: New file.
8904         * modules/unistdio/ulc-vasprintf-tests: New file.
8905         * modules/unistdio/ulc-vsnprintf-tests: New file.
8906         * modules/unistdio/ulc-vsprintf-tests: New file.
8907         * modules/unistdio/u8-asnprintf-tests: New file.
8908         * modules/unistdio/u8-vasnprintf-tests: New file.
8909         * modules/unistdio/u8-vasprintf-tests: New file.
8910         * modules/unistdio/u8-vsnprintf-tests: New file.
8911         * modules/unistdio/u8-vsprintf-tests: New file.
8912         * modules/unistdio/u16-asnprintf-tests: New file.
8913         * modules/unistdio/u16-vasnprintf-tests: New file.
8914         * modules/unistdio/u16-vasprintf-tests: New file.
8915         * modules/unistdio/u16-vsnprintf-tests: New file.
8916         * modules/unistdio/u16-vsprintf-tests: New file.
8917         * modules/unistdio/u32-asnprintf-tests: New file.
8918         * modules/unistdio/u32-vasnprintf-tests: New file.
8919         * modules/unistdio/u32-vasprintf-tests: New file.
8920         * modules/unistdio/u32-vsnprintf-tests: New file.
8921         * modules/unistdio/u32-vsprintf-tests: New file.
8922         * MODULES.html.sh (Unicode string functions): Add the new modules.
8923
8924 2007-07-01  Bruno Haible  <bruno@clisp.org>
8925
8926         * lib/sprintf.c (sprintf): Limit the available length estimation,
8927         to avoid address wraparound.
8928         * lib/vsprintf.c (vsprintf): Likewise.
8929         * modules/sprintf-posix (Dependencies): Add stdint.
8930         * modules/vsprintf-posix (Dependencies): Likewise.
8931
8932 2007-07-01  Bruno Haible  <bruno@clisp.org>
8933
8934         * gnulib-tool (self_abspathname): Determine PATH_SEPARATOR and handle
8935         Windows PATH as well. Conservative double-quoting. Comments.
8936
8937 2007-07-01  Bruno Haible  <bruno@clisp.org>
8938             Eric Blake  <ebb9@byu.net>
8939             Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8940
8941         * gnulib-tool (self_abspathname): Fix algorithm to cope with
8942         empty components in $PATH, denoting '.'.
8943
8944 2007-07-01  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8945
8946         * gnulib-tool: Fix indentation.
8947         (func_create_megatestdir): Likewise.
8948         Report by Bruno Haible.
8949
8950 2007-06-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
8951
8952         Sync from Automake.
8953         * build-aux/gnupload: Fix shell portability issues with for loops.
8954         Report by Karl Berry.
8955
8956 2007-06-29  Simon Josefsson  <simon@josefsson.org>
8957
8958         * build-aux/maint.mk (POURL): Use translationproject.org.
8959
8960 2007-06-27  Simon Josefsson  <simon@josefsson.org>
8961             Bruno Haible  <bruno@clisp.org>
8962
8963         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Require gl_HEADER_SYS_SOCKET
8964         before using HAVE_WS2TCPIP_H. Check for gai_strerror through an
8965         explicit link test, rather than AC_REPLACE_FUNCS - for mingw.
8966         (gl_PREREQ_GETADDRINFO): Require gl_HEADER_SYS_SOCKET before using
8967         HAVE_SYS_SOCKET_H and HAVE_WS2TCPIP_H.
8968
8969 2007-06-27  Bruno Haible  <bruno@clisp.org>
8970
8971         * build-aux/config.rpath: Upgrade to libtool-1.5.24.
8972         * build-aux/config.libpath: Upgrade to libtool-1.5.24.
8973
8974 2007-06-26  Karl Berry  <karl@gnu.org>
8975
8976         * MODULES.html.sh: remove xreadlink-with-size.
8977
8978 2007-06-23  Paul Eggert  <eggert@cs.ucla.edu>
8979
8980         * lib/time_.h: Port to Solaris 8 with Sun Studio 11, using a
8981         method that I hope also handles the double-include problem noted
8982         by Bruno Haible in
8983         <http://lists.gnu.org/archive/html/bug-gnulib/2007-05/msg00186.html>.
8984
8985 2007-06-23  Bruno Haible  <bruno@clisp.org>
8986
8987         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
8988         Don't let the 'mostlyclean' target fail if the last subdirectory could
8989         not be removed.
8990         Reported by Karl Berry.
8991
8992 2007-06-23  Bruno Haible  <bruno@clisp.org>
8993
8994         * gnulib-tool (echo): Add a speedier workaround for ksh.
8995         * tests/test-echo.sh: Likewise.
8996
8997 2007-06-23  Bruno Haible  <bruno@clisp.org>
8998
8999         * gnulib-tool (echo): Add workarounds also for bash versions < 2.04.
9000         * tests/test-echo.sh: Likewise.
9001
9002 2007-06-23  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
9003
9004         * gnulib-tool (IFS): Initialize early, so we don't set it to
9005         empty later.
9006         (self_abspathname): Rewrite algorithm to set it, reindent.
9007         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am)
9008         (func_create_megatestdir): Merge some sed scripts.
9009
9010 2007-06-23  Paul Eggert  <eggert@cs.ucla.edu>
9011
9012         * m4/include_next.m4 (gl_CHECK_NEXT_HEADERS): Check some typos
9013         exposed by Sun Studio 11 cc on Solaris 8.
9014
9015 2007-06-22  Bruno Haible  <bruno@clisp.org>
9016
9017         * gnulib-tool (echo): Ensure the echo primitive does not interpret
9018         backslashes.
9019         * tests/test-echo.sh: New file.
9020
9021 2007-06-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
9022
9023         * gnulib-tool (func_add_or_update, func_create_testdir): Do not
9024         simplify `sed_replace_build_aux' scripts, they are portable but
9025         echoing them with `echo' is not.
9026         Report and analysis by Fernando Ferreira <fernando.prog@netcabo.pt>.
9027
9028 2007-06-21  Karl Berry  <karl@gnu.org>
9029
9030         * config/srclist.txt: guess we can't handle the licenses via
9031         srclist at the moment.
9032
9033 2007-06-21  Paul Eggert  <eggert@cs.ucla.edu>
9034
9035         * MODULES.html.sh: Add include_next.
9036         * modules/include_next: New file.
9037
9038 2007-06-20  Paul Eggert  <eggert@cs.ucla.edu>
9039
9040         * m4/include_next.m4 (gl_INCLUDE_NEXT): Define and AC_SUBST
9041         INCLUDE_NEXT.
9042         (gl_CHECK_NEXT_HEADERS): New macro.
9043         * m4/fcntl_h.m4 (gl_FCNTL_H): use gl_CHECK_NEXT_HEADERS instead of
9044         the obsolescent gl_ABSOLUTE_HEADER.
9045         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Likewise.
9046         * m4/float_h.m4 (gl_FLOAT_H): Likewise.
9047         * m4/iconv_h.m4 (gl_ICONV_H): Likewise.
9048         * m4/inttypes.m4 (gl_INTTYPES_H): Likewise.
9049         * m4/locale_h.m4 (gl_LOCALE_H): Likewise.
9050         * m4/math_h.m4 (gl_MATH_H): Likewise.
9051         * m4/netinet_in_h.m4 (gl_HEADER_NETINET_IN): Likewise.
9052         * m4/search_h.m4 (gl_SEARCH_H): Likewise.
9053         * m4/signal_h.m4 (gl_SIGNAL_H): Likewise.
9054         * m4/stdint.m4 (gl_STDINT_H): Likewise.
9055         * m4/stdio_h.m4 (gl_STDIO_H): Likewise.
9056         * m4/stdlib_h.m4 (gl_STDLIB_H): Likewise.
9057         * m4/string_h.m4 (gl_HEADER_STRING_H_BODY): Likewise.
9058         * m4/sys_select_h.m4 (gl_HEADER_SYS_SELECT): Likewise.
9059         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Likewise.
9060         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Likewise.
9061         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H_BODY): Likewise.
9062         * m4/sysexits.m4 (gl_SYSEXITS): Likewise.
9063         * m4/time_h.m4 (gl_HEADER_TIME_H_BODY): Likewise.
9064         * m4/unistd_h.m4 (gl_UNISTD_H): Likewise.
9065         * m4/wchar.m4 (gl_WCHAR_H): Likewise.
9066         * m4/wctype.m4 (gl_WCTYPE_H): Likewise.
9067         * m4/inttypes.m4 (gl_INTTYPES_H): Define
9068         _GL_JUST_INCLUDE_SYSTEM_INTTYPES_H to avoid the problem of unclean
9069         builds, since ABSOLUTE_INTTYPES_H is no longer being defined.
9070         * m4/stdint.m4 (gl_STDINT_H): Likewise, for
9071         _GL_JUST_INCLUDE_SYSTEM_STDINT_H.
9072         * lib/fcntl_.h: Use @INCLUDE_NEXT@ @NEXT_foo_H@
9073         rather than @HAVE_INCLUDE_NEXT@ and @ABSOLUTE_foo_H@.
9074         * lib/float_.h: Likewise.
9075         * lib/inttypes_.h: Likewise.
9076         * lib/math_.h: Likewise.
9077         * lib/search_.h: Likewise.
9078         * lib/signal_.h: Likewise.
9079         * lib/stdint_.h: Likewise.
9080         * lib/stdio_.h: Likewise.
9081         * lib/stdlib_.h: Likewise.
9082         * lib/string_.h: Likewise.
9083         * lib/sys_stat_.h: Likewise.
9084         * lib/sys_time_.h: Likewise.
9085         * lib/time_.h: Likewise.
9086         * lib/unistd_.h: Likewise.
9087         * lib/wchar_.h: Likewise.
9088         * lib/wctype_.h: Likewise.
9089         * lib/dirent_.h: Likewise.
9090         * lib/iconv_.h: Likewise.
9091         * lib/locale_.h: Likewise.
9092         * lib/netinet_in_.h: Likewise.
9093         * lib/sys_select_.h: Likewise.
9094         * lib/sys_socket_.h: Likewise.
9095         * lib/sysexits_.h: Likewise.
9096         * modules/fcntl (Depends-on): Depend on include_next, not
9097         absolute_header.
9098         (Makefile): Substitute INCLUDE_NEXT and NEXT_foo_H, not
9099         HAVE_INCLUDE_NEXT and ABSOLUTE_foo_H.
9100         * modules/fchdir: Likewise.
9101         * modules/float: Likewise.
9102         * modules/iconv_open: Likewise.
9103         * modules/inttypes: Likewise.
9104         * modules/locale: Likewise.
9105         * modules/math: Likewise.
9106         * modules/netinet_in: Likewise.
9107         * modules/search: Likewise.
9108         * modules/signal: Likewise.
9109         * modules/stdint: Likewise.
9110         * modules/stdio: Likewise.
9111         * modules/stdlib: Likewise.
9112         * modules/string: Likewise.
9113         * modules/sys_select: Likewise.
9114         * modules/sys_socket: Likewise.
9115         * modules/sys_stat: Likewise.
9116         * modules/sys_time: Likewise.
9117         * modules/sysexits: Likewise.
9118         * modules/time: Likewise.
9119         * modules/unistd: Likewise.
9120         * modules/wchar: Likewise.
9121         * modules/wctype: Likewise.
9122         * modules/sys_stat: Change maintainer to "all".
9123         * modules/unistd: Likewise.
9124
9125 2007-06-20  Karl Berry  <karl@gnu.org>
9126
9127         * config/srclist.txt: track www changes in license files.
9128
9129 2007-06-20  Sergey Poznyakoff  <gray@gnu.org.ua>
9130
9131         * build-aux/bootstrap: Remove stray dot.
9132         Make sure build_aux settings are honored when linking
9133         gnulib_extra_files.
9134
9135 2007-06-19  Eric Blake  <ebb9@byu.net>
9136
9137         * modules/canonicalize-lgpl-tests (test_canonicalize_lgpl_LDADD):
9138         Allow compilation on cygwin.
9139
9140 2007-06-19  Jim Meyering  <jim@meyering.net>
9141
9142         xreadlink-with-size: Remove module.  No longer used.
9143         Ex-callers now use xreadlink or mreadlink-with-size.
9144         * modules/xreadlink-with-size: Remove module.
9145         * lib/xreadlink-with-size.c: Remove file.
9146         * lib/xreadlink.h (xreadlink_with_size): Remove prototype.
9147         (xreadlink): Remove inaccurate comment.  The one in xreadlink.c,
9148         just before the function definition *is* accurate.
9149
9150         Eliminate one way canonicalize_filename_mode could exit.
9151         * lib/canonicalize.c (canonicalize_filename_mode):
9152         Use mreadlink_with_size, not xreadlink_with_size.
9153
9154 2007-06-18  Paul Eggert  <eggert@cs.ucla.edu>
9155
9156         Detect porting problems to FreeBSD/arm, which has time_t wider than
9157         long int.  Original problem reported for GNU diff by Xin Li in
9158         <http://lists.gnu.org/archive/html/bug-gnu-utils/2007-06/msg00091.html>.
9159         * modules/getdate (Depends-on): Add intprops, verify.
9160         * lib/getdate.y: Include intprops.h, verify.h.  Verify that time_t
9161         is an integer type no wider than long int.
9162
9163 2007-06-18  Jim Meyering  <jim@meyering.net>
9164
9165         New module: mreadlink-with-size.
9166         * MODULES.html.sh: Add mreadlink-with-size.
9167         * modules/mreadlink-with-size: New module
9168         * modules/canonicalize (Depends-on): Depend on mreadlink-with-size,
9169         not xreadlink-with-size.
9170         * lib/mreadlink-with-size.c, lib/mreadlink.h: New files.
9171
9172 2007-06-16  Bruno Haible  <bruno@clisp.org>
9173
9174         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Catch the MacOS X 10.4 bug.
9175         * doc/functions/frexpl.texi: Document the MacOS X 10.4 bug.
9176         Reported by Gary V. Vaughan <gary@gnu.org>.
9177
9178 2007-06-15  Paul Eggert  <eggert@cs.ucla.edu>
9179
9180         Revamp lchown so that it lives in unistd.h where it belongs.
9181         * lib/lchown.h: Remove.
9182         * lib/dirchownmod.c: Don't include lib/lchown.h.
9183         * lib/fchownat.c: Likewise.
9184         * lib/openat.c: Likewise.
9185         * lib/lchown.c (REPLACE_CHOWN): Define to 0 if the system chown
9186         does not follow symlinks.
9187         (EOPNOTSUPP): Define if not defined.
9188         * lib/unistd_.h (chown): Do not replace if REPLADE_CHOWN
9189         is defined to 0.
9190         (lchown): New decl.
9191         * m4/lchown.m4 (gl_FUNC_LCHOWN): Require gl_UNISTD_H_DEFAULTS.
9192         Do not check for lchown decl.
9193         Set REPLACE_LCHOWN.
9194         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Set GNULIB_LCHOWN,
9195         REPLACE_LCHOWN.
9196         * modules/chown: Make it clear it follows symlinks.
9197         * modules/lchown: Make it clear it doesn't follow symlinks.
9198         (Files): Remove lib/lchown.h
9199         (Depends-on): Add unistd.
9200         (configure.ac): Add gl_UNISTD_MODULE_INDICATOR([lchown]).
9201         (Include): Include <unistd.h>, not "lchown.h".
9202         * modules/unistd (unistd.h): Substitude GNULIB_LCHOWN and
9203         REPLACE_LCHOWN.
9204
9205 2007-06-15  Jim Meyering  <jim@meyering.net>
9206
9207         Change license (GPL to LGPL) of fsusage and dependents.
9208         * modules/fsusage (License): Change to LGPL.
9209         * modules/full-read (License): Likewise.
9210         * modules/full-write (License): Likewise.
9211         * modules/safe-read (License): Likewise.
9212         * modules/safe-write (License): Likewise.
9213
9214 2007-06-14  Ben Pfaff  <blp@gnu.org>
9215
9216         Missing part of allocsa -> malloca transition.
9217         * modules/relocatable-prog-wrapper: gl_ALLOCSA should be
9218         gl_MALLOCA.
9219
9220 2007-06-12  Bruno Haible  <bruno@clisp.org>
9221
9222         * m4/isnanl.m4 (gl_FUNC_ISNANL_WORKS): Guess no when cross-compiling
9223         to ia64, x86_64, i386.
9224         Reported by Eric Blake.
9225
9226 2007-06-12  Bruno Haible  <bruno@clisp.org>
9227
9228         * m4/printf.m4 (gl_PRINTF_INFINITE_LONG_DOUBLE): Guess no also when
9229         cross-compiling to x86_64.
9230
9231 2007-06-12  Paul Eggert  <eggert@cs.ucla.edu>
9232
9233         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Fix POSIX sed portability
9234         glitch reported by Ralf Wildenhues in
9235         <http://lists.gnu.org/archive/html/bug-gnulib/2007-06/msg00114.html>.
9236
9237         * m4/regex.m4 (gl_REGEX): Catch a bug with [[:alnum:]_-] reported by
9238         Vin Shelton.
9239
9240 2007-06-11  Bruno Haible  <bruno@clisp.org>
9241
9242         * lib/printf-args.c (PRINTF_FETCHARGS) [ENABLE_UNISTDIO]: Fix NULL
9243         replacement string.
9244         Reported by Eric Blake.
9245
9246 2007-06-10  Bruno Haible  <bruno@clisp.org>
9247
9248         Prepare vasnprintf code for use with Unicode strings.
9249         * lib/printf-args.h (PRINTF_FETCHARGS): New macro.
9250         (arg_type) [ENABLE_UNISTDIO]: Define TYPE_U8_STRING, TYPE_U16_STRING,
9251         TYPE_U32_STRING.
9252         (argument) [ENABLE_UNISTDIO]: Add a_u8_string, a_u16_string,
9253         a_u32_string variants.
9254         (PRINTF_FETCHARGS): Renamed from printf_fetchargs.
9255         * lib/printf-args.c: Don't include config.h and the specification
9256         header if PRINTF_FETCHARGS is already defined.
9257         (PRINTF_FETCHARGS): Renamed from printf_fetchargs.
9258         (PRINTF_FETCHARGS) [ENABLE_UNISTDIO]: Add code for TYPE_U8_STRING,
9259         TYPE_U16_STRING, TYPE_U32_STRING.
9260         * lib/printf-parse.h [ENABLE_UNISTDIO] (u8_directive, u8_directives,
9261         u16_directive, u16_directives, u32_directive, u32_directives): New
9262         types.
9263         (ulc_printf_parse, u8_printf_parse, u16_printf_parse, u32_printf_parse):
9264         New declarations.
9265         * lib/printf-parse.c: Don't include config.h and the specification
9266         header if PRINTF_PARSE is already defined. Eliminate the set of
9267         parameters for WIDE_CHAR_VERSION; the user of this file must provide
9268         them now. Include c-ctype.h.
9269         (PRINTF_PARSE) [ENABLE_UNISTDIO]: Add code implementing the 'U'
9270         directive and CHAR_T_ONLY_ASCII.
9271         * lib/vasnprintf.c: Don't include config.h and the specification header
9272         if VASNPRINTF is already defined.
9273         (DCHAR_IS_TCHAR, DCHAR_CPY): New macros.
9274         (VASNPRINTF): Use PRINTF_FETCHARGS instead of printf_fetchargs. Use
9275         DCHAR_CPY. Handle the case that DCHAR_T and FCHAR_T are not the same
9276         type. Handle the case that TCHAR_T and FCHAR_T are not of the same
9277         size. Handle the case that DCHAR_T and TCHAR_T are not the same type,
9278         add a conversion from TCHAR_T[] to DCHAR_T[], and rework the padding
9279         code accordingly.
9280         (VASNPRINTF) [ENABLE_UNISTDIO]: Implement the 'U' directive. Enable
9281         pad_ourselves also in this case, with the 'c' and 's' directives, and
9282         with a different notion of "width".
9283         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_WITH_EXTRAS): New macros.
9284
9285 2007-06-10  Bruno Haible  <bruno@clisp.org>
9286
9287         * modules/unistr/u32-mbsnlen: New file.
9288         * lib/unistr/u32-mbsnlen.c: New file.
9289
9290         * modules/unistr/u16-mbsnlen: New file.
9291         * lib/unistr/u16-mbsnlen.c: New file.
9292
9293         * modules/unistr/u8-mbsnlen: New file.
9294         * lib/unistr/u8-mbsnlen.c: New file.
9295
9296         * lib/unistr.h (u8_mbsnlen, u16_mbsnlen, u32_mbsnlen): New
9297         declarations.
9298
9299 2007-06-10  Bruno Haible  <bruno@clisp.org>
9300
9301         * lib/string_.h (mbsnlen): New declaration.
9302         * lib/mbsnlen.c: New file.
9303         * m4/mbsnlen.m4: New file.
9304         * modules/mbsnlen: New file.
9305         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Set GNULIB_MBSNLEN.
9306         * modules/string (string.h): Substitute GNULIB_MBSNLEN.
9307         * MODULES.html.sh (Internationalization functions): Add mbsnlen.
9308
9309 2007-06-10  Bruno Haible  <bruno@clisp.org>
9310
9311         * lib/mbslen.c: Include <stdlib.h>, needed for MB_CUR_MAX.
9312
9313 2007-06-10  Bruno Haible  <bruno@clisp.org>
9314
9315         * lib/mbiter.h: Include <stddef.h>, needed for ptrdiff_t.
9316         * lib/mbuiter.h: Likewise.
9317
9318 2007-06-10  Bruno Haible  <bruno@clisp.org>
9319
9320         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF): Check for _snprintf
9321         declaration.
9322
9323 2007-06-10  Karl Berry  <karl@gnu.org>
9324
9325         * config/srclist.txt: remove gettext entries, Bruno prefers
9326         to update individually.
9327
9328 2007-06-10  Bruno Haible  <bruno@clisp.org>
9329
9330         * lib/vasnprintf.c (VASNPRINTF) [!USE_SNPRINTF]: Remove variable
9331         'maxlen'. Ensure only length + width bytes are allocated, not
9332         length + 1 + width.
9333
9334 2007-06-09  Bruno Haible  <bruno@clisp.org>
9335
9336         * lib/vasnprintf.c (FCHAR_T, DCHAR_T, TCHAR_T): New macros.
9337         (CHAR_T): Remove macro.
9338         (VASNPRINTF): Update.
9339
9340 2007-06-09  Bruno Haible  <bruno@clisp.org>
9341
9342         * MODULES.html.sh (Unicode string functions): Add the new modules.
9343
9344         * modules/uniconv/u32-conv-to-enc: New file.
9345         * lib/uniconv/u32-conv-to-enc.c: New file.
9346         * modules/uniconv/u32-conv-to-enc-tests: New file.
9347         * tests/uniconv/test-u32-conv-to-enc.c: New file.
9348
9349         * modules/uniconv/u16-conv-to-enc: New file.
9350         * lib/uniconv/u16-conv-to-enc.c: New file.
9351         * lib/uniconv/u-conv-to-enc.h: New file.
9352         * modules/uniconv/u16-conv-to-enc-tests: New file.
9353         * tests/uniconv/test-u16-conv-to-enc.c: New file.
9354
9355         * modules/uniconv/u8-conv-to-enc: New file.
9356         * lib/uniconv/u8-conv-to-enc.c: New file.
9357         * modules/uniconv/u8-conv-to-enc-tests: New file.
9358         * tests/uniconv/test-u8-conv-to-enc.c: New file.
9359
9360         * lib/uniconv.h (u8_conv_to_encoding, u16_conv_to_encoding,
9361         u32_conv_to_encoding): New declarations.
9362
9363 2007-06-09  Bruno Haible  <bruno@clisp.org>
9364
9365         * tests/uniconv/test-u32-strconv-to-enc.c (main): Remove unused code.
9366
9367 2007-06-09  Bruno Haible  <bruno@clisp.org>
9368
9369         Rename 'allocsa' -> 'malloca', 'freesa' -> 'freea'.
9370         * modules/malloca: Renamed from modules/allocsa, updated.
9371         * lib/malloca.h: Renamed from lib/allocsa.h, updated.
9372         * lib/malloca.c: Renamed from lib/allocsa.c, updated.
9373         * lib/malloca.valgrind: Renamed from lib/allocsa.valgrind, updated.
9374         * m4/malloca.m4: Renamed from m4/allocsa.m4, updated.
9375         * modules/malloca-tests: Renamed from modules/allocsa-tests, updated.
9376         * tests/test-malloca.c: Renamed from tests/test-allocsa.c, updated.
9377         * modules/xmalloca: Renamed from modules/xallocsa, updated.
9378         * lib/xmalloca.h: Renamed from lib/xallocsa.h, updated.
9379         * lib/xmalloca.c: Renamed from lib/xallocsa.c, updated.
9380         * modules/c-strcasestr (Depends-on): Update.
9381         * lib/c-strcasestr.c: Update.
9382         * modules/c-strstr (Depends-on): Update.
9383         * lib/c-strstr.c: Update.
9384         * modules/canonicalize-lgpl (Depends-on): Update.
9385         * lib/canonicalize-lgpl.c: Update.
9386         * modules/clean-temp (Depends-on): Update.
9387         * lib/clean-temp.c: Update.
9388         * modules/csharpcomp (Depends-on): Update.
9389         * lib/csharpcomp.c: Update.
9390         * modules/csharpexec (Depends-on): Update.
9391         * lib/csharpexec.c: Update.
9392         * modules/javacomp (Depends-on): Update.
9393         * lib/javacomp.c: Update.
9394         * modules/javaexec (Depends-on): Update.
9395         * lib/javaexec.c: Update.
9396         * modules/mbscasestr (Depends-on): Update.
9397         * lib/mbscasestr.c: Update.
9398         * modules/mbsstr (Depends-on): Update.
9399         * lib/mbsstr.c: Update.
9400         * modules/setenv (Depends-on): Update.
9401         * lib/setenv.c: Update.
9402         * modules/strcasestr (Depends-on): Update.
9403         * lib/strcasestr.c: Update.
9404         * modules/striconveha (Depends-on): Update.
9405         * lib/striconveha.c: Update.
9406         * modules/relocatable-prog-wrapper (Files): Update.
9407         * lib/relocwrapper.c: Update.
9408         * build-aux/install-reloc: Update.
9409         * MODULES.html.sh (Memory management functions <stdlib.h>): Update.
9410
9411 2007-06-08  Bruno Haible  <bruno@clisp.org>
9412
9413         Port to uClibc.
9414         * lib/fbufmode.c (fbufmode): Add special code for uClibc.
9415         * lib/fpurge.c (fpurge): Likewise.
9416         * lib/freading.c (freading): Likewise.
9417         * lib/fseeko.c (rpl_fseeko): Likewise.
9418         * lib/fseterr.c (fseterr): Likewise.
9419         * lib/fwriting.c (fwriting): Likewise.
9420         * tests/test-fflush.c (main): Avoid a failure on uClibc.
9421
9422 2007-06-08  Bruno Haible  <bruno@clisp.org>
9423
9424         * m4/intlmacosx.m4: New file, extracted from gettext.m4.
9425         * m4/gettext.m4 (gt_INTL_MACOSX): Remove macro, moved to intlmacosx.m4.
9426         * modules/gettext (Files): Add m4/intlmacosx.m4.
9427
9428 2007-06-07  Bruno Haible  <bruno@clisp.org>
9429
9430         * modules/localename-tests: New file.
9431         * tests/test-localename.c: New file.
9432
9433         New module 'localename'.
9434         * lib/localename.h: New file.
9435         * lib/localename.c: New file, from GNU gettext.
9436         * m4/localename.m4: New file.
9437         * modules/localename: New file.
9438
9439 2007-06-07  Bruno Haible  <bruno@clisp.org>
9440
9441         Work around the lack of <wchar.h> on some builds of uClibc.
9442         * doc/headers/wchar.texi: Update.
9443         * lib/wchar_.h: Include <wchar.h> only if it exists.
9444         * m4/wchar.m4 (gl_WCHAR_H): Check for <wchar.h>. Set HAVE_WCHAR_H.
9445         * m4/stdint.m4 (gl_STDINT_H): Check for <wchar.h>.
9446         (gl_STDINT_TYPE_PROPERTIES): Don't try to include <wchar.h> if it
9447         doesn't exist.
9448         * modules/wchar (wchar.h): Substitute HAVE_WCHAR_H.
9449         * modules/mbfile (Depends-on): Add wchar.
9450         * modules/mbiter (Depends-on): Likewise.
9451         * modules/mbuiter (Depends-on): Likewise.
9452         Reported by Simon Josefsson.
9453
9454 2007-06-06  Paul Eggert  <eggert@cs.ucla.edu>
9455
9456         Work around problem reported by Steven M. Schweda in
9457         <http://lists.gnu.org/archive/html/bug-tar/2007-06/msg00002.html>:
9458         Tru64 5.1B with the Compaq compiler environment installed declares
9459         an 'isblank' function but does not define it in the C library.
9460         * lib/fnmatch.c (isblank): Check for HAVE_ISBLANK, too.
9461         * lib/regex_internal.h (isblank): Likewise.
9462         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for isblank existence.
9463         * m4/regex.m4 (gl_PREREQ_REGEX): Likewise.
9464
9465 2007-06-05  Bruno Haible  <bruno@clisp.org>
9466
9467         Fix *printf so that it recognizes non-IEEE numbers on i386, x86_64,
9468         ia64.
9469         * modules/printf-safe: New file.
9470         * modules/fprintf-posix (Depends-on): Add printf-safe.
9471         * modules/printf-posix (Depends-on): Likewise.
9472         * modules/snprintf-posix (Depends-on): Likewise.
9473         * modules/sprintf-posix (Depends-on): Likewise.
9474         * modules/vasnprintf-posix (Depends-on): Likewise.
9475         * modules/vasprintf-posix (Depends-on): Likewise.
9476         * modules/vfprintf-posix (Depends-on): Likewise.
9477         * modules/vprintf-posix (Depends-on): Likewise.
9478         * modules/vsnprintf-posix (Depends-on): Likewise.
9479         * modules/vsprintf-posix (Depends-on): Likewise.
9480         * m4/printf.m4 (gl_PRINTF_INFINITE_LONG_DOUBLE): Require
9481         AC_C_BIGENDIAN. Define CHECK_PRINTF_SAFE if printf-safe is used. Test
9482         non-IEEE numbers on i386, x86_64, ia64. When cross-compiling, guess
9483         "no" on i386, x86_64, ia64.
9484         * tests/test-snprintf-posix.h (LDBL80_WORDS): New macro.
9485         (test_function): Check result of %La, %Lf, %Le, %Lg on non-IEEE numbers
9486         on i386, x86_64, ia64.
9487         * tests/test-sprintf-posix.h (LDBL80_WORDS): New macro.
9488         (test_function): Check result of %La, %Lf, %Le, %Lg on non-IEEE numbers
9489         on i386, x86_64, ia64.
9490         * tests/test-vasnprintf-posix.c: Include float.h.
9491         (LDBL80_WORDS): New macro.
9492         (test_function): Check result of %La, %Lf, %Le, %Lg on non-IEEE numbers
9493         on i386, x86_64, ia64.
9494         * tests/test-vasprintf-posix.c: Include float.h.
9495         (LDBL80_WORDS): New macro.
9496         (test_function): Check result of %La, %Lf, %Le, %Lg on non-IEEE numbers
9497         on i386, x86_64, ia64.
9498         * tests/test-snprintf-posix.c: Include float.h.
9499         * tests/test-sprintf-posix.c: Likewise.
9500         * tests/test-vsnprintf-posix.c: Likewise.
9501         * tests/test-vsprintf-posix.c: Likewise.
9502
9503 2007-06-05  Bruno Haible  <bruno@clisp.org>
9504
9505         Fix isnanl so that it recognizes non-IEEE numbers on i386, x86_64, ia64.
9506         * m4/isnanl.m4 (gl_FUNC_ISNANL_WORKS): Require AC_C_BIGENDIAN. Test
9507         non-IEEE numbers on i386, x86_64, ia64.
9508         (gl_LONG_DOUBLE_EXPONENT_LOCATION): Require AC_C_BIGENDIAN.
9509         * lib/isnan.c (FUNC): Add special code for i386, x86_64, ia64.
9510         * tests/test-isnanl.h: Include float.h.
9511         (main): Check also non-IEEE numbers on i386, x86_64, ia64.
9512
9513 2007-06-05  Bruno Haible  <bruno@clisp.org>
9514
9515         * lib/vasnprintf.c (VASNPRINTF): Do the extra handling of NaN and Inf
9516         also the %a / %A. Handle the %a / %A code before this extra handling.
9517
9518 2007-06-05  Bruno Haible  <bruno@clisp.org>
9519
9520         * lib/vasnprintf.c [NEED_PRINTF_LONG_DOUBLE ||
9521         NEED_PRINTF_INFINITE_LONG_DOUBLE]: Include fpucw.h.
9522
9523 2007-06-05  Bruno Haible  <bruno@clisp.org>
9524
9525         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_INFINITE_LONG_DOUBLE): Fix
9526         typo in variable name.
9527
9528 2007-06-05  Eric Blake  <ebb9@byu.net>
9529
9530         * m4/lseek.m4 (gl_FUNC_LSEEK): Work when cross-compiling.
9531         Reported by Simon Josefsson.
9532
9533 2007-06-04  Bruno Haible  <bruno@clisp.org>
9534
9535         Avoid test failures on some PowerPC platforms.
9536         * tests/test-printf-frexpl.c (MIN_NORMAL_EXP, MIN_SUBNORMAL_EXP):
9537         Define differently for PowerPC.
9538         * tests/test-frexpl.c (MIN_NORMAL_EXP): Likewise.
9539         Reported by Gary V. Vaughan <gary@gnu.org>.
9540
9541 2007-06-02  Bruno Haible  <bruno@clisp.org>
9542
9543         Fix test-stdint failure on FreeBSD/ia64.
9544         * m4/stdint.m4 (gl_STDINT_H): Check the values of PTRDIFF_MIN,
9545         PTRDIFF_MAX, SIG_ATOMIC_MIN, SIG_ATOMIC_MAX, SIZE_MAX, WCHAR_MIN,
9546         WCHAR_MAX, WINT_MIN, WINT_MAX entirely, not only for plausibility.
9547         * doc/headers/stdint.texi: Update.
9548
9549 2007-06-01  Bruno Haible  <bruno@clisp.org>
9550
9551         * tests/test-binary-io.c (main): Pass a third argument to open().
9552         Reported by Gary V. Vaughan <gary@gnu.org>.
9553
9554 2007-06-01  Bruno Haible  <bruno@clisp.org>
9555
9556         * doc/functions/frexpl.texi: Update for mingw.
9557
9558 2007-06-01  Bruno Haible  <bruno@clisp.org>
9559
9560         * tests/test-lseek.c (main): Disable test of errno for invalid third
9561         argument.
9562         * doc/functions/lseek.texi: Update.
9563         Reported by Gary V. Vaughan <gary@gnu.org>.
9564
9565 2007-05-28  Bruno Haible  <bruno@clisp.org>
9566
9567         * m4/intl.m4 (AM_INTL_SUBDIR): Substitute variables WOE32, WINDRES.
9568
9569 2007-05-31  Eric Blake  <ebb9@byu.net>
9570
9571         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Guess no on mingw when
9572         cross compiling.
9573
9574 2007-05-30  Eric Blake  <ebb9@byu.net>
9575         and Bruno Haible  <bruno@clisp.org>
9576
9577         Work around mingw test failures exposed by m4-1.4.9b.
9578         * m4/stdint.m4 (gl_STDINT_H): Detect mingw bug.
9579         * tests/test-unistd.c: Disable uid_t and git_t tests for the
9580         moment.
9581
9582 2007-05-30  Bruno Haible  <bruno@clisp.org>
9583
9584         * tests/test-lseek.c: Explicitly close file descriptors 0 and 1 before
9585         assuming that they are closed. Needed on HP-UX 11.
9586
9587 2007-05-29  Bruno Haible  <bruno@clisp.org>
9588
9589         Fix a problem with #include_next.
9590         * lib/dirent_.h: Split the double-inclusion guard.
9591         * lib/fcntl_.h: Likewise.
9592         * lib/float_.h: Likewise.
9593         * lib/iconv_.h: Likewise.
9594         * lib/inttypes_.h: Likewise.
9595         * lib/locale_.h: Likewise.
9596         * lib/math_.h: Likewise.
9597         * lib/netinet_in_.h: Likewise.
9598         * lib/search_.h: Likewise.
9599         * lib/signal_.h: Likewise.
9600         * lib/stdint_.h: Likewise.
9601         * lib/stdio_.h: Likewise.
9602         * lib/stdlib_.h: Likewise.
9603         * lib/string_.h: Likewise.
9604         * lib/sys_select_.h: Likewise.
9605         * lib/sys_socket_.h: Likewise.
9606         * lib/sys_stat_.h: Likewise.
9607         * lib/sys_time_.h: Likewise.
9608         * lib/sysexits_.h: Likewise.
9609         * lib/time_.h: Likewise.
9610         * lib/unistd_.h: Likewise.
9611         * lib/wchar_.h: Likewise.
9612         * lib/wctype_.h: Likewise.
9613
9614 2007-05-29  Bruno Haible  <bruno@clisp.org>
9615
9616         * tests/test-unistd.c: Disable the tests for useconds_t and intptr_t
9617         for the moment.
9618
9619 2007-05-29  Bruno Haible  <bruno@clisp.org>
9620
9621         * m4/isnan.m4 (gl_DOUBLE_EXPONENT_LOCATION): Silence the AC_C_BIGENDIAN
9622         invocation.
9623         Reported by Eric Blake.
9624
9625 2007-05-29  Bruno Haible  <bruno@clisp.org>
9626
9627         * m4/isnanf.m4 (gl_FLOAT_EXPONENT_LOCATION): Fix typo in cross-
9628         compiling case.
9629
9630 2007-05-29  Eric Blake  <ebb9@byu.net>
9631             Bruno Haible  <bruno@clisp.org>
9632
9633         * m4/isnanf.m4 (gl_FUNC_ISNANF_NO_LIBM): Avoid syntax error on
9634         cross compiles.
9635
9636 2007-05-28  Eric Blake  <ebb9@byu.net>
9637
9638         * modules/closein-tests (test_closein_LDADD): Support test on
9639         cygwin with libtool.
9640
9641 2007-05-28  Bruno Haible  <bruno@clisp.org>
9642
9643         * tests/uniconv/test-u16-conv-from-enc.c: Remove #ifdef HAVE_CONFIG_H.
9644         * tests/uniconv/test-u16-strconv-from-enc.c: Likewise.
9645         * tests/uniconv/test-u16-strconv-to-enc.c: Likewise.
9646         * tests/uniconv/test-u32-conv-from-enc.c: Likewise.
9647         * tests/uniconv/test-u32-strconv-from-enc.c: Likewise.
9648         * tests/uniconv/test-u32-strconv-to-enc.c: Likewise.
9649         * tests/uniconv/test-u8-conv-from-enc.c: Likewise.
9650         * tests/uniconv/test-u8-strconv-from-enc.c: Likewise.
9651         * tests/uniconv/test-u8-strconv-to-enc.c: Likewise.
9652
9653 2007-05-28  Eric Blake  <ebb9@byu.net>
9654
9655         Unconditionally include <config.h> in unit tests.
9656         * tests/test-alloca-opt.c: Remove #ifdef HAVE_CONFIG_H.
9657         * tests/test-allocsa.c, tests/test-arcfour.c,
9658         tests/test-arctwo.c, tests/test-argmatch.c, tests/test-argp.c,
9659         tests/test-array_list.c, tests/test-array_oset.c,
9660         tests/test-atexit.c, test-avltree_list.c, test-avltree_oset.c,
9661         test-avltreehash_list.c, test-base64.c, test-binary-io.c,
9662         test-c-ctype.c, test-c-strcasecmp.c, test-c-strcasestr.c,
9663         test-c-strncasecmp.c, test-c-strstr.c, test-canonicalize-lgpl.c,
9664         test-carray_list.c, test-crc.c, test-des.c, test-dirname.c,
9665         test-fflush.c, test-fprintf-posix.c, test-gc-arcfour.c,
9666         test-gc-arctwo.c, test-gc-des.c, test-gc-hmac-md5.c,
9667         test-gc-hmac-sha1.c, test-gc-md2.c, test-gc-md4.c, test-gc-md5.c,
9668         test-gc-pbkdf2-sha1.c, test-gc-rijndael.c, test-gc-sha1.c,
9669         test-gc.c, test-getpass.c, test-hmac-md5.c, test-hmac-sha1.c,
9670         test-iconv.c, test-linked_list.c, test-linkedhash_list.c,
9671         test-lock.c, test-mbscasecmp.c, test-mbscasestr1.c,
9672         test-mbscasestr2.c, test-mbscasestr3.c, test-mbscasestr4.c,
9673         test-mbschr.c, test-mbscspn.c, test-mbsncasecmp.c, test-mbspbrk.c,
9674         test-mbspcasecmp.c, test-mbsrchr.c, test-mbsspn.c, test-mbsstr1.c,
9675         test-mbsstr2.c, test-mbsstr3.c, test-md2.c, test-md4.c,
9676         test-md5.c, test-memmem.c, test-printf-posix.c,
9677         test-rbtree_list.c, test-rbtree_oset.c, test-rbtreehash_list.c,
9678         test-read-file.c, test-rijndael.c, test-snprintf-posix.c,
9679         test-snprintf.c, test-sprintf-posix.c, test-stdint.c,
9680         test-strcasestr.c, test-striconv.c, test-striconveh.c,
9681         test-striconveha.c, test-tls.c, test-vasnprintf-posix.c,
9682         test-vasnprintf-posix2.c, test-vasnprintf.c,
9683         test-vasprintf-posix.c, test-vasprintf.c, test-verify.c,
9684         test-vfprintf-posix.c, test-vprintf-posix.c,
9685         test-vsnprintf-posix.c, test-vsnprintf.c, test-vsprintf-posix.c,
9686         test-xvasprintf.c: Likewise.
9687
9688 2007-05-28  Bruno Haible  <bruno@clisp.org>
9689
9690         * gnulib-tool (func_import): Remember the --with-tests command-line
9691         option through the macro gl_WITH_TESTS in the gnulib-cache.m4.
9692         Reported by Eric Blake.
9693
9694 2007-05-28  Bruno Haible  <bruno@clisp.org>
9695
9696         * modules/ftell-tests: New file.
9697         * tests/test-ftell.c: New file, based on tests/test-ftello.c.
9698         * tests/test-ftell.sh: New file, based on tests/test-ftello.sh.
9699
9700         * lib/ftell.c: New file.
9701         * modules/ftell: New file.
9702         * m4/ftell.m4: New file.
9703         * doc/functions/ftell.texi: Update.
9704         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FTELL,
9705         REPLACE_FTELL.
9706         * lib/stdio_.h (rpl_ftell): New declaration.
9707         * modules/stdio (Makefile.am): Substitute also GNULIB_FTELL,
9708         REPLACE_FTELL.
9709
9710 2007-05-28  Eric Blake  <ebb9@byu.net>
9711
9712         * lib/allocsa.h (safe_alloca): Avoid compiler warning.
9713
9714 2007-05-28  Bruno Haible  <bruno@clisp.org>
9715
9716         * modules/fseek-tests: New file.
9717         * tests/test-fseek.c: New file, based on tests/test-fseeko.c.
9718         * tests/test-fseek.sh: New file, based on tests/test-fseeko.sh.
9719
9720         * lib/fseek.c: New file.
9721         * modules/fseek: New file.
9722         * m4/fseek.m4: New file.
9723         * doc/functions/fseek.texi: Update.
9724         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FSEEK,
9725         REPLACE_FSEEK.
9726         * lib/stdio_.h (rpl_fseek): New declaration.
9727         * modules/stdio (Makefile.am): Substitute also GNULIB_FSEEK,
9728         REPLACE_FSEEK.
9729
9730 2007-05-28  Bruno Haible  <bruno@clisp.org>
9731
9732         * lib/stdio_.h (fflush): More comments.
9733
9734 2007-05-28  Bruno Haible  <bruno@clisp.org>
9735
9736         * m4/lseek.m4 (gl_FUNC_LSEEK): When not cross-compiling, perform a real
9737         runtime test.
9738
9739 2007-05-28  Eric Blake  <ebb9@byu.net>
9740
9741         Improve lseek module.
9742         * lib/lseek.c (rpl_lseek): Detect EBADF on mingw.
9743         * lib/unistd_.h (lseek): Scale back link warning message.
9744         * tests/test-lseek.c: Beef up test.
9745         * tests/test-lseek.sh: Exercise more facets of lseek.
9746         Reported by Bruno Haible.
9747
9748 2007-05-28  Bruno Haible  <bruno@clisp.org>
9749
9750         * tests/test-unistd.c: Test all the types that <unistd.h> is expected
9751         to define.
9752
9753 2007-05-27  Bruno Haible  <bruno@clisp.org>
9754
9755         * m4/iconv.m4 (AM_ICONV_LINK): Fix 2007-03-31 patch.
9756
9757 2007-05-27  Bruno Haible  <bruno@clisp.org>
9758
9759         * modules/openmp: New file.
9760         * m4/openmp.m4: New file, taken from autoconf's CVS with changes by
9761         Noah Misch.
9762
9763 2007-05-26  Bruno Haible  <bruno@clisp.org>
9764
9765         * modules/chdir-long (Depends-on): Add fchdir.
9766         * modules/chdir-safer (Depends-on): Likewise.
9767         * modules/fts (Depends-on): Likewise.
9768         * modules/fts-lgpl (Depends-on): Likewise.
9769         * modules/openat (Depends-on): Likewise.
9770         * modules/savewd (Depends-on): Likewise.
9771
9772 2007-05-24  Eric Blake  <ebb9@byu.net>
9773
9774         Fix lseek on mingw.
9775         * modules/lseek: New module.
9776         * m4/lseek.m4: New file.
9777         * lib/lseek.c: New file.
9778         * modules/lseek-tests: New file.
9779         * tests/test-lseek.c: New file.
9780         * tests/test-lseek.sh: New file.
9781         * MODULES.html.sh: Document lseek module.
9782         * modules/fflush (Depends-on): Add lseek, fseeko.
9783         * modules/fseeko (Depends-on): Likewise.
9784         * modules/ftello (Depends-on): Likewise.
9785         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Replace fseek[o] if lseek is
9786         broken.
9787         * m4/ftello.m4 (gl_FUNC_FTELLO): Replace ftell[o] if lseek is
9788         broken.
9789         * m4/fflush.m4 (gl_REPLACE_FFLUSH): Trigger fseeko module.
9790         * lib/fseeko.c (rpl_fseeko): Quit early on non-seekable files.
9791         * lib/ftello.c (rpl_ftello): Likewise.
9792         * tests/test-fseeko.c (main): Test this.
9793         * tests/test-fseeko.sh: Likewise.
9794         * tests/test-ftello.c (main): Likewise.
9795         * tests/test-ftello.sh: Likewise.
9796         * lib/stdio_.h (fseek, ftell): Simplify, since missing fseeko now
9797         implies replacing fseek.
9798         * modules/stdio (Makefile.am): No longer need HAVE_FSEEKO,
9799         HAVE_FTELLO.
9800         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Add lseek info.
9801         * modules/unistd (Makefile.am): Likewise.
9802         * lib/unistd_.h (lseek): Declare a replacement.
9803         * doc/functions/lseek.texi (lseek): Document this fix.
9804         * doc/functions/fseek.texi (fseek): Likewise.
9805         * doc/functions/ftell.texi (ftell): Likewise.
9806
9807 2007-05-24  Bruno Haible  <bruno@clisp.org>
9808
9809         * tests/test-vasnprintf-posix.c (test_function): Allow up to 50 bytes
9810         in the printed representation of a NaN.
9811         * tests/test-vasprintf-posix.c (test_function): Likewise.
9812         * tests/test-snprintf-posix.h (test_function): Likewise.
9813         * tests/test-sprintf-posix.h (test_function): Likewise.
9814         Reported by Eric Blake.
9815
9816 2007-05-23  Eric Blake  <ebb9@byu.net>
9817
9818         Fix fseeko/ftello on cygwin 1.5.24.
9819         * doc/functions/fseeko.texi (fseeko): Document the fix.
9820         * doc/functions/ftello.texi (ftello): Document the fix.
9821         * doc/functions/stdin.texi (stdin): Document the cygwin bug.
9822         * doc/functions/stdout.text (stdout): New file.
9823         * doc/functions/stderr.text (stderr): New file.
9824         * doc/gnulib.texi (Function Substitutes): Use new files.
9825         * tests/test-fseeko.c (main): Check for broken fseeko on cygwin
9826         prior to 1.7.0.
9827         * tests/test-ftello.c (main): Likewise for ftello.
9828         * tests/test-fseeko.sh: New file.
9829         * tests/test-ftello.sh: New file.
9830         * modules/fseeko-tests (Makefile.am): Ensure test-fseeko is run
9831         with seekable stdin.
9832         * modules/ftello-tests (Makefile.am): Likewise for test-ftello.
9833         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Detect the cygwin bug.
9834         (gl_REPLACE_FSEEKO): New macro.
9835         * m4/ftello.m4 (gl_FUNC_FTELLO, gl_REPLACE_FTELLO): Likewise.
9836         * modules/fseeko (Files): Distribute fseeko.c.
9837         * modules/ftello (Files): Distribute ftello.c.
9838         * lib/fseeko.c (rpl_fseeko) [__CYGWIN__]: Convert stdin to 64-bit
9839         mode.
9840         * lib/ftello.c (rpl_ftello): New file.
9841         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Allow replacement of
9842         fseeko, ftello.
9843         (gl_STDIN_LARGE_OFFSET): New macro.
9844         * modules/stdio (Makefile.am): Perform the replacement.
9845         * lib/stdio_.h (rpl_fseeko, rpl_ftello): Define when needed.
9846
9847 2007-05-23  Bruno Haible  <bruno@clisp.org>
9848
9849         * lib/stdio_.h (fseeko, ftello): Provide a link warning only if
9850         GNULIB_POSIXCHECK is defined.
9851
9852 2007-05-21  Bruno Haible  <bruno@clisp.org>
9853
9854         * m4/printf.m4 (gl_PRINTF_INFINITE, gl_PRINTF_INFINITE_LONG_DOUBLE):
9855         Check also the output for NaN arguments. When cross-compiling, guess
9856         no on IRIX.
9857         * lib/vasnprintf.c: Update comments.
9858         * tests/test-vasnprintf-posix.c (strisnan): New function.
9859         (test_function): Use it.
9860         * tests/test-vasprintf-posix.c (strisnan): New function.
9861         (test_function): Use it.
9862         * tests/test-snprintf-posix.h (strisnan): New function.
9863         (test_function): Use it.
9864         * tests/test-sprintf-posix.h (strisnan): New function.
9865         (test_function): Use it.
9866         Reported by Eric Blake.
9867
9868 2007-05-20  Bruno Haible  <bruno@clisp.org>
9869
9870         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Add test for large finite
9871         numbers that fails on BeOS.
9872         * doc/functions/frexpl.texi: Update.
9873
9874 2007-05-20  Jim Meyering  <jim@meyering.net>
9875
9876         * NEWS: Mention the incompatible change (s/futimens/gl_futimens/)
9877         forced upon us by glibc-2.6.
9878
9879 2007-05-20  Bruno Haible  <bruno@clisp.org>
9880
9881         Fix *printf result for NaN, Inf on AIX, Solaris, OSF/1.
9882         * m4/printf.m4 (gl_PRINTF_INFINITE): Update cross-compiling guesses.
9883         (gl_PRINTF_INFINITE_LONG_DOUBLE): New macro.
9884         * lib/vasnprintf.c: Use NEED_PRINTF_INFINITE_DOUBLE instead of
9885         NEED_PRINTF_INFINITE.
9886         (is_infinitel): New function.
9887         (VASNPRINTF): Handle NEED_PRINTF_INFINITE_LONG_DOUBLE case.
9888         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_INFINITE_DOUBLE): Renamed from
9889         gl_PREREQ_VASNPRINTF_INFINITE.
9890         (gl_PREREQ_VASNPRINTF_INFINITE_LONG_DOUBLE): New macro.
9891         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
9892         gl_PRINTF_INFINITE_LONG_DOUBLE and test its result. Invoke
9893         gl_PREREQ_VASNPRINTF_INFINITE_DOUBLE and
9894         gl_PREREQ_VASNPRINTF_INFINITE_LONG_DOUBLE instead of
9895         gl_PREREQ_VASNPRINTF_INFINITE.
9896         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
9897         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
9898         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
9899         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
9900         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
9901         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
9902         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
9903         * doc/functions/fprintf.texi: Update.
9904         * doc/functions/printf.texi: Update.
9905         * doc/functions/snprintf.texi: Update.
9906         * doc/functions/sprintf.texi: Update.
9907         * doc/functions/vfprintf.texi: Update.
9908         * doc/functions/vprintf.texi: Update.
9909         * doc/functions/vsnprintf.texi: Update.
9910         * doc/functions/vsprintf.texi: Update.
9911
9912 2007-05-20  Bruno Haible  <bruno@clisp.org>
9913
9914         * m4/frexpl.m4 (gl_FUNC_FREXPL_NO_LIBM): Set REPLACE_FREXPL if frexpl
9915         was not found in libc.
9916         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Likewise.
9917
9918 2007-05-20  Bruno Haible  <bruno@clisp.org>
9919
9920         * tests/test-vasnprintf-posix.c (test_function): Allow NaN to be
9921         printed as "-nan" instead of "nan".
9922         * tests/test-vasprintf-posix.c (test_function): Likewise.
9923         * tests/test-snprintf-posix.h (test_function): Likewise.
9924         * tests/test-sprintf-posix.h (test_function): Likewise.
9925         Needed for HP-UX 11.
9926
9927 2007-05-20  Jim Meyering  <jim@meyering.net>
9928
9929         Fix buggy test for the fchownat-deref bug.
9930         * m4/openat.m4 (gl_FUNC_FCHOWNAT_DEREF_BUG): Create the dangling
9931         symlink required for the run-test.  Without it, this test would
9932         always declare that fchownat doesn't work, and client code would
9933         unnecessarily use the replacement function with fixed libc.
9934         (gl_FUNC_FCHOWNAT): Eliminate a variable that wasn't initialized.
9935         Reported by Greg Schafer.
9936
9937 2007-05-19  Bruno Haible  <bruno@clisp.org>
9938
9939         * m4/isnanf.m4 (gl_ISNANF_WORKS): New macro.
9940         (gl_FUNC_ISNANF_NO_LIBM): Invoke it.
9941         * lib/isnan.c (FUNC): Use run-time expressions for SGI compiler.
9942         Needed for IRIX 6.5 and Solaris 2.5.1.
9943
9944 2007-05-19  Bruno Haible  <bruno@clisp.org>
9945
9946         * tests/test-vasnprintf-posix.c (have_minus_zero): New function.
9947         (test_function): Skip tests involving -0.0 on platforms where
9948         -0.0 = 0.0.
9949         * tests/test-vasprintf-posix.c (have_minus_zero): New function.
9950         (test_function): Skip tests involving -0.0 on platforms where
9951         -0.0 = 0.0.
9952         * tests/test-snprintf-posix.h (have_minus_zero): New function.
9953         (test_function): Skip tests involving -0.0 on platforms where
9954         -0.0 = 0.0.
9955         * tests/test-sprintf-posix.h (have_minus_zero): New function.
9956         (test_function): Skip tests involving -0.0 on platforms where
9957         -0.0 = 0.0.
9958         * tests/test-fprintf-posix.h (test_function): Remove all -0.0 related
9959         tests.
9960         * tests/test-printf-posix.h (test_function): Likewise.
9961         * tests/test-printf-posix.output: Remove all -0.0 related results.
9962         Needed for IRIX 6.5.
9963
9964 2007-05-19  Bruno Haible  <bruno@clisp.org>
9965
9966         * tests/test-vasnprintf-posix.c (test_function): Allow NaN to be
9967         printed as "nan0x7fffffff" instead of "nan".
9968         * tests/test-vasprintf-posix.c (test_function): Likewise.
9969         * tests/test-snprintf-posix.h (test_function): Likewise.
9970         * tests/test-sprintf-posix.h (test_function): Likewise.
9971         * tests/test-fprintf-posix.h (NaN): Remove macro.
9972         (test_function): Remove all NaN related tests.
9973         * tests/test-printf-posix.h (NaN): Remove macro.
9974         (test_function): Remove all NaN related tests.
9975         * tests/test-printf-posix.output: Remove all NaN related results.
9976         Needed for IRIX 6.5.
9977
9978 2007-05-19  Bruno Haible  <bruno@clisp.org>
9979
9980         * m4/frexp.m4 (gl_FUNC_FREXP_WORKS): Fix C89 syntax error in test code.
9981         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Likewise.
9982
9983 2007-05-19  Bruno Haible  <bruno@clisp.org>
9984
9985         * lib/float_.h: New file.
9986         * m4/float_h.m4: New file.
9987         * modules/float: New file.
9988         * modules/isnanl (Dependencies): Add float.
9989         * modules/isnanl-nolibm (Dependencies): Likewise.
9990         * modules/mathl (Dependencies): Likewise.
9991         * modules/printf-frexpl (Dependencies): Likewise.
9992         * modules/signbit (Dependencies): Likewise.
9993         * modules/vasnprintf (Dependencies): Likewise.
9994         * doc/headers/float.texi: Update.
9995
9996 2007-05-19  Jim Meyering  <jim@meyering.net>
9997
9998         * lib/utimens.c (gl_futimens): Rename from futimens,
9999         now that glibc-2.6 declares futimens.
10000         * lib/utimens.h: Likewise.
10001
10002 2007-05-19  Bruno Haible  <bruno@clisp.org>
10003
10004         Avoid test failures on mingw.
10005         * tests/test-fprintf-posix.sh: Convert CR/LF to LF in output.
10006         * tests/test-printf-posix.sh: Likewise.
10007         * tests/test-vfprintf-posix.sh: Likewise.
10008         * tests/test-vprintf-posix.sh: Likewise.
10009
10010 2007-05-19  Bruno Haible  <bruno@clisp.org>
10011
10012         Fix *printf result for NaN, Inf, -0.0 on mingw.
10013         * m4/printf.m4 (gl_PRINTF_INFINITE): New macro.
10014         * lib/vasnprintf.c: Include math.h and isnan.h.
10015         (is_infinite_or_zero): New function.
10016         (VASNPRINTF): Fix also the handling of infinite or zero 'double'
10017         values in the %f, %F, %e, %E, %g, %G directives.
10018         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_INFINITE): New macro.
10019         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
10020         gl_PRINTF_INFINITE and test its result. Invoke
10021         gl_PREREQ_VASNPRINTF_INFINITE.
10022         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
10023         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
10024         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
10025         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
10026         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
10027         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
10028         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
10029         * doc/functions/fprintf.texi: Update.
10030         * doc/functions/printf.texi: Update.
10031         * doc/functions/snprintf.texi: Update.
10032         * doc/functions/sprintf.texi: Update.
10033         * doc/functions/vfprintf.texi: Update.
10034         * doc/functions/vprintf.texi: Update.
10035         * doc/functions/vsnprintf.texi: Update.
10036         * doc/functions/vsprintf.texi: Update.
10037
10038 2007-05-19  Bruno Haible  <bruno@clisp.org>
10039
10040         * lib/vasnprintf.c (convert_to_decimal): Add an extra_zeroes argument.
10041         (scale10_round_decimal_long_double): Inline scale10_round_long_double.
10042         Instead of multiplying with 10^k, set extra_zeroes to k.
10043         (scale10_round_long_double): Remove function.
10044
10045 2007-05-18  Bruno Haible  <bruno@clisp.org>
10046
10047         * lib/vasnprintf.c (VASNPRINTF) [NEED_PRINTF_FLAG_ZERO]: Fix logic bug
10048         introduced on 2007-05-06.
10049
10050 2007-05-18  Bruno Haible  <bruno@clisp.org>
10051
10052         * tests/test-vasnprintf-posix.c (test_function): Also test the %e and
10053         %g directives.
10054         * tests/test-vasprintf-posix.c (test_function): Likewise.
10055         * tests/test-snprintf-posix.h (test_function): Likewise.
10056         * tests/test-sprintf-posix.h (test_function): Likewise.
10057
10058 2007-05-18  Bruno Haible  <bruno@clisp.org>
10059
10060         * tests/test-vasnprintf-posix.c (SIZEOF): New macro.
10061         (strmatch): New function.
10062         (test_function): Test the %f directive on numbers of various exponents.
10063         * tests/test-vasprintf-posix.c (SIZEOF): New macro.
10064         (strmatch): New function.
10065         (test_function): Test the %f directive on numbers of various exponents.
10066         * tests/test-snprintf-posix.h (strmatch): New function.
10067         (test_function): Test the %f directive on numbers of various exponents.
10068         * tests/test-sprintf-posix.h (strmatch): New function.
10069         (test_function): Test the %f directive on numbers of various exponents.
10070         * tests/test-snprintf-posix.c (SIZEOF): New macro.
10071         * tests/test-sprintf-posix.c (SIZEOF): New macro.
10072         * tests/test-vsnprintf-posix.c (SIZEOF): New macro.
10073         * tests/test-vsprintf-posix.c (SIZEOF): New macro.
10074
10075 2007-05-18  Bruno Haible  <bruno@clisp.org>
10076
10077         Add support for 'long double' number output.
10078         * m4/printf.m4 (gl_PRINTF_LONG_DOUBLE): New macro.
10079         * lib/vasnprintf.c: Include math.h and float+.h.
10080         (mp_limb_t): New type.
10081         (GMP_LIMB_BITS): New macro.
10082         (mp_twolimb_t): New type.
10083         (GMP_TWOLIMB_BITS): New macro.
10084         (mpn_t): New type.
10085         (multiply, divide, convert_to_decimal, decode_long_double,
10086         scale10_round_long_double, scale10_round_decimal_long_double,
10087         floorlog10l): New functions.
10088         (VASNPRINTF) [NEED_PRINTF_LONG_DOUBLE]: Implement 'long double' support
10089         for the %f, %F, %e, %E, %g, %G directives.
10090         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_LONG_DOUBLE): New macro.
10091         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
10092         gl_PRINTF_LONG_DOUBLE and test its result. Invoke
10093         gl_PREREQ_VASNPRINTF_LONG_DOUBLE.
10094         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
10095         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
10096         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
10097         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
10098         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
10099         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
10100         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
10101         * modules/fprintf-posix (Depends-on): Add frexpl-nolibm.
10102         * modules/snprintf-posix (Depends-on): Likewise.
10103         * modules/sprintf-posix (Depends-on): Likewise.
10104         * modules/vasnprintf-posix (Depends-on): Likewise.
10105         * modules/vasprintf-posix (Depends-on): Likewise.
10106         * modules/vfprintf-posix (Depends-on): Likewise.
10107         * modules/vsnprintf-posix (Depends-on): Likewise.
10108         * modules/vsprintf-posix (Depends-on): Likewise.
10109         * modules/vasnprintf (Files): Add lib/float+.h.
10110         * doc/functions/fprintf.texi: Update.
10111         * doc/functions/printf.texi: Update.
10112         * doc/functions/snprintf.texi: Update.
10113         * doc/functions/sprintf.texi: Update.
10114         * doc/functions/vfprintf.texi: Update.
10115         * doc/functions/vprintf.texi: Update.
10116         * doc/functions/vsnprintf.texi: Update.
10117         * doc/functions/vsprintf.texi: Update.
10118
10119 2007-05-18  Bruno Haible  <bruno@clisp.org>
10120
10121         * lib/vasnprintf.c (USE_SNPRINTF): Define to 0 on BeOS.
10122
10123 2007-05-18  Bruno Haible  <bruno@clisp.org>
10124
10125         * lib/vasnprintf.c (VASNPRINTF) [WIN32]: Use %I64d instead of %lld
10126         for printing 64-bit integers. Needed for mingw.
10127
10128 2007-05-18  Bruno Haible  <bruno@clisp.org>
10129
10130         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Invoke
10131         gl_FUNC_FREXPL_WORKS.
10132         * modules/printf-frexpl (Files): Add m4/frexpl.m4.
10133
10134 2007-05-18  Bruno Haible  <bruno@clisp.org>
10135
10136         * modules/frexpl-nolibm-tests: New file.
10137
10138         * modules/frexpl-nolibm: New file.
10139         * m4/frexpl.m4 (gl_FUNC_FREXPL_NO_LIBM): New macro.
10140
10141 2007-05-17  Paul Eggert  <eggert@cs.ucla.edu>
10142
10143         * lib/dirent_.h: Prefer #include_next <foo.h> to #include
10144         @ABSOLUTE_FOO_H@ if @HAVE_INCLUDE_NEXT@.  This works better with
10145         GCC 4.2, which otherwise issues a lot of warnings.
10146         * lib/iconv_.h, lib/locale_.h, lib/netinet_in_.h, lib/sys_select_.h:
10147         * lib/sys_socket_.h, lib/sys_stat_.h, lib/sysexits_.h, lib/unistd_.h:
10148         Likewise.
10149         * modules/fchdir (dirent.h): Substitute @HAVE_INCLUDE_NEXT@.
10150         * modules/iconv_open (iconv.h): Likewise.
10151         * modules/locale (locale.h): Likewise.
10152         * modules/netinet_in (netinet/in.h): Likewise.
10153         * modules/sys_select (sys_select.h): Likewise.
10154         * modules/sys_socket (sys/socket.h): Likewise.
10155         * modules/sys_stat (sys/stat.h): Likewise.
10156         * modules/sysexits (sysexits.h): Likewise.
10157         * modules/unistd (unistd.h): Likewise.
10158
10159 2007-05-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
10160
10161         * modules/closein-tests (Makefile.am): Distribute
10162         `test-closein.sh'.
10163
10164 2007-05-17  Bruno Haible  <bruno@clisp.org>
10165
10166         * tests/test-printf-posix.output: Renamed from
10167         tests/test-fprintf-posix.out.
10168         * modules/fprintf-posix-tests: Update.
10169         * modules/printf-posix-tests: Update.
10170         * modules/vfprintf-posix-tests: Update.
10171         * modules/vprintf-posix-tests: Update.
10172         * tests/test-fprintf-posix.sh: Update.
10173         * tests/test-printf-posix.sh: Update.
10174         * tests/test-vfprintf-posix.sh: Update.
10175         * tests/test-vprintf-posix.sh: Update.
10176         Reported by Ralf Wildenhues.
10177
10178 2007-05-16  Paul Eggert  <eggert@cs.ucla.edu>
10179
10180         * lib/fcntl_.h: Prefer #include_next <foo.h> to #include
10181         @ABSOLUTE_FOO_H@ if @HAVE_INCLUDE_NEXT@.  This works better with
10182         GCC 4.2, which otherwise issues a lot of warnings.
10183         * lib/inttypes_.h, lib/math_.h, lib/search_.h, lib/signal_.h:
10184         * lib/stdint_.h, lib/stdio_.h, lib/stdlib_.h, lib/string_.h:
10185         * lib/sys_time_.h, lib/time_.h, lib/wchar_.h, lib/wctype_.h: Likewise.
10186         * lib/stdlib_.h: Don't bother with #pragma GCC system_header, as
10187         it should no longer be needed.
10188         * lib/string_.h: Likewise.
10189         * modules/absolute-header (HAVE_INCLUDE_NEXT): New 'make' define.
10190         * modules/fcntl (fcntl.h): Substitute @HAVE_INCLUDE_NEXT@.
10191         * modules/inttypes (inttypes.h): Likewise.
10192         * modules/math (math.h): Likewise.
10193         * modules/search (search.h): Likewise.
10194         * modules/signal (signal.h): Likewise.
10195         * modules/stdint (stdint.h): Likewise.
10196         * modules/stdio (stdio.h): Likewise.
10197         * modules/stdlib (stdlib.h): Likewise.
10198         * modules/string (string.h): Likewise.
10199         * modules/sys_time (sys/time.h): Likewise.
10200         * modules/time (time.h): Likewise.
10201         * modules/wchar (wchar.h): Likewise.
10202         * modules/wctype (wtype.h): Likewise.
10203
10204 2007-05-16  Thien-Thi Nguyen  <ttn@gnuvola.org>  (tiny change)
10205
10206         * doc/gnulib-tool.texi (CVS Issues): Fix typo.
10207
10208 2007-05-13  Bruno Haible  <bruno@clisp.org>
10209
10210         * stpcpy.m4 (gl_FUNC_STPCPY): Require AC_C_RESTRICT.
10211         * stpncpy.m4 (gl_FUNC_STPNCPY): Likewise.
10212         * strsep.m4 (gl_FUNC_STRSEP): Likewise.
10213         * strtok_r.m4 (gl_FUNC_STRTOK_R): Likewise.
10214         (gl_PREREQ_STRTOK_R): Don't require it here.
10215
10216 2007-05-13  Bruno Haible  <bruno@clisp.org>
10217
10218         * lib/stdlib_.h (mkdtemp, mkstemp): Comment out argument name. Needed
10219         when used in C++ mode.
10220
10221 2007-05-12  Bruno Haible  <bruno@clisp.org>
10222
10223         * lib/linebuffer.h: Tweak doc.
10224         * lib/linebuffer.c: Likewise.
10225
10226 2007-05-12  James Youngman  <jay@gnu.org>
10227
10228         * lib/linebuffer.c (readlinebuffer_delim): New function,
10229         like readlinebuffer, but use a caller-specified delimiter.
10230         (readlinebuffer): Just call readlinebuffer_delim with '\n'
10231         as the delimiter.
10232         * lib/linebuffer.h (readlinebuffer_delim): Declare it.
10233
10234 2007-05-12  Sergey Poznyakoff  <gray@gnu.org.ua>
10235
10236         * m4/openat.m4 (gl_FUNC_OPENAT): Do not require openat-die.
10237         * modules/openat (Files): Remove openat-die.c.
10238         (Depends-on): Add openat-die.
10239         * modules/openat-die: New module.
10240
10241 2007-05-06  Bruno Haible  <bruno@clisp.org>
10242
10243         * m4/printf.m4 (gl_PRINTF_FLAG_GROUPING, gl_VSNPRINTF_ZEROSIZE_C99):
10244         Update with info about Cygwin.
10245         * doc/functions/fprintf.texi: Update.
10246         * doc/functions/printf.texi: Update.
10247         * doc/functions/snprintf.texi: Update.
10248         * doc/functions/sprintf.texi: Update.
10249         * doc/functions/vfprintf.texi: Update.
10250         * doc/functions/vprintf.texi: Update.
10251         * doc/functions/vsnprintf.texi: Update.
10252         * doc/functions/vsprintf.texi: Update.
10253         Reported by Eric Blake.
10254
10255 2007-05-06  Bruno Haible  <bruno@clisp.org>
10256
10257         * lib/vasnprintf.c (VASNPRINTF) [NEED_PRINTF_FLAG_ZERO]: Perform the
10258         padding ourselves for the floating-point directives.
10259         * m4/printf.m4 (gl_PRINTF_FLAG_ZERO): New macro.
10260         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_FLAG_ZERO): New macro.
10261         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
10262         gl_PRINTF_FLAG_ZERO and test its result. Invoke
10263         gl_PREREQ_VASNPRINTF_FLAG_ZERO.
10264         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
10265         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Likewise.
10266         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
10267         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
10268         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
10269         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
10270         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
10271         * tests/test-snprintf-posix.h (test_function): Also check the width
10272         and some flags in the %f directive.
10273         * tests/test-sprintf-posix.h (test_function): Likewise.
10274         * tests/test-vasnprintf-posix.c (test_function): Likewise.
10275         * tests/test-vasprintf-posix.c (test_function): Likewise.
10276         * doc/functions/fprintf.texi: Update.
10277         * doc/functions/printf.texi: Update.
10278         * doc/functions/snprintf.texi: Update.
10279         * doc/functions/sprintf.texi: Update.
10280         * doc/functions/vfprintf.texi: Update.
10281         * doc/functions/vprintf.texi: Update.
10282         * doc/functions/vsnprintf.texi: Update.
10283         * doc/functions/vsprintf.texi: Update.
10284
10285 2007-05-06  Bruno Haible  <bruno@clisp.org>
10286
10287         * lib/vasnprintf.c (VASNPRINTF) [NEED_PRINTF_FLAG_GROUPING]: Don't
10288         pass the ' flag character to sprintf or snprintf.
10289         * m4/printf.m4 (gl_PRINTF_FLAG_GROUPING): New macro.
10290         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_FLAG_GROUPING): New macro.
10291         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
10292         gl_PRINTF_FLAG_GROUPING and test its result. Invoke
10293         gl_PREREQ_VASNPRINTF_FLAG_GROUPING.
10294         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
10295         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Likewise.
10296         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
10297         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
10298         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
10299         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
10300         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
10301         * tests/test-snprintf-posix.h (test_function): Also check the grouping
10302         flag.
10303         * tests/test-sprintf-posix.h (test_function): Likewise.
10304         * tests/test-vasnprintf-posix.c (test_function): Likewise.
10305         * tests/test-vasprintf-posix.c (test_function): Likewise.
10306         * doc/functions/fprintf.texi: Update.
10307         * doc/functions/printf.texi: Update.
10308         * doc/functions/snprintf.texi: Update.
10309         * doc/functions/sprintf.texi: Update.
10310         * doc/functions/vfprintf.texi: Update.
10311         * doc/functions/vprintf.texi: Update.
10312         * doc/functions/vsnprintf.texi: Update.
10313         * doc/functions/vsprintf.texi: Update.
10314
10315 2007-05-01  Bruno Haible  <bruno@clisp.org>
10316
10317         * tests/test-argp-2.sh (func_compare): Drop .exe suffix.
10318
10319 2007-05-03  Paul Eggert  <eggert@cs.ucla.edu>
10320
10321         * m4/d-ino.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_INO): Use better
10322         comment for D_INO_IN_DIRENT.  Problem reported by James Youngman.
10323
10324 2007-05-02  Paul Eggert  <eggert@cs.ucla.edu>
10325
10326         * m4/d-ino.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_INO): Test whether
10327         readdir returns garbage in d_ino.  Problem reported by Kaz Sasayama in
10328         <http://lists.gnu.org/archive/html/bug-gnulib/2007-05/msg00021.html>.
10329
10330 2007-05-02  Sergey Poznyakoff  <gray@gnu.org.ua>
10331
10332         * lib/argp-help.c (struct hol_entry): New member `ord'.
10333         (HOL_ENTRY_PTRCMP): Use ord for comparison
10334         (hol_sort): Initialize ord.
10335
10336 2007-05-01  Bruno Haible  <bruno@clisp.org>
10337
10338         * doc/functions/_Exit_C99.texi: Renamed from doc/functions/_Exit.texi.
10339         Reported by Eric Blake.
10340         * doc/gnulib.texi (Function Substitutes): Update.
10341
10342 2007-05-01  Bruno Haible  <bruno@clisp.org>
10343
10344         * doc/functions.texi: Remove file, now redundant through
10345         doc/functions/*.texi.
10346
10347 2007-05-01  Bruno Haible  <bruno@clisp.org>
10348
10349         * modules/argp (Depends-on): Add sleep.
10350
10351 2007-05-01  Bruno Haible  <bruno@clisp.org>
10352
10353         * modules/sleep-tests: New file.
10354         * tests/test-sleep.c: New file.
10355
10356         * modules/sleep: New file.
10357         * lib/sleep.c: New file.
10358         * m4/sleep.m4: New file.
10359         * lib/unistd_.h (sleep): New declaration.
10360         * m4/unistd_h.m4 (gl_UNISTD_H_DEFAULTS): Initialize GNULIB_SLEEP,
10361         HAVE_SLEEP.
10362         * modules/unistd (Makefile.am): Substitute GNULIB_SLEEP, HAVE_SLEEP.
10363         * doc/functions/sleep.texi: Document the sleep module.
10364
10365 2007-05-01  Bruno Haible  <bruno@clisp.org>
10366
10367         * lib/sigprocmask.h: Remove file.
10368         * lib/signal_.h: Incorporate the previous contents of sigprocmask.h.
10369         * lib/sigprocmask.c: Include <signal.h> instead of sigprocmask.h.
10370         * m4/signal_h.m4 (gl_SIGNAL_H_DEFAULTS): Substitute GNULIB_SIGPROCMASK,
10371         HAVE_POSIX_SIGNALBLOCKING, HAVE_SIGSET_T.
10372         * m4/signalblocking.m4 (gl_SIGNALBLOCKING): Require
10373         gl_SIGNAL_H_DEFAULTS. Set HAVE_POSIX_SIGNALBLOCKING as a shell variable.
10374         (gl_PREREQ_SIGPROCMASK): Require gl_SIGNAL_H_DEFAULTS. Set
10375         HAVE_SIGSET_T as a shell variable.
10376         * modules/signal (Makefile.am): Substitute GNULIB_SIGPROCMASK,
10377         HAVE_POSIX_SIGNALBLOCKING, HAVE_SIGSET_T into signal.h.
10378         * modules/sigprocmask (Files): Remove lib/sigprocmask.h.
10379         (Depends-on): Add signal. Remove verify.
10380         (configure.ac): Invoke gl_SIGNAL_MODULE_INDICATOR.
10381         (Include): Mention <signal.h> instead of sigprocmask.h.
10382         * NEWS: Mention the change.
10383         * lib/fatal-signal.c: Don't include sigprocmask.h.
10384
10385 2007-05-01  Bruno Haible  <bruno@clisp.org>
10386
10387         * modules/signal: New file.
10388         * lib/signal_.h: New file.
10389         * m4/signal_h.m4: New file.
10390
10391 2007-05-01  Bruno Haible  <bruno@clisp.org>
10392
10393         * lib/wctype_.h: Test HAVE_ISWCNTRL at configure time.
10394         * m4/wctype.m4 (gl_WCTYPE_H): Substitute HAVE_ISWCNTRL.
10395         * modules/wctype (Makefile.am): Substitute HAVE_ISWCNTRL instead of
10396         HAVE_WCTYPE_CTMP_BUG into wctype.h.
10397
10398 2007-05-01  Bruno Haible  <bruno@clisp.org>
10399
10400         * lib/sys_stat_.h: Test HAVE_LSTAT, HAVE_DECL_MKDIR, HAVE_IO_H at
10401         configure time.
10402         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Substitute HAVE_LSTAT,
10403         HAVE_DECL_MKDIR, HAVE_IO_H via AC_SUBST.
10404         * modules/sys_stat (Makefile.am): Substitute their values into
10405         sys/stat.h.
10406
10407 2007-05-01  Bruno Haible  <bruno@clisp.org>
10408
10409         * lib/glob_.h: Test HAVE_SYS_CDEFS_H at configure time.
10410         * m4/glob.m4 (gl_PREREQ_GLOB): Substitute HAVE_SYS_CDEFS_H via AC_SUBST.
10411         * modules/glob (Makefile.am): Put HAVE_SYS_CDEFS_H value into glob.h.
10412
10413 2007-05-01  Bruno Haible  <bruno@clisp.org>
10414
10415         * doc/header/assert.texi: Undo last change: don't mention the gnulib
10416         'assert' module here.
10417
10418 2007-05-01  Bruno Haible  <bruno@clisp.org>
10419
10420         * doc/functions/*.texi: New files.
10421         * doc/functions/google-ranking.txt: New file.
10422         * doc/gnulib.texi (Function Substitutes): New chapter.
10423         (ctime, inet_ntoa): Remove sections.
10424         * doc/ctime.texi: Remove file.
10425         * doc/inet_ntoa.texi: Remove file.
10426         * doc/Makefile (gnulib.info, gnulib.html, gnulib.dvi): Update
10427         dependencies.
10428         (%.info): New rule, specifying a --reference-limit.
10429
10430 2007-05-01  Bruno Haible  <bruno@clisp.org>
10431
10432         * MODULES.html.sh (posix_functions): Remove 'exec', 'toc'.
10433
10434 2007-05-01  Bruno Haible  <bruno@clisp.org>
10435
10436         * modules/mkdir (Depends-on): Add sys_stat, because sys_stat provides
10437         the portability of 'mkdir' to mingw systems.
10438
10439 2007-05-01  Bruno Haible  <bruno@clisp.org>
10440
10441         * doc/headers/google-ranking.txt: New file.
10442
10443 2007-04-30  Eric Blake  <ebb9@byu.net>
10444
10445         Prefer fseeko to fseek.
10446         * modules/getpass (Depends-on): Add fseeko.
10447         * lib/getpass.c (getpass): Use fseeko, not fseek.
10448
10449 2007-04-30  Sergey Poznyakoff  <gray@gnu.org.ua>
10450
10451         * lib/argp-help.c (hol_entry_cmp): Option sorting algorithm
10452         assumes the sorting is stable, while most qsort implementations
10453         are not.  Use argument addresses to ensure they never compare as
10454         equal.
10455
10456         * tests/test-argp-2.sh (usage-indent test): Fix output
10457         (func_compare): Restore diff options
10458         * tests/test-argp.c: Restore #include "progname.h"
10459
10460 2007-04-29  Bruno Haible  <bruno@clisp.org>
10461
10462         * m4/printf.m4 (gl_VSNPRINTF_ZEROSIZE_C99): New macro.
10463         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
10464         gl_VSNPRINTF_ZEROSIZE_C99. Test gl_cv_func_vsnprintf_zerosize_c99.
10465         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
10466         * modules/snprintf-posix-tests (Files): Add tests/test-snprintf.c.
10467         (configure.ac): Define CHECK_SNPRINTF_POSIX.
10468         (TESTS, check_PROGRAMS): Add test-snprintf.
10469         * modules/vsnprintf-posix-tests (Files): Add tests/test-vsnprintf.c.
10470         (configure.ac): Define CHECK_VSNPRINTF_POSIX.
10471         (TESTS, check_PROGRAMS): Add test-vsnprintf.
10472         * tests/test-snprintf.c (main) [!CHECK_SNPRINTF_POSIX]: Disable
10473         assertions that fail on HP-UX, OSF/1, or IRIX.
10474         * tests/test-vsnprintf.c (main) [!CHECK_VSNPRINTF_POSIX]: Likewise.
10475
10476 2007-04-29  Bruno Haible  <bruno@clisp.org>
10477
10478         * MODULES.html.sh (posix_functions): Remove 'contents'.
10479
10480 2007-04-29  Karl Berry  <karl@gnu.org>
10481
10482         * config/srclist.txt (gendocs_template_min): new entry.
10483
10484 2007-04-29  Bruno Haible  <bruno@clisp.org>
10485
10486         Work around fpurge bug on BSD systems.
10487         * modules/fpurge (Makefile.am): Compile fpurge.c unconditionally.
10488         * m4/fpurge.m4 (gl_FUNC_FPURGE): Don't invoke AC_LIBOBJ.
10489         * lib/fpurge.h (fpurge): Don't handle __fpurge wrapper here. Define
10490         fpurge to rpl_fpurge if the system already has this function.
10491         * lib/fpurge.c (fpurge): Handle also the __fpurge wrapper case and
10492         the case where the system already has this function. Correct invariants
10493         on BSD systems.
10494         * lib/fseeko.c (rpl_fseeko): Update recognition of preceding fflush on
10495         BSD systems.
10496
10497 2007-04-29  Sergey Poznyakoff  <gray@gnu.org.ua>
10498
10499         * lib/argp-help.c (hol_cluster_cmp): Reverse comparison.  Change
10500         proposed by Sven Verdoolaege.
10501
10502         * tests/test-argp.c: Fix option ordering.  Test deeply clustered
10503         options.
10504         * tests/test-argp-2.sh (func_compare): Use diff instead of cmp.
10505         (usage and help tests): Update
10506
10507 2007-04-29  Bruno Haible  <bruno@clisp.org>
10508
10509         * tests/test-fflush.c (main): Use a file of size 17, not 10.
10510         Print more information in case of failure. Disable a test on BeOS.
10511
10512 2007-04-29  Bruno Haible  <bruno@clisp.org>
10513
10514         * tests/**/test-*.[hc] (ASSERT): Use fprintf to show the line number.
10515         This helps debugging on systems on which no gdb is available.
10516
10517 2007-04-29  Bruno Haible  <bruno@clisp.org>
10518
10519         * lib/freading.h: Improve comments.
10520         * lib/fwriting.h: Likewise.
10521         * tests/test-freading.c (main): Don't check freading immediately after
10522         repositioning. Needed for glibc.
10523
10524 2007-04-29  Bruno Haible  <bruno@clisp.org>
10525
10526         * lib/freading.c (freading): Trivial simplification.
10527
10528 2007-04-28  Bruno Haible  <bruno@clisp.org>
10529
10530         * tests/test-fwriting.c (main): Also test the interaction between
10531         fflush and fwriting.
10532         * modules/fwriting-tests (Depends-on): Add fflush.
10533
10534         * tests/test-freading.c (main): Also test the interaction between
10535         fflush and freading.
10536         * modules/freading-tests (Depends-on): Add fflush.
10537
10538 2007-04-28  Bruno Haible  <bruno@clisp.org>
10539
10540         * lib/stdio_.h (fseek, ftell): Provide link warnings suggesting to use
10541         fseeko and ftello.
10542         Suggested by Eric Blake.
10543
10544 2007-04-28  Jim Meyering  <jim@meyering.net>
10545
10546         Avoid false-negative in gl_STDINT_H's C99 conformance test.
10547         * m4/stdint.m4 (gl_STDINT_H): When checking whether stdint.h conforms
10548         to C99, include all of gl_STDINT_INCLUDES, not just <stddef.h>.
10549
10550 2007-04-27  Eric Blake  <ebb9@byu.net>
10551
10552         * doc/headers/assert.texi (assert.h): Document assert module use.
10553
10554 2007-04-27  Bruno Haible  <bruno@clisp.org>
10555
10556         * doc/headers/*.texi: New files.
10557         * doc/gnulib.texi (Header File Substitutes): New chapter.
10558         * doc/Makefile (gnulib.info, gnulib.html, gnulib.dvi): Specify
10559         dependencies.
10560         (standards.info ,standards.html, standards.dvi): Update dependencies.
10561         (mostlyclean, clean): New targets.
10562
10563 2007-04-27  Bruno Haible  <bruno@clisp.org>
10564
10565         * lib/sysexits_.h: Renamed from lib/sysexit_.h.
10566         * modules/sysexits (Files, Makefile.am): Update.
10567
10568         * lib/sys_socket_.h: Renamed from lib/socket_.h.
10569         * modules/sys_socket (Files, Makefile.am): Update.
10570
10571         * lib/sys_stat_.h: Renamed from lib/stat_.h.
10572         * modules/sys_stat (Files, Makefile.am): Update.
10573
10574 2007-04-27  Eric Blake  <ebb9@byu.net>
10575
10576         * lib/freading.h: Improve comments.
10577         * lib/fwriting.h: Likewise.
10578         * lib/fflush.c: Likewise.
10579
10580         Fix closein for mingw.
10581         * modules/closein-tests: Add tests for closein.
10582         * tests/test-closein.c: New file.
10583         * tests/test-closein.sh: Likewise.
10584         * lib/unistd_.h [!SEEK_CUR]: Mingw also needs stdlib.h for _exit.
10585         * lib/closein.c (close_stdin): Don't fflush non-seekable streams.
10586
10587 2007-04-27  Bruno Haible  <bruno@clisp.org>
10588
10589         * lib/inttypes_.h [_DECC]: Don't use #include_next if the compiler
10590         version is < 6.
10591         * lib/math_.h [__DECC]: Likewise.
10592         * lib/stdio_.h [__DECC]: Likewise.
10593         * lib/stdlib_.h [__DECC]: Likewise.
10594         * lib/string_.h [__DECC]: Likewise.
10595         * lib/time_.h [__DECC]: Likewise.
10596         * lib/wchar_.h [__DECC]: Likewise.
10597         * lib/wctype_.h [__DECC]: Likewise.
10598
10599 2007-04-27  Bruno Haible  <bruno@clisp.org>
10600
10601         * tests/test-fbufmode.c (main): Relax test, to avoid failure on mingw.
10602
10603 2007-04-27  Bruno Haible  <bruno@clisp.org>
10604
10605         * lib/fflush.c: Add comments.
10606         * modules/fpurge-tests (Depends-on): Add fflush.
10607         * modules/freadable-tests (Depends-on): Likewise.
10608         * modules/fwritable-tests (Depends-on): Likewise.
10609
10610 2007-04-27  Charles Wilson  <libtool@cwilson.fastmail.fm>
10611
10612         * m4/argz.m4 (gl_FUNC_ARGZ): Use !HAVE_WORKING_ARGZ instead of
10613         SYSTEM_ARGZ_IS_BROKEN.  Also, minor stylistic improvements.
10614         Report by Bruno Haible <bruno@clisp.org>.
10615
10616 2007-04-26  Eric Blake  <ebb9@byu.net>
10617
10618         Fix fflush on mingw.
10619         * modules/fflush (Depends-on): Add freading.
10620         * lib/fflush.c (rpl_fflush): Use freading to avoid losing buffered
10621         but unread data.
10622
10623 2007-04-26  Eric Blake  <ebb9@byu.net>
10624         and Bruno Haible  <bruno@clisp.org>
10625
10626         Implement freading and fwriting.
10627         * lib/freading.c: New file.
10628         * lib/freading.h: Likewise.
10629         * m4/freading.m4: Likewise.
10630         * modules/freading: Likewise.
10631         * modules/freading-tests: Likewise.
10632         * tests/test-freading.c: Likewise.
10633         * lib/fwriting.c: New file.
10634         * lib/fwriting.h: Likewise.
10635         * m4/fwriting.m4: Likewise.
10636         * modules/fwriting: Likewise.
10637         * modules/fwriting-tests: Likewise.
10638         * tests/test-fwriting.c: Likewise.
10639         * MODULES.html.sh (File stream based Input/Output): Mention them.
10640
10641 2007-04-26  Bruno Haible  <bruno@clisp.org>
10642
10643         * lib/stdio_.h (fseeko, ftello): Check that off_t has the same size as
10644         'long' when we assume it.
10645         Suggested by Eric Blake.
10646
10647 2007-04-26  Bruno Haible  <bruno@clisp.org>
10648
10649         Ensure fseeko, ftello are declared on glibc systems.
10650         * modules/fflush (configure.ac-early): Require AC_FUNC_FSEEKO.
10651         * modules/fseeko (configure.ac-early): Likewise.
10652         * modules/ftello (configure.ac-early): Likewise.
10653         * m4/fflush.m4 (gl_REPLACE_FFLUSH): Don't define HAVE_FSEEKO, rely on
10654         AC_FUNC_FSEEKO for this.
10655         * m4/fseeko.m4 (gl_FUNC_FSEEKO): Inline gl_CHECK_FSEEKO.
10656         (gl_CHECK_FSEEKO): Remove macro.
10657
10658 2007-04-26  Bruno Haible  <bruno@clisp.org>
10659
10660         * tests/test-fflush.c (main): Also check the ftell result after
10661         fflush and fseek/fseeko.
10662         * lib/fflush.c (rpl_fflush): For BSD implementations, update the
10663         file descriptor position cache in the stream.
10664         * lib/fseeko.c (rpl_fseeko): Likewise.
10665
10666 2007-04-26  Bruno Haible  <bruno@clisp.org>
10667
10668         * modules/fflush-tests (Depends-on): Add fseeko.
10669
10670 2007-04-25  Charles Wilson  <libtool@cwilson.fastmail.fm>
10671             Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
10672
10673         * lib/argz_.h: ensure error_t definition is obtained in same
10674         mechanism system argz.h would have.
10675         * m4/argz.m4 (gl_FUNC_ARGZ): add new test to check if $host's
10676         argz facilities are known bad.  Err on the side of caution if
10677         cross-compiling.
10678
10679 2007-04-25  Eric Blake  <ebb9@byu.net>
10680
10681         * lib/fpurge.c (includes): Use stdlib.h for free.
10682         * tests/test-fflush.c (main): Also test fflush-fseeko.
10683
10684 2007-04-25  Bruno Haible  <bruno@clisp.org>
10685
10686         Make fflush+fseek POSIX-compliant on FreeBSD and MacOS X.
10687         * lib/fseeko.c: New file.
10688         * lib/stdio_.h: Include <sys/types.h> when off_t is needed.
10689         (fseeko, fseek): Define to replacements if REPLACE_FFLUSH.
10690         * m4/fseeko.m4 (gl_CHECK_FSEEKO): New macro, extracted from
10691         gl_FUNC_FSEEKO.
10692         (gl_FUNC_FSEEKO): Invoke it.
10693         * m4/fflush.m4 (gl_REPLACE_FFLUSH): Arrange to compile fseeko.c. Invoke
10694         gl_CHECK_FSEEKO. Define HAVE_FSEEKO.
10695         * modules/fflush (Files): Add lib/fseeko.c, m4/fseeko.m4.
10696
10697 2007-04-25  Bruno Haible  <bruno@clisp.org>
10698
10699         * modules/fflush (Depends-on): Add ftello.
10700
10701 2007-04-25  Bruno Haible  <bruno@clisp.org>
10702
10703         * modules/ftello-tests: New file.
10704         * tests/test-ftello.c: New file.
10705
10706         * modules/ftello: New file.
10707         * m4/ftello.m4: New file.
10708         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FTELLO,
10709         HAVE_FTELLO.
10710         * lib/stdio_.h (ftello): New declaration.
10711         * modules/stdio (Makefile.am): Substitute also GNULIB_FTELLO,
10712         HAVE_FTELLO.
10713
10714 2007-04-25  Bruno Haible  <bruno@clisp.org>
10715
10716         * modules/fseeko-tests: New file.
10717         * tests/test-fseeko.c: New file.
10718
10719         * modules/fseeko: New file.
10720         * m4/fseeko.m4: New file.
10721         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FSEEKO,
10722         HAVE_FSEEKO.
10723         * lib/stdio_.h (fseeko): New declaration.
10724         * modules/stdio (Makefile.am): Substitute also GNULIB_FSEEKO,
10725         HAVE_FSEEKO.
10726
10727 2007-04-25  Bruno Haible  <bruno@clisp.org>
10728
10729         * lib/stdio_.h (fflush): Add support for GNULIB_POSIXCHECK.
10730
10731 2007-04-25  Bruno Haible  <bruno@clisp.org>
10732
10733         * lib/unistd_.h: Include <stdio.h> if needed to get the SEEK_* macros.
10734         * tests/test-stdio.c: Check that the various SEEK_* macros are defined.
10735         * tests/test-unistd.c: Likewise.
10736         * tests/test-fcntl.c: Likewise.
10737
10738 2007-04-23  Eric Blake  <ebb9@byu.net>
10739
10740         * lib/fflush.c: Fix missing include.
10741         Reported by Bruno Haible.
10742
10743 2007-04-23  Bruno Haible  <bruno@clisp.org>
10744
10745         * lib/fpurge.c (fpurge) [glibc, BSD]: Free a malloc()ed ungetc buffer.
10746         Reported by Eric Blake.
10747
10748 2007-04-23  Bruno Haible  <bruno@clisp.org>
10749
10750         * lib/fbufmode.c (fbufmode): Port to Solaris/SPARC64.
10751
10752 2007-04-23  Bruno Haible  <bruno@clisp.org>
10753
10754         * lib/fseterr.c (fseterr): Don't hardcode the value of _IOERR.
10755
10756 2007-04-23  Bruno Haible  <bruno@clisp.org>
10757
10758         * tests/test-fbufmode.c (main): Be prepared to a failure of setvbuf.
10759         Needed on HP-UX 11.
10760
10761 2007-04-16  Eric Blake  <ebb9@byu.net>
10762
10763         Make fflush rely on fpurge.
10764         * lib/fflush.c (rpl_fflush): Rely on fpurge module, rather than
10765         open coding all variants.
10766         * modules/fflush (Depends-on): Add fpurge and unistd.
10767         * modules/fflush-tests (Depends-on): Unistd is no longer extra.
10768         * m4/fflush.m4 (gl_REPLACE_FFLUSH): Simplify.
10769
10770         Fix --with-tests compilation on cygwin.
10771         * modules/argmatch-tests (Makefile.am): List gnulib library first
10772         in LDADD.
10773         * modules/argp-tests (Makefile.am): Likewise.
10774         * modules/array-list-tests (Makefile.am): Likewise.
10775         * modules/array-oset-tests (Makefile.am): Likewise.
10776         * modules/avltree-list-tests (Makefile.am): Likewise.
10777         * modules/avltree-oset-tests (Makefile.am): Likewise.
10778         * modules/avltreehash-list-tests (Makefile.am): Likewise.
10779         * modules/carray-list-tests (Makefile.am): Likewise.
10780         * modules/dirname-tests (Makefile.am): Likewise.
10781         * modules/frexp-tests (Makefile.am): Likewise.
10782         * modules/isnanl-tests (Makefile.am): Likewise.
10783         * modules/linked-list-tests (Makefile.am): Likewise.
10784         * modules/linkedhash-list-tests (Makefile.am): Likewise.
10785         * modules/lock-tests (Makefile.am): Likewise.
10786         * modules/rbtree-list-tests (Makefile.am): Likewise.
10787         * modules/rbtree-oset-tests (Makefile.am): Likewise.
10788         * modules/rbtreehash-list-tests (Makefile.am): Likewise.
10789         * modules/tls-tests (Makefile.am): Likewise.
10790         * modules/tsearch-tests (Makefile.am): Likewise.
10791         * modules/xvasprintf-tests (Makefile.am): Likewise.
10792
10793         Fix fpurge for cygwin.
10794         * lib/fpurge.c (fpurge): Fix order of operation flub, and return a
10795         value.
10796         * modules/fpurge-tests (Depends-on): Clean up trash.
10797
10798 2007-04-16  Simon Josefsson  <simon@josefsson.org>
10799
10800         * lib/gc-libgcrypt.c (gc_hash_open): Shut up compiler warnings.
10801
10802         * m4/autobuild.m4: Re-indent.
10803
10804 2007-04-13  Bruno Haible  <bruno@clisp.org>
10805
10806         * modules/fpurge-tests: New file.
10807         * tests/test-fpurge.c: New file.
10808
10809         * modules/fpurge: New file.
10810         * lib/fpurge.h: New file.
10811         * lib/fpurge.c: New file.
10812         * m4/fpurge.m4: New file.
10813
10814 2007-04-13  Bruno Haible  <bruno@clisp.org>
10815
10816         * modules/fbufmode-tests: New file.
10817         * tests/test-fbufmode.c: New file.
10818
10819         * modules/fbufmode: New file.
10820         * lib/fbufmode.h: New file.
10821         * lib/fbufmode.c: New file.
10822         * m4/fbufmode.m4: New file.
10823
10824 2007-04-13  Bruno Haible  <bruno@clisp.org>
10825
10826         * modules/fwritable-tests: New file.
10827         * tests/test-fwritable.c: New file.
10828
10829         * modules/fwritable: New file.
10830         * lib/fwritable.h: New file.
10831         * lib/fwritable.c: New file.
10832         * m4/fwritable.m4: New file.
10833
10834 2007-04-13  Bruno Haible  <bruno@clisp.org>
10835
10836         * modules/freadable-tests: New file.
10837         * tests/test-freadable.c: New file.
10838
10839         * modules/freadable: New file.
10840         * lib/freadable.h: New file.
10841         * lib/freadable.c: New file.
10842         * m4/freadable.m4: New file.
10843
10844 2007-04-13  Bruno Haible  <bruno@clisp.org>
10845
10846         * modules/fflush-tests (Makefile.am): Remove EXTRA_DIST. Augment
10847         MOSTLYCLEANFILES.
10848
10849 2007-04-13  Paul Eggert  <eggert@cs.ucla.edu>
10850
10851         * build-aux/bootstrap (gnulib_tool_option_extras): New var, used by
10852         gzip bootstrap.conf to avoid dragging in i18n machinery.
10853         (gnulib_tool_option): Use it.
10854
10855 2007-04-13  Bruno Haible  <bruno@clisp.org>
10856
10857         * tests/test-vasnprintf-posix.c (test_function): Add tests for %f and
10858         %F directives.
10859         * tests/test-vasprintf-posix.c (test_function): Likewise.
10860         * tests/test-snprintf-posix.h (test_function): Likewise.
10861         * tests/test-sprintf-posix.h (test_function): Likewise.
10862         * tests/test-fprintf-posix.h (test_function): Likewise.
10863         * tests/test-printf-posix.h (test_function): Likewise.
10864         * tests/test-fprintf-posix.out: Likewise.
10865
10866 2007-04-13  Bruno Haible  <bruno@clisp.org>
10867
10868         * modules/lock-tests (configure.ac): For LIBSCHED, try also -lposix4.
10869         * modules/tls-tests (configure.ac): Likewise.
10870         Reported by Arto C. Nirkko <anirkko@insel.ch>.
10871
10872 2007-04-13  Bruno Haible  <bruno@clisp.org>
10873
10874         * lib/tls.c (glthread_tls_get): Fix return type.
10875         Patch by Arto C. Nirkko <anirkko@insel.ch>.
10876
10877 2007-04-12  Eric Blake  <ebb9@byu.net>
10878
10879         * modules/gettime (Depends-on): Remove gettime.
10880         Reported by Dmitry V. Levin.
10881
10882 2007-04-12  Bruno Haible  <bruno@clisp.org>
10883
10884         * modules/fflush (Include): Mention <stdio.h>.
10885         * modules/strtoimax (Include): Mention <inttypes.h>.
10886         * modules/strtoumax (Include): Likewise.
10887
10888 2007-04-12  Eric Blake  <ebb9@byu.net>
10889
10890         * .cvsignore: New file.
10891         * .gitignore: Likewise.
10892
10893 2007-04-12  Bruno Haible  <bruno@clisp.org>
10894
10895         * modules/iconv-tests (test_iconv_LDADD): Mention -liconv after LDADD,
10896         not before, since $(LDADD) often contains libgnu.a.
10897         * modules/striconv-tests (test_striconv_LDADD): Likewise.
10898         * modules/striconveh-tests (test_striconveh_LDADD): Likewise.
10899         * modules/striconveha-tests (test_striconveha_LDADD): Likewise.
10900         Needed on Cygwin.
10901
10902 2007-04-12  Eric Blake  <ebb9@byu.net>
10903
10904         Work around glibc's failure to flush stdin on fclose.
10905         * lib/closein.c (close_stdin): Flush stdin before closing.
10906
10907         Work around glibc's failure to reset seekable stdin on exit.
10908         * modules/closein: New module.
10909         * lib/closein.c: New file.
10910         * lib/closein.h: Likewise.
10911         * m4/closein.m4: Likewise.
10912         * MODULES.html.sh (File stream based Input/Output): Document it.
10913
10914 2007-04-12  Simon Josefsson  <simon@josefsson.org>
10915
10916         * gnulib-tool: Rename generated 'autobuild' script to
10917         'do-autobuild' in --create-megatestdir output.
10918
10919         * doc/gnulib.texi (Build robot for gnulib): Fix.
10920
10921 2007-04-12  Simon Josefsson  <simon@josefsson.org>
10922
10923         * modules/sysexits (Depends-on): Add absolute-header.
10924
10925 2007-04-12  Eric Blake  <ebb9@byu.net>
10926
10927         No need to preserve errno on success.
10928         * lib/fflush.c (rpl_fflush): Simplify errno tracking.
10929         Reported by Bruno Haible.
10930
10931 2007-04-12  Simon Josefsson  <simon@josefsson.org>
10932
10933         * MODULES.html.sh (Support for maintaining and releasing
10934         projects): Add autobuild.  Suggested by Eric Blake <ebb9@byu.net>.
10935
10936 2007-04-12  Simon Josefsson  <simon@josefsson.org>
10937
10938         * gnulib-tool (func_modules_add_dummy): Respect --avoid=dummy.
10939
10940 2007-04-12  Simon Josefsson  <simon@josefsson.org>
10941
10942         * modules/autobuild: New module.
10943
10944         * m4/autobuild.m4: New file.
10945
10946 2007-04-11  Bruno Haible  <bruno@clisp.org>
10947
10948         * lib/vasnprintf.c (VASNPRINTF): Implement the %F directive using the
10949         %f directive, if NEED_PRINTF_DIRECTIVE_F is defined.
10950         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_F): New macro.
10951         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_F): New macro.
10952         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke
10953         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
10954         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
10955         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Invoke
10956         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
10957         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
10958         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Invoke
10959         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
10960         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
10961         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Invoke
10962         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
10963         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
10964         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Invoke
10965         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
10966         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
10967         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Invoke
10968         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
10969         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
10970         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Invoke
10971         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
10972         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
10973         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Invoke
10974         gl_PRINTF_DIRECTIVE_F. Test gl_cv_func_printf_directive_f. Invoke
10975         gl_PREREQ_VASNPRINTF_DIRECTIVE_F for the replacement.
10976         Reported by Eric Blake.
10977
10978 2007-04-11  Bruno Haible  <bruno@clisp.org>
10979
10980         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_A): Fix test. It always failed.
10981
10982 2007-04-10  Bruno Haible  <bruno@clisp.org>
10983
10984         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_A): Add a test for correct result
10985         for NaN and Infinity. Needed on FreeBSD 6.1.
10986         * tests/test-vasnprintf-posix.c (test_function): Undo last change
10987         regarding results for "%010a" of Infinity and NaN.
10988         * tests/test-vasprintf-posix.c (test_function): Likewise.
10989         * tests/test-snprintf-posix.h (test_function): Likewise.
10990         * tests/test-sprintf-posix.h (test_function): Likewise.
10991         * tests/test-fprintf-posix.h (test_function): Likewise.
10992         * tests/test-printf-posix.h (test_function): Likewise.
10993         * tests/test-fprintf-posix.out: Likewise.
10994
10995 2007-04-10  Bruno Haible  <bruno@clisp.org>
10996
10997         * modules/locale-tests: New file.
10998         * tests/test-locale.c: New file.
10999
11000         * modules/locale: New file.
11001         * lib/locale_.h: New file.
11002         * m4/locale_h.m4: New file.
11003
11004 2007-04-10  Paul Eggert  <eggert@cs.ucla.edu>
11005             Bruno Haible  <bruno@clisp.org>
11006
11007         * m4/signbit.m4 (gl_SIGNBIT): When the sign bit position could not
11008         be determined, test for availability of the copysignf, copysign,
11009         copysignl functions.
11010         * lib/signbitf.c (gl_signbitf): Use copysignf if available in libc.
11011         * lib/signbitd.c (gl_signbitd): Use copysign if available in libc.
11012         * lib/signbitl.c (gl_signbitl): Use copysignl if available in libc.
11013
11014 2007-04-09  Eric Blake  <ebb9@byu.net>
11015
11016         * lib/stdio_.h [REPLACE_FFLUSH]: Declare rpl_fflush.
11017         * modules/stdio (Makefile.am): Support fflush.
11018         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Likewise.
11019         * modules/fflush: New file.
11020         * lib/fflush.c: Likewise.
11021         * m4/fflush.m4: Likewise.
11022         * modules/fflush-tests: New test.
11023         * tests/test-fflush.c: Likewise.
11024         * MODULES.html.sh (Input/output <stdio.h>): Document new module.
11025
11026 2007-04-06  Bruno Haible  <bruno@clisp.org>
11027
11028         * lib/vasnprintf.c: Include <math.h>. Don't include float+.h.
11029         (VASNPRINTF): Use signbit for faster determination whether to print a
11030         minus sign.
11031         * modules/vasnprintf (Files): Remove lib/float+.h.
11032         * modules/fprintf-posix (Depends-on): Add signbit.
11033         * modules/snprintf-posix (Depends-on): Likewise.
11034         * modules/sprintf-posix (Depends-on): Likewise.
11035         * modules/vasnprintf-posix (Depends-on): Likewise.
11036         * modules/vasprintf-posix (Depends-on): Likewise.
11037         * modules/vfprintf-posix (Depends-on): Likewise.
11038         * modules/vsnprintf-posix (Depends-on): Likewise.
11039         * modules/vsprintf-posix (Depends-on): Likewise.
11040
11041 2007-04-06  Bruno Haible  <bruno@clisp.org>
11042
11043         * tests/test-frexp.c (main): Test also the sign bit of zero results.
11044         * tests/test-frexpl.c (main): Likewise.
11045         * tests/test-ldexpl.c (main): Likewise.
11046         * modules/frexp-tests (Depends-on): Add signbit.
11047         * modules/frexpl-tests (Depdends-on): Likewise.
11048         * modules/ldexpl-tests (Depdends-on): Likewise.
11049
11050 2007-04-06  Bruno Haible  <bruno@clisp.org>
11051
11052         * modules/signbit-tests: New file.
11053         * tests/test-signbit.c: New file.
11054
11055         * modules/signbit: New file.
11056         * lib/signbitf.c: New file.
11057         * lib/signbitd.c: New file.
11058         * lib/signbitl.c: New file.
11059         * m4/signbit.m4: New file.
11060         * lib/math_.h (gl_signbitf, gl_signbitd, gl_signbitl): New declarations.
11061         (signbit): New macro.
11062         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_SIGNBIT and
11063         REPLACE_SIGNBIT.
11064         * modules/math (Makefile.am) Substibute also GNULIB_SIGNBIT and
11065         REPLACE_FREXPL into math.h.
11066
11067 2007-04-06  Bruno Haible  <bruno@clisp.org>
11068
11069         * modules/isnanf-nolibm-tests: New file.
11070         * tests/test-isnanf.c: New file.
11071
11072         * modules/isnanf-nolibm: New file.
11073         * lib/isnanf.h: New file.
11074         * lib/isnanf.c: New file.
11075         * lib/isnan.c: Consider the USE_FLOAT macro.
11076         * m4/isnanf.m4: New file.
11077
11078 2007-04-06  Bruno Haible  <bruno@clisp.org>
11079
11080         * modules/gettext-h (configure.ac): AC_SUBST LIBINTL and LTLIBINTL.
11081         (Link): New section.
11082
11083         * modules/canonicalize-lgpl-tests (Makefile.am): Undo last change.
11084
11085 2007-04-06  Bruno Haible  <bruno@clisp.org>
11086
11087         Assume the 'long double' type.
11088         * m4/longdouble.m4: Remove file.
11089         * config/srclist.txt: Don't mention longdouble.m4.
11090         * lib/allocsa.h: Assume HAVE_LONG_DOUBLE to be true.
11091         * lib/float+.h: Likewise.
11092         * lib/frexp.c: Likewise.
11093         * lib/printf-args.h: Likewise.
11094         * lib/printf-args.c: Likewise.
11095         * lib/printf-frexp.c: Likewise.
11096         * lib/printf-parse.c: Likewise.
11097         * lib/vasnprintf.c: Likewise.
11098         * m4/allocsa.m4: Remove gt_TYPE_LONGDOUBLE invocation.
11099         * m4/intl.m4: Likewise.
11100         * m4/isnanl.m4: Likewise.
11101         * m4/printf.m4: Likewise.
11102         * m4/printf-frexpl.m4: Likewise.
11103         * m4/vasnprintf.m4: Likewise.
11104         * modules/allocsa (Files): Remove m4/longdouble.m4.
11105         * modules/gettext (Files): Likewise.
11106         * modules/relocatable-prog-wrapper (Files): Likewise.
11107         * modules/vasnprintf (Files): Likewise.
11108         * modules/isnanl (Files): Likewise.
11109         (Include): Simplify.
11110         * modules/isnanl-nolibm (Files): Remove m4/longdouble.m4.
11111         (Include): Simplify.
11112         * modules/printf-frexpl (Files): Remove m4/longdouble.m4.
11113         (Include): Simplify.
11114         * modules/snprintf-posix-tests (Files): Remove m4/longdouble.m4.
11115         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
11116         * modules/sprintf-posix-tests (Files): Remove m4/longdouble.m4.
11117         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
11118         * modules/vasnprintf-posix-tests (Files): Remove m4/longdouble.m4.
11119         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
11120         * modules/vasprintf-posix-tests (Files): Remove m4/longdouble.m4.
11121         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
11122         * modules/vsnprintf-posix-tests (Files): Remove m4/longdouble.m4.
11123         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
11124         * modules/vsprintf-posix-tests (Files): Remove m4/longdouble.m4.
11125         (configure.ac): Remove gt_TYPE_LONGDOUBLE invocation.
11126         * tests/test-isnanl-nolibm.c: Assume HAVE_LONG_DOUBLE to be true.
11127         * tests/test-isnanl.c: Likewise.
11128         * tests/test-snprintf-posix.h: Likewise.
11129         * tests/test-sprintf-posix.h: Likewise.
11130         * tests/test-vasnprintf-posix.c: Likewise.
11131         * tests/test-vasnprintf-posix2.c: Likewise.
11132         * tests/test-vasprintf-posix.c: Likewise.
11133
11134 2007-04-06  Bruno Haible  <bruno@clisp.org>
11135
11136         Fix problem with Compaq (ex-DEC) Desktop C compiler on Tru64.
11137         * lib/math_.h [__DECC]: Include the overridden include file through
11138         #include_next, outside the double-inclusion guard.
11139         * lib/stdio_.h [__DECC]: Likewise.
11140         * lib/stdlib_.h [__DECC]: Likewise.
11141         * lib/string_.h [__DECC]: Likewise.
11142         * lib/time_.h [__DECC]: Likewise.
11143         * lib/wchar_.h [__DECC]: Likewise.
11144         * lib/wctype_.h [__DECC]: Likewise.
11145         * lib/inttypes_.h [__DECC]: Likewise.
11146         Reported by Albert Chin <china@thewrittenword.com> in
11147         <http://lists.gnu.org/archive/html/bug-gnulib/2007-04/msg00088.html>.
11148
11149 2007-04-04  Eric Blake  <ebb9@byu.net>
11150
11151         * m4/stdint.m4 (gl_STDINT_H): Detect WINT_MAX bug in cygwin
11152         1.5.x.
11153
11154 2007-04-04  Bruno Haible  <bruno@clisp.org>
11155
11156         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_A): Add a test for correct
11157         rounding. Don't assume that FreeBSD 6 and NetBSD 4 pass this test.
11158
11159 2007-04-04  Bruno Haible  <bruno@clisp.org>
11160
11161         * tests/test-vasnprintf-posix.c (test_function): Allow two possible
11162         results for "%010a" of Infinity and NaN.
11163         * tests/test-vasprintf-posix.c (test_function): Likewise.
11164         * tests/test-snprintf-posix.h (test_function): Likewise.
11165         * tests/test-sprintf-posix.h (test_function): Likewise.
11166         * tests/test-fprintf-posix.h (test_function): Remove these tests.
11167         * tests/test-printf-posix.h (test_function): Likewise.
11168         * tests/test-fprintf-posix.out: Update.
11169         Needed for FreeBSD 6.1.
11170
11171 2007-04-04  Bruno Haible  <bruno@clisp.org>
11172
11173         * DEPENDENCIES: Remove mentions of tar and gzip, since they are not
11174         directly used by the gnulib modules nor by gnulib-tool.
11175
11176 2007-04-04  Paul Eggert  <eggert@cs.ucla.edu>
11177
11178         * DEPENDENCIES: Give overall description of version dependency
11179         desirability.  Use more-typical names for apps.
11180         Add shell, coreutils, diffutils, grep, tar, gzip.
11181
11182 2007-04-04  Simon Josefsson  <simon@josefsson.org>
11183
11184         * MODULES.html.sh: Rename crypto modules.  Remove iconvme.
11185
11186 2007-04-04  Karl Berry  <karl@gnu.org>
11187
11188         * MODULES.html.sh (func_module): missing '.
11189
11190 2007-04-03  Bruno Haible  <bruno@clisp.org>
11191
11192         * modules/argmatch-tests (Makefile.am): New variable
11193         test_argmatch_LDADD.
11194         * modules/argp-tests (Makefile.am): New variable test_argp_LDADD.
11195         * modules/array-list-tests (Makefile.am): New variable
11196         test_array_list_LDADD.
11197         * modules/array-oset-tests (Makefile.am): New variable
11198         test_array_oset_LDADD.
11199         * modules/avltree-list-tests (Makefile.am): New variable
11200         test_avltree_list_LDADD.
11201         * modules/avltree-oset-tests (Makefile.am): New variable
11202         test_avltree_oset_LDADD.
11203         * modules/avltreehash-list-tests (Makefile.am): New variable
11204         test_avltreehash_list_LDADD.
11205         * modules/canonicalize-lgpl-tests (Makefile.am): New variable
11206         test_canonicalize_lgpl_LDADD.
11207         * modules/carray-list-tests (Makefile.am): New variable
11208         test_carray_list_LDADD.
11209         * modules/dirname-tests (Makefile.am): New variable
11210         test_dirname_LDADD.
11211         * modules/linked-list-tests (Makefile.am): New variable
11212         test_linked_list_LDADD.
11213         * modules/linkedhash-list-tests (Makefile.am): New variable
11214         test_linkedhash_list_LDADD.
11215         * modules/rbtree-list-tests (Makefile.am): New variable
11216         test_rbtree_list_LDADD.
11217         * modules/rbtree-oset-tests (Makefile.am): New variable
11218         test_rbtree_oset_LDADD.
11219         * modules/rbtreehash-list-tests (Makefile.am): New variable
11220         test_rbtreehash_list_LDADD.
11221         * modules/xvasprintf-tests (Makefile.am): New variable
11222         test_xvasprintf_LDADD.
11223         Reported by Eric Blake.
11224
11225 2007-04-03  Eric Blake  <ebb9@byu.net>
11226
11227         * DEPENDENCIES: Weaken m4 requirements.
11228
11229 2007-04-03  Bruno Haible  <bruno@clisp.org>
11230
11231         * modules/frexp-tests (configure.ac): Remove AC_SUBST.
11232         * modules/isnanl-tests (configure.ac): Likewise.
11233
11234 2007-04-03  Ben Pfaff  <blp@gnu.org>
11235
11236         * modules/iconv_open: Add $(srcdir)/ to source directory
11237         references in Makefile fragments that call gperf, to fix VPATH
11238         builds.
11239
11240 2007-04-03  Bruno Haible  <bruno@clisp.org>
11241
11242         * modules/ldexpl (Depends-on): Add isnanl, remove isnanl-nolibm.
11243         * lib/ldexpl.c: Undo last change.
11244
11245 2007-04-03  Bruno Haible  <bruno@clisp.org>
11246
11247         * modules/printf-frexpl (Depends-on): Undo last change.
11248         (Files): Add m4/ldexpl.m4.
11249
11250 2007-04-03  Bruno Haible  <bruno@clisp.org>
11251
11252         * m4/isnanl.m4 (gl_FUNC_ISNANL): Substitute ISNANL_LIBM.
11253         * modules/isnanl (Link): New section.
11254
11255         * m4/frexp.m4 (gl_FUNC_FREXP): Substitute FREXP_LIBM.
11256         * modules/frexp (Link): New section.
11257
11258         * m4/frexpl.m4 (gl_FUNC_FREXPL): Substitute FREXPL_LIBM.
11259         * modules/frexpl (Link): New section.
11260
11261         * m4/ldexpl.m4 (gl_FUNC_LDEXPL): Substitute LDEXPL_LIBM.
11262         * modules/ldexpl (Link): New section.
11263
11264 2007-04-03  Bruno Haible  <bruno@clisp.org>
11265
11266         * modules/TEMPLATE-EXTENDED: New file.
11267         * gnulib-tool (func_all_modules, func_verify_module): Exclude it.
11268
11269 2007-04-03  Bruno Haible  <bruno@clisp.org>
11270
11271         * DEPENDENCIES: New file.
11272         Suggested by Simon Josefsson.
11273
11274 2007-04-03  Bruno Haible  <bruno@clisp.org>
11275
11276         * doc/gnulib.texi: Escape @.
11277
11278 2007-04-03  James Youngman  <jay@gnu.org>
11279         and Paul Eggert  <eggert@cs.ucla.edu>
11280
11281         * lib/stat-time.h (get_stat_birthtime): Check for zero-valued
11282         birthtime on all systems that have birthtime, not just those which
11283         use st_birthtimensec rather than st_birthtim.  Putting zero in
11284         st_birthtim.tv_sec is how (for example) FreeBSD/x86 6.1 indicates
11285         that the birth time is not available for files on an NFS mount.
11286
11287 2007-04-03  Simon Josefsson  <simon@josefsson.org>
11288
11289         * modules/memxor: Move back from crypto/, suggested by Bruno.
11290         * modules/crypto/hmac-sha1: Fix memxor dependency.
11291
11292         * modules/crypto/gc: Moved from ../.
11293
11294 2007-04-02  Eric Blake  <ebb9@byu.net>
11295
11296         * lib/ldexpl.c (includes): Avoid libm.
11297
11298         * modules/printf-frexpl (Depends-on): Depend on ldexpl.
11299
11300 2007-04-02  Bruno Haible  <bruno@clisp.org>
11301
11302         * lib/sysexit_.h (EX_OK): Disable the EX_OK definition from <unistd.h>
11303         on IRIX.
11304
11305 2007-04-02  Bruno Haible  <bruno@clisp.org>
11306
11307         * m4/intdiv0.m4 (gt_INTDIV0): Avoid performing the test for real on
11308         x86 or x86_64 platforms running MacOS X.
11309         Reported by Ryan Schmidt <@ryandesign.com>.
11310
11311 2007-04-02  Bruno Haible  <bruno@clisp.org>
11312
11313         * m4/intdiv0.m4 (gt_INTDIV0): When cross-compiling, treat x86_64 like
11314         i386.
11315
11316 2007-04-01  Simon Josefsson  <simon@josefsson.org>
11317
11318         * modules/crypto/arcfour: Moved from ../.
11319         * modules/crypto/arcfour-tests: Moved from ../.
11320         * modules/crypto/arctwo: Moved from ../.
11321         * modules/crypto/arctwo-tests: Moved from ../.
11322         * modules/crypto/des: Moved from ../.
11323         * modules/crypto/des-tests: Moved from ../.
11324         * modules/crypto/gc-arcfour: Moved from ../.
11325         * modules/crypto/gc-arcfour-tests: Moved from ../.
11326         * modules/crypto/gc-arctwo: Moved from ../.
11327         * modules/crypto/gc-arctwo-tests: Moved from ../.
11328         * modules/crypto/gc-des: Moved from ../.
11329         * modules/crypto/gc-des-tests: Moved from ../.
11330         * modules/crypto/gc-hmac-md5: Moved from ../.
11331         * modules/crypto/gc-hmac-md5-tests: Moved from ../.
11332         * modules/crypto/gc-hmac-sha1: Moved from ../.
11333         * modules/crypto/gc-hmac-sha1-tests: Moved from ../.
11334         * modules/crypto/gc-md2: Moved from ../.
11335         * modules/crypto/gc-md2-tests: Moved from ../.
11336         * modules/crypto/gc-md4: Moved from ../.
11337         * modules/crypto/gc-md4-tests: Moved from ../.
11338         * modules/crypto/gc-md5: Moved from ../.
11339         * modules/crypto/gc-md5-tests: Moved from ../.
11340         * modules/crypto/gc-pbkdf2-sha1: Moved from ../.
11341         * modules/crypto/gc-pbkdf2-sha1-tests: Moved from ../.
11342         * modules/crypto/gc-random: Moved from ../.
11343         * modules/crypto/gc-rijndael: Moved from ../.
11344         * modules/crypto/gc-rijndael-tests: Moved from ../.
11345         * modules/crypto/gc-sha1: Moved from ../.
11346         * modules/crypto/gc-sha1-tests: Moved from ../.
11347         * modules/crypto/gc-tests: Moved from ../.
11348         * modules/crypto/hmac-md5: Moved from ../.
11349         * modules/crypto/hmac-md5-tests: Moved from ../.
11350         * modules/crypto/hmac-sha1: Moved from ../.
11351         * modules/crypto/hmac-sha1-tests: Moved from ../.
11352         * modules/crypto/md2: Moved from ../.
11353         * modules/crypto/md2-tests: Moved from ../.
11354         * modules/crypto/md4: Moved from ../.
11355         * modules/crypto/md4-tests: Moved from ../.
11356         * modules/crypto/md5: Moved from ../.
11357         * modules/crypto/md5-tests: Moved from ../.
11358         * modules/crypto/memxor: Moved from ../.
11359         * modules/crypto/rijndael: Moved from ../.
11360         * modules/crypto/rijndael-tests: Moved from ../.
11361         * modules/crypto/sha1: Moved from ../.
11362
11363 2007-03-30  James Youngman  <jay@gnu.org>
11364
11365         * tests/test-stat-time.c (prepare_test): use chmod() rather than
11366         rename() to change the ctime of a file (because ctime is unaffected
11367         by rename on jfs2 on AIX 5.1).
11368         (main): Start by doing cleanup, in case a previous run failed leaving
11369         test files behind.
11370
11371 2007-03-31  Bruno Haible  <bruno@clisp.org>
11372
11373         Support old proprietary implementations of iconv.
11374         * modules/iconv_open: New file.
11375         * lib/iconv_.h: New file.
11376         * m4/iconv_h.m4: New file.
11377         * lib/iconv_open.c: New file.
11378         * lib/iconv_open-aix.gperf: New file.
11379         * lib/iconv_open-hpux.gperf: New file.
11380         * lib/iconv_open-irix.gperf: New file.
11381         * lib/iconv_open-osf.gperf: New file.
11382         * m4/iconv_open.m4: New file.
11383         * modules/linebreak (Depends-on): Add iconv_open.
11384         * modules/striconv (Depends-on): Likewise.
11385         * modules/striconveh (Depends-on): Likewise.
11386         * modules/unicodeio (Depends-on): Likewise.
11387         * lib/striconveh.h (mem_cd_iconveh, str_cd_iconveh): Allow cd to be
11388         (iconv_t)(-1).
11389         * lib/striconveh.c (mem_cd_iconveh_internal): Use an indirect
11390         conversion if cd is (iconv_t)(-1).
11391         (mem_iconveh, str_iconveh): Don't fail just because a direct conversion
11392         is not possible.
11393
11394 2007-03-31  Bruno Haible  <bruno@clisp.org>
11395
11396         * tests/test-striconveha.c (main): Don't expect "autodetect_jp" to
11397         work on Solaris either. Protect also second use of "autodetect_jp".
11398
11399 2007-03-31  Bruno Haible  <bruno@clisp.org>
11400
11401         * m4/frexpl.m4 (gl_FUNC_FREXPL): Set HAVE_DECL_FREXPL to 0 when
11402         the function is not present.
11403
11404 2007-03-31  Bruno Haible  <bruno@clisp.org>
11405
11406         * m4/ldexpl.m4 (gl_FUNC_LDEXPL): Set HAVE_DECL_LDEXPL to 0 when
11407         the function is not present.
11408
11409 2007-03-31  Bruno Haible  <bruno@clisp.org>
11410
11411         * m4/iconv.m4 (AM_ICONV_LINK): Fix 2007-03-29 patch. Test also against
11412         a bug in HP-UX iconv_open().
11413
11414 2007-03-31  Bruno Haible  <bruno@clisp.org>
11415
11416         * MODULES.html.sh (func_module): Don't show gnulib-common.m4.
11417         (Mathematics <math.h>): New section, add fpieee.
11418         (Input/output <stdio.h>): Add fseterr.
11419         (Mathematics <math.h>): New section, add printf-frexp.
11420         (Container data structures): Add sublist.
11421         (Core language properties): Add fpucw, inline.
11422         (Functions for greatest-width integer types <inttypes.h>): Add
11423         imaxabs, imaxdiv, inttypes.
11424         (Mathematics <math.h>): Add frexp, frexpl, isnan-nolibm, isnanl,
11425         isnanl-nolibm, ldexp.
11426         (Mathematics <math.h>): New section, add printf-frexpl.
11427         (Support for systems lacking POSIX:2001): Add fprintf-posix,
11428         printf-posix, snprintf-posix, sprintf-posix, string, search, socklen,
11429         sys_select, sys_socket, vasnprintf-posix, vasprintf-posix,
11430         vfprintf-posix, vprintf-posix, vsnprintf-posix, vsprintf-posix.
11431         (Unicode string functions): Add unistr/u*-mbtoucr.
11432         (Java): Add javacomp-script, javaexec-script.
11433         (C#): Add csharpcomp-script, csharpexec-script.
11434         (Support for building libraries and executables): Add havelib,
11435         relocatable-*.
11436         (Support for maintaining and releasing projects): Renamed from
11437         'Support for maintaining and release projects'. Add announce-gen.
11438
11439 2007-03-31  Bruno Haible  <bruno@clisp.org>
11440
11441         * README: Talk primarily about git.
11442         (git and CVS): Renamed from CVS.
11443         * doc/gnulib.texi (Introduction, Build robot for gnulib): Mention that
11444         gnulib is available through git.
11445         * doc/gnulib-tool.texi (CVS Issues): Mention git and svn as well.
11446
11447 2007-03-30  Bruno Haible  <bruno@clisp.org>
11448
11449         * lib/alloca_.h: Change prefix of double-inclusion guard macro to _GL_.
11450         * lib/poll_.h: Likewise.
11451         * lib/stat_.h: Likewise.
11452         * lib/sys_time_.h: Likewise.
11453         * lib/sysexit_.h: Likewise.
11454         * lib/glob_.h: Prefix double-inclusion guard macro with _GL_.
11455         * lib/stdbool_.h: Likewise.
11456         * lib/byteswap_.h: Add double-inclusion guard.
11457
11458 2007-03-30  Sergey Poznyakoff  <gray@mirddin.farlep.net>
11459
11460         * lib/sysexit_.h: Prefix double-inclusion guard macro with _GNULIB.
11461
11462 2007-03-30  Karl Berry  <karl@gnu.org>
11463
11464         * config/srclist-update: double space after USA in the license
11465         substitution, since that's how it's usually (?) written.
11466
11467 2007-03-30  Paul Eggert  <eggert@cs.ucla.edu>
11468
11469         * lib/write-any-file.c (can_write_any_file): Fix else-else bug
11470         reported by Bruno Haible.
11471
11472 2007-03-29  Bruno Haible  <bruno@clisp.org>
11473
11474         * m4/iconv.m4 (AM_ICONV_LINK): Require AC_CANONICAL_HOST. Test against
11475         a bug in AIX iconv().
11476
11477 2007-03-29  Bruno Haible  <bruno@clisp.org>
11478
11479         * modules/ldexpl-tests: New file.
11480         * tests/test-ldexpl.c: New file.
11481
11482 2007-03-29  Bruno Haible  <bruno@clisp.org>
11483
11484         * lib/ldexpl.c: Include fpucw.h.
11485         (ldexpl): Use BEGIN/END_LONG_DOUBLE_ROUNDING. Skip the last unneeded
11486         multiplication.
11487         * modules/ldexpl (Depends-on): Add fpucw.
11488
11489 2007-03-29  Bruno Haible  <bruno@clisp.org>
11490
11491         * modules/ldexpl: New file.
11492         * m4/ldexpl.m4: New file.
11493         * lib/math_.h (ldexpl): Define to a replacement if REPLACE_LDEXPL is
11494         set.
11495         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize also GNULIB_LDEXPL,
11496         REPLACE_LDEXPL.
11497         * modules/math (Makefile.am): Substitute also GNULIB_LDEXPL,
11498         REPLACE_LDEXPL.
11499         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Invoke
11500         gl_FUNC_LDEXPL_WORKS.
11501         * m4/mathl.m4 (gl_FUNC_LONG_DOUBLE_MATH): Remove test for ldexpl.
11502         * modules/mathl (Files): Remove lib/ldexpl.c.
11503         (Depends-on): Add ldexpl.
11504
11505 2007-03-29  Bruno Haible  <bruno@clisp.org>
11506
11507         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Declare frexpl.
11508
11509 2007-03-29  Bruno Haible  <bruno@clisp.org>
11510
11511         * tests/test-striconveh.c (main): Don't assume that a direct conversion
11512         between ISO-8859-1 and ISO-8859-2 is possible. Needed for OSF/1, IRIX
11513         and possibly also HP-UX.
11514         * tests/test-striconveha.c (main): Don't expect "autodetect_jp" to
11515         work on AIX, IRIX, HP-UX, OSF/1.
11516         * tests/uniconv/test-u16-conv-from-enc.c (main): Likewise.
11517         * tests/uniconv/test-u16-strconv-from-enc.c (main): Likewise.
11518         * tests/uniconv/test-u32-conv-from-enc.c (main): Likewise.
11519         * tests/uniconv/test-u32-strconv-from-enc.c (main): Likewise.
11520         * tests/uniconv/test-u8-conv-from-enc.c (main): Likewise.
11521         * tests/uniconv/test-u8-strconv-from-enc.c (main): Likewise.
11522
11523 2007-03-29  Bruno Haible  <bruno@clisp.org>
11524
11525         * tests/test-stat-time.c: Include <fcntl.h>, not <sys/fcntl.h>.
11526
11527 2007-03-29  Paul Eggert  <eggert@cs.ucla.edu>
11528
11529         * lib/acl-internal.h (acl_get_fd, acl_set_fd): undef before defining,
11530         to work around a problem on OSF/1 5.1 reported by Bruno Haible.
11531
11532 2007-03-29  Eric Blake  <ebb9@byu.net>
11533
11534         * lib/acl-internal.h: Remove redundant include.
11535         (ACL_NOT_WELL_SUPPORTED): Also filter on EBUSY, returned by
11536         Cygwin when a file is locked.
11537
11538 2007-03-29  Bruno Haible  <bruno@clisp.org>
11539
11540         * lib/vasprintf.c [IN_LIBASPRINTF]: Include different specification
11541         file.
11542         * lib/asprintf.c [IN_LIBASPRINTF]: Likewise.
11543
11544 2007-03-29  Paul Eggert  <eggert@cs.ucla.edu>
11545
11546         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Don't bother to
11547         try to remove a parent directory if the child couldn't be removed
11548         (except for the first rmdir, which could fail because the child
11549         doesn't exist).  Problem reported by Jeff Blaine in
11550         <http://lists.gnu.org/archive/html/bug-tar/2007-03/msg00014.html>.
11551
11552 2007-03-28  Bruno Haible  <bruno@clisp.org>
11553
11554         * lib/striconveh.c (utf8conv_carefully): New function.
11555         (mem_cd_iconveh_internal): Invoke it.
11556
11557 2007-03-28  Bruno Haible  <bruno@clisp.org>
11558
11559         * lib/striconveh.c (mem_cd_iconveh_internal): Use u8_mbtoucr instead
11560         of u8_mbtouc in order to distinguish invalid and incomplete UTF-8
11561         input.
11562         * modules/striconveh (Depends-on): Add unistr/u8-mbtoucr. Replace
11563         utf8-ucs4 with unistr/u8-mbtouc. Replace ucs4-utf8 with
11564         unistr/u8-uctomb.
11565
11566 2007-03-28  Bruno Haible  <bruno@clisp.org>
11567
11568         * modules/unistr/u8-mbtoucr: New file.
11569         * lib/unistr/u8-mbtoucr.c: New file.
11570         * modules/unistr/u16-mbtoucr: New file.
11571         * lib/unistr/u16-mbtoucr.c: New file.
11572         * modules/unistr/u16-mbtoucr: New file.
11573         * lib/unistr/u16-mbtoucr.c: New file.
11574         * lib/unistr.h (u8_mbtoucr, u16_mbtoucr, u32_mbtoucr): New declarations.
11575
11576 2007-03-27  Simon Josefsson  <simon@josefsson.org>
11577             Bruno Haible  <bruno@clisp.org>
11578
11579         * m4/vasprintf.m4: Convert AC_SUBST into shell variable for
11580         REPLACE_VASPRINTF.  Set HAVE_VASPRINTF.  Add
11581         AC_REQUIRE([gl_STDIO_H_DEFAULTS]).
11582
11583         * m4/stdio_h.m4: Add stubs for vasprintf too.
11584
11585         * modules/stdio: Support vasprintf in sed command.
11586
11587         * modules/vasprintf: Depend on stdio for prototypes.  Remove
11588         vasprintf.h.  Add stdio module indicator.
11589
11590         * lib/stdio_.h: Declare asprintf and vasprintf, based on
11591         vasprintf.h.
11592
11593         * lib/vasprintf.h: File removed.
11594
11595         * lib/asprintf.c: Use stdio.h instead of vasprintf.h.
11596         * lib/vasprintf.c: Ditto.
11597         * lib/xvasprintf.c: Ditto.
11598         * tests/test-vasprintf-posix.c: Ditto.
11599         * tests/test-vasprintf.c: Ditto.
11600
11601 2007-03-27  Bruno Haible  <bruno@clisp.org>
11602
11603         Make vasnprintf multithread-safe.
11604         * lib/vasnprintf.c (decimal_point_char): New function.
11605         (VASNPRINTF): Use it.
11606         Suggested by Simon Josefsson.
11607
11608 2007-03-27  Eric Blake  <ebb9@byu.net>
11609
11610         Support sub-second birthtime on cygwin.
11611         * m4/stat-time.m4 (gl_STAT_BIRTHTIME): Also check for st_birthtim.
11612         * lib/stat-time.h (STAT_TIMESPEC): Adjust comments.
11613         (get_stat_birthtime): Also work with st_birthtim.
11614
11615 2007-03-27  Paul Eggert  <eggert@cs.ucla.edu>
11616
11617         * lib/stat-time.h (USE_BIRTHTIME): Remove.
11618         (get_stat_atime_ns, get_stat_ctime_ns, get_stat_mtime_ns):
11619         (get_stat_birthtime_ns): Do not try to use "spare" fields.
11620         (get_stat_birthtime_ns): Simplify compile-time tests.
11621         (get_stat_birthtime): Change the API to look like
11622         get_stat_mtime etc., except return a negative tv_nsec on error.
11623         * m4/stat-time.m4 (gl_STAT_TIME, gl_STAT_BIRTHTIME):
11624         Don't check for "spare" fields.
11625         (gl_STAT_BIRTHTIME): Don't check for struct stat.st_birthtimespec.tv_sec
11626         or for struct stat.st_birthtime, as these tests aren't used.
11627         * tests/test-stat-time.c (test_birthtime): Adjust to new API.
11628
11629 2007-03-27  Bruno Haible  <bruno@clisp.org>
11630
11631         * lib/stat-time.h: Include <sys/stat.h>.
11632
11633 2007-03-27  James Youngman  <jay@gnu.org>
11634
11635         * lib/stat-time.h (get_stat_birthtime): New function for
11636           retrieving st_birthtime as provided by UFS2 (hence *BSD).
11637         * m4/stat-time.m4 (gl_STAT_BIRTHTIME): Probe for st_birthtime
11638           and its variants.
11639         * modules/stat-time (configure.ac): call gl_STAT_BIRTHTIME.
11640         * modules/stat-time-test: New file.
11641         * tests/test-stat-time.c: New test, devised by Bruno Haible.
11642
11643 2007-03-26  Bruno Haible  <bruno@clisp.org>
11644
11645         Better support of signalling NaNs.
11646         * lib/atanl.c: Include isnanl.h.
11647         (atanl): Perform test for NaN at the beginning of the function and
11648         through a call to isnanl.
11649         * lib/cosl.c: Include isnanl.h.
11650         (cosl): Perform test for NaN at the beginning of the function and
11651         through a call to isnanl.
11652         * lib/ldexpl.c: Include isnanl.h.
11653         (ldexpl): Perform test for NaN through a call to isnanl.
11654         * lib/logl.c: Include isnanl.h.
11655         (logl): Perform test for NaN at the beginning of the function and
11656         through a call to isnanl.
11657         * lib/sinl.c: Include isnanl.h.
11658         (sinl): Perform test for NaN at the beginning of the function and
11659         through a call to isnanl.
11660         * lib/sqrtl.c: Include isnanl.h.
11661         (sqrtl): Perform test for NaN at the beginning of the function and
11662         through a call to isnanl.
11663         * lib/tanl.c: Include isnanl.h.
11664         (tanl): Perform test for NaN at the beginning of the function and
11665         through a call to isnanl.
11666         * lib/trigl.c (ieee754_rem_pio2l): Remove test for NaN.
11667         * modules/mathl (Depends-on): Add isnanl.
11668
11669 2007-03-26  Eric Blake  <ebb9@byu.net>
11670
11671         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_A): Fix
11672         regression in logic sense of previous patch.
11673
11674 2007-03-26  Bruno Haible  <bruno@clisp.org>
11675
11676         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_A): Don't use
11677         unportable shell command "if ! ...".
11678         Reported by Ralf Wildenhues.
11679
11680 2007-03-25  Bruno Haible  <bruno@clisp.org>
11681
11682         * lib/sysexit_,h: If HAVE_SYSEXITS_H is defined, include the original
11683         <sysexits.h> file, and only add EX_CONFIG.
11684         * m4/sysexits.m4 (gl_SYSEXITS): If <sysexits.h> exists, check its
11685         absolute file name and whether it is sufficient. Substitute also
11686         HAVE_SYSEXITS_H and ABSOLUTE_SYSEXITS_H.
11687         * modules/sysexits (Makefile.am): Substitute HAVE_SYSEXITS_H and
11688         ABSOLUTE_SYSEXITS_H into sysexits.h.
11689
11690 2007-03-25  Bruno Haible  <bruno@clisp.org>
11691
11692         * lib/getaddrinfo.c (getaddrinfo): Don't access hints->ai_flags when
11693         hints is NULL.
11694
11695 2007-03-25  Bruno Haible  <bruno@clisp.org>
11696
11697         * lib/uniconv/u8-conv-from-enc.c (u8_conv_from_encoding): Add a cast.
11698         * lib/uniconv/u8-strconv-to-enc.c (u8_strconv_to_encoding): Likewise.
11699
11700 2007-03-25  Bruno Haible  <bruno@clisp.org>
11701
11702         * lib/vasnprintf.c: Include langinfo.h.
11703         (VASNPRINTF): Prefer nl_langinfo over localeconv, since it's more
11704         multithread-safe.
11705         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF_DIRECTIVE_A): New macro.
11706         * m4/fprintf-posix.m4 (gl_FUNC_FPRINTF_POSIX): Invoke it.
11707         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Likewise.
11708         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
11709         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
11710         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
11711         * m4/vfprintf-posix.m4 (gl_FUNC_VFPRINTF_POSIX): Likewise.
11712         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX: Likewise.
11713         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
11714         Reported by Simon Josefsson.
11715
11716 2007-03-25  Bruno Haible  <bruno@clisp.org>
11717
11718         * lib/printf-parse.c [!IN_LIBINTL]: Include <stdint.h>, for intmax_t.
11719         (PRINTF_PARSE): Make the support for size specifier 'j' unconditional.
11720         * modules/vasnprintf (Depends-on): Add stdint.
11721
11722 2007-03-25  Bruno Haible  <bruno@clisp.org>
11723
11724         * modules/fpieee: New file.
11725         * m4/fpieee.m4: New file.
11726         * modules/isnan-nolibm (Depends-on): Add fpieee.
11727         * modules/isnanl-nolibm (Depends-on): Add fpieee.
11728         * modules/isnanl (Depends-on): Add fpieee.
11729
11730 2007-03-25  Bruno Haible  <bruno@clisp.org>
11731
11732         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): Test also finite numbers.
11733
11734 2007-03-25  Bruno Haible  <bruno@clisp.org>
11735
11736         Avoid test failures on IRIX 6.5.
11737         * tests/test-frexpl.c (MIN_NORMAL_EXP): New macro.
11738         (main): Use it.
11739         * tests/test-printf-frexpl.c (MIN_NORMAL_EXP, MIN_SUBNORMAL_EXP): New
11740         macros.
11741         (main): Use them.
11742
11743 2007-03-25  Bruno Haible  <bruno@clisp.org>
11744
11745         * m4/frexpl.m4 (gl_FUNC_FREXPL_WORKS): New macro.
11746         (gl_FUNC_FREXPL): Invoke it. Set REPLACE_FREXPL to 1 if it frexpl
11747         exists but doesn't work.
11748         * lib/math_.h (frexpl): Define as a replacement macro if REPLACE_FREXPL
11749         is set. Don't provide a prototype if REPLACE_FREXPL is not set.
11750         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize REPLACE_FREXPL.
11751         * modules/math (Makefile.am) Substibute also REPLACE_FREXPL into math.h.
11752
11753 2007-03-25  Bruno Haible  <bruno@clisp.org>
11754
11755         * m4/frexp.m4 (gl_FUNC_FREXP_WORKS): Add check whether frexp(inf)
11756         returns inf. Needed on IRIX 6.5.
11757
11758 2007-03-25  Bruno Haible  <bruno@clisp.org>
11759
11760         * tests/test-frexpl.c: Include isnanl-nolibm.h.
11761         (main): Use isnanl instead of x != x idiom.
11762         * modules/frexpl-tests (Depends-on): Add isnanl-nolibm.
11763
11764         * tests/test-frexp.c: Include isnan.h.
11765         (main): Use isnan instead of x != x idiom.
11766         * modules/frexp-tests (Depends-on): Add isnan-nolibm.
11767
11768 2007-03-25  Bruno Haible  <bruno@clisp.org>
11769
11770         * tests/test-frexp.c (NaN): New function/macro.
11771         (main): Use it instead of 0.0 / 0.0.
11772         * tests/test-isnan.c (NaN): New function/macro.
11773         (main): Use it instead of 0.0 / 0.0.
11774         * tests/test-vasnprintf-posix.c (NaN): New function/macro.
11775         (test_function): Use it instead of 0.0 / 0.0.
11776         * tests/test-vasprintf-posix.c (NaN): New function/macro.
11777         (test_function): Use it instead of 0.0 / 0.0.
11778         * tests/test-snprintf-posix.h (NaN): New function/macro.
11779         (test_function): Use it instead of 0.0 / 0.0.
11780         * tests/test-sprintf-posix.h (NaN): New function/macro.
11781         (test_function): Use it instead of 0.0 / 0.0.
11782         * tests/test-fprintf-posix.h (NaN): New function/macro.
11783         (test_function): Use it instead of 0.0 / 0.0.
11784         * tests/test-printf-posix.h (NaN): New function/macro.
11785         (test_function): Use it instead of 0.0 / 0.0.
11786
11787         * lib/isnan.c (FUNC): Work around a DEC C compiler bug.
11788
11789 2007-03-25  Bruno Haible  <bruno@clisp.org>
11790
11791         * lib/glob_.h: Include <sys/stat.h>. Avoids warnings on AIX 5.1.
11792
11793 2007-03-25  Bruno Haible  <bruno@clisp.org>
11794
11795         * lib/regexec.c (merge_state_with_log): Make static.
11796
11797 2007-03-25  Bruno Haible  <bruno@clisp.org>
11798
11799         * lib/trigl.c (kernel_rem_pio2): Make static.
11800
11801 2007-03-25  Bruno Haible  <bruno@clisp.org>
11802
11803         * lib/sincosl.c (sincosl_table): Make static.
11804
11805 2007-03-25  Bruno Haible  <bruno@clisp.org>
11806
11807         * lib/argp.h (__restrict): Define to empty, rather than to 'restrict',
11808         if the compiler does not support C99.
11809
11810 2007-03-25  Bruno Haible  <bruno@clisp.org>
11811
11812         * modules/time (Makefile.am): Ensure all rule action lines start with a
11813         tab.
11814
11815 2007-03-24  Bruno Haible  <bruno@clisp.org>
11816
11817         * modules/tsearch-tests: New file.
11818         * tests/test-tsearch.sh: New file.
11819         * tests/test-tsearch.c: New file, mostly copied from glibc.
11820
11821         * modules/search-tests: New file.
11822         * tests/test-search.c: New file.
11823
11824         * modules/search: New file.
11825         * lib/search_.h: New file, incorporating lib/tsearch.h.
11826         * m4/search_h.m4: New file.
11827         * lib/tsearch.h: Remove file.
11828         * lib/tsearch.c: Include search.h instead of tsearch.h.
11829         * m4/tsearch.m4 (gl_FUNC_TSEARCH): Require gl_SEARCH_H_DEFAULTS. Set
11830         HAVE_TSEARCH.
11831         * modules/tsearch (Files): Remove lib/tsearch.h.
11832         (Depends-on): Add search.
11833         (configure.ac): Invoke gl_SEARCH_MODULE_INDICATOR.
11834         (Include): Change tsearch.h into search.h.
11835
11836 2007-03-24  Bruno Haible  <bruno@clisp.org>
11837
11838         * modules/fpucw: New file.
11839         * lib/fpucw.h: New file.
11840         * lib/frexp.c: Include fpucw.h.
11841         (DECL_ROUNDING, BEGIN_ROUNDING, END_ROUNDING): New macros.
11842         (FUNC): Use them.
11843         * lib/printf-frexp.c: Include fpucw.h.
11844         (DECL_ROUNDING, BEGIN_ROUNDING, END_ROUNDING): New macros.
11845         (FUNC): Use them.
11846         * lib/vasnprintf.c: Include fpucw.h.
11847         (VASNPRINTF): Invoke BEGIN/END_LONG_DOUBLE_ROUNDING around the
11848         'long double' calculations.
11849         * tests/test-frexpl.c: Include fpucw.h.
11850         (main): Invoke BEGIN_LONG_DOUBLE_ROUNDING.
11851         * tests/test-printf-frexpl.c: Include fpucw.h.
11852         (main): Invoke BEGIN_LONG_DOUBLE_ROUNDING.
11853         * modules/frexpl (Depends-on): Add fpucw.
11854         * modules/printf-frexpl (Depends-on): Likewise.
11855         * modules/fprintf-posix (Depends-on): Likewise.
11856         * modules/snprintf-posix (Depends-on): Likewise.
11857         * modules/sprintf-posix (Depends-on): Likewise.
11858         * modules/vasnprintf-posix (Depends-on): Likewise.
11859         * modules/vasprintf-posix (Depends-on): Likewise.
11860         * modules/vfprintf-posix (Depends-on): Likewise.
11861         * modules/vsnprintf-posix (Depends-on): Likewise.
11862         * modules/vsprintf-posix (Depends-on): Likewise.
11863         * modules/frexpl-tests (Depends-on): Likewise.
11864         * modules/printf-frexpl-tests (Depends-on): Likewise.
11865
11866 2007-03-24  Bruno Haible  <bruno@clisp.org>
11867
11868         * lib/float+.h: New file.
11869         * lib/isnan.c: Include float+.h.
11870         (SIZE): New macro.
11871         (FUNC): Compare only SIZE bytes of the value.
11872         * lib/vasnprintf.c: Include float+.h.
11873         (VASNPRINTF): When comparing agains +0.0L or +0.0, compare only
11874         SIZEOF_LDBL or SIZEOF_DBL bytes.
11875         * modules/isnan-nolibm (Files): Add lib/float+.h.
11876         * modules/isnanl-nolibm (Files): Add lib/float+.h.
11877         * modules/isnanl (Files): Add lib/float+.h.
11878         * modules/vasnprintf (Files): Add lib/float+.h.
11879
11880 2007-03-24  Bruno Haible  <bruno@clisp.org>
11881
11882         * lib/vasnprintf.c [!HAVE_LONG_DOUBLE]: Include printf-frexp.h. Don't
11883         include isnanl-nolibm.h.
11884
11885 2007-03-24  Bruno Haible  <bruno@clisp.org>
11886
11887         * tests/test-read-file.c (main): Don't produce spurious output for
11888         expected situations. Make the test fail if it encountered unexpected
11889         results.
11890
11891 2007-03-24  Bruno Haible  <bruno@clisp.org>
11892
11893         * m4/locale-fr.m4 (gt_LOCALE_FR): Remove the special-casing of NetBSD,
11894         since its fr_FR.ISO8859-1 locale wouldn't pass the tests.
11895
11896 2007-03-24  Bruno Haible  <bruno@clisp.org>
11897
11898         * m4/locale-fr.m4 (gt_LOCALE_FR, gt_LOCALE_FR_UTF8): Fix last change.
11899
11900 2007-03-24  Bruno Haible  <bruno@clisp.org>
11901
11902         * modules/unistr/base (Depends-on): Remove utf8-ucs4-unsafe,
11903         utf16-ucs4-unsafe, utf8-ucs4, utf16-ucs4, ucs4-utf8, ucs4-utf16.
11904
11905         * modules/unistr/u8-mbtouc: Add source files from module utf8-ucs4.
11906         * modules/utf8-ucs4: Turn into a symbolic link to module
11907         unistr/u8-mbtouc.
11908
11909         * modules/unistr/u8-mbtouc-unsafe: Add source files from module
11910         utf8-ucs4-unsafe.
11911         * modules/utf8-ucs4-unsafe: Turn into a symbolic link to module
11912         unistr/u8-mbtouc-unsafe.
11913
11914         * modules/unistr/u16-mbtouc: Add source files from module utf16-ucs4.
11915         * modules/utf16-ucs4: Turn into a symbolic link to module
11916         unistr/u16-mbtouc.
11917
11918         * modules/unistr/u16-mbtouc-unsafe: Add source files from module
11919         utf16-ucs4-unsafe.
11920         * modules/utf16-ucs4-unsafe: Turn into a symbolic link to module
11921         unistr/u16-mbtouc-unsafe.
11922
11923         * modules/unistr/u8-uctomb: Add source files from module utf4-utf8.
11924         * modules/ucs4-utf8: Turn into a symbolic link to module
11925         unistr/u8-ubtomb.
11926
11927         * modules/unistr/u16-uctomb: Add source files from module utf4-utf16.
11928         * modules/ucs4-utf16: Turn into a symbolic link to module
11929         unistr/u16-ubtomb.
11930
11931 2007-03-24  Bruno Haible  <bruno@clisp.org>
11932
11933         * lib/unistr/u8-mbtouc-aux.c: Renamed from lib/unistr/utf8-ucs4.c.
11934         Enable the function only if HAVE_INLINE.
11935         * lib/unistr/u8-mbtouc-unsafe-aux.c: Renamed from
11936         lib/unistr/utf8-ucs4-unsafe.c. Enable the function only if HAVE_INLINE.
11937         * lib/unistr/u16-mbtouc-aux.c: Renamed from lib/unistr/utf16-ucs4.c.
11938         Enable the function only if HAVE_INLINE.
11939         * lib/unistr/u16-mbtouc-unsafe-aux.c: Renamed from
11940         lib/unistr/utf16-ucs4-unsafe.c. Enable the function only if HAVE_INLINE.
11941         * lib/unistr/u8-uctomb-aux.c: Renamed from lib/unistr/ucs4-utf8.c.
11942         Enable the function only if HAVE_INLINE.
11943         * lib/unistr/u16-uctomb-aux.c: Renamed from lib/unistr/ucs4-utf16.c.
11944         Enable the function only if HAVE_INLINE.
11945         * modules/utf8-ucs4: Update.
11946         * modules/utf8-ucs4-unsafe: Update.
11947         * modules/utf16-ucs4: Update.
11948         * modules/utf16-ucs4-unsafe: Update.
11949         * modules/ucs4-utf8: Update.
11950         * modules/ucs4-utf16: Update.
11951
11952 2007-03-24  Bruno Haible  <bruno@clisp.org>
11953
11954         * lib/utf8-ucs4.h: Remove file.
11955         * lib/utf8-ucs4-unsafe.h: Remove file.
11956         * lib/utf16-ucs4.h: Remove file.
11957         * lib/utf16-ucs4-unsafe.h: Remove file.
11958         * lib/ucs4-utf8.h: Remove file.
11959         * lib/ucs4-utf16.h: Remove file.
11960         * lib/unistr.h: Include their previous contents.
11961         * m4/utf-ucs4.m4: Remove file.
11962         * m4/ucs4-utf.m4: Remove file.
11963         * modules/utf8-ucs4 (Files): Remove lib/utf8-ucs4.h.
11964         (Depends-on): Add unistr/base.
11965         (configure.ac): Remove gl_UTF_UCS4.
11966         (Makefile.am): Update.
11967         (Include): Change to unistr.h.
11968         * modules/utf8-ucs4-unsafe (Files): Remove lib/utf8-ucs4-unsafe.h.
11969         (Depends-on): Add unistr/base.
11970         (configure.ac): Remove gl_UTF_UCS4.
11971         (Makefile.am): Update.
11972         (Include): Change to unistr.h.
11973         * modules/utf16-ucs4 (Files): Remove lib/utf16-ucs4.h.
11974         (Depends-on): Add unistr/base.
11975         (configure.ac): Remove gl_UTF_UCS4.
11976         (Makefile.am): Update.
11977         (Include): Change to unistr.h.
11978         * modules/utf16-ucs4-unsafe (Files): Remove lib/utf16-ucs4-unsafe.h.
11979         (Depends-on): Add unistr/base.
11980         (configure.ac): Remove gl_UTF_UCS4.
11981         (Makefile.am): Update.
11982         (Include): Change to unistr.h.
11983         * modules/ucs4-utf8 (Files): Remove lib/ucs4-utf8.h.
11984         (Depends-on): Add unistr/base.
11985         (configure.ac): Remove gl_UCS4_UTF.
11986         (Makefile.am): Update.
11987         (Include): Change to unistr.h.
11988         * modules/ucs4-utf16 (Files): Remove lib/ucs4-utf16.h.
11989         (Depends-on): Add unistr/base.
11990         (configure.ac): Remove gl_UCS4_UTF.
11991         (Makefile.am): Update.
11992         (Include): Change to unistr.h.
11993         * lib/unistr/utf8-ucs4.c: Include unistr.h instead of utf8-ucs4.h.
11994         * lib/unistr/utf8-ucs4-unsafe.c: Include unistr.h instead of
11995         utf8-ucs4-unsafe.h.
11996         * lib/unistr/utf16-ucs4.c: Include unistr.h instead of utf16-ucs4.h.
11997         * lib/unistr/utf16-ucs4-unsafe.c: Include unistr.h instead of
11998         utf16-ucs4-unsafe.h.
11999         * lib/unistr/ucs4-utf8.c: Include unistr.h instead of ucs4-utf8.h.
12000         * lib/unistr/ucs4-utf16.c: Include unistr.h instead of ucs4-utf16.h.
12001         * lib/unistr/u8-chr.c: Don't include ucs4-utf8.h.
12002         * lib/unistr/u8-strchr.c: Likewise.
12003         * lib/unistr/u8-strrchr.c: Likewise.
12004         * lib/unistr/u16-chr.c: Don't include ucs4-utf16.h.
12005         * lib/unistr/u16-strchr.c: Likewise.
12006         * lib/unistr/u16-strrchr.c: Likewise.
12007         * lib/striconveh.c: Update.
12008         * lib/linebreak.c: Update.
12009
12010 2007-03-24  Bruno Haible  <bruno@clisp.org>
12011
12012         * lib/argp-help.c (fill_in_uparams, canon_doc_option): Cast the
12013         arguments of isspace, isalpha, isalnum, isdigit to 'unsigned char'.
12014
12015 2007-03-22  Bruno Haible  <bruno@clisp.org>
12016
12017         * lib/strptime.c (__strptime_internal): Use ANSI C syntax.
12018
12019 2007-03-23  Paul Eggert  <eggert@cs.ucla.edu>
12020
12021         * MODULES.html.sh (File system functions): New module write-any-file.
12022         * modules/write-any-file, lib/write-any-file.c, lib/write-any-file.h:
12023         * m4/write-any-file.m4: New files.
12024
12025 2007-03-23  Eric Blake  <ebb9@byu.net>
12026
12027         * gnulib-tool: Rearrange space-tab sequences, since some editors
12028         like to eat them.
12029
12030 2007-03-23  Eric Blake  <ebb9@byu.net>
12031
12032         * lib/version-etc.c (version_etc_va): Update license wording to
12033         be more concise.  Recommended by Richard Stallman.
12034
12035 2007-03-22  Bruno Haible  <bruno@clisp.org>
12036
12037         * lib/poll.c (MSG_PEEK): New fallback definition.
12038
12039 2007-03-22  Bruno Haible  <bruno@clisp.org>
12040
12041         * modules/sys_socket-tests (configure.ac): Check for shutdown function.
12042         * tests/test-sys_socket.c (a): Test only if shutdown() exists.
12043         (main): Update.
12044         Fixes a compilation error on BeOS.
12045
12046 2007-03-22  Bruno Haible  <bruno@clisp.org>
12047
12048         * modules/frexpl-tests: New file.
12049         * tests/test-frexpl.c: New file.
12050
12051         * modules/frexpl: New file.
12052         * m4/frexpl.m4: New file.
12053         * modules/math (Makefile.am): Also substitute GNULIB_FREXPL into math.h.
12054         * lib/math_.h (frexpl): Test GNULIB_FREXPL instead of GNULIB_MATHL.
12055         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Initialize GNULIB_FREXPL.
12056         * modules/mathl (Files): Remove lib/frexpl.c, lib/frexp.c.
12057         (Depends-on): Add frexpl. Remove isnanl-nolibm.
12058         * m4/mathl.m4 (gl_FUNC_LONG_DOUBLE_MATH): Don't test for frexpl.
12059
12060 2007-03-22  Bruno Haible  <bruno@clisp.org>
12061
12062         * lib/frexpl.c: Share code with lib/frexp.c.
12063         * modules/mathl (Files): Add lib/frexp.c.
12064         (Depends-on): Add isnanl-nolibm.
12065
12066 2007-03-22  Bruno Haible  <bruno@clisp.org>
12067
12068         * modules/printf-frexp (Files): Add m4/frexp.m4.
12069         * m4/printf-frexp.m4 (gl_FUNC_PRINTF_FREXP): Define HAVE_FREXP_IN_LIBC
12070         only if the found frexp function actually works.
12071
12072 2007-03-22  Bruno Haible  <bruno@clisp.org>
12073
12074         * lib/frexp.c: Remove older implementation that uses divisions.
12075
12076 2007-03-21  Bruno Haible  <bruno@clisp.org>
12077
12078         * modules/frexp-tests: New file.
12079         * tests/test-frexp.c: New file.
12080
12081         * modules/frexp: New file.
12082         * lib/frexp.c: New file.
12083         * m4/frexp.m4: New file.
12084         * lib/math_.h (frexp): New declaration.
12085         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Also initialize GNULIB_FREXP and
12086         REPLACE_FREXP.
12087         * modules/math (math.h): Also substitute GNULIB_FREXP, REPLACE_FREXP.
12088
12089 2007-03-21  Bruno Haible  <bruno@clisp.org>
12090
12091         * modules/isnanl-tests: New file.
12092         * tests/test-isnanl.c: New file.
12093
12094         * modules/isnanl: New file.
12095         * lib/isnanl.h: New file.
12096         * m4/isnanl.m4 (gl_FUNC_ISNANL): New macro.
12097         (gl_FUNC_ISNANL_NO_LIBM): Invoke gl_HAVE_ISNANL_NO_LIBM,
12098         gl_FUNC_ISNANL_WORKS.
12099         (gl_HAVE_ISNANL_NO_LIBM, gl_HAVE_ISNANL_IN_LIBM, gl_FUNC_ISNANL_WORKS):
12100         New macros.
12101
12102 2007-03-21  Bruno Haible  <bruno@clisp.org>
12103
12104         * modules/isnanl-nolibm (Files): Add lib/isnanl-nolibm.h, remove
12105         lib/isnanl.h.
12106         (Include): Update.
12107         * lib/isnanl-nolibm.h: Renamed from lib/isnanl.h.
12108         * lib/vasnprintf.c: Update.
12109         * modules/isnanl-nolibm-tests (Files): Add tests/test-isnanl-nolibm.c,
12110         tests/test-isnanl.h, remove tests/test-isnanl.c.
12111         (Makefile.am): Update.
12112         * tests/test-isnanl-nolibm.c: New file.
12113         * tests/test-isnanl.h: New file.
12114         * tests/test-isnanl.c: Remove file.
12115
12116 2007-03-21  Jim Meyering  <jim@meyering.net>
12117
12118         When trying to open ".", treat ESTALE like EACCES.
12119         * lib/savewd.c (savewd_save): Resort to forking not just upon
12120         failure with EACCES, but also when errno is ESTALE.
12121
12122 2007-03-20  Bruno Haible  <bruno@clisp.org>
12123
12124         * lib/string_.h (strndup): Enable declaration also if HAVE_STRNDUP.
12125         Needed on AIX 5.1. Reported by Matthew Woehlke.
12126
12127 2007-03-19  Paul Eggert  <eggert@cs.ucla.edu>
12128
12129         Suggestions by Bruno Haible:
12130         * lib/acl-internal.h: Include "gettext.h" rather than rolling
12131         our own.
12132         (ACL_NOT_WELL_SUPPORTED): Parenthesize arg when used.
12133         * modules/acl (Depends-on): Add gettext.
12134
12135 2007-03-19  Bruno Haible  <bruno@clisp.org>
12136
12137         * modules/iconvme: Remove file.
12138         * lib/iconvme.h: Remove file.
12139         * lib/iconvme.c: Remove file.
12140         * m4/iconvme.m4: Remove file.
12141
12142 2007-03-19  Bruno Haible  <bruno@clisp.org>
12143
12144         * doc/relocatable-maint.texi: Break long shell script line.
12145         Suggested by Thien-Thi Nguyen <ttn@gnuvola.org>.
12146
12147 2007-03-19  Paul Eggert  <eggert@cs.ucla.edu>
12148
12149         Add limited support for Solaris 10 ZFS-style ACLs: just enough to
12150         handle file_has_acl.
12151         * lib/acl-internal.h, lib/acl_entries.c, lib/file-has-acl.c: New files.
12152         * lib/acl.c: Move header inclusions and related macro defns into
12153         lib/acl-internal.h.
12154         (S_ISLNK): Remove defn, since that's now done for us.
12155         (file_has_acl): Move to lib/file-has-acl.c.
12156         Call acl_trivial if available.  This is the crucial part of the fix.
12157         (acl_entries): Move to lib/acl_entries.c.  Now extern, since it's
12158         shared within the library.  Rewrite a bit, partly to make it compatible
12159         with the GNU coding style.
12160         * m4/acl.m4 (AC_FUNC_ACL): Add AC_LIBOBJ([file-has-acl]).
12161         Remove unnecessary double-quotes.
12162         Don't test for acl_to_text; the build will catch that.
12163         Replace acl_entries if it doesn't exist and it is needed.
12164         Check for -lsec and acl_trivial (as used on Solaris 10).
12165         * modules/acl (Files): Add lib/acl-internal.h, lib/acl_entries.c,
12166         lib/file-has-acl.c.
12167         (Depends-on): Add sys_stat, for S_ISLNK.
12168
12169 2007-03-19  Ben Pfaff  <blp@gnu.org>
12170
12171         * doc/gnulib.texi: Fix typos.
12172         Suggested by Thien-Thi Nguyen <ttn@gnuvola.org>.
12173
12174 2007-03-19  Paul Eggert  <eggert@cs.ucla.edu>
12175
12176         * lib/getcwd.c (__getcwd): Remove redundant comparison of buf to NULL.
12177         If size is zero here, buf must be zero.
12178
12179 2007-03-19  Simon Josefsson  <simon@josefsson.org>
12180
12181         * des.c: Remove weak_keys_chksum.  Reported by Bruno Haible
12182         <bruno@clisp.org>.
12183
12184 2007-03-18  Bruno Haible  <bruno@clisp.org>
12185
12186         * lib/vasnprintf.c (VASNPRINTF): Undo first part of last patch.
12187         Suggested by Eric Blake.
12188
12189 2007-03-18  Ben Pfaff  <blp@gnu.org>
12190
12191         * doc/relocatable.texi: Recommend using as prefix a directory
12192         that does not exist and will never be created.  Based on
12193         discussion with Bruno Haible, Ralf Wildenhues, Matthew Woehlke,
12194         and others.
12195
12196 2007-03-17  Bruno Haible  <bruno@clisp.org>
12197
12198         * lib/fchownat.c: Include lchown.h.
12199
12200 2007-03-17  Bruno Haible  <bruno@clisp.org>
12201
12202         Fix endless loop when the given allocated size was > INT_MAX.
12203         * lib/vasnprintf.c (EOVERFLOW): New fallback definition.
12204         (VASNPRINTF): Fail with EOVERFLOW when the given allocated size is
12205         larger than INT_MAX, or when it grow to a value larger than INT_MAX.
12206         * lib/vsprintf.c (vsprintf): Don't pass a size > INT_MAX to vasnprintf.
12207         * lib/sprintf.c (sprintf): Likewise.
12208
12209 2007-03-17  Bruno Haible  <bruno@clisp.org>
12210
12211         * tests/test-argp-2.sh (func_compare): Output a context diff.
12212
12213 2007-03-17  Bruno Haible  <bruno@clisp.org>
12214
12215         * m4/locale-fr.m4 (gt_LOCALE_FR, gt_LOCALE_FR_UTF8): Check also the
12216         locale's decimal-point character.
12217
12218 2007-03-17  Bruno Haible  <bruno@clisp.org>
12219
12220         * lib/vasnprintf.c (VASNPRINTF): Clear out the memory used for arg_mem
12221         before comparing it. Needed because on some platforms (e.g. x86) a
12222         'long double' occupies less bytes than sizeof (long double).
12223
12224 2007-03-17  Bruno Haible  <bruno@clisp.org>
12225
12226         * tests/test-crc.c (main): Make printf statements 64-bit clean.
12227         * tests/test-gc-pbkdf2-sha1.c (main): Likewise.
12228         * tests/test-getaddrinfo.c (simple): Likewise.
12229         * tests/test-read-file.c (main): Likewise.
12230
12231 2007-03-17  Bruno Haible  <bruno@clisp.org>
12232
12233         * tests/test-dirname.c (main): Make printf statements 64-bit clean.
12234
12235 2007-03-17  Bruno Haible  <bruno@clisp.org>
12236
12237         * tests/test-xvasprintf.c (test_xvasprintf, test_xasprintf): Remove
12238         unused variable.
12239
12240 2007-03-17  Bruno Haible  <bruno@clisp.org>
12241
12242         * tests/test-c-strcasecmp.c: Include c-strcase.h.
12243         * tests/test-c-strncasecmp.c: Likewise.
12244
12245 2007-03-17  Bruno Haible  <bruno@clisp.org>
12246
12247         * modules/stdlib (Depends-on): Add unistd.
12248         * lib/stdlib_.h: Include <unistd.h> if mkstemp is desired.
12249         Needed for MacOS X 10.3.
12250
12251 2007-03-17  Bruno Haible  <bruno@clisp.org>
12252
12253         * lib/unistr/u-strdup.h: Include <stdlib.h>.
12254
12255 2007-03-17  Bruno Haible  <bruno@clisp.org>
12256
12257         * lib/unistr/u-cpy-alloc.h: Include <stdlib.h>.
12258
12259 2007-03-17  Bruno Haible  <bruno@clisp.org>
12260
12261         * gnulib-tool (func_import): Update .cvsignore and .gitignore files
12262         to reflect files copied from gnulib (with or without modifications).
12263         Suggested by Jim Meyering.
12264
12265 2007-03-17  Eric Blake  <ebb9@byu.net>
12266
12267         * NEWS: Document stdlib change from 2007-02-18.
12268
12269 2007-03-17  Jim Meyering  <jim@meyering.net>
12270
12271         Detect use of AC_CONFIG_AUX_DIR also when its argument is quoted.
12272         * build-aux/bootstrap: Put ""s around use of $build_aux, in case
12273         someone uses a name containing shell meta-characters.
12274         Reported by Alfred M. Szmidt.
12275
12276         * build-aux/bootstrap: Don't use \> in grep regexp.  For HP-UX.
12277
12278 2007-03-16  Alfred M. Szmidt  <ams@gnu.org>
12279
12280         * build-aux/bootstrap (with_gettext): New variable.  Run autopoint
12281         and copy gettext configuration files only if configure.ac contains
12282         a use of AM_GNU_GETTEXT_VERSION.
12283
12284 2007-03-16  Alfred M. Szmidt  <ams@gnu.org>
12285
12286         * build-aux/bootstrap (gnulib_name): New variable.
12287         (gnulib_tool_options): Use it.
12288
12289 2007-03-13  Simon Josefsson  <simon@josefsson.org>
12290
12291         * tests/test-des.c: Use new namespace.
12292
12293 2007-03-15  Bruno Haible  <bruno@clisp.org>
12294
12295         * lib/dummy.c (gl_dummy_symbol): Renamed from 'dummy'.
12296         Reported by James Youngman <jay@gnu.org>.
12297
12298 2007-03-15  Bruno Haible  <bruno@clisp.org>
12299
12300         * lib/glob.c (glob): Add 'restrict' so that prototype matches the
12301         declared prototype. Needed with cc on OSF/1 5.1.
12302
12303 2007-03-15  Bruno Haible  <bruno@clisp.org>
12304
12305         * lib/gl_list.h (gl_listelement_dispose_fn): New type.
12306         (gl_list_create_empty, gl_list_create): Add dispose_fn argument.
12307         (struct gl_list_implementation): Add dispose_fn argument to the
12308         'create_empty', 'create' methods.
12309         (struct gl_list_impl_base): Add field 'dispose_fn'.
12310         * lib/gl_list.c (gl_list_create_empty, gl_list_create): Add dispose_fn
12311         argument.
12312         * lib/gl_array_list.c (gl_array_create_empty, gl_array_create): Add
12313         dispose_fn argument.
12314         (gl_array_remove_node, gl_array_remove_at, gl_array_list_free): Call
12315         dispose_fn on the dropped values.
12316         * lib/gl_carray_list.c (gl_carray_create_empty, gl_carray_create): Add
12317         dispose_fn argument.
12318         (gl_carray_remove_at, gl_carray_list_free): Call dispose_fn on the
12319         dropped values.
12320         * lib/gl_anyavltree_list2.h (gl_tree_create): Add dispose_fn argument.
12321         (gl_tree_remove_node): Call dispose_fn on the dropped value.
12322         * lib/gl_anyrbtree_list2.h (gl_tree_create): Add dispose_fn argument.
12323         (gl_tree_remove_node): Call dispose_fn on the dropped value.
12324         * lib/gl_anytree_list2.h (gl_tree_create_empty): Add dispose_fn
12325         argument.
12326         (gl_tree_list_free): Call dispose_fn on the dropped values.
12327         * lib/gl_anytreehash_list2.h (gl_tree_list_free): Call dispose_fn on
12328         the dropped values.
12329         * lib/gl_anylinked_list2.h (gl_linked_create_empty, gl_linked_create):
12330         Add dispose_fn argument.
12331         (gl_linked_remove_node, gl_linked_remove_at, gl_linked_list_free):
12332         Call dispose_fn on the dropped values.
12333         * lib/gl_sublist.c (gl_sublist_create_empty, gl_sublist_create_fill):
12334         Add dispose_fn argument.
12335         (gl_sublist_create): Initialize the 'dispose_fn' field.
12336         * lib/clean-temp.c (create_temp_dir, register_fd): Update.
12337         * tests/test-array_list.c (main): Update.
12338         * tests/test-carray_list.c (main): Update.
12339         * tests/test-avltree_list.c (main): Update.
12340         * tests/test-rbtree_list.c (main): Update.
12341         * tests/test-avltreehash_list.c (main): Update.
12342         * tests/test-rbtreehash_list.c (main): Update.
12343         * tests/test-linked_list.c (main): Update.
12344         * tests/test-linkedhash_list.c (main): Update.
12345         * tests/test-array_oset.c (main): Update.
12346
12347 2007-03-15  Bruno Haible  <bruno@clisp.org>
12348
12349         * lib/gl_oset.h (gl_setelement_dispose_fn): New type.
12350         (gl_oset_create_empty): Add dispose_fn argument.
12351         (struct gl_oset_implementation): Add dispose_fn argument to
12352         'create_empty' method.
12353         (struct gl_oset_impl_base): Add dispose_fn field.
12354         * lib/gl_oset.c (gl_oset_create_empty): Add dispose_fn argument.
12355         * lib/gl_array_oset.c (gl_array_create_empty): Add dispose_fn argument.
12356         (gl_array_remove_at, gl_array_free): Call dispose_fn on the dropped
12357         values.
12358         * lib/gl_anytree_oset.h (gl_tree_create_empty): Add dispose_fn argument.
12359         (gl_tree_oset_free): Call dispose_fn on the dropped values.
12360         * lib/gl_avltree_oset.c (gl_tree_remove_node): Call dispose_fn on the
12361         dropped value.
12362         * lib/gl_rbtree_oset.c (gl_tree_remove_node): Call dispose_fn on the
12363         dropped value.
12364         * tests/test-array_oset.c (main): Update.
12365         * tests/test-avltree_oset.c (main): Update.
12366         * tests/test-rbtree_oset.c (main): Update.
12367         * lib/gl_anytreehash_list1.h (add_to_bucket): Update.
12368
12369 2007-03-13  Bruno Haible  <bruno@clisp.org>
12370
12371         * tests/test-stdbool.c (i): Update after last patch.
12372
12373 2007-03-12  Bruno Haible  <bruno@clisp.org>
12374
12375         * lib/quotearg.c: Include <wctype.h> early, before the definition of
12376         the iswprint macro. Needed on Solaris 2.5.1.
12377
12378 2007-03-12  Bruno Haible  <bruno@clisp.org>
12379
12380         * tests/test-printf-frexp.c (main): Declare x as volatile.
12381
12382 2007-03-12  Simon Josefsson  <simon@josefsson.org>
12383
12384         * doc/gnulib.texi (Build robot for gnulib): New section.
12385
12386 2007-03-12  Jim Meyering  <jim@meyering.net>
12387
12388         * build-aux/bootstrap: New file.
12389         * build-aux/bootstrap.conf: New file, from coreutils.
12390
12391 2007-03-11  Bruno Haible  <bruno@clisp.org>
12392
12393         * m4/cycle-check.m4 (gl_CYCLE_CHECK): Require AC_C_INLINE.
12394
12395 2007-03-12  Simon Josefsson  <simon@josefsson.org>
12396
12397         * lib/des.h, lib/des.c, lib/gc-gnulib.c: Use gl_ namespace, to
12398         avoid collisions with 'des_setkey'.  Reported by Bruno Haible
12399         <bruno@clisp.org>.  Also change 'tripledes_' to '3des_'.
12400
12401 2007-03-11  Bruno Haible  <bruno@clisp.org>
12402
12403         * m4/locale-tr.m4 (gt_LOCALE_TR_UTF8): If the test program fails to
12404         compile, set LOCALE_TR_UTF8 to 'none' instead of empty.
12405
12406 2007-03-11  Bruno Haible  <bruno@clisp.org>
12407
12408         * lib/stdint_.h (INT64_MIN, INTMAX_MIN): Avoid using the ~INT..._MAX
12409         formula. Needed for SunPRO C 5.0.
12410
12411 2007-03-11  Bruno Haible  <bruno@clisp.org>
12412
12413         * modules/long-options (Depends-on): Add getopt.
12414
12415 2007-03-11  Bruno Haible  <bruno@clisp.org>
12416
12417         * modules/modechange (Depends-on): Add stdbool.
12418
12419 2007-03-11  Bruno Haible  <bruno@clisp.org>
12420
12421         * modules/i-ring (Depends-on): Add stdbool.
12422
12423 2007-03-11  Bruno Haible  <bruno@clisp.org>
12424
12425         * modules/gc-des (Depends-on): Add stdbool.
12426
12427 2007-03-11  Bruno Haible  <bruno@clisp.org>
12428
12429         * m4/mktime.m4 (gl_PREREQ_MKTIME): Require AC_C_INLINE.
12430
12431 2007-03-11  Bruno Haible  <bruno@clisp.org>
12432
12433         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY): Require AC_C_RESTRICT.
12434
12435 2007-03-11  Bruno Haible  <bruno@clisp.org>
12436
12437         * lib/unistr/u32-mbtouc-unsafe.c (u32_mbtouc_unsafe): Fix syntax error.
12438
12439 2007-03-11  Bruno Haible  <bruno@clisp.org>
12440
12441         * lib/vasnprintf.c (sprintf): Undefine.
12442
12443 2007-03-11  Bruno Haible  <bruno@clisp.org>
12444
12445         * lib/isnan.c (rpl_isnan, rpl_isnanl): Work around bug regarding
12446         initializers in SunPRO C and Compaq C compilers.
12447
12448 2007-03-11  Bruno Haible  <bruno@clisp.org>
12449
12450         * lib/gl_array_oset.c (gl_array_iterator_next): Make pointer
12451         decrementing code ANSI C compliant.
12452
12453 2007-03-11  Bruno Haible  <bruno@clisp.org>
12454
12455         * lib/dummy.c [__sun]: Define a dummy variable, not just a typedef.
12456         Needed for Solaris 2.5.1 ranlib and SunPRO C 5.0.
12457
12458 2007-03-11  Bruno Haible  <bruno@clisp.org>
12459
12460         * tests/test-stdbool.c (s, d, e, xlcbug): Disable checks that gnulib's
12461         <stdbool.h> substitute doesn't pass.
12462
12463 2007-03-11  Bruno Haible  <bruno@clisp.org>
12464
12465         * lib/vasnprintf.c (snprintf): Undefine. Avoids an endless recursion.
12466
12467 2007-03-11  Bruno Haible  <bruno@clisp.org>
12468
12469         * gnulib-tool (func_create_megatestdir): Create also an autobuild
12470         script, for submission to autobuild.josefsson.org.
12471
12472 2007-03-10  Bruno Haible  <bruno@clisp.org>
12473
12474         * modules/canonicalize-lgpl-tests: New file.
12475         * tests/test-canonicalize-lgpl.sh: New file.
12476         * tests/test-canonicalize-lgpl.c: New file.
12477
12478         * modules/c-strcase-tests: New file.
12479         * tests/test-c-strcase.sh: New file.
12480         * tests/test-c-strcasecmp.c: New file.
12481         * tests/test-c-strncasecmp.c: New file.
12482
12483         * modules/atexit-tests: New file.
12484         * tests/test-atexit.sh: New file.
12485         * tests/test-atexit.c: New file.
12486
12487 2007-03-10  Bruno Haible  <bruno@clisp.org>
12488
12489         * tests/test-binary-io.sh: Use temporary filenames that are not so
12490         likely to clash with those of other tests (in a parallel make).
12491         * tests/test-binary-io.c: Likewise.
12492
12493 2007-03-10  Bruno Haible  <bruno@clisp.org>
12494
12495         * lib/fseterr.c (fseterr): Port to Solaris/SPARC64. Deactivate the
12496         fallback; use #error instead.
12497         Suggested by Simon Josefsson.
12498
12499 2007-03-10  Bruno Haible  <bruno@clisp.org>
12500
12501         * gnulib-tool (func_create_testdir): Treat MOSTLYCLEANFILES like
12502         CLEANFILES. Put spaces in each line of $cleaned_files, not only the
12503         first and the last.
12504
12505 2007-03-10  Bruno Haible  <bruno@clisp.org>
12506
12507         * lib/stdint_.h (uint_least64_t): Fix typo in last patch.
12508
12509 2007-03-10  Bruno Haible  <bruno@clisp.org>
12510
12511         * modules/snprintf-posix-tests (EXTRA_DIST): New variable. Needed for
12512         "make distcheck".
12513         * modules/sprintf-posix-tests (EXTRA_DIST): Likewise.
12514         * modules/vsnprintf-posix-tests (EXTRA_DIST): Likewise.
12515         * modules/vsprintf-posix-tests (EXTRA_DIST): Likewise.
12516
12517 2007-03-10  Bruno Haible  <bruno@clisp.org>
12518
12519         * modules/allocsa-tests (test_allocsa_SOURCES): Remove redundant
12520         variable.
12521         * modules/dirname-tests (test_dirname_SOURCES): Remove redundant
12522         variable.
12523
12524 2007-03-09  Eric Blake  <ebb9@byu.net>
12525         and Matthew Woehlke  <mw_triad@users.sourceforge.net>  (tiny change)
12526
12527         * lib/stdint_.h (int64_t, uint64_t): Don't undefine if 64-bit
12528         types are not being provided by gnulib.
12529         (GL_INT64_T, GL_UINT64_T): New witnesses of whether gnulib 64-bit
12530         types are supported.
12531
12532 2007-03-10  Bruno Haible  <bruno@clisp.org>
12533
12534         * lib/stdio_.h (__attribute__): New macro.
12535         (fprintf, vfprintf, printf, vprintf, snprintf, vsnprintf, sprintf,
12536         vsprintf): Specify __attribute__ __format__ for GCC.
12537         Suggested by Eric Blake.
12538
12539 2007-03-09  Bruno Haible  <bruno@clisp.org>
12540
12541         * modules/printf-posix-tests: New file.
12542         * tests/test-printf-posix.sh: New file.
12543         * tests/test-printf-posix.c: New file.
12544
12545         * modules/printf-posix: New file.
12546         * lib/printf.c: New file.
12547         * m4/printf-posix-rpl.m4: New file.
12548         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_PRINTF_POSIX,
12549         REPLACE_PRINTF.
12550         * lib/stdio_.h (printf): New declaration.
12551         (format, __format__, ____printf____, ____scanf____, ____strftime____,
12552         ____strfmon____): New macros.
12553         * modules/stdio (Makefile.am): Substitute also GNULIB_PRINTF_POSIX,
12554         REPLACE_PRINTF.
12555
12556 2007-03-09  Bruno Haible  <bruno@clisp.org>
12557
12558         * tests/test-vasnprintf-posix2.sh: New file.
12559         * tests/test-vasnprintf-posix2.c: New file.
12560         * modules/vasnprintf-posix-tests (Files): Add them and m4/locale-fr.m4.
12561         (configure.ac): Invoke gt_LOCALE_FR and gt_LOCALE_FR_UTF8.
12562         (Makefile.am): Activate test-vasnprintf-posix2.sh.
12563
12564         * lib/vasnprintf.c (VASNPRINTF): For the 'a' and 'A' directives, use
12565         a locale dependent decimal point, rather than always '.'.
12566
12567 2007-03-09  Eric Blake  <ebb9@byu.net>
12568
12569         * lib/stdlib_.h (EXIT_FAILURE): GNU code expects this to be 1, in
12570         spite of platforms like Tandem/NSK that define it to -1.
12571
12572 2007-03-08  Bruno Haible  <bruno@clisp.org>
12573
12574         * modules/vprintf-posix-tests: New file.
12575         * tests/test-vprintf-posix.sh: New file.
12576         * tests/test-vprintf-posix.c: New file.
12577         * tests/test-printf-posix.h: New file.
12578
12579         * modules/vprintf-posix: New file.
12580         * lib/vprintf.c: New file.
12581         * m4/vprintf-posix.m4: New file.
12582         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_VPRINTF_POSIX,
12583         REPLACE_VPRINTF.
12584         * lib/stdio_.h (vprintf): New declaration.
12585         * modules/stdio (Makefile.am): Substitute also GNULIB_VPRINTF_POSIX,
12586         REPLACE_VPRINTF.
12587
12588 2007-03-08  Bruno Haible  <bruno@clisp.org>
12589
12590         * modules/fprintf-posix-tests: New file.
12591         * tests/test-fprintf-posix.sh: New file.
12592         * tests/test-fprintf-posix.c: New file.
12593
12594         * modules/fprintf-posix: New file.
12595         * lib/fprintf.c: New file.
12596         * m4/fprintf-posix.m4: New file.
12597         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_FPRINTF_POSIX,
12598         REPLACE_FPRINTF.
12599         * lib/stdio_.h (fprintf): New declaration.
12600         * modules/stdio (Makefile.am): Substitute also GNULIB_FPRINTF_POSIX,
12601         REPLACE_FPRINTF.
12602
12603 2007-03-08  Bruno Haible  <bruno@clisp.org>
12604
12605         * modules/vfprintf-posix-tests: New file.
12606         * tests/test-vfprintf-posix.sh: New file.
12607         * tests/test-vfprintf-posix.c: New file.
12608         * tests/test-fprintf-posix.h: New file.
12609         * tests/test-fprintf-posix.out: New file.
12610
12611         * modules/vfprintf-posix: New file.
12612         * lib/vfprintf.c: New file.
12613         * m4/vfprintf-posix.m4: New file.
12614         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_VFPRINTF_POSIX,
12615         REPLACE_VFPRINTF.
12616         * lib/stdio_.h (vfprintf): New declaration.
12617         * modules/stdio (Makefile.am): Substitute also GNULIB_VFPRINTF_POSIX,
12618         REPLACE_VFPRINTF.
12619
12620 2007-03-08  Bruno Haible  <bruno@clisp.org>
12621
12622         * lib/stdio_.h: Treat __need___FILE like __need_FILE.
12623
12624 2007-03-08  Bruno Haible  <bruno@clisp.org>
12625
12626         * m4/snprintf-posix.m4 (gl_FUNC_SNPRINTF_POSIX): Use 'case' statements
12627         instead of 'expr' invocations.
12628         * m4/sprintf-posix.m4 (gl_FUNC_SPRINTF_POSIX): Likewise.
12629         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Likewise.
12630         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): Likewise.
12631         * m4/vsnprintf-posix.m4 (gl_FUNC_VSNPRINTF_POSIX): Likewise.
12632         * m4/vsprintf-posix.m4 (gl_FUNC_VSPRINTF_POSIX): Likewise.
12633         Suggested by Paul Eggert.
12634
12635 2007-03-08  Bruno Haible  <bruno@clisp.org>
12636
12637         * modules/fseterr-tests: New file.
12638         * tests/test-fseterr.c: New file.
12639
12640         * modules/fseterr: New file.
12641         * lib/fseterr.h: New file.
12642         * lib/fseterr.c: New file.
12643
12644 2007-03-08  Bruno Haible  <bruno@clisp.org>
12645
12646         * lib/fnmatch_.h: Convert tabs in the middle of lines to spaces.
12647         * lib/getopt_.h: Likewise.
12648         * lib/mbswidth.h: Likewise.
12649         * lib/setenv.h: Likewise.
12650         * lib/vasnprintf.h: Likewise.
12651         * lib/vasprintf.h: Likewise.
12652         * lib/verror.h: Likewise.
12653         * lib/xsetenv.h: Likewise.
12654         * lib/xvasprintf.h: Likewise.
12655
12656 2007-03-08  Jim Meyering  <jim@meyering.net>
12657
12658         * users.txt: Add parted.
12659
12660         * ChangeLog: Restore 1500 lines mistakenly removed from the end.
12661
12662 2007-03-07  Bruno Haible  <bruno@clisp.org>
12663
12664         * m4/printf.m4: Make the shell script snippets copy&pastable.
12665
12666 2007-03-02  Bruno Haible  <bruno@clisp.org>
12667
12668         * lib/netinet_in_.h: New file.
12669         * m4/netinet_in_h.m4 (gl_HEADER_NETINET_IN): Test whether netinet/in.h
12670         is self-contained. Set ABSOLUTE_NETINET_IN_H, HAVE_NETINET_IN_H.
12671         * modules/netinet_in (Files): Add lib/netinet_in_.h.
12672         (Depends-on): Add absolute-header.
12673         (Makefile.am): Substitute ABSOLUTE_NETINET_IN_H, HAVE_NETINET_IN_H
12674         into netinet/in.h.
12675
12676 2007-03-03  Bruno Haible  <bruno@clisp.org>
12677
12678         * lib/sys_select_.h: New file.
12679         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SELECT): Test whether sys/select.h
12680         is self-contained. Set ABSOLUTE_SYS_SELECT_H, HAVE_SYS_SELECT_H.
12681         * modules/sys_select (Files): Add lib/sys_select_.h.
12682         (Depends-on): Add absolute-header.
12683         (Makefile.am): Substitute ABSOLUTE_SYS_SELECT_H, HAVE_SYS_SELECT_H
12684         into sys/select.h.
12685
12686 2007-03-02  Bruno Haible  <bruno@clisp.org>
12687
12688         * lib/socket_.h: If sys/socket.h exists, include that and <sys/types.h>
12689         before it. Turn HAVE_WINSOCK2_H and HAVE_WS2TCPIP_H into configute-time
12690         values.
12691         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Test also whether
12692         <sys/socket.h> is self-contained. Set ABSOLUTE_SYS_SOCKET_H,
12693         HAVE_SYS_SOCKET_H, HAVE_WINSOCK2_H, HAVE_WS2TCPIP_H.
12694         * modules/sys_socket (Depends-on): Add absolute-header.
12695         (Makefile.am): Substitute ABSOLUTE_SYS_SOCKET_H, HAVE_SYS_SOCKET_H,
12696         HAVE_WINSOCK2_H, HAVE_WS2TCPIP_H into sys/socket.h.
12697         (Include): Remove requirement of inclusion of <sys/types.h>.
12698
12699 2007-03-02  Bruno Haible  <bruno@clisp.org>
12700
12701         * lib/byteswap_.h (bswap_32): Fix formula.
12702
12703 2007-03-06  Bruno Haible  <bruno@clisp.org>
12704
12705         * modules/sprintf-posix-tests: New file.
12706         * tests/test-sprintf-posix.c: New file.
12707
12708         * modules/sprintf-posix: New file.
12709         * lib/sprintf.c: New file.
12710         * m4/sprintf-posix.m4: New file.
12711         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_SPRINTF_POSIX,
12712         REPLACE_SPRINTF.
12713         * lib/stdio_.h (sprintf): New declaration.
12714         * modules/stdio (Makefile.am): Substitute also GNULIB_SPRINTF_POSIX,
12715         REPLACE_SPRINTF.
12716
12717 2007-03-06  Bruno Haible  <bruno@clisp.org>
12718
12719         * modules/vsprintf-posix-tests: New file.
12720         * tests/test-vsprintf-posix.c: New file.
12721         * tests/test-sprintf-posix.h: New file.
12722
12723         * modules/vsprintf-posix: New file.
12724         * lib/vsprintf.c: New file.
12725         * m4/vsprintf-posix.m4: New file.
12726         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also GNULIB_VSPRINTF_POSIX,
12727         REPLACE_VSPRINTF.
12728         * lib/stdio_.h (vsprintf): New declaration.
12729         * modules/stdio (Makefile.am): Substitute also GNULIB_VSPRINTF_POSIX,
12730         REPLACE_VSPRINTF.
12731
12732 2007-03-06  Bruno Haible  <bruno@clisp.org>
12733
12734         * modules/vsnprintf (Depend-on): Remove minmax.
12735
12736 2007-03-06  Bruno Haible  <bruno@clisp.org>
12737
12738         * modules/snprintf-posix-tests: New file.
12739         * tests/test-snprintf-posix.c: New file.
12740
12741         * modules/snprintf-posix: New file.
12742         * m4/snprintf-posix.m4: New file.
12743         * m4/snprintf.m4 (gl_REPLACE_SNPRINTF): New macro, extracted from
12744         gl_FUNC_SNPRINTF.
12745         (gl_FUNC_SNPRINTF): Invoke it.
12746         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also REPLACE_SNPRINTF.
12747         * lib/stdio_.h (snprintf): Define as a replacement if REPLACE_SNPRINTF
12748         is set.
12749         * modules/stdio (Makefile.am): Substitute also REPLACE_SNPRINTF.
12750
12751 2007-03-06  Bruno Haible  <bruno@clisp.org>
12752
12753         * modules/vsnprintf-posix-tests: New file.
12754         * tests/test-vsnprintf-posix.c: New file.
12755         * tests/test-snprintf-posix.h: New file.
12756
12757         * modules/vsnprintf-posix: New file.
12758         * m4/vsnprintf-posix.m4: New file.
12759         * m4/vsnprintf.m4 (gl_REPLACE_VSNPRINTF): New macro, extracted from
12760         gl_FUNC_VSNPRINTF.
12761         (gl_FUNC_VSNPRINTF): Invoke it.
12762         * m4/stdio_h.m4 (gl_STDIO_H_DEFAULTS): Set also REPLACE_VSNPRINTF.
12763         * lib/stdio_.h (vsnprintf): Define as a replacement if
12764         REPLACE_VSNPRINTF is set.
12765         * modules/stdio (Makefile.am): Substitute also REPLACE_VSNPRINTF.
12766
12767 2007-03-06  Bruno Haible  <bruno@clisp.org>
12768
12769         * m4/vasnprintf.m4 (gl_REPLACE_VASNPRINTF): Test for vasnprintf here.
12770         * m4/vasprintf-posix.m4 (gl_FUNC_VASPRINTF_POSIX): ... not here.
12771
12772 2007-03-06  Bruno Haible  <bruno@clisp.org>
12773
12774         * lib/math_.h (acosl): Declare also if HAVE_DECL_ACOSL is set.
12775         (asinl): Declare also if HAVE_DECL_ASINL is set.
12776         (atanl): Declare also if HAVE_DECL_ATANL is set.
12777         (ceill): Declare also if HAVE_DECL_CEILL is set.
12778         (cosl): Declare also if HAVE_DECL_COSL is set.
12779         (expl): Declare also if HAVE_DECL_EXPL is set.
12780         (floorl): Declare also if HAVE_DECL_FLOORL is set.
12781         (frexpl): Declare also if HAVE_DECL_FREXPL is set.
12782         (ldexpl): Declare also if HAVE_DECL_LDEXPL is set.
12783         (logl): Declare also if HAVE_DECL_LOGL is set.
12784         (sinl): Declare also if HAVE_DECL_SINL is set.
12785         (sqrtl): Declare also if HAVE_DECL_SQRTL is set.
12786         (tanl): Declare also if HAVE_DECL_TANL is set.
12787         * modules/math (Makefile.am): Substitute the values of HAVE_DECL_*.
12788         * m4/math_h.m4 (gl_MATH_H_DEFAULTS): Set HAVE_DECL_* to 1.
12789         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Fix tests for the
12790         declaration of frexpl, ldexpl.
12791         * modules/printf-frexpl (Depends-on): Add math.
12792         * lib/printf-frexp.c (frexpl, ldexpl): Undo last change.
12793
12794 2007-03-05  Bruno Haible  <bruno@clisp.org>
12795
12796         * m4/printf-frexpl.m4 (gl_FUNC_PRINTF_FREXPL): Also test whether
12797         frexpl and ldexpl are declared.
12798         * lib/printf-frexp.c (frexpl, ldexpl): Provide fallback declarations.
12799
12800 2007-03-05  Bruno Haible  <bruno@clisp.org>
12801
12802         * gnulib-tool (func_get_automake_snippet): Don't synthesize an
12803         EXTRA_lib_SOURCES augmentation for the relocatable-prog-wrapper module.
12804
12805 2007-03-05  Bruno Haible  <bruno@clisp.org>
12806
12807         * lib/stdio_.h: Include <stddef.h>.
12808
12809 2007-03-05  Bruno Haible  <bruno@clisp.org>
12810
12811         * m4/printf.m4 (gl_SNPRINTF_DIRECTIVE_N): New macro.
12812
12813 2007-03-05  Bruno Haible  <bruno@clisp.org>
12814
12815         * m4/printf.m4: Update with info about OpenBSD 3.9, HP-UX 10.20,
12816         NetBSD 4, from Ralf Wildenhues.
12817
12818 2007-03-04  Bruno Haible  <bruno@clisp.org>
12819
12820         * lib/vasprintf.h: Update #if logic for the case when the functions
12821         exist but are overridden.
12822
12823 2007-03-04  Bruno Haible  <bruno@clisp.org>
12824
12825         * m4/printf.m4 (gl_PRINTF_DIRECTIVE_A): Exclude two buggy
12826         implementations: glibc-2.4 and MacOS X 10.3.
12827         * tests/test-vasnprintf-posix.c (test_function): Test also the case
12828         that exhibits the bugs in glibc-2.4 and MacOS X 10.3.
12829         * tests/test-vasprintf-posix.c (test_function): Likewise.
12830
12831 2007-03-04  Bruno Haible  <bruno@clisp.org>
12832
12833         * modules/vasprintf-posix-tests: New file.
12834         * tests/test-vasprintf-posix.c: New file.
12835
12836         * modules/vasprintf-posix: New file.
12837         * lib/vasprintf.h (asprintf, vasprintf): Rename if REPLACE_VASPRINTF is
12838         defined.
12839         * m4/vasprintf-posix.m4: New file.
12840         * m4/vasprintf.m4 (gl_REPLACE_VASPRINTF): New macro, extracted from
12841         gl_FUNC_VASPRINTF.
12842         (gl_FUNC_VASPRINTF): Invoke it.
12843         * m4/vasnprintf.m4 (gl_REPLACE_VASNPRINTF): Define REPLACE_VASNPRINTF
12844         here.
12845         * m4/vasnprintf-posix.m4 (gl_FUNC_VASNPRINTF_POSIX): Not here.
12846
12847 2007-03-04  Bruno Haible  <bruno@clisp.org>
12848
12849         * lib/sys_time_.h: Rename GETTIMEOFDAY_REPLACEMENT to
12850         REPLACE_GETTIMEOFDAY.
12851         * modules/sys_time (Makefile.am): Likewise.
12852         * m4/sys_time_h.m4: Likewise.
12853         * m4/gettimeofday.m4: Likewise.
12854
12855 2007-03-04  Bruno Haible  <bruno@clisp.org>
12856
12857         * modules/vasnprintf-posix-tests: New file.
12858         * tests/test-vasnprintf-posix.c: New file.
12859
12860         * modules/vasnprintf-posix: New file.
12861         * lib/vasnprintf.c: Include isnan.h, isnanl.h, printf-frexp.h,
12862         printf-frexpl.h.
12863         (VASNPRINTF): Handle the 'a' and 'A' directives here, if needed.
12864         * lib/vasnprintf.h (asnprintf, vasnprintf): Rename if
12865         REPLACE_VASNPRINTF is defined.
12866         * m4/vasnprintf.m4 (gl_REPLACE_VASNPRINTF): New macro, extracted from
12867         gl_FUNC_VASNPRINTF.
12868         (gl_FUNC_VASNPRINTF): Invoke it.
12869         * m4/vasnprintf-posix.m4: New file.
12870         * m4/printf.m4: New file.
12871
12872 2007-03-04  Bruno Haible  <bruno@clisp.org>
12873
12874         Compile progreloc.c only if --enable-relocatable is specified.
12875         * m4/relocatable.m4 (gl_RELOCATABLE): Arrange to compile progreloc.c
12876         if --enable-relocatable was specified.
12877         * modules/relocatable-prog (Makefile.am): Remove progreloc.c from
12878         lib_SOURCES.
12879
12880 2007-03-04  Jim Meyering  <jim@meyering.net>
12881
12882         * lib/acl.c (ACL_NOT_WELL_SUPPORTED): New macro.
12883         Use it consistently, rather than enumerating errno constants.
12884
12885 2007-03-04  Bruno Haible  <bruno@clisp.org>
12886
12887         * modules/xvasprintf-tests: New file.
12888         * tests/test-xvasprintf.c: New file.
12889
12890         * modules/vasprintf-tests: New file.
12891         * tests/test-vasprintf.c: New file.
12892
12893         * modules/vasnprintf-tests: New file.
12894         * tests/test-vasnprintf.c: New file.
12895
12896         * modules/vsnprintf-tests: New file.
12897         * tests/test-vsnprintf.c: New file.
12898
12899         * modules/snprintf-tests: New file.
12900         * tests/test-snprintf.c: New file.
12901
12902 2007-03-04  Bruno Haible  <bruno@clisp.org>
12903
12904         Compile relocatable.c only if --enable-relocatable is specified.
12905         * m4/relocatable-lib.m4 (gl_RELOCATABLE_LIBRARY_BODY): Renamed from
12906         gl_RELOCATABLE_LIBRARY.
12907         (gl_RELOCATABLE_LIBRARY, gl_RELOCATABLE_LIBRARY_SEPARATE): New macros.
12908         * m4/relocatable.m4 (gl_RELOCATABLE): Invoke gl_RELOCATABLE_LIBRARY.
12909         (gl_RELOCATABLE_BODY): Require gl_RELOCATABLE_LIBRARY_BODY instead of
12910         gl_RELOCATABLE_LIBRARY.
12911         * modules/relocatable-lib (configure.ac): Invoke gl_RELOCATABLE_LIBRARY.
12912         (Makefile.am): Remove lib_SOURCES.
12913         * modules/relocatable-lib-lgpl (configure.ac): Invoke
12914         gl_RELOCATABLE_LIBRARY.
12915         (Makefile.am): Remove lib_SOURCES.
12916         * modules/relocatable-prog (Makefile.am): Don't compile relocatable.c
12917         always.
12918         * modules/relocatable-prog-wrapper (configure.ac): Invoke
12919         gl_RELOCATABLE_LIBRARY_SEPARATE instead of gl_RELOCATABLE_LIBRARY.
12920
12921 2007-03-04  Bruno Haible  <bruno@clisp.org>
12922
12923         * modules/argmatch-tests: New file.
12924         * tests/test-argmatch.c: New file.
12925
12926         * tests/test-allocsa.c (main): Halve the number of loop runs.
12927
12928         * modules/alloca-opt-tests: New file.
12929         * tests/test-alloca-opt.c: New file.
12930
12931 2007-03-04  Jim Meyering  <jim@meyering.net>
12932
12933         Work around difference between Linux ACLs and Solaris 10 ZFS.
12934         * lib/acl.c (set_acl): Revert to using chmod_or_fchmod also
12935         for EINVAL.
12936
12937 2007-03-03  Bruno Haible  <bruno@clisp.org>
12938
12939         * modules/relocatable-prog (Depends-on): Add back progreloc's
12940         dependencies: canonicalize-lgpl, xalloc, xreadlink, stdbool, unistd.
12941
12942 2007-03-03  Bruno Haible  <bruno@clisp.org>
12943
12944         * modules/relocatable-lib-lgpl: Renamed from modules/relocatable-lib.
12945         * modules/relocatable-lib: New file.
12946
12947 2007-03-03  Bruno Haible  <bruno@clisp.org>
12948
12949         * modules/relocatable-prog: Renamed from modules/relocatable.
12950         * doc/relocatable-maint.texi: Talk about module 'relocatable-prog'.
12951
12952 2007-03-03  Bruno Haible  <bruno@clisp.org>
12953
12954         * modules/relocatable-script (Files): Add doc/relocatable.texi,
12955         m4/relocatable-lib.m4.
12956         (Depends-on): Remove 'relocatable'.
12957         (configure.ac): Add gl_RELOCATABLE_NOP.
12958
12959 2007-03-03  Bruno Haible  <bruno@clisp.org>
12960
12961         * modules/relocatable-prog-wrapper: New file.
12962         * modules/relocatable (Depends-on): Add it. Remove all other
12963         dependencies except progname.
12964         (Files): Remove build-aux/install-reloc, lib/relocwrapper.c.
12965
12966         * m4/strerror.m4 (gl_FUNC_STRERROR_SEPARATE): New macro.
12967         (gl_FUNC_STRERROR): Nop.
12968         * lib/strerror.c: Compile the file only if !HAVE_STRERROR.
12969
12970         * m4/setenv.m4 (gl_FUNC_SETENV_SEPARATE): New macro.
12971         * lib/setenv.c: Compile the file only if _LIBC || !HAVE_SETENV.
12972
12973         * m4/readlink.m4 (gl_FUNC_READLINK_SEPARATE): New macro.
12974         (gl_FUNC_READLINK): Update.
12975
12976         * m4/canonicalize-lgpl.m4 (gl_CANONICALIZE_LGPL_SEPARATE): New macro.
12977
12978 2007-03-03  Bruno Haible  <bruno@clisp.org>
12979
12980         * lib/xreadlink.c: Include <unistd.h> unconditionally.
12981         * modules/xreadlink (Depends-on): Add unistd.
12982         * modules/xreadlink-with-size (Depends-on): Likewise.
12983
12984 2007-03-03  Bruno Haible  <bruno@clisp.org>
12985
12986         * m4/setenv.m4 (gl_FUNC_SETENV, gl_FUNC_UNSETENV): New macros,
12987         extracted from gt_FUNC_SETENV.
12988         (gt_FUNC_SETENV): Remove macro.
12989         * modules/setenv (configure.ac): Add gl_FUNC_SETENV, gl_FUNC_UNSETENV,
12990         remove gt_FUNC_SETENV.
12991
12992 2007-03-03  Bruno Haible  <bruno@clisp.org>
12993
12994         * m4/relocatable-lib.m4 (gl_RELOCATABLE_LIBRARY): Define
12995         ENABLE_RELOCATABLE here.
12996         * m4/relocatable.m4 (gl_RELOCATABLE_BODY): Don't define it here.
12997
12998 2007-03-03  Bruno Haible  <bruno@clisp.org>
12999
13000         * modules/rbtreehash-list-tests (Depends-on): Add progname.
13001         * tests/test-rbtreehash_list.c: Include progname.h.
13002         (main): Call set_program_name.
13003
13004         * modules/rbtree-oset-tests (Depends-on): Add progname.
13005         * tests/test-rbtree_oset.c: Include progname.h.
13006         (main): Call set_program_name.
13007
13008         * modules/rbtree-list-tests (Depends-on): Add progname.
13009         * tests/test-rbtree_list.c: Include progname.h.
13010         (main): Call set_program_name.
13011
13012         * modules/linked-list-tests (Depends-on): Add progname.
13013         * tests/test-linked_list.c: Include progname.h.
13014         (main): Call set_program_name.
13015
13016 2007-03-03  Bruno Haible  <bruno@clisp.org>
13017
13018         * lib/glob-libc.h (_Restrict_): New macro, copied from lib/regex.h.
13019         All uses of __restrict changed to _Restrict_.
13020         * lib/glob_.h (__restrict): Remove macro.
13021
13022 2007-03-02  Bruno Haible  <bruno@clisp.org>
13023
13024         * modules/gettext (configure.ac): Require gettext infrastructure
13025         from version 0.16.1.
13026
13027 2007-03-02  Bruno Haible  <bruno@clisp.org>
13028
13029         * modules/linkedhash-list-tests (Depends-on): Add progname.
13030         * tests/test-linkedhash_list.c: Include progname.h.
13031         (main): Call set_program_name.
13032
13033         * modules/carray-list-tests (Depends-on): Add progname.
13034         * tests/test-carray_list.c: Include progname.h.
13035         (main): Call set_program_name.
13036
13037         * modules/avltreehash-list-tests (Depends-on): Add progname.
13038         * tests/test-avltreehash_list.c: Include progname.h.
13039         (main): Call set_program_name.
13040
13041         * modules/avltree-oset-tests (Depends-on): Add progname.
13042         * tests/test-avltree_oset.c: Include progname.h.
13043         (main): Call set_program_name.
13044
13045         * modules/avltree-list-tests (Depends-on): Add progname.
13046         * tests/test-avltree_list.c: Include progname.h.
13047         (main): Call set_program_name.
13048
13049         * modules/array-oset-tests (Depends-on): Add progname.
13050         * tests/test-array_oset.c: Include progname.h.
13051         (main): Call set_program_name.
13052
13053         * modules/array-list-tests (Depends-on): Add progname.
13054         * tests/test-array_list.c: Include progname.h.
13055         (main): Call set_program_name.
13056
13057         * modules/argp-tests (Depends-on): Add progname.
13058         * tests/test-argp.c: Include argp.h first. Include progname.h.
13059         (main): Call set_program_name.
13060
13061 2007-03-02  Paul Eggert  <eggert@cs.ucla.edu>
13062
13063         * doc/gnulib-tool.texi (Initial import): Reword description of
13064         _FILE_OFFSET_BITS and _GNU_SOURCE, since they sometimes have a
13065         limited effect even if defined after the first system include.
13066
13067 2007-03-01  Bruno Haible  <bruno@clisp.org>
13068
13069         * build-aux/config.libpath: Update to libtool-1.5.22.
13070         Reported by Albert Chin <bug-gnulib@mlists.thewrittenword.com>.
13071
13072 2007-03-01  Bruno Haible  <bruno@clisp.org>
13073
13074         * doc/relocatable-maint.texi: Recommend to set foo_CPPFLAGS, not
13075         foo_CFLAGS.
13076         Reported by Ralf Wildenhues.
13077
13078 2007-03-01  Bruno Haible  <bruno@clisp.org>
13079
13080         * build-aux/install-reloc: Remove object files left over by some
13081         compilers.
13082         Reported by Ralf Wildenhues.
13083
13084 2007-03-01  Bruno Haible  <bruno@clisp.org>
13085
13086         * build-aux/install-reloc: Break long lines.
13087
13088 2007-03-01  Bruno Haible  <bruno@clisp.org>
13089
13090         * doc/relocatable.texi: Document that it may not work on OpenBSD.
13091         Reported by Ralf Wildenhues.
13092
13093 2007-03-01  Bruno Haible  <bruno@clisp.org>
13094
13095         * doc/gnulib-tool.texi (Initial import): Remove paragraph about
13096         include ordering constraints.
13097
13098 2007-03-01  Paul Eggert  <eggert@cs.ucla.edu>
13099
13100         Followup to the 2007-02-12 patch, using suggestions from Bruno Haible in
13101         <http://lists.gnu.org/archive/html/bug-gnulib/2007-02/msg00136.html>.
13102         * doc/gnulib-tool.texi (Initial import): Mention _FILE_OFFSET_BITS
13103         as another example.
13104         * lib/time_.h: Fix misspelling.
13105         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP):
13106         Require gl_HEADER_TIME_H_DEFAULTS.
13107         * m4/strptime.m4 (gl_FUNC_STRPTIME): Likewise.
13108         * m4/time_r.m4 (gl_TIME_R): Likewise.
13109         * m4/timegm.m4 (gl_FUNC_TIMEGM): Likewise.
13110
13111 2007-03-01  Bruno Haible  <bruno@clisp.org>
13112
13113         * m4/utimecmp.m4 (gl_UTIMECMP): Don't require gl_TIMESPEC.
13114         * m4/utimens.m4 (gl_UTIMENS): Likewise.
13115
13116 2007-03-01  Jim Meyering  <jim@meyering.net>
13117
13118         * modules/xreadlink (Maintainer): Add my name.
13119         * modules/xreadlink-with-size (Depends-on): Alphabetize.
13120
13121 2007-02-26  Ben Pfaff  <blp@cs.stanford.edu>
13122             Bruno Haible  <bruno@clisp.org>
13123
13124         * build-aux/install-reloc: Compile also c-ctype.c.
13125         * build-aux/relocatable.sh.in: New file.
13126         * doc/relocatable.texi: New file.
13127         * doc/relocatable-maint.texi: New file.
13128         * doc/gnulib.texi: Include relocatable-maint.texi.
13129         * lib/progreloc.c: Include unistd.h unconditionally.
13130         * lib/relocwrapper.c: Include unistd.h unconditionally.
13131         Include c-ctype.h.
13132         (add_dotbin): Use c_tolower.
13133         * m4/relocatable-lib.m4: New file, extracted from m4/relocatable.m4.
13134         (gl_RELOCATABLE_LIBRARY): Renamed from AC_RELOCATABLE_LIBRARY.
13135         (gl_RELOCATABLE_NOP): Renamed from AC_RELOCATABLE_NOP.
13136         * m4/relocatable.m4 (AC_RELOCATABLE_LIBRARY, AC_RELOCATABLE_NOP): Move
13137         to m4/relocatable-lib.m4.
13138         (gl_RELOCATABLE): Renamed from AC_RELOCATABLE. Set also
13139         RELOCATABLE_CONFIG_H_DIR, RELOCATABLE_SRC_DIR, RELOCATABLE_BUILD_DIR.
13140         (gl_RELOCATABLE_BODY): Renamed from AC_RELOCATABLE_BODY. Don't
13141         require obsolete macro AC_EXEEXT. Don't check for unistd.h. Don't set
13142         SET_RELOCATABLE. Instead set RELOCATABLE_LDFLAGS, INSTALL_PROGRAM_ENV.
13143         * modules/relocatable: New file.
13144         * modules/relocatable-lib: New file.
13145         * modules/relocatable-script: New file.
13146
13147 2007-02-28  Bruno Haible  <bruno@clisp.org>
13148
13149         Import --enable-relocatable infrastructure.
13150         * build-aux/config.libpath: New file, from GNU gettext.
13151         * build-aux/install-reloc: New file, from GNU gettext.
13152         * build-aux/reloc-ldflags: New file, from GNU gettext.
13153         * lib/relocatable.h: New file, from GNU gettext.
13154         * lib/relocatable.c: New file, from GNU gettext.
13155         * lib/relocwrapper.c: New file, from GNU gettext.
13156         * m4/relocatable.m4: New file, from GNU gettext.
13157
13158 2007-02-28  Bruno Haible  <bruno@clisp.org>
13159
13160         * MODULES.html.sh (File system functions): Add xreadlink-with-size.
13161
13162         * modules/xreadlink: New file, from GNU gettext with modifications.
13163         * lib/xreadlink.c: New file, from GNU gettext.
13164         * lib/xreadlink.h: Add comments.
13165         (xreadlink): New declaration.
13166
13167         * modules/xreadlink-with-size: Renamed from modules/xreadlink.
13168         (Files): Remove m4/xreadlink.m4. Replace lib/xreadlink.c with
13169         lib/xreadlink-with-size.c.
13170         (configure.ac): Remove gl_XREADLINK invocation.
13171         (Makefile.am): Augment lib_SOURCES.
13172         * m4/xreadlink.m4: Remove file.
13173         * lib/xreadlink-with-size.c: Renamed from lib/xreadlink.c.
13174         (xreadlink_with_size): Renamed from xreadink.
13175         * lib/xreadlink.h (xreadlink_with_size): Renamed from xreadink.
13176         * modules/canonicalize (Depends-on): Replace xreadlink with
13177         xreadlink-with-size.
13178         * lib/canonicalize.c (canonicalize_filename_mode): Update.
13179
13180 2007-02-25  Jim Meyering  <jim@meyering.net>
13181
13182         * build-aux/announce-gen: When complaining about excess arguments,
13183         list them.
13184
13185 2007-02-25  Paul Eggert  <eggert@cs.ucla.edu>
13186
13187         * README: Document signed integer overflow situation more
13188         accurately.
13189
13190 2007-02-25  Bruno Haible  <bruno@clisp.org>
13191
13192         * lib/vasnprintf.c (VASNPRINTF): Fix estimate of size needed for a
13193         'a' or 'A' conversion.
13194
13195 2007-02-25  Bruno Haible  <bruno@clisp.org>
13196
13197         * modules/filename: Renamed from modules/pathname.
13198         (Files): Replace lib/pathname.h with lib/filename.h. Replace
13199         lib/concatpath.c with lib/concat-filename.c.
13200         (Makefile.am): Update.
13201         (Include): Replace pathname.h with filename.h.
13202         * lib/filename.h: Renamed from lib/pathname.h.
13203         (concatenated_filename): Renamed from concatenated_pathname.
13204         * lib/concat-filename.c: Renamed from lib/concatpath.c.
13205         (concatenated_filename): Renamed from concatenated_pathname.
13206         * lib/findprog.c: Include filename.h instead of pathname.h.
13207         (find_in_path): Update.
13208         * lib/javacomp.c: Include filename.h instead of pathname.h.
13209         (is_envjavac_gcj43_usable, is_envjavac_oldgcj_14_14_usable,
13210         is_envjavac_oldgcj_14_13_usable, is_envjavac_nongcj_usable,
13211         is_gcj_present, is_gcj43_usable, is_oldgcj_14_14_usable,
13212         is_oldgcj_14_13_usable, is_javac_usable): Update.
13213         * lib/javaexec.c: Include filename.h instead of pathname.h.
13214         (execute_java_class): Update.
13215         * modules/findprog: Update.
13216         * modules/javacomp: Update.
13217         * modules/javaexec: Update.
13218         * MODULES.html.sh (File system functions): Add 'filename', remove
13219         'pathname'.
13220
13221 2007-02-25  Bruno Haible  <bruno@clisp.org>
13222
13223         * modules/printf-frexpl-tests: New file.
13224         * tests/test-printf-frexpl.c: New file.
13225
13226         * modules/printf-frexpl: New file.
13227         * lib/printf-frexpl.h: New file.
13228         * lib/printf-frexpl.c: New file.
13229         * m4/printf-frexpl.m4: New file.
13230
13231 2007-02-25  Bruno Haible  <bruno@clisp.org>
13232
13233         * modules/printf-frexp-tests: New file.
13234         * tests/test-printf-frexp.c: New file.
13235
13236         * modules/printf-frexp: New file.
13237         * lib/printf-frexp.h: New file.
13238         * lib/printf-frexp.c: New file.
13239         * m4/printf-frexp.m4: New file.
13240
13241 2007-02-25  Bruno Haible  <bruno@clisp.org>
13242
13243         Assume automake >= 1.10 for the tests.
13244         * modules/arcfour-tests (TESTS): Remove $(EXEEXT) suffix.
13245         * modules/arctwo-tests: Likewise.
13246         * modules/argp-tests: Likewise.
13247         * modules/avltree-list-tests: Likewise.
13248         * modules/avltree-oset-tests: Likewise.
13249         * modules/avltreehash-list-tests: Likewise.
13250         * modules/carray-list-tests: Likewise.
13251         * modules/crc-tests: Likewise.
13252         * modules/des-tests: Likewise.
13253         * modules/gc-arcfour-tests: Likewise.
13254         * modules/gc-arctwo-tests: Likewise.
13255         * modules/gc-des-tests: Likewise.
13256         * modules/gc-hmac-md5-tests: Likewise.
13257         * modules/gc-hmac-sha1-tests: Likewise.
13258         * modules/gc-md2-tests: Likewise.
13259         * modules/gc-md4-tests: Likewise.
13260         * modules/gc-md5-tests: Likewise.
13261         * modules/gc-pbkdf2-sha1-tests: Likewise.
13262         * modules/gc-rijndael-tests: Likewise.
13263         * modules/gc-sha1-tests: Likewise.
13264         * modules/gc-tests: Likewise.
13265         * modules/getaddrinfo-tests: Likewise.
13266         * modules/hmac-md5-tests: Likewise.
13267         * modules/hmac-sha1-tests: Likewise.
13268         * modules/linked-list-tests: Likewise.
13269         * modules/linkedhash-list-tests: Likewise.
13270         * modules/lock-tests: Likewise.
13271         * modules/md2-tests: Likewise.
13272         * modules/md4-tests: Likewise.
13273         * modules/md5-tests: Likewise.
13274         * modules/rbtree-list-tests: Likewise.
13275         * modules/rbtree-oset-tests: Likewise.
13276         * modules/rbtreehash-list-tests: Likewise.
13277         * modules/read-file-tests: Likewise.
13278         * modules/rijndael-tests: Likewise.
13279         * modules/stdint-tests: Likewise.
13280         * modules/tls-tests: Likewise.
13281
13282 2007-02-24  Bruno Haible  <bruno@clisp.org>
13283
13284         * lib/isnanl.h (isnanl): Define through isnan if isnan is a macro.
13285         * m4/isnan.m4 (gl_FUNC_ISNAN_NO_LIBM): Don't check for isnan as a
13286         function; instead check whether isnan with a double argument links.
13287         * m4/isnanl.m4 (gl_FUNC_ISNANL_NO_LIBM): Don't check for isnanl as a
13288         function; instead check whether isnan with a 'long double' argument
13289         links.
13290         Reported by Eric Blake <ebb9@byu.net>.
13291
13292 2007-02-24  Bruno Haible  <bruno@clisp.org>
13293
13294         * lib/isnan.c: Support the 'long double' case if USE_LONG_DOUBLE is
13295         defined.
13296         * lib/isnanl.c: Remove all code. Just include isnan.c.
13297         * modules/isnanl-nolibm (Files): Add lib/isnan.c.
13298
13299 2007-02-25  Jim Meyering  <jim@meyering.net>
13300
13301         Avoid conflicting types for 'unsetenv' on FreeBSD.
13302         * lib/putenv.c (_unsetenv): Rename from "unsetenv", to avoid
13303         conflicting with FreeBSD's (5.0 and 6.1) function declaration
13304         in stdlib.h.
13305
13306 2007-02-24  Bruno Haible  <bruno@clisp.org>
13307
13308         * modules/isnanl-nolibm-tests: New file.
13309         * tests/test-isnanl.c: New file.
13310
13311         * modules/isnanl-nolibm: New file.
13312         * lib/isnanl.h: New file.
13313         * lib/isnanl.c: New file.
13314         * m4/isnanl.m4: New file.
13315
13316 2007-02-24  Bruno Haible  <bruno@clisp.org>
13317
13318         * modules/isnan-nolibm-tests: New file.
13319         * tests/test-isnan.c: New file.
13320
13321         * modules/isnan-nolibm: New file.
13322         * lib/isnan.h: New file.
13323         * lib/isnan.c: New file.
13324         * m4/isnan.m4: New file.
13325
13326 2007-02-24  Bruno Haible  <bruno@clisp.org>
13327
13328         * lib/frexpl.c (frexpl): Correct return values for x = 1.0L. Don't
13329         assume that an exponent fits in 20 bits.
13330
13331 2007-02-24  Jim Meyering  <jim@meyering.net>
13332
13333         * m4/regex.m4: Update the description of the configure-time option,
13334         --without-included-regex, to state accurately what the defaults are,
13335         and perhaps to give people an idea why using this option is risky.
13336
13337 2007-02-24  Paul Eggert  <eggert@cs.ucla.edu>
13338
13339         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Check for a nanosleep that
13340         loops on small arguments.  This attempts to avoid the problem
13341         Bruno Haible reported for AIX 4.3.2 in
13342         <http://lists.gnu.org/archive/html/bug-gnulib/2007-02/msg00309.html>.
13343
13344 2007-02-23  Bruno Haible  <bruno@clisp.org>
13345
13346         * m4/perl.m4 (gl_PERL): Require version 5.005, not 5.003.
13347         Needed for help2man.
13348
13349 2007-02-23  Karl Berry  <karl@gnu.org>
13350
13351         * doc/gnulib-tool.texi (CVS Issues): mention that when foo_.h
13352         exists, foo.h should be cvs-ignored, not committed.
13353
13354 2007-02-23  Eric Blake  <ebb9@byu.net>
13355
13356         * lib/getdate.h (includes):  Include <time.h>, not "timespec.h".
13357         * lib/stat-time.h (includes): Likewise.
13358         * lib/utimecmp.c (includes): Likewise.
13359         * lib/utimens.h (includes): Likewise.
13360         * lib/getdate.y (includes): Also include "timespec.h" for use
13361         internal to the module.
13362         * modules/utimens (Depends-on): Revert yesterday's patch.
13363         * modules/nanosleep (Depends-on): Add missing dependency.
13364
13365 2007-02-22  Bruno Haible  <bruno@clisp.org>
13366
13367         * lib/glob.c: Don't include getlogin_r.h.
13368
13369 2007-02-22  Jim Meyering  <jim@meyering.net>
13370
13371         * modules/utimens (Depends-on): Add timespec, required for
13372         utimens.h's inclusion of timespec.h.
13373
13374 2007-02-21  Paul Eggert  <eggert@cs.ucla.edu>
13375
13376         * lib/getcwd.c (__getcwd): Undo previous change; it mishandled
13377         long unreadable paths in GNU/Linux.  Problem reported by Andreas
13378         Schwab in
13379         <http://lists.gnu.org/archive/html/bug-gnulib/2007-02/msg00261.html>.
13380         I'll try to think of a better way to fix the Solaris problem.
13381
13382         * lib/getcwd.c (__getcwd): Don't assume getcwd (NULL, 0) works
13383         like glibc; on Solaris 10, it fails with errno == EINVAL.
13384         POSIX says the behavior is unspecified if the first argument is NULL,
13385         so play it safe and never pass NULL to the system getcwd.
13386
13387 2007-02-21  Jim Meyering  <jim@meyering.net>
13388
13389         * lib/gettimeofday.c (rpl_gettimeofday): Remove declaration
13390         of gettimeofday.  It would conflict with the one now always
13391         provided via sys_time_.h.  Reported by Matthew Woehlke, as
13392         an IRIX 6.5 build failure.
13393
13394 2007-02-20  Paul Eggert  <eggert@cs.ucla.edu>
13395
13396         Minor fixups to port to Solaris 10 with Sun C 5.8.
13397         * lib/getcwd.c [!_LIBC]: Include dirfd.h, since we use dirfd.
13398         * modules/getcwd (Depends-on): Add dirfd.
13399         * lib/putenv.c (putenv): #undef it.
13400         (rpl_putenv): New decl.
13401         (malloc, free): Include <stdlib.h> rather than prototyping separately.
13402
13403 2007-02-20  Bruno Haible  <bruno@clisp.org>
13404
13405         * modules/stdio-tests: New file.
13406         * tests/test-stdio.c: New file.
13407
13408         * modules/vsnprintf (Files): Remove lib/vsnprintf.h.
13409         (Depends-on): Add stdio.
13410         (configure.ac): Invoke gl_STDIO_MODULE_INDICATOR.
13411         (Include): Use <stdio.h> instead of vsnprintf.h.
13412         * m4/vsnprintf.m4 (gl_FUNC_VSNPRINTF): Require gl_STDIO_H_DEFAULTS. Set
13413         HAVE_DECL_VSNPRINTF.
13414         * lib/vsnprintf.c: Include <stdio.h> instead of vsnprintf.h.
13415
13416         * modules/snprintf (Files): Remove lib/snprintf.h.
13417         (Depends-on): Add stdio.
13418         (configure.ac): Invoke gl_STDIO_MODULE_INDICATOR.
13419         (Include): Use <stdio.h> instead of snprintf.h.
13420         * m4/snprintf.m4 (gl_FUNC_SNPRINTF): Require gl_STDIO_H_DEFAULTS. Set
13421         HAVE_DECL_SNPRINTF.
13422         * lib/snprintf.c: Include <stdio.h> instead of snprintf.h.
13423         * lib/getaddrinfo.c: Likewise.
13424
13425         * modules/stdio: New file.
13426         * lib/stdio_.h: New file, incorporating snprintf.h and vsnprintf.h.
13427         * lib/snprintf.h: Remove file.
13428         * lib/vsnprintf.h: Remove file.
13429         * lib/.cppi-disable: Remove snprintf.h.
13430         * m4/stdio_h.m4: New file.
13431         * MODULES.html.sh (Support for systems lacking ISO C 99): Add stdio.
13432
13433 2007-02-20  Jim Meyering  <jim@meyering.net>
13434
13435         * lib/ftruncate.c [HAVE_CHSIZE]: Document that this code is
13436         used by e.g., mingw.  From Bruno Haible.
13437
13438 2007-02-19  Bruno Haible  <bruno@clisp.org>
13439
13440         * lib/string_.h: Use "#pragma GCC system_header" to suppress some gcc
13441         warnings.
13442         Reported by Ben Pfaff <blp@cs.stanford.edu>.
13443
13444 2007-02-19  Bruno Haible  <bruno@clisp.org>
13445
13446         * m4/ftruncate.m4 (gl_FUNC_FTRUNCATE): Don't request a complaint mail
13447         from mingw users.
13448
13449 2007-02-19  Bruno Haible  <bruno@clisp.org>
13450
13451         * lib/stdlib_.h: Use "#pragma GCC system_header" to suppress some gcc
13452         warnings.
13453         Reported by Joel E. Denny <jdenny@ces.clemson.edu> via Paul Eggert.
13454
13455 2007-02-19  Jim Meyering  <jim@meyering.net>
13456
13457         Don't use FD after a successful "fdopendir (fd)".
13458         * lib/getcwd.c (__getcwd) [AT_FDCWD]: fdopendir (fd) usually closes fd.
13459         Reset it by calling dirfd on the just-obtained DIR*.
13460
13461         * m4/ftruncate.m4: Adjust comment to give this module a 3-year reprieve.
13462         Prompted by a report from Bruno Haible that mingw lacks ftruncate.
13463
13464 2007-02-18  Bruno Haible  <bruno@clisp.org>
13465
13466         * lib/readlink.c: Include <unistd.h>.
13467         * m4/readlink.m4 (gl_FUNC_READLINK): Require gl_UNISTD_H_DEFAULTS. Set
13468         HAVE_READLINK.
13469         * modules/readlink (Depends-on): Add unistd.
13470         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
13471         (Include): Add <unistd.h>.
13472
13473         * lib/getlogin_r.h: Remove file.
13474         * lib/getlogin_r.c: Include <unistd.h> instead of getlogin_r.h.
13475         * m4/getlogin_r.m4 (gl_GETLOGIN_R_SUBSTITUTE): Remove macro.
13476         (gl_GETLOGIN_R): Inline it here. Require gl_UNISTD_H_DEFAULTS. Set
13477         HAVE_DECL_GETLOGIN_R.
13478         * modules/getlogin_r (Files): Remove lib/getlogin_r.h.
13479         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
13480         (Include): Use <unistd.h> instead of getlogin_r.h.
13481
13482         * lib/getcwd.h: Remove file.
13483         * lib/getcwd.c: Include <unistd.h> instead of getcwd.h.
13484         * lib/xgetcwd.c: Likewise.
13485         * m4/getcwd.m4 (gl_FUNC_GETCWD): Require gl_UNISTD_H_DEFAULTS. Set
13486         REPLACE_GETCWD. Don't define __GETCWD_PREFIX.
13487         * modules/getcwd (Files): Remove lib/getcwd.h.
13488         (Depends-on): Add unistd.
13489         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
13490         (Include): Use <unistd.h> instad of getcwd.h.
13491
13492         * lib/ftruncate.c: Include <unistd.h> first.
13493         * m4/ftruncate.m4 (gl_FUNC_FTRUNCATE): Require gl_UNISTD_H_DEFAULTS.
13494         Set HAVE_FTRUNCATE.
13495         * modules/ftruncate (Depends-on): Add unistd.
13496         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
13497
13498         * lib/fchdir.c: Include <unistd.h> first.
13499         * lib/dirent_.h: Test REPLACE_FCHDIR, not FCHDIR_REPLACEMENT.
13500         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Require gl_UNISTD_H_DEFAULTS instead
13501         of gl_HEADER_UNISTD_DEFAULTS. Set REPLACE_FCHDIR. Don't set UNISTD_H.
13502         * modules/fchdir (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
13503         (Makefile.am): Substitute also REPLACE_FCHDIR into dirent.h.
13504
13505         * lib/dup2.c: Include <unistd.h> first.
13506         * m4/dup2.m4 (gl_FUNC_DUP2): Require gl_UNISTD_H_DEFAULTS. Set
13507         HAVE_DUP2.
13508         * modules/dup2 (Depends-on): Add unistd.
13509         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
13510
13511         * lib/chown.c: Include <unistd.h> first. Undefine chown later.
13512         * m4/chown.m4 (gl_FUNC_CHOWN): Require gl_UNISTD_H_DEFAULTS. Set
13513         REPLACE_CHOWN. Don't define chown as a macro here.
13514         * modules/chown (Depends-on): Add unistd.
13515         (configure.ac): Invoke gl_UNISTD_MODULE_INDICATOR.
13516
13517         * lib/unistd_.h: Test HAVE_UNISTD_H determined at configure time.
13518         Add definition for GL_LINK_WARNING.
13519         (chown, dup2): New declarations.
13520         (fchdir): Test REPLACE_FCHDIR, not FCHDIR_REPLACEMENT. Provide optional
13521         link warning.
13522         (ftruncate): New declaration.
13523         (getcwd): New declaration, taken from old getcwd.h.
13524         (getlogin_r): New declaration, taken from old getlogin_r.h.
13525         (readlink): New declaration.
13526         * m4/unistd_h.m4 (gl_UNISTD_H): Renamed from gl_HEADER_UNISTD. Don't
13527         set UNISTD_H. Inline gl_PREREQ_UNISTD. Set HAVE_UNISTD_H.
13528         (gl_PREREQ_UNISTD): Remove macro.
13529         (gl_UNISTD_MODULE_INDICATOR): New macro.
13530         (gl_UNISTD_H_DEFAULTS): Renamed from gl_HEADER_UNISTD_DEFAULTS. Set
13531         many new variables. Don't set UNISTD_H.
13532         * modules/unistd (Description): Change.
13533         (Depends-on): Add link-warning.
13534         (configure.ac): Update.
13535         (Makefile.am): Create unistd.h always. Substitute many new variables
13536         into it.
13537
13538 2007-02-18  Bruno Haible  <bruno@clisp.org>
13539
13540         * lib/stdlib_.h (getsubopt): New declaration, copied from getsubopt.h.
13541         * modules/stdlib (stdlib.h): Also substitute GNULIB_GETSUBOPT and
13542         HAVE_GETSUBOPT.
13543         * m4/stdlib_h.m4 (gl_STDLIB_H_DEFAULTS): Also initialize
13544         GNULIB_GETSUBOPT and HAVE_GETSUBOPT.
13545         * lib/getsubopt.h: Remove file.
13546         * modules/getsubopt (Files): Remove lib/getsubopt.h.
13547         (Depends-on): Add stdlib.
13548         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
13549         (Includes): Use <stdlib.h> instead of getsubopt.h.
13550         * m4/getsubopt.m4 (gl_FUNC_GETSUBOPT): Require gl_STDLIB_H_DEFAULTS.
13551         Set HAVE_GETSUBOPT.
13552         * lib/getsubopt.c: Don't include getsubopt.h.
13553
13554 2007-02-18  Bruno Haible  <bruno@clisp.org>
13555
13556         * modules/fchdir (Depends-on): Add dup2.
13557
13558 2007-02-18  Bruno Haible  <bruno@clisp.org>
13559
13560         * lib/stdlib_.h: Handle glibc's special invocation convention
13561         specially.
13562
13563 2007-02-18  Bruno Haible  <bruno@clisp.org>
13564
13565         * modules/stdlib-tests: New file.
13566         * tests/test-stdlib.c: New file.
13567
13568         * modules/mkstemp (Files): Remove lib/mkstemp.h.
13569         (Depends-on): Add stdlib.
13570         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
13571         (Includes): Use <stdlib.h> instead of mkstemp.h.
13572         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Require gl_STDLIB_H_DEFAULTS. Set
13573         REPLACE_MKSTEMP. Remove definition of __MKSTEMP_PREFIX.
13574         * lib/mkstemp.c: Don't include mkstemp.h.
13575         * lib/mkstemp-safer.c: Include <stdlib.h> instead of mkstemp.h.
13576         * lib/stdlib--.h: Don't include mkstemp.h.
13577
13578         * modules/mkdtemp (Files): Remove lib/mkdtemp.h.
13579         (Depends-on): Add stdlib.
13580         (configure.ac): Invoke gl_STDLIB_MODULE_INDICATOR.
13581         (Includes): Use <stdlib.h> instead of mkdtemp.h.
13582         * m4/mkdtemp.m4 (gt_FUNC_MKDTEMP): Require gl_STDLIB_H_DEFAULTS. Set
13583         HAVE_MKDTEMP.
13584         * lib/mkdtemp.c: Don't include mkdtemp.h.
13585         * lib/clean-temp.c: Don't include mkdtemp.h.
13586
13587         * modules/exit (Files): Remove lib/exit.h.
13588         (Depends-on): Add stdlib.
13589         (Makefile.am): Remove lib_SOURCES.
13590         (Include): Use <stdlib.h> instead of exit.h.
13591         * lib/argmatch.c: Don't include exit.h.
13592         * lib/execute.c: Likewise.
13593         * lib/pagealign_alloc.c: Likewise.
13594         * lib/pipe.c: Likewise.
13595         * lib/wait-process.c: Likewise.
13596         * lib/copy-file.c: Include <stdlib.h> instead of exit.h.
13597         * lib/exitfail.c: Likewise.
13598         * lib/savewd.c: Likewise.
13599         * lib/xsetenv.c: Likewise.
13600
13601         * modules/stdlib: New file.
13602         * lib/stdlib_.h: New file, incorporating exit.h, mkdtemp.h, mkstemp.h
13603         and extra comments about mkstemp().
13604         * lib/exit.h: Remove file.
13605         * lib/mkdtemp.h: Remove file.
13606         * lib/mkstemp.h: Remove file.
13607         * m4/stdlib_h.m4: New file.
13608         * MODULES.html.sh (Support for systems lacking ANSI C 89): Add stdlib.
13609
13610 2007-02-18  Bruno Haible  <bruno@clisp.org>
13611
13612         * modules/math-tests: New file.
13613         * tests/test-math.c: New file.
13614
13615         * modules/math: New file.
13616         * modules/mathl (Files): Remove lib/mathl.h.
13617         (Depends-on): Add math.
13618         (Makefile.am): Don't mention mathl.h.
13619         (Include): Use <math.h> instead of mathl.h.
13620         * lib/math_.h: New file.
13621         * lib/mathl.h: Remove file.
13622         * lib/acosl.c: Include <config.h> and <math.h> first. Don't include
13623         mathl.h.
13624         * lib/asinl.c: Likewise.
13625         * lib/atanl.c: Likewise.
13626         * lib/ceill.c: Likewise.
13627         * lib/cosl.c: Likewise.
13628         * lib/expl.c: Likewise.
13629         * lib/floorl.c: Likewise.
13630         * lib/frexpl.c: Likewise.
13631         * lib/ldexpl.c: Likewise.
13632         * lib/logl.c: Likewise.
13633         * lib/sincosl.c: Likewise.
13634         * lib/sinl.c: Likewise.
13635         * lib/sqrtl.c: Likewise.
13636         * lib/tanl.c: Likewise.
13637         * lib/trigl.c: Likewise.
13638         * m4/math_h.m4: New file.
13639         * MODULES.html.sh (Mathematics): Add math.
13640
13641 2007-02-17  Bruno Haible  <bruno@clisp.org>
13642
13643         * modules/wctype-tests: New file.
13644         * tests/test-wctype.c: New file.
13645
13646         * modules/wchar-tests: New file.
13647         * tests/test-wchar.c: New file.
13648
13649         * modules/unistd-tests: New file.
13650         * tests/test-unistd.c: New file.
13651
13652         * modules/time-tests: New file.
13653         * tests/test-time.c: New file.
13654
13655         * modules/sysexits-tests: New file.
13656         * tests/test-sysexits.c: New file.
13657
13658         * modules/sys_time-tests: New file.
13659         * tests/test-sys_time.c: New file.
13660
13661         * modules/sys_stat-tests: New file.
13662         * tests/test-sys_stat.c: New file.
13663
13664         * modules/sys_socket-tests: New file.
13665         * tests/test-sys_socket.c: New file.
13666
13667         * modules/sys_select-tests: New file.
13668         * tests/test-sys_select.c: New file.
13669
13670         * modules/string-tests: New file.
13671         * tests/test-string.c: New file.
13672
13673         * modules/stdbool-tests: New file.
13674         * tests/test-stdbool.c: New file.
13675
13676         * modules/netinet_in-tests: New file.
13677         * tests/test-netinet_in.c: New file.
13678
13679         * modules/inttypes-tests: New file.
13680         * tests/test-inttypes.c: New file.
13681
13682         * modules/fcntl-tests: New file.
13683         * tests/test-fcntl.c: New file.
13684
13685         * modules/byteswap-tests: New file.
13686         * tests/test-byteswap.c: New file.
13687
13688         * modules/arpa_inet-tests: New file.
13689         * tests/test-arpa_inet.c: New file.
13690
13691 2007-02-17  Bruno Haible  <bruno@clisp.org>
13692
13693         * lib/inttypes_.h: Add definition for GL_LINK_WARNING.
13694         (imaxabs, imaxdiv, strtoimax, strtoumax): Don't declare the function
13695         if the corresponding module is not enabled. Emit link warnings if
13696         the function is used nevertheless.
13697         * m4/inttypes.m4 (gl_INTTYPES_H): Never use the existing <inttypes.h>.
13698         Don't AC_SUBST HAVE_DECL_IMAXABS, HAVE_DECL_IMAXDIV,
13699         HAVE_DECL_STRTOIMAX, HAVE_DECL_STRTOUMAX.
13700         (gl_INTTYPES_MODULE_INDICATOR, gl_INTTYPES_H_DEFAULTS): New macros.
13701         * modules/inttypes (Depends-on): Add link-warning.
13702         (Makefile.am): Copy the contents of build-aux/link-warning.h into
13703         inttypes.h. Substitute also GNULIB_IMAXABS, GNULIB_IMAXDIV,
13704         GNULIB_STRTOIMAX, GNULIB_STRTOUMAX.
13705         * modules/imaxabs (configure.ac): Invoke gl_INTTYPES_MODULE_INDICATOR.
13706         * modules/imaxdiv (configure.ac): Likewise.
13707         * modules/strtoimax (configure.ac): Likewise.
13708         * modules/strtoumax (configure.ac): Likewise.
13709
13710 2007-02-17  Bruno Haible  <bruno@clisp.org>
13711
13712         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Include the contents of
13713         gl_STRING_MODULE_INDICATOR_DEFAULTS.
13714         (gl_STRING_MODULE_INDICATOR_DEFAULTS): Remove macro.
13715         (gl_HEADER_STRING_H_BODY, gl_STRING_MODULE_INDICATOR): Update.
13716
13717 2007-02-17  Bruno Haible  <bruno@clisp.org>
13718
13719         * modules/link-warning: New file.
13720         * build-aux/link-warning.h: New file, extracted from lib/string_.h.
13721         * lib/string_.h (GL_LINK_WARNING): Remove definition.
13722         * modules/string (Depends-on): Add link-warning.
13723         (Makefile.am): Copy the contents of build-aux/link-warning.h into
13724         string.h.
13725         * MODULES.html.sh (Support for building libraries and executables): Add
13726         link-warning.
13727
13728 2007-02-17  Bruno Haible  <bruno@clisp.org>
13729
13730         * lib/string_.h (memmem, mempcpy, memrchr, stpcpy, stpncpy, strcasecmp,
13731         strncasecmp, strchr, strchrnul, strdup, strndup, strnlen, strcspn,
13732         strpbrk, strspn, strrchr, strsep, strstr, strcasestr, strtok_r): Break
13733         long lines.
13734
13735 2007-02-17  Ben Pfaff  <blp@cs.stanford.edu>
13736             Bruno Haible  <bruno@clisp.org>
13737
13738         * modules/tmpfile: New file.
13739         * lib/tmpfile.c: New file.
13740         * m4/tmpfile.m4: New file.
13741         * MODULES.html.sh (func_all_modules): New section "Input/output".
13742
13743 2007-02-15  Bruno Haible  <bruno@clisp.org>
13744
13745         * lib/clean-temp.c [WIN32 && !CYGWIN]: Include <windows.h>.
13746         (supports_delete_on_close): New function.
13747         (open_temp, fopen_temp): Use _O_TEMPORARY when supported.
13748
13749 2007-02-14  Bruno Haible  <bruno@clisp.org>
13750
13751         * modules/mbspcasecmp-tests: New file.
13752         * tests/test-mbspcasecmp.sh: New file.
13753         * tests/test-mbspcasecmp.c: New file.
13754
13755         New module mbspcasecmp.
13756         * modules/mbspcasecmp: New file.
13757         * lib/mbspcasecmp.c: New file.
13758         * lib/string_.h (strncasecmp): Change warning message.
13759         (mbspcasecmp): New declaration.
13760         * m4/mbspcasecmp.m4: New file.
13761         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
13762         GNULIB_MBSPCASECMP.
13763         * modules/string (string.h): Also substitute GNULIB_MBSPCASECMP.
13764         * MODULES.html.sh (Internationalization functions): Add mbspcasecmp.
13765
13766 2007-02-14  Bruno Haible  <bruno@clisp.org>
13767
13768         * modules/mbsncasecmp-tests: New file.
13769         * tests/test-mbsncasecmp.sh: New file.
13770         * tests/test-mbsncasecmp.c: New file.
13771
13772         New module mbsncasecmp.
13773         * modules/mbsncasecmp: New file.
13774         * lib/mbsncasecmp.c: New file.
13775         * lib/string_.h (mbsncasecmp): New declaration.
13776         * m4/mbsncasecmp.m4: New file.
13777         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
13778         GNULIB_MBSNCASECMP.
13779         * modules/string (string.h): Also substitute GNULIB_MBSNCASECMP.
13780         * MODULES.html.sh (Internationalization functions): Add mbsncasecmp.
13781
13782 2007-02-14  Paul Eggert  <eggert@cs.ucla.edu>
13783
13784         * lib/exclude.c (FNM_EXTMATCH): Define if system does not.
13785         Verify that it doesn't overlap with our flags.
13786         (fnmatch_no_wildcards): Don't use strcasecmp or strncasecmp, which
13787         do not have the desired effect in multibyte locales; instead, use
13788         mbscasecmp.
13789         * modules/exclude (Depends-on): Depend on mbscasecmp, not strcase.
13790         Add dependency on xalloc.  Depend on fnmatch, not fnmatch-gnu, since
13791         we don't require GNU fnmatch ourselves (if our users require it, they
13792         should do so explicitly).
13793
13794         Fix regex code so it doesn't rely on strcasecmp.
13795         * lib/regex_internal.h: Include <langinfo.h> only if _LIBC is defined.
13796         Otherwise, include gnulib's langinfo.h.
13797         * lib/regcomp.c (init_dfa): Don't use strcasecmp, as it can have
13798         undesirable behavior in non-C locales.  Instead, rely on localecharset.
13799         * m4/regex.m4 (gl_PREREQ_REGEX): Don't require AM_LANGINFO_CODESET.
13800         * modules/regex (FILES): Remove m4/codeset.m4.
13801         (Depends-on): Add localcharset.  Remove strcase.
13802
13803 2007-02-13  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
13804
13805         * m4/unlinkdir.m4 (gl_UNLINKDIR): Fix m4 quoting bug.
13806         * m4/unlink-busy.m4 (gl_FUNC_UNLINK_BUSY_TEXT): Likewise.
13807
13808 2007-02-13  Bruno Haible  <bruno@clisp.org>
13809
13810         * m4/intdiv0.m4 (gt_INTDIV0): Assume ANSI C. Fix underquoting bug.
13811         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
13812
13813 2007-02-12  Bruno Haible  <bruno@clisp.org>
13814
13815         * lib/string_.h (memmem, mempcpy, memrchr, stpcpy, stpncpy, strchrnul,
13816         strdup, strndup, strnlen, strpbrk, strsep, strtok_r): If
13817         GNULIB_POSIXCHECK and the gnulib module not enabled, provoke a link-
13818         time warning rather than a link error.
13819
13820 2007-02-12  Bruno Haible  <bruno@clisp.org>
13821
13822         * m4/locale-fr.m4 (gt_LOCALE_FR): Fix m4 quoting bug.
13823         * m4/locale-zh.m4 (gt_LOCALE_ZH_CN): Likewise.
13824         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
13825
13826 2007-02-12  Paul Eggert  <eggert@cs.ucla.edu>
13827
13828         * lib/string_.h (strncasecmp): Fix typo: this macro takes 3
13829         args, not 2.
13830
13831 2007-02-12  Paul Eggert  <eggert@cs.ucla.edu>
13832
13833         New module 'time', so that apps can include <time.h> as per
13834         POSIX and GNU instead of separate include files like time_r.h
13835         and timegm.h.  This implementation tries out a simpler approach
13836         for replacing decls in standard include files (as compared to
13837         the string module), somewhat as an experiment.
13838
13839         * config/srclist.txt: Comment out mktime.c for now.
13840         * doc/gnulib-tool.texi (Initial import): Don't use time_r as an example
13841         since it doesn't apply any more.  Use generic wording instead.
13842         * MODULES.html.sh (Support for systems lacking POSIX:2001): New module
13843         'time'.
13844         * lib/time_.h, m4/time_h.m4, modules/time: New files.
13845         * lib/strptime.h, lib/time_r.h, lib/timegm.h: Remove.
13846         * lib/mktime.c: Include config.h depending on _LIBC, not HAVE_CONFIG_H.
13847         Don't include <sys/types.h>; no longer needed since we assume C89.
13848         * lib/mktime.c: Don't include "time_r.h"; no longer needed.
13849         * lib/strftime.c: Likewise.
13850         * lib/time_r.c: Likewise.
13851         * lib/nanosleep.c (nanosleep): #undef after include files, not before.
13852         * lib/nanosleep.c: Include <time.h> first, to check interface.
13853         * lib/strptime.c: Likewise.
13854         * lib/time_r.c: Likewise.
13855         * lib/timegm.c: Likewise.
13856         * lib/strptime.c: Don't include strptime.h or time_r.h; no longer
13857         needed.
13858         * lib/timegm.c: Don't include timegm.h; no longer needed.
13859         * lib/timespec.h: Don't include <sys/time.h> before <time.h>;
13860         time.h now handles any problems in that area.
13861         (struct timespec, nanosleep): Remove; time.h now arranges for these.
13862         * lib/xnanosleep.c: Don't include timespec.h; no longer needed now
13863         that time.h defines struct timespec.
13864         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Check that nanosleep is declared.
13865         Set REPLACE_NANOSLEEP.  Don't AC_DEFINE nanosleep; the time module now
13866         handles that.
13867         * m4/strptime.m4 (gl_FUNC_STPRTIME): Set REPLACE_STRPTIME.
13868         * m4/time_r.m4 (gl_TIME_R): Don't define HAVE_TIME_R_POSIX; no longer
13869         needed.  Set REPLACE_LOCALTIME.
13870         * m4/timegm.m4 (gl_FUNC_TIMEGM): Set REPLACE_TIMEGM.
13871         * m4/timespec.m4 (gl_CHECK_TYPE_STRUCT_TIMESPEC): Move to time_h.m4.
13872         (gl_TIMESPEC): Don't check for sys/time.h or struct timespec or
13873         nanosleep; time_h.m4 now does that.  Don't require
13874         gl_USE_SYSTEM_EXTENSIONS; no longer needed directly, and the time
13875         module handles this now.
13876         * modules/getdate (Depends-on): Remove timespec.  Add time.
13877         * modules/nanosleep (Depends-on): Likewise.
13878         * modules/stat-time (Depends-on): Likewise.
13879         * modules/nanosleep (Include): Include time.h, not timespec.h.
13880         * modules/strptime (Files): Remove lib/strptime.h.
13881         (Depends-on): Add extensions, time.
13882         (Include): Include time.h, not strptime.h.
13883         * modules/time_r (Files): Remove lib/time_r.h.
13884         (Depends-on): Add time.
13885         (Include): Include time.h, not time_r.h.
13886         * modules/timegm: Likewise.
13887         * modules/timespec (Description): Now does timespec-related decls
13888         of our own, instead of struct timespec itself.
13889         (Depends-on): Add time; remove extensions.
13890         (Maintainer): Add self.
13891         * modules/utimecmp (Depends-on): Add time; remove timespec.
13892         * modules/utimens (Depends-on): Likewise.
13893         * modules/xnanosleep (Depends-on): Likewise.
13894
13895 2007-02-11  Bruno Haible  <bruno@clisp.org>
13896
13897         * lib/c-strstr.c: Include allocsa.h.
13898         (knuth_morris_pratt): Use allocsa/freesa instead of malloc/free.
13899         * lib/c-strcasestr.c: Include allocsa.h.
13900         (knuth_morris_pratt): Use allocsa/freesa instead of malloc/free.
13901         * lib/strcasestr.c: Include allocsa.h.
13902         (knuth_morris_pratt): Use allocsa/freesa instead of malloc/free.
13903         * lib/mbsstr.c: Include allocsa.h.
13904         (knuth_morris_pratt_unibyte, knuth_morris_pratt_multibyte): Use
13905         allocsa/freesa instead of malloc/free.
13906         * lib/mbscasestr.c: Include allocsa.h.
13907         (knuth_morris_pratt_unibyte, knuth_morris_pratt_multibyte): Use
13908         allocsa/freesa instead of malloc/free.
13909         * modules/c-strstr (Depends-on): Add allocsa.
13910         * modules/c-strcasestr (Depends-on): Likewise.
13911         * modules/strcasestr (Depends-on): Likewise.
13912         * modules/mbsstr (Depends-on): Likewise.
13913         * modules/mbscasestr (Depends-on): Likewise.
13914
13915 2007-02-11  Bruno Haible  <bruno@clisp.org>
13916
13917         * lib/mbsspn.c (mbsspn): Fix bug. Remove unnecessary strlen call.
13918
13919         * modules/mbsspn-tests: New file.
13920         * tests/test-mbsspn.sh: New file.
13921         * tests/test-mbsspn.c: New file.
13922
13923 2007-02-11  Bruno Haible  <bruno@clisp.org>
13924
13925         * lib/mbspbrk.c (mbspbrk): Remove unneeded cast.
13926
13927         * modules/mbspbrk-tests: New file.
13928         * tests/test-mbspbrk.sh: New file.
13929         * tests/test-mbspbrk.c: New file.
13930
13931 2007-02-11  Bruno Haible  <bruno@clisp.org>
13932
13933         * lib/mbscspn.c (mbscspn): Remove unnecessary strlen call and
13934         unneeded cast.
13935
13936         * modules/mbscspn-tests: New file.
13937         * tests/test-mbscspn.sh: New file.
13938         * tests/test-mbscspn.c: New file.
13939
13940 2007-02-11  Bruno Haible  <bruno@clisp.org>
13941
13942         * modules/mbscasecmp-tests: New file.
13943         * tests/test-mbscasecmp.sh: New file.
13944         * tests/test-mbscasecmp.c: New file.
13945
13946 2007-02-11  Bruno Haible  <bruno@clisp.org>
13947
13948         Ensure O(n) worst-case complexity of mbscasestr.
13949         * lib/mbscasestr.c: Include stdbool.h.
13950         (knuth_morris_pratt_unibyte, knuth_morris_pratt_multibyte): New
13951         functions.
13952         (mbscasestr): Add some bookkeeping. Invoke knuth_morris_pratt_* when
13953         the bookkeeping indicates that it's worth it.
13954         * modules/mbscasestr (Depends-on): Add stdbool, mbslen, strnlen.
13955
13956         * modules/mbscasestr-tests: New file.
13957         * tests/test-mbscasestr1.c: New file.
13958         * tests/test-mbscasestr2.sh: New file.
13959         * tests/test-mbscasestr2.c: New file.
13960         * tests/test-mbscasestr3.sh: New file.
13961         * tests/test-mbscasestr3.c: New file.
13962         * tests/test-mbscasestr4.sh: New file.
13963         * tests/test-mbscasestr4.c: New file.
13964         * m4/locale-tr.m4: New file.
13965
13966 2007-02-11  Bruno Haible  <bruno@clisp.org>
13967
13968         Ensure O(n) worst-case complexity of mbsstr.
13969         * lib/mbsstr.c: Include stdbool.h.
13970         (knuth_morris_pratt_unibyte, knuth_morris_pratt_multibyte): New
13971         functions.
13972         (mbsstr): Add some bookkeeping. Invoke knuth_morris_pratt_* when the
13973         bookkeeping indicates that it's worth it.
13974         * modules/mbsstr (Depends-on): Add stdbool, mbslen, strnlen.
13975
13976         * modules/mbsstr-tests: New file.
13977         * tests/test-mbsstr1.c: New file.
13978         * tests/test-mbsstr2.sh: New file.
13979         * tests/test-mbsstr2.c: New file.
13980         * tests/test-mbsstr3.sh: New file.
13981         * tests/test-mbsstr3.c: New file.
13982         * m4/locale-fr.m4: New file.
13983
13984 2007-02-11  Bruno Haible  <bruno@clisp.org>
13985
13986         * lib/mbsrchr.c (mbsrchr): Fix bug.
13987
13988         * modules/mbsrchr-tests: New file.
13989         * tests/test-mbsrchr.sh: New file.
13990         * tests/test-mbsrchr.c: New file.
13991
13992 2007-02-11  Bruno Haible  <bruno@clisp.org>
13993
13994         * lib/mbschr.c (mbschr): Fix bug.
13995
13996         * modules/mbschr-tests: New file.
13997         * tests/test-mbschr.sh: New file.
13998         * tests/test-mbschr.c: New file.
13999         * m4/locale-zh.m4: New file.
14000
14001 2007-02-11  Bruno Haible  <bruno@clisp.org>
14002
14003         Support for copying multibyte string iterators.
14004         * lib/mbiter.h: Include <string.h>.
14005         (mbiter_multi_copy): New function.
14006         (mbi_copy): New macro.
14007         * lib/mbuiter.h: Include <string.h>.
14008         (mbuiter_multi_copy): New function.
14009         (mbui_copy): New macro.
14010
14011 2007-02-11  Bruno Haible  <bruno@clisp.org>
14012
14013         New module mbslen.
14014         * modules/mbslen: New file.
14015         * lib/mbslen.c: New file.
14016         * lib/string_.h (mbslen): New declaration.
14017         * m4/mbslen.m4: New file.
14018         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
14019         GNULIB_MBSLEN.
14020         * modules/string (string.h): Also substitute GNULIB_MBSLEN.
14021         * MODULES.html.sh (Internationalization functions): Add mbslen.
14022
14023 2007-02-11  Bruno Haible  <bruno@clisp.org>
14024
14025         Ensure O(n) worst-case complexity of strcasestr substitute.
14026         * lib/strcasestr.c: Include stdbool.h.
14027         (knuth_morris_pratt): New function.
14028         (strcasestr): Add some bookkeeping. Invoke knuth_morris_pratt when the
14029         bookkeeping indicates that it's worth it.
14030         * modules/strcasestr (Depends-on): Add stdbool, strnlen.
14031
14032         * modules/strcasestr-tests: New file.
14033         * tests/test-strcasestr.c: New file.
14034
14035 2007-02-11  Bruno Haible  <bruno@clisp.org>
14036
14037         Ensure O(n) worst-case complexity of c_strcasestr.
14038         * lib/c-strcasestr.c: Include stdbool.h, string.h.
14039         (knuth_morris_pratt): New function.
14040         (c_strcasestr): Add some bookkeeping. Invoke knuth_morris_pratt when
14041         the bookkeeping indicates that it's worth it.
14042         * modules/c-strcasestr (Depends-on): Add stdbool, strnlen.
14043
14044         * modules/c-strcasestr-tests: New file.
14045         * tests/test-c-strcasestr.c: New file.
14046
14047 2007-02-11  Bruno Haible  <bruno@clisp.org>
14048
14049         Ensure O(n) worst-case complexity of c_strstr.
14050         * lib/c-strstr.c: Include stdbool.h, string.h.
14051         (knuth_morris_pratt): New function.
14052         (c_strstr): Add some bookkeeping. Invoke knuth_morris_pratt when the
14053         bookkeeping indicates that it's worth it.
14054         * modules/c-strstr (Depends-on): Add stdbool, strnlen.
14055
14056         * lib/c-strstr.c: Complete rewrite for maintainability.
14057
14058         * modules/c-strstr-tests: New file.
14059         * tests/test-c-strstr.c: New file.
14060
14061 2007-02-11  Bruno Haible  <bruno@clisp.org>
14062
14063         * m4/javacomp.m4 (gt_JAVACOMP): Work around a 'tr' bug in coreutils
14064         5.2.1 and earlier, whereby \055 was treated just like the range
14065         delimiter '-'.
14066         Reported by Joel E. Denny <jdenny@ces.clemson.edu>.
14067
14068 2007-02-08  Bruno Haible  <bruno@clisp.org>
14069
14070         * modules/regex (Depends-on): Add stdbool.
14071         Reported by Dalibor Topic <robilad@kaffe.org>.
14072
14073 2007-02-05  Paul Eggert  <eggert@cs.ucla.edu>
14074
14075         * m4/regex.m4 (gl_REGEX): Check for glibc bug #3957.
14076         Prefer returning from main to exiting from it.
14077         Remove unnecessary parens after sizeof.
14078
14079 2007-02-05  Bruno Haible  <bruno@clisp.org>
14080
14081         New module mbssep.
14082         * modules/mbssep: New file.
14083         * lib/mbssep.c: New file.
14084         * lib/string_.h (strsep): Add a conditional link warning.
14085         (mbssep): New declaration.
14086         * m4/mbssep.m4: New file.
14087         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
14088         GNULIB_MBSSEP.
14089         * modules/string (string.h): Also substitute GNULIB_MBSSEP.
14090         * MODULES.html.sh (Internationalization functions): Add mbssep.
14091
14092 2007-02-05  Bruno Haible  <bruno@clisp.org>
14093
14094         * lib/strsep.c (strsep): Fix actions in case of no delimiters.
14095         Optimize search in case of 1 delimiter.
14096
14097 2007-02-05  Paolo Bonzini  <bonzini@gnu.org>
14098
14099         * lib/acl.h: Include sys/types.h before sys/acl.h.
14100
14101 2007-02-05  Paolo Bonzini  <bonzini@gnu.org>
14102
14103         Merge upstream fix for glibc bugzilla #3957:
14104
14105         2007-02-05  Jakub Jelinek  <jakub@redhat.com>
14106
14107         * lib/regcomp.c (parse_bracket_exp): Set '\n' bit rather than '\0'
14108         bit for RE_HAT_LISTS_NOT_NEWLINE.
14109         (build_charclass_op): Remove bogus comment.
14110
14111 2007-02-05  Simon Josefsson  <simon@josefsson.org>
14112
14113         * lib/gc.h, lib/gc-libgcrypt.c: Support SHA-256/384/512.
14114
14115 2007-02-04  Paul Eggert  <eggert@cs.ucla.edu>
14116
14117         * lib/getsubopt.c [!_LIBC]: Include config.h and getsubopt.h.
14118         * lib/memmem.c [!defined _LIBC]: Include config.h.
14119
14120 2007-02-04  Bruno Haible  <bruno@clisp.org>
14121
14122         * lib/string_.h (GL_LINK_WARNING2): Put the word "warning:" into the
14123         warning message.
14124
14125 2007-02-04  Bruno Haible  <bruno@clisp.org>
14126
14127         New module mbstok_r.
14128         * modules/mbstok_r: New file.
14129         * lib/mbstok_r.c: New file.
14130         * lib/string_.h (strtok_r): Change argument names to match the
14131         comments. Add a conditional link warning.
14132         (mbstok_r): New declaration.
14133         * m4/mbstok_r.m4: New file.
14134         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
14135         GNULIB_MBSTOK_R.
14136         * modules/string (string.h): Also substitute GNULIB_MBSTOK_R.
14137         * MODULES.html.sh (Internationalization functions): Add mbstok_r.
14138
14139 2007-02-04  Bruno Haible  <bruno@clisp.org>
14140
14141         New module mbsspn.
14142         * modules/mbsspn: New file.
14143         * lib/mbsspn.c: New file.
14144         * lib/string_.h (strspn): Add a conditional link warning.
14145         (mbsspn): New declaration.
14146         * m4/mbsspn.m4: New file.
14147         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
14148         GNULIB_MBSSPN.
14149         * modules/string (string.h): Also substitute GNULIB_MBSSPN.
14150         * MODULES.html.sh (Internationalization functions): Add mbsspn.
14151
14152 2007-02-04  Bruno Haible  <bruno@clisp.org>
14153
14154         New module mbspbrk.
14155         * modules/mbspbrk: New file.
14156         * lib/mbspbrk.c: New file.
14157         * lib/string_.h (strpbrk): Add a conditional link warning.
14158         (mbspbrk): New declaration.
14159         * m4/mbspbrk.m4: New file.
14160         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
14161         GNULIB_MBSPBRK.
14162         * modules/string (string.h): Also substitute GNULIB_MBSPBRK.
14163         * MODULES.html.sh (Internationalization functions): Add mbspbrk.
14164
14165 2007-02-04  Bruno Haible  <bruno@clisp.org>
14166
14167         New module mbscspn.
14168         * modules/mbscspn: New file.
14169         * lib/mbscspn.c: New file.
14170         * lib/string_.h (strcspn): Add a conditional link warning.
14171         (mbscspn): New declaration.
14172         * m4/mbscspn.m4: New file.
14173         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
14174         GNULIB_MBSCSPN.
14175         * modules/string (string.h): Also substitute GNULIB_MBSCSPN.
14176         * MODULES.html.sh (Internationalization functions): Add mbscspn.
14177
14178 2007-02-04  Bruno Haible  <bruno@clisp.org>
14179
14180         New module mbscasestr, reduced goal of strcasestr.
14181         * modules/mbscasestr: New file.
14182         * lib/mbscasestr.c: New file, copied from lib/strcasestr.c.
14183         (mbscasestr): Renamed from strcasestr.
14184         * lib/strcasestr.c: Don't include mbuiter.h.
14185         (strcasestr): Remove support for multibyte locales.
14186         * lib/string_.h (strcasestr): Don`t rename. Declare only if missing.
14187         Change the conditional link warning.
14188         (mbscasestr): New declaration.
14189         * m4/mbscasestr.m4: New file.
14190         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Enable the replacement only if
14191         the system does not have strcasestr. Set HAVE_STRCASESTR instead of
14192         REPLACE_STRCASESTR.
14193         (gl_PREREQ_STRCASESTR): Don't require gl_FUNC_MBRTOWC.
14194         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
14195         HAVE_STRCASESTR instead of REPLACE_STRCASESTR.
14196         (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize GNULIB_MBSCASESTR.
14197         * modules/string (string.h): Also substitute GNULIB_MBSCASESTR.
14198         Substitute HAVE_STRCASESTR instead of REPLACE_STRCASESTR.
14199         * modules/strcasestr (Files): Remove m4/mbrtowc.m4.
14200         (Depends-on): Remove mbuiter.
14201         * MODULES.html.sh (Internationalization functions): Add mbscasestr.
14202
14203 2007-02-04  Bruno Haible  <bruno@clisp.org>
14204
14205         Simplify handling of strncasecmp.
14206         * lib/string_.h (strncasecmp): Remove test for GNULIB_STRCASE. Change
14207         the conditional link warning.
14208         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Initialize
14209         HAVE_STRCASECMP, not REPLACE_STRCASECMP.
14210         (gl_STRING_MODULE_INDICATOR_DEFAULTS): Don't initialize GNULIB_STRCASE.
14211         * modules/strcase (configure.ac): Don't invoke
14212         gl_STRING_MODULE_INDICATOR.
14213         * modules/string (string.h): Don't substitute GNULIB_STRCASE.
14214
14215 2007-02-04  Bruno Haible  <bruno@clisp.org>
14216
14217         New module mbscasecmp, reduced goal of strcasecmp.
14218         * modules/mbscasecmp: New file.
14219         * lib/mbscasecmp.c: New file, copied from lib/strcasecmp.c.
14220         (mbscasecmp): Renamed from strcasecmp.
14221         * lib/strcasecmp.c: Don't include mbuiter.h.
14222         (strcasecmp): Remove support for multibyte locales.
14223         * lib/string_.h (strcasecmp): Don`t rename. Declare only if missing.
14224         Change the conditional link warning.
14225         (mbscasecmp): New declaration.
14226         * m4/mbscasecmp.m4: New file.
14227         * m4/strcase.m4 (gl_FUNC_STRCASECMP): Enable the replacement only if
14228         the system lacks strcasecmp. Set HAVE_STRCASECMP instead of
14229         REPLACE_STRCASECMP.
14230         (gl_PREREQ_STRCASECMP): Don't require gl_FUNC_MBRTOWC.
14231         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
14232         GNULIB_MBSCASECMP.
14233         * modules/string (string.h): Also substitute GNULIB_MBSCASECMP.
14234         Substitute HAVE_STRCASECMP instead of REPLACE_STRCASECMP.
14235         * modules/strcase (Files): Remove m4/mbrtowc.m4.
14236         (Depends-on): Remove mbuiter.
14237         * MODULES.html.sh (Internationalization functions): Add mbscasecmp.
14238
14239 2007-02-04  Bruno Haible  <bruno@clisp.org>
14240
14241         New module mbsstr. Remove module strstr.
14242         * modules/mbsstr: New file.
14243         * modules/strstr: Remove file.
14244         * lib/mbsstr.c: Renamed from lib/strstr.c.
14245         (mbsstr): Renamed from strstr.
14246         * lib/string_.h (strstr): Remove declaration. Change the conditional
14247         link warning.
14248         (mbsstr): New declaration.
14249         * m4/mbsstr.m4: New file.
14250         * m4/strstr.m4: Remove file.
14251         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Don't initialize
14252         REPLACE_STRSTR.
14253         (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize GNULIB_MBSSTR.
14254         Don't initialize GNULIB_STRSTR.
14255         * modules/string (string.h): Also substitute GNULIB_MBSSTR. Don't
14256         substitute GNULIB_STRSTR and REPLACE_STRSTR.
14257         * MODULES.html.sh (Internationalization functions): Add mbsstr.
14258         (Support for systems lacking ANSI C 89): Remove strstr.
14259
14260 2007-02-04  Bruno Haible  <bruno@clisp.org>
14261
14262         New module mbsrchr.
14263         * modules/mbsrchr: New file.
14264         * lib/mbsrchr.c: New file.
14265         * lib/string_.h (strrchr): Add a conditional link warning.
14266         (mbsrchr): New declaration.
14267         * m4/mbsrchr.m4: New file.
14268         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
14269         GNULIB_MBSRCHR.
14270         * modules/string (string.h): Also substitute GNULIB_MBSRCHR.
14271         * MODULES.html.sh (Internationalization functions): Add mbsrchr.
14272
14273 2007-02-04  Bruno Haible  <bruno@clisp.org>
14274
14275         New module mbschr.
14276         * modules/mbschr: New file.
14277         * lib/mbschr.c: New file.
14278         * lib/string_.h (strchr): Add a conditional link warning.
14279         (mbschr): New declaration.
14280         * m4/mbschr.m4: New file.
14281         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR_DEFAULTS): Initialize
14282         GNULIB_MBSCHR.
14283         * modules/string (string.h): Also substitute GNULIB_MBSCHR.
14284         * MODULES.html.sh (Internationalization functions): Add mbschr.
14285
14286 2007-02-04  Paul Eggert  <eggert@cs.ucla.edu>
14287
14288         * lib/stdbool_.h: Mention that bool bit-fields aren't supported.
14289
14290         * modules/stdarg (configure.ac-early): Require AC_PROG_CC_STDC.
14291
14292 2007-02-04  Bruno Haible  <bruno@clisp.org>
14293
14294         New module description section 'configure.ac-early'.
14295         * gnulib-tool (sed_extract_prog): Recognize configure.ac-early.
14296         (func_get_autoconf_early_snippet): New function.
14297         (func_import, func_create_testdir): Use it. Remove special cases for
14298         modules 'extensions' and 'lock'.
14299         * modules/extensions (configure.ac-early): Require
14300         gl_USE_SYSTEM_EXTENSIONS.
14301         * modules/lock (configure.ac-early): Require gl_LOCK_EARLY.
14302
14303 2007-02-04  Bruno Haible  <bruno@clisp.org>
14304
14305         Make use of gcj-4.3's -fsource and -ftarget option.
14306         * m4/javacomp.m4 (gt_JAVACOMP): Test whether gcj is in version >= 4.3,
14307         and if so try the options -fsource and -ftarget.
14308         * lib/javacomp.c (compile_using_gcj): Add fsource_option,
14309         source_version, ftarget_option, target_version arguments.
14310         (is_envjavac_gcj43, is_envjavac_gcj43_usable): New functions.
14311         (is_envjavac_oldgcj_14_14_usable): Renamed from
14312         is_envjavac_gcj_14_14_usable.
14313         (is_envjavac_oldgcj_14_13_usable): Renamed from
14314         is_envjavac_gcj_14_13_usable.
14315         (is_gcj_present): Update.
14316         (is_gcj_43, is_gcj43_usable): New functions.
14317         (is_oldgcj_14_14_usable): Renamed from is_gcj_14_14_usable. Update.
14318         (is_oldgcj_14_13_usable): Renamed from is_gcj_14_13_usable. Update.
14319         (compile_java_class): Test whether gcj is in version >= 4.3, and if so
14320         try the options -fsource and -ftarget.
14321
14322 2007-02-03  Paul Eggert  <eggert@cs.ucla.edu>
14323
14324         * lib/xalloc.h (x2nrealloc): Fix an unlikely bug in the overflow
14325         checking code.  Set N = ceil (1.5 * N) rather than to a slightly
14326         larger value.
14327
14328 2007-02-03  Jim Meyering  <jim@meyering.net>
14329
14330         Give tools a better chance to allocate space for very large buffers.
14331         * lib/xalloc.h (x2nrealloc): Use 3/2, not 2, as buffer size factor.
14332
14333         Make pwd and readlink work also when run with an unreadable parent dir
14334         on systems with openat support.
14335         * lib/getcwd.c (__getcwd) [HAVE_PARTLY_WORKING_GETCWD]: Use the system
14336         provided getcwd function, even when we have openat support.
14337         Reported by Dmitry V. Levin in <http://bugzilla.redhat.com/227168>.
14338
14339 2007-02-02  Bruno Haible  <bruno@clisp.org>
14340
14341         * lib/string_.h (memmem, mempcpy, memrchr, stpcpy, stpncpy, strchrnul,
14342         strdup, strndup, strnlen, strpbrk, strsep, strtok_r): Provoke a link
14343         error only if GNULIB_POSIXCHECK is defined. Needed to avoid artificial
14344         portability problems if one of these functions is only used on specific
14345         platforms.
14346         Reported by Paul Eggert.
14347
14348 2007-02-02  Paul Eggert  <eggert@cs.ucla.edu>
14349
14350         Avoid mempcpy in the regex code, as the string.h mempcpy stuff
14351         is causing more trouble than it's curing.
14352         * lib/regex_internal.h (__mempcpy): Remove.
14353         * lib/regcomp.c (regerror): Rewrite to avoid the need for mempcpy
14354         (and make the code a tad smaller to boot).
14355         * m4/regex.m4 (gl_PREREQ_REGEX): Don't check for mempcpy.
14356
14357 2007-02-02  Jim Meyering  <jim@meyering.net>
14358
14359         * modules/arpa_inet: Put AC_PROG_MKDIR_P in the configure.ac:
14360         section, not in the Makefile.am: one.
14361
14362 2007-02-02  Eric Blake  <ebb9@byu.net>
14363
14364         * lib/strchrnul.c: Always include config.h first.
14365
14366         * modules/mountlist (Depends-on): Revert 2007-01-31 change,
14367         gnulib strstr is not necessary here.
14368
14369 2007-02-02  Simon Josefsson  <simon@josefsson.org>
14370
14371         * m4/socklen.m4: Fix typo.
14372
14373 2007-02-02  Eric Blake  <ebb9@byu.net>
14374
14375         * modules/arpa_inet (Makefile.am): Use MKDIR_P to avoid races.
14376         * modules/netinet_in (Makefile.am): Likewise.
14377
14378 2007-02-01  Bruno Haible  <bruno@clisp.org>
14379
14380         * lib/string_.h (GL_LINK_WARNING): New macro.
14381         (strcasecmp, strstr, strcasestr): If provided by the system,
14382         conditionally define as a macro that leads to a warning instead of to
14383         an error.
14384         (strncasecmp): Conditionally define as a macro that leads to a warning.
14385
14386 2007-02-01  Karl Berry  <karl@gnu.org>
14387
14388         * config/srclist.txt (strtok_r.c): lose sync, no more strtok_r.h.
14389
14390 2007-02-01  Bruno Haible  <bruno@clisp.org>
14391
14392         * MODULES.html.sh (Unicode string functions): Update after 2007-01-27
14393         renamings.
14394
14395 2007-02-01  Eric Blake  <ebb9@byu.net>
14396
14397         * modules/regex (Depends-on): Revert dependence on mempcpy.
14398         * lib/regex_internal.h [! _LIBC && !__mempcpy]: Undo string
14399         module's definition of mempcpy.
14400         Reported by Paul Eggert.
14401
14402 2007-02-01  Paul Eggert  <eggert@cs.ucla.edu>
14403
14404         * lib/string_.h: If the gnulib module XYZ is not present, undefine
14405         the symbol XYZ before redefining it.  This fixes a problem with
14406         programs that don't use XYZ, when compiled on systems that define
14407         XYZ to something else.
14408
14409 2007-01-31  Paul Eggert  <eggert@cs.ucla.edu>
14410
14411         * lib/mkdir-p.c (make_dir_parents): Close a race condition that
14412         occurs when "mkdir -m foo" creates a setgid directory that is (1)
14413         writeable to group or other and (2) is intended to have a special
14414         mode bit that is set or cleared.  In such a case, the directory
14415         should be neither group- nor other-writeable until the special
14416         mode bits are right.
14417
14418 2007-01-31  Eric Blake  <ebb9@byu.net>
14419
14420         * modules/mountlist (Depends-on): Add strstr.
14421
14422         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR): Correct m4 usage
14423         bug.
14424         * modules/string (Makefile.am): Remove redundant replacement.
14425         * modules/regex (Depends-on): Add mempcpy.
14426
14427 2007-01-31  Bruno Haible  <bruno@clisp.org>
14428
14429         New module description field 'Link'.
14430         * gnulib-tool (func_usage): Document --extract-link-directive.
14431         (sed_extract_prog): Recognize 'Link' directive.
14432         (func_get_link_directive): New function.
14433         (func_import): Show summary of link directives.
14434         Handle --extract-link-directive option.
14435         * modules/acl (Link): New section.
14436         * modules/clock-time (Link): New section.
14437         * modules/euidaccess (Link): New section.
14438         * modules/gettext (Link): New section.
14439         * modules/iconv (Link): New section.
14440         * modules/lock (Link): New section.
14441         * modules/nanosleep (Link): New section.
14442         * modules/readline (Link): New section.
14443
14444 2007-01-27  Bruno Haible  <bruno@clisp.org>
14445
14446         Enforce the use of gnulib modules for unportable <string.h> functions.
14447         * m4/string_h.m4 (gl_STRING_MODULE_INDICATOR): New macro.
14448         (gl_STRING_MODULE_INDICATOR_DEFAULTS): New macro.
14449         (gl_HEADER_STRING_H_BODY): Require it.
14450         * lib/string_.h: If the gnulib module XYZ is not present, redefine
14451         the symbol XYZ to one that gives a link error.
14452         * modules/string (Makefile.am): Also substitute the GNULIB_* variables.
14453         * modules/memmem (configure.ac): Invoke gl_STRING_MODULE_INDICATOR.
14454         * modules/mempcpy (configure.ac): Likewise.
14455         * modules/memrchr (configure.ac): Likewise.
14456         * modules/stpcpy (configure.ac): Likewise.
14457         * modules/stpncpy (configure.ac): Likewise.
14458         * modules/strcase (configure.ac): Likewise.
14459         * modules/strcasestr (configure.ac): Likewise.
14460         * modules/strchrnul (configure.ac): Likewise.
14461         * modules/strdup (configure.ac): Likewise.
14462         * modules/strndup (configure.ac): Likewise.
14463         * modules/strnlen (configure.ac): Likewise.
14464         * modules/strpbrk (configure.ac): Likewise.
14465         * modules/strsep (configure.ac): Likewise.
14466         * modules/strstr (configure.ac): Likewise.
14467         * modules/strtok_r (configure.ac): Likewise.
14468
14469 2007-01-31  Jean-Louis Martineau  <martineau@zmanda.com>  (tiny change)
14470
14471         * lib/gai_strerror.c (values): Add EAI_OVERFLOW.
14472
14473 2007-01-30  Jim Meyering  <jim@meyering.net>
14474
14475         * lib/mpsort.c (mpsort): Remove spurious "return" in void function.
14476
14477 2007-01-29  Bruno Haible  <bruno@clisp.org>
14478
14479         * lib/allocsa.h: Use '#if HAVE_*' instead of '#ifdef HAVE_*'.
14480         * lib/execute.c: Likewise.
14481         * lib/pipe.c: Likewise.
14482         * lib/printf-args.h: Likewise.
14483         * lib/printf-args.c: Likewise.
14484         * lib/printf-parse.c: Likewise.
14485         * lib/vasnprintf.c: Likewise.
14486
14487 2007-01-29  Eric Blake  <ebb9@byu.net>
14488
14489         * lib/memrchr.c: Assume <string.h> unconditionally, to pull in
14490         declaration.
14491
14492 2007-01-29  Paul Eggert  <eggert@cs.ucla.edu>
14493
14494         * lib/strptime.h (strptime): Use 'restrict' for args where
14495         POSIX requires this.
14496         * lib/strptime.c (strptime): Likewise.
14497         Change license notice from LGPL to GPL, since gnulib-tool will
14498         change this as needed.
14499         Include <config.h> if _LIBC is not defined, not if HAVE_CONFIG_H is
14500         defined.
14501         Include "strptime.h" first, to check interface.
14502         Do not #undef _LIBC and _NL_CURRENT.
14503         Do not include <stdlib.h>; no longer needed.
14504         Include "time_r.h" and declare ptime_locale_status
14505         only if _LIBC is not defined.
14506         (__P): Remove unused macro.
14507         (match_string): Bring back glibc version, but use it only if _LIBC
14508         is defined.
14509         (__strptime_internal): Compile tm_gmtoff code if _LIBC is defined, too.
14510         Remove unnecessary assertion and abort() call.
14511         Use #ifdef _NL_CURRENT rather than #if 0, for benefit of glibc.
14512         * m4/strptime.m4: Fix serial number comment.
14513         (gl_FUNC_STRPTIME): Require AC_C_RESTRICT, gl_TM_GMTOFF.
14514         * modules/strptime (Files): Add m4/tm_gmtoff.m4.
14515         (Depends-on): Add time_r.
14516
14517 2007-01-29  Bruno Haible  <bruno@clisp.org>
14518
14519         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
14520         strptime.
14521         * modules/strptime (Depends-on): Add stdbool.
14522         * lib/strptime.h: Include <time.h> always. Add comments.
14523
14524 2007-01-29  Yoann Vandoorselaere  <yoann@prelude-ids.org>
14525
14526         * modules/strptime: New file.
14527         * lib/strptime.h: New file.
14528         * lib/strptime.c: New file.
14529         * m4/strptime.m4: New file.
14530
14531 2007-01-28  Paul Eggert  <eggert@cs.ucla.edu>
14532
14533         * MODULES.html.sh: New module mpsort.
14534         * lib/mpsort.c, lib/mpsort.h, m4/mpsort.m4, modules/mpsort: New files.
14535
14536         * lib/regex.h (_Restrict_): Renamed from __restrict, to avoid
14537         a circularity problem with HP-UX ia64 reported by Bob Proulx in
14538         <http://lists.gnu.org/archive/html/bug-gnulib/2007-01/msg00394.html>.
14539         All uses changed.
14540         (_Restrict_arr_): Renamed from __restrict_arr, for similar reasons.
14541         All uses changed.
14542         * lib/regcomp.c, lib/regexec.c: Change all uses from __restrict
14543         to _Restrict_.
14544         * lib/regexec.c (regexec): Declare pmatch with _Restrict_arr_, so that
14545         the parameter matches the prototype.
14546
14547 2007-01-28  Jim Meyering  <jim@meyering.net>
14548
14549         * modules/sys_time (Makefile.am) [MOSTLYCLEANFILES]: Do use
14550         sys/time.h here, reverting that part of the previous patch:
14551         <http://thread.gmane.org/gmane.comp.lib.gnulib.bugs/8959>.
14552
14553 2007-01-28  Bruno Haible  <bruno@clisp.org>
14554
14555         * modules/sys_time (Makefile.am): Build sys/time.h only when it's the
14556         value of $(SYS_TIME_H).
14557         [MOSTLYCLEANFILES]: Now that sys/time.h is created only when needed,
14558         remove it conditionally, too. [added by Jim Meyering]
14559         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H_BODY): Set SYS_TIME_H.
14560         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY):
14561         (gl_FUNC_GETTIMEOFDAY_CLOBBER): Set SYS_TIME_H when setting
14562         GETTIMEOFDAY_REPLACEMENT to 1.
14563
14564 2007-01-28  Bruno Haible  <bruno@clisp.org>
14565
14566         * m4/unistd_h.m4 (gl_HEADER_UNISTD_DEFAULTS): New macro.
14567         (gl_HEADER_UNISTD): Require it. Don't set UNISTD_H to empty here.
14568         * m4/fchdir.m4 (gl_FUNC_FCHDIR): Require gl_HEADER_UNISTD_DEFAULTS.
14569         Set UNISTD_H instead of UNISTD_H2.
14570         * modules/fchdir (BUILT_SOURCES): Drop $(UNISTD_H2).
14571
14572 2007-01-28  Bruno Haible  <bruno@clisp.org>
14573
14574         * modules/mbchar (Makefile.am): Add mbchar.c to lib_SOURCES.
14575         * m4/mbchar.m4 (gl_MBCHAR): Remove AC_LIBOBJ invocation.
14576
14577 2007-01-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
14578
14579         * gnulib-tool (func_emit_lib_Makefile_am, func_add_or_update)
14580         (func_create_testdir): Ensure C locale for `grep' and `tr'
14581         character ranges.
14582         (func_create_megatestdir): Avoid one `grep'.  Fix bug in
14583         ACLOCAL_AMFLAGS parsing state machine.
14584
14585 2007-01-27  Bruno Haible  <bruno@clisp.org>
14586
14587         * modules/unistr/base: Update.
14588
14589 2007-01-27  Bruno Haible  <bruno@clisp.org>
14590
14591         Rename u32-mbtouc -> u32-mbtouc-unsafe, u32-mbtouc-safe -> u32-mbtouc,
14592         u32_mbtouc -> u32_mbtouc_unsafe, u32_mbtouc_safe -> u32_mbtouc.
14593         * modules/unistr/u32-mbtouc-unsafe: Renamed from
14594         modules/unistr/u32-mbtouc.
14595         * lib/unistr/u32-mbtouc-unsafe.c: Renamed from lib/unistr/u32-mbtouc.c.
14596         * lib/unistr.h: Update.
14597         * lib/linebreak.c: Update.
14598         * modules/unistr/u32-mbtouc: Renamed from
14599         modules/unistr/u32-mbtouc-safe.
14600         * lib/unistr/u32-mbtouc.c: Renamed from lib/unistr/u32-mbtouc-safe.c.
14601         * lib/unistr.h: Update.
14602         * lib/unistr/u32-to-u8.c: Update.
14603         * lib/unistr/u32-to-u16.c: Update.
14604
14605 2007-01-27  Bruno Haible  <bruno@clisp.org>
14606
14607         Rename utf16-ucs4 -> utf16-ucs4-unsafe, utf16-ucs4-safe -> utf16-ucs4,
14608         u16_mbtouc -> u16_mbtouc_unsafe, u16_mbtouc_safe -> u16_mbtouc.
14609         * modules/utf16-ucs4-unsafe: Renamed from modules/utf16-ucs4.
14610         * lib/utf16-ucs4-unsafe.h: Renamed from lib/utf16-ucs4.h.
14611         * lib/unistr/utf16-ucs4-unsafe.c: Renamed from lib/unistr/utf16-ucs4.c.
14612         * modules/unistr/u16-mbtouc-unsafe: Renamed from
14613         modules/unistr/u16-mbtouc.
14614         * lib/unistr/u16-mbtouc-unsafe.c: Renamed from lib/unistr/u16-mbtouc.c.
14615         * lib/unistr.h: Update.
14616         * lib/linebreak.c: Update.
14617         * modules/linebreak: Update.
14618         * modules/utf16-ucs4: Renamed from modules/utf16-ucs4-safe.
14619         * lib/utf16-ucs4.h: Renamed from lib/utf16-ucs4-safe.h.
14620         * lib/unistr/utf16-ucs4.c: Renamed from lib/unistr/utf16-ucs4-safe.c.
14621         * modules/unistr/u16-mbtouc: Renamed from
14622         modules/unistr/u16-mbtouc-safe.
14623         * lib/unistr/u16-mbtouc.c: Renamed from lib/unistr/u16-mbtouc-safe.c.
14624         * lib/unistr.h: Update.
14625         * lib/unistr/u16-to-u8.c: Update.
14626         * modules/unistr/u16-to-u8: Update.
14627         * lib/unistr/u16-to-u32.c: Update.
14628         * modules/unistr/u16-to-u32: Update.
14629
14630 2007-01-27  Bruno Haible  <bruno@clisp.org>
14631
14632         Rename utf8-ucs4 -> utf8-ucs4-unsafe, utf8-ucs4-safe -> utf8-ucs4,
14633         u8_mbtouc -> u8_mbtouc_unsafe, u8_mbtouc_safe -> u8_mbtouc.
14634         * modules/utf8-ucs4-unsafe: Renamed from modules/utf8-ucs4.
14635         * lib/utf8-ucs4-unsafe.h: Renamed from lib/utf8-ucs4.h.
14636         * lib/unistr/utf8-ucs4-unsafe.c: Renamed from lib/unistr/utf8-ucs4.c.
14637         * modules/unistr/u8-mbtouc-unsafe: Renamed from
14638         modules/unistr/u8-mbtouc.
14639         * lib/unistr/u8-mbtouc-unsafe.c: Renamed from lib/unistr/u8-mbtouc.c.
14640         * lib/unistr.h: Update.
14641         * lib/striconveh.c: Update.
14642         * modules/striconveh: Update.
14643         * lib/linebreak.c: Update.
14644         * modules/linebreak: Update.
14645         * modules/utf8-ucs4: Renamed from modules/utf8-ucs4-safe.
14646         * lib/utf8-ucs4.h: Renamed from lib/utf8-ucs4-safe.h.
14647         * lib/unistr/utf8-ucs4.c: Renamed from lib/unistr/utf8-ucs4-safe.c.
14648         * modules/unistr/u8-mbtouc: Renamed from modules/unistr/u8-mbtouc-safe.
14649         * lib/unistr/u8-mbtouc.c: Renamed from lib/unistr/u8-mbtouc-safe.c.
14650         * lib/unistr.h: Update.
14651         * lib/striconveh.c: Update.
14652         * modules/striconveh: Update.
14653         * lib/unistr/u8-to-u16.c: Update.
14654         * modules/unistr/u8-to-u16: Update.
14655         * lib/unistr/u8-to-u32.c: Update.
14656         * modules/unistr/u8-to-u32: Update.
14657
14658 2007-01-27  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
14659
14660         Sync from Libtool.
14661         * lib/argz.c: Do not include strings.h nor memory.h, include
14662         string.h unconditionally.  Patch by Simon Josefsson.
14663
14664 2007-01-27  Bruno Haible  <bruno@clisp.org>
14665
14666         * m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): New macro, extracted
14667         from gl_HEADER_STRING_H_BODY.
14668         (gl_HEADER_STRING_H_BODY): Require it.
14669         * m4/memmem.m4 (gl_FUNC_MEMMEM): Require gl_HEADER_STRING_H_DEFAULTS.
14670         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY): Likewise.
14671         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Likewise.
14672         * m4/stpcpy.m4 (gl_FUNC_STPCPY): Likewise.
14673         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Likewise.
14674         * m4/strcase.m4 (gl_FUNC_STRCASECMP, gl_FUNC_STRNCASECMP): Likewise.
14675         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Likewise.
14676         * m4/strchrnul.m4 (gl_FUNC_STRCHRNUL): Likewise.
14677         * m4/strdup.m4 (gl_FUNC_STRDUP): Likewise.
14678         * m4/strndup.m4 (gl_FUNC_STRNDUP): Likewise.
14679         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Likewise.
14680         * m4/strpbrk.m4 (gl_FUNC_STRPBRK): Likewise.
14681         * m4/strsep.m4 (gl_FUNC_STRSEP): Likewise.
14682         * m4/strstr.m4 (gl_FUNC_STRSTR): Likewise.
14683         * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Likewise.
14684
14685 2007-01-27  Bruno Haible  <bruno@clisp.org>
14686
14687         * gnulib-tool (func_emit_lib_Makefile_am): If $for_test is true, turn
14688         check_PROGRAMS into noinst_PROGRAMS.
14689         (func_emit_tests_Makefile_am): Likewise. Also don't initialize
14690         check_PROGRAMS in this case.
14691         (func_import): Set for_test to false.
14692         (func_create_testdir): Set for_test to true.
14693
14694 2007-01-27  Yoann Vandoorselaere <yoann.v@prelude-ids.com>
14695             Bruno Haible  <bruno@clisp.org>
14696
14697         * modules/strcasestr (Files): Remove lib/strcasestr.h.
14698         (Depends-on): Add string.
14699         (Includes): Use <string.h> instead of strcasestr.h.
14700         * modules/string (Makefile.am): Also substitute the value of
14701         REPLACE_STRCASESTR.
14702         * m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Don't define strcasestr here;
14703         assume strcasestr is declared in <string.h> not <strings.h>. Also
14704         set REPLACE_STRCASESTR.
14705         * m4/string_h.m4 (gl_HEADER_STRING_H_BODY): Provide a default value for
14706         REPLACE_STRCASESTR.
14707         * lib/strcasestr.h: Remove file.
14708         * lib/strcasestr.c: Include <string.h> instead of strcasestr.h.
14709         * lib/string_.h (strcasestr): New declaration.
14710
14711 2007-01-27  Bruno Haible  <bruno@clisp.org>
14712
14713         * lib/string_.h: Use 'extern'.
14714
14715 2007-01-27  Jim Meyering  <jim@meyering.net>
14716
14717         * lib/regex_internal.c (re_string_reconstruct): Remove declaration
14718         of set-but-not-used local, "q".
14719
14720         * lib/mempcpy.c: Include <config.h> before <string.h>.
14721         This fixes a compilation error on HP-UX, due to the system's
14722         "restrict"-using mempcpy prototype.
14723
14724 2007-01-26  Bruno Haible  <bruno@clisp.org>
14725
14726         Small optimization.
14727         * lib/javacomp.c: Include c-strstr.h.
14728          (is_envjavac_gcj): Use c_strstr instead of strstr.
14729         * modules/javacomp (Depends-on): Add c-strstr, remove strstr.
14730
14731 2007-01-26  Bruno Haible  <bruno@clisp.org>
14732
14733         * MODULES.html.sh (Unicode string functions): Add the new modules.
14734
14735         * modules/uniconv/u32-strconv-to-locale: New file.
14736         * lib/uniconv/u32-strconv-to-locale.c: New file.
14737
14738         * modules/uniconv/u16-strconv-to-locale: New file.
14739         * lib/uniconv/u16-strconv-to-locale.c: New file.
14740
14741         * modules/uniconv/u8-strconv-to-locale: New file.
14742         * lib/uniconv/u8-strconv-to-locale.c: New file.
14743
14744         * modules/uniconv/u32-strconv-from-locale: New file.
14745         * lib/uniconv/u32-strconv-from-locale.c: New file.
14746
14747         * modules/uniconv/u16-strconv-from-locale: New file.
14748         * lib/uniconv/u16-strconv-from-locale.c: New file.
14749
14750         * modules/uniconv/u8-strconv-from-locale: New file.
14751         * lib/uniconv/u8-strconv-from-locale.c: New file.
14752
14753         * modules/uniconv/u32-strconv-to-enc: New file.
14754         * lib/uniconv/u32-strconv-to-enc.c: New file.
14755         * modules/uniconv/u32-strconv-to-enc-tests: New file.
14756         * tests/uniconv/test-u32-strconv-to-enc.c: New file.
14757
14758         * modules/uniconv/u16-strconv-to-enc: New file.
14759         * lib/uniconv/u16-strconv-to-enc.c: New file.
14760         * lib/uniconv/u-strconv-to-enc.h: New file.
14761         * modules/uniconv/u16-strconv-to-enc-tests: New file.
14762         * tests/uniconv/test-u16-strconv-to-enc.c: New file.
14763
14764         * modules/uniconv/u8-strconv-to-enc: New file.
14765         * lib/uniconv/u8-strconv-to-enc.c: New file.
14766         * modules/uniconv/u8-strconv-to-enc-tests: New file.
14767         * tests/uniconv/test-u8-strconv-to-enc.c: New file.
14768
14769         * modules/uniconv/u32-strconv-from-enc: New file.
14770         * lib/uniconv/u32-strconv-from-enc.c: New file.
14771         * modules/uniconv/u32-strconv-from-enc-tests: New file.
14772         * tests/uniconv/test-u32-strconv-from-enc.c: New file.
14773
14774         * modules/uniconv/u16-strconv-from-enc: New file.
14775         * lib/uniconv/u16-strconv-from-enc.c: New file.
14776         * modules/uniconv/u16-strconv-from-enc-tests: New file.
14777         * tests/uniconv/test-u16-strconv-from-enc.c: New file.
14778
14779         * modules/uniconv/u8-strconv-from-enc: New file.
14780         * lib/uniconv/u8-strconv-from-enc.c: New file.
14781         * lib/uniconv/u-strconv-from-enc.h: New file.
14782         * modules/uniconv/u8-strconv-from-enc-tests: New file.
14783         * tests/uniconv/test-u8-strconv-from-enc.c: New file.
14784
14785         * modules/uniconv/u32-conv-from-enc: New file.
14786         * lib/uniconv/u32-conv-from-enc.c: New file.
14787         * modules/uniconv/u32-conv-from-enc-tests: New file.
14788         * tests/uniconv/test-u32-conv-from-enc.c: New file.
14789
14790         * modules/uniconv/u16-conv-from-enc: New file.
14791         * lib/uniconv/u16-conv-from-enc.c: New file.
14792         * lib/uniconv/u-conv-from-enc.h: New file.
14793         * modules/uniconv/u16-conv-from-enc-tests: New file.
14794         * tests/uniconv/test-u16-conv-from-enc.c: New file.
14795
14796         * modules/uniconv/u8-conv-from-enc: New file.
14797         * lib/uniconv/u8-conv-from-enc.c: New file.
14798         * modules/uniconv/u8-conv-from-enc-tests: New file.
14799         * tests/uniconv/test-u8-conv-from-enc.c: New file.
14800
14801         * modules/uniconv/base: New file.
14802         * lib/uniconv.h: New file.
14803
14804 2007-01-26  Paul Eggert  <eggert@cs.ucla.edu>
14805
14806         * doc/gnulib-tool.texi (Initial import): Update to match current
14807         behavior with strdup module.
14808         * lib/.cppi-disable: Remove strcase.h, strdup.h, strndup.h, strnlen.h.
14809         * lib/memmem.h: Remove; all uses removed.  This is now done
14810         by <string.h>.
14811         * lib/mempcpy.h: Likewise.
14812         * lib/memrchr.h: Likewise.
14813         * lib/stpcpy.h: Likewise.
14814         * lib/stpncpy.h: Likewise.
14815         * lib/strcase.h: Likewise.
14816         * lib/strchrnul.h: Likewise.
14817         * lib/strdup.h: Likewise.
14818         * lib/strndup.h: Likewise.
14819         * lib/strnlen.h: Likewise.
14820         * lib/strpbrk.h: Likewise.
14821         * lib/strsep.h: Likewise.
14822         * lib/strstr.h: Likewise.
14823         * lib/strtok_r.h: Likewise.
14824         * lib/string_.h: New file.
14825         * lib/argp-namefrob.h: Don't include no-longer-existent include files.
14826         Rely on <string.h> instead.
14827         * lib/canon-host.c: Likewise.
14828         * lib/chdir-long.c: Likewise.
14829         * lib/concatpath.c: Likewise.
14830         * lib/exclude.c: Likewise.
14831         * lib/fchdir.c: Likewise.
14832         * lib/getaddrinfo.c: Likewise.
14833         * lib/getcwd.c: Likewise.
14834         * lib/getsubopt.c: Likewise.
14835         * lib/glob.c: Likewise.
14836         * lib/hard-locale.c: Likewise.
14837         * lib/iconvme.c: Likewise.
14838         * lib/javacomp.c: Likewise.
14839         * lib/mempcpy.c: Likewise.
14840         * lib/memrchr.c: Likewise.
14841         * lib/regex_internal.h: Likewise.
14842         * lib/stpncpy.c: Likewise.
14843         * lib/strcasecmp.c: Likewise.
14844         * lib/strchrnul.c: Likewise.
14845         * lib/strdup.c: Likewise.
14846         * lib/striconv.c: Likewise.
14847         * lib/striconveh.c: Likewise.
14848         * lib/striconveha.c: Likewise.
14849         * lib/strncasecmp.c: Likewise.
14850         * lib/strndup.c: Likewise.
14851         * lib/strnlen.c: Likewise.
14852         * lib/strsep.c: Likewise.
14853         * lib/strstr.c: Likewise.
14854         * lib/strtok_r.c: Likewise.
14855         * lib/userspec.c: Likewise.
14856         * lib/w32spawn.h: Likewise.
14857         * lib/xstrndup.c: Likewise.
14858         * lib/mountlist.c (strstr): Remove decl.
14859         * m4/string_h.m4: New file.
14860         * m4/memmem.m4 (gl_FUNC_MEMMEM): Set HAVE_DECL_MEMMEM if necessary.
14861         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY): Set HAVE_MEMPCPY if necessary.
14862         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Set HAVE_MEMRCHR
14863         * m4/stpcpy.m4 (gl_FUNC_STPCPY): Set HAVE_STPCPY if necessary.
14864         * m4/stpncpy.m4 (gl_PREREQ_STPNCPY): Set HAVE_STPNCPY if necessary.
14865         * m4/strcase.m4 (gl_FUNC_STRCASECMP):
14866         Set REPLACE_STRCASECMP if necessary.
14867         (gl_FUNC_STRNCASECMP): Set HAVE_DECL_STRNCASECMP if necessary.
14868         * m4/strchrnul.m4 (gl_FUNC_STRCHRNUL): Set HAVE_STRCHRNUL if necessary.
14869         * m4/strdup.m4 (gl_FUNC_STRDUP): Set HAVE_DECL_STRDUP if necessary.
14870         * m4/strndup.m4 (gl_FUNC_STRNDUP): Set HAVE_DECL_STRNLEN and
14871         HAVE_DECL_STRDUP if necessary.
14872         (gl_PREREQ_STRNLEN): Don't bother to check for strnlen decl,
14873         since gl_FUNC_STRNDUP does that now.
14874         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Set HAVE_DECL_STRNLEN if necessary.
14875         Check for decl here...
14876         (gl_PREREQ_STRNLEN): ... not here.
14877         * m4/strpbrk.m4 (gl_FUNC_STRPBRK): Set HAVE_STRPBRK if necessary.
14878         * m4/strsep.m4 (gl_FUNC_STRSEP): Set HAVE_STRSEP if necessary.
14879         * m4/strstr.m4 (gl_FUNC_STRSTR): Set REPLACE_STRSTR if necessary.
14880         * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Set HAVE_DECL_STRTOK_R if
14881         necessary.
14882         * modules/string: New file.
14883         * modules/memmem (Files): Remove special-purpose include file.
14884         (Depends-on): Add string.
14885         (Include): Include <string.h>, not the removed file.
14886         * modules/mempcpy: Likewise.
14887         * modules/memrchr: Likewise.
14888         * modules/stpcpy: Likewise.
14889         * modules/stpncpy: Likewise.
14890         * modules/strcase: Likewise.
14891         * modules/strchrnul: Likewise.
14892         * modules/strdup: Likewise.
14893         * modules/strndup: Likewise.
14894         * modules/strnlen: Likewise.
14895         * modules/strpbrk: Likewise.
14896         * modules/strsep: Likewise.
14897         * modules/strstr: Likewise.
14898         * modules/strtok_r: Likewise.
14899         * tests/test-dirname.c: Don't include "strdup.h", since
14900         <string.h> now suffices.
14901         * tests/test-memmem.c: Don't include "memmem.h", since
14902         <string.h> now suffices.
14903
14904 2007-01-25  Bruno Haible  <bruno@clisp.org>
14905
14906         * lib/striconveh.c (mem_cd_iconveh_internal): Ignore *lengthp if
14907         *resultp is 0.
14908
14909         * lib/unistr/u16-to-u8.c (u16_to_u8): Fix u8_uctomb invocation.
14910         * lib/unistr/u32-to-u8.c (u32_to_u8): Likewise.
14911         * lib/unistr/u8-to-u16.c (u8_to_u16): Fix u16_uctomb invocation.
14912         * lib/unistr/u32-to-u16.c (u32_to_u16): Likewise.
14913
14914         * modules/unistr/u8-to-u16 (Depends-on): Add missing modules.
14915         * modules/unistr/u8-to-u32 (Depends-on): Add missing modules.
14916         * modules/unistr/u16-to-u8 (Depends-on): Add missing modules.
14917         * modules/unistr/u16-to-u32 (Depends-on): Add missing modules.
14918         * modules/unistr/u32-to-u8 (Depends-on): Add missing modules.
14919         * modules/unistr/u32-to-u16 (Depends-on): Add missing modules.
14920
14921 2007-01-24  Bruno Haible  <bruno@clisp.org>
14922
14923         Don't AC_REQUIRE autoconf macros that invoke AC_LIBOBJ. See
14924         <http://lists.gnu.org/archive/html/bug-gnulib/2006-10/msg00279.html>.
14925         * m4/argp.m4 (gl_ARGP): Invoke, don't require, gl_GETOPT_SUBSTITUTE.
14926         * m4/fts.m4 (gl_FUNC_FTS, gl_FUNC_FTS_LGPL): Invoke, don't require,
14927         gl_FUNC_FTS_CORE.
14928         (gl_FUNC_FTS_CORE): Invoke, don't require, gl_FUNC_OPENAT.
14929         * m4/lstat.m4 (gl_FUNC_LSTAT): Invoke, don't require,
14930         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
14931         * m4/memcmp.m4 (gl_FUNC_MEMCMP): Invoke, don't require, AC_FUNC_MEMCMP.
14932         * m4/mktime.m4 (gl_FUNC_MKTIME): Invoke, don't require, AC_FUNC_MKTIME.
14933         * m4/openat.m4 (gl_FUNC_OPENAT): Invoke, don't require,
14934         gl_FUNC_FCHOWNAT.
14935         * m4/strftime.m4 (gl_FUNC_GNU_STRFTIME): Invoke, don't require,
14936         gl_FUNC_STRFTIME.
14937         * m4/strtod.m4 (gl_FUNC_STRTOD): Invoke, don't require, AC_FUNC_STRTOD.
14938         Reported by Ralf Wildenhues.
14939
14940 2007-01-24  Bruno Haible  <bruno@clisp.org>
14941
14942         Drop AC_REQUIRE calls that are redundant with the module dependencies.
14943         * m4/canon-host.m4 (gl_PREREQ_CANON_HOST): Don't require
14944         gl_GETADDRINFO.
14945         * m4/chdir-long.m4 (gl_PREREQ_CHDIR_LONG): Don't require AM_STDBOOL_H,
14946         gl_FUNC_MEMPCPY, gl_FUNC_OPENAT, gl_FUNC_MEMRCHR.
14947         * m4/openat.m4 (gl_PREREQ_OPENAT): Don't require gl_SAVE_CWD.
14948
14949 2007-01-24  Paul Eggert  <eggert@cs.ucla.edu>
14950
14951         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Add test for glibc bug 361.
14952         Don't use 'exit'; just return from 'main'.
14953         (_AC_LIBOBJ_FNMATCH): Check for headers and functions just once.
14954
14955         * lib/fnmatch_.h: Readjust white space and comments to match
14956         glibc, to avoid spurious diffs.
14957
14958 2007-01-23  Paul Eggert  <eggert@cs.ucla.edu>
14959
14960         * lib/fnmatch_loop.c (internal_fnmatch) [!_LIBC]: #if-out the
14961         2004-12-01 change by Jakub Jelinek, since this code won't compile
14962         if !LIBC.  Problem reported by Bob Proulx.
14963
14964 2007-01-23  Bruno Haible  <bruno@clisp.org>
14965
14966         * lib/striconveh.c: Include c-strcaseeq.h.
14967         (mem_iconveh, str_iconveh): Use STRCASEEQ instead of c_strcasecmp.
14968         * modules/striconveh (Depends-on): Add c-strcaseeq.
14969
14970 2007-01-23  Bruno Haible  <bruno@clisp.org>
14971
14972         * MODULES.html.sh (String handling): Add streq, c-strcaseeq.
14973
14974         * modules/c-strcaseeq: New file.
14975         * lib/c-strcaseeq.h: New file.
14976
14977         * modules/streq: New file.
14978         * lib/streq.h: New file.
14979
14980 2007-01-23  Bruno Haible  <bruno@clisp.org>
14981
14982         * modules/striconveha-tests: New file.
14983         * tests/test-striconveha.c: New file.
14984
14985         * lib/striconveha.h: Include <stdbool.h>.
14986         (mem_iconveha, str_iconveha): Add 'transliterate' argument.
14987         * lib/striconveha.c: Include allocsa.h, strdup.h, c-strcase.h.
14988         (mem_iconveha_notranslit): Renamed from mem_iconveha.
14989         (mem_iconveha): New function.
14990         (str_iconveha_notranslit): Renamed from str_iconveha.
14991         (str_iconveha): New function.
14992         * modules/striconveha (Depends-on): Add stdbool, allocsa, strdup,
14993         c-strcase.
14994
14995 2007-01-23  Bruno Haible  <bruno@clisp.org>
14996
14997         * lib/striconveha.c (mem_iconveha): Fix endless recursion. Try all
14998         encodings without forgiving before trying any encoding with handler.
14999         (str_iconveha): Try all encodings without forgiving before trying any
15000         encoding with handler.
15001
15002 2007-01-23  Paul Eggert  <eggert@cs.ucla.edu>
15003
15004         Import the following changes from libc.
15005
15006         2005-10-14  Ulrich Drepper  <drepper@redhat.com>
15007
15008         * lib/fnmatch_loop.c: Adjust for changed secondary hash function.
15009
15010         2004-12-01  Jakub Jelinek  <jakub@redhat.com>
15011
15012         * lib/fnmatch_loop.c (internal_fnmatch): Clear is_seqval after
15013         normal_bracket label.
15014
15015         2004-09-01  Jakub Jelinek  <jakub@redhat.com>
15016
15017         [BZ #361]
15018         * lib/fnmatch_loop.c (FCT): For backslash between brackets, branch
15019         to normal_bracket after fetching the next character.
15020
15021 2007-01-22  Bruno Haible  <bruno@clisp.org>
15022
15023         * lib/striconveh.h (mem_cd_iconveh, mem_iconveh): Add 'offsets'
15024         argument.
15025         * lib/striconveh.c (iconv_carefully_1): New function.
15026         (mem_cd_iconveh_internal, mem_cd_iconveh, mem_iconveh): Add 'offsets'
15027         argument.
15028         (str_cd_iconveh): Update.
15029         * lib/striconveha.h (mem_iconveha): Add 'offsets' argument.
15030         * lib/striconveha.c (mem_iconveha): Add 'offsets' argument.
15031         * tests/test-striconveh.c (MAGIC): New macro.
15032         (new_offsets): New function.
15033         (main): Test call with and without offsets.
15034
15035 2007-01-22  Bruno Haible  <bruno@clisp.org>
15036
15037         * modules/sys_stat (Makefile.am): Use @MKDIR_P@ instead of $(MKDIR_P).
15038         * modules/sys_select (Makefile.am): Likewise.
15039         * modules/sys_socket (Makefile.am): Likewise.
15040         * modules/sys_time (Makefile.am): Likewise.
15041
15042 2007-01-22  Paul Eggert  <eggert@cs.ucla.edu>
15043
15044         * modules/gettimeofday (License): Change from GPL to LGPL, since
15045         gettimeofday is a library function.
15046
15047 2007-01-22  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
15048
15049         * lib/poll.c (rpl_poll): Don't check against FD_SETSIZE under Win32.
15050
15051 2007-01-21  Bruno Haible  <bruno@clisp.org>
15052
15053         * m4/gnulib-common.m4 (AC_PROG_MKDIR_P): New macro.
15054
15055 2007-01-21  Bruno Haible  <bruno@clisp.org>
15056
15057         * modules/striconveha: New file.
15058         * lib/striconveha.h: New file.
15059         * lib/striconveha.c: New file.
15060         * MODULES.html.sh (Internationalization functions): Add striconveha.
15061         * lib/striconv.c (str_iconv): Optimize the case of an empty input
15062         string.
15063         * lib/striconveh.c (mem_iconveh, str_iconveh): Likewise.
15064
15065 2007-01-21  Bruno Haible  <bruno@clisp.org>
15066
15067         * lib/striconv.c (str_iconv): Guarantee errno is set when strdup fails.
15068         * lib/striconveh.c (str_iconveh): Likewise.
15069
15070 2007-01-21  Bruno Haible  <bruno@clisp.org>
15071
15072         * lib/striconveh.h (mem_iconveh): New declaration.
15073         * lib/striconveh.c (mem_iconveh): New function.
15074         * tests/test-striconveh.c (main): Add tests for mem_iconveh.
15075
15076 2007-01-21  Bruno Haible  <bruno@clisp.org>
15077
15078         * lib/xstriconv.h (xmem_cd_iconv): Change specification.
15079
15080         * lib/striconveh.h (mem_cd_iconveh): Change specification.
15081         * lib/striconveh.c (mem_cd_iconveh): Don't free the user-supplied
15082         original result buffer.
15083         (str_cd_iconveh): Update.
15084         * tests/test-striconveh.c (main): Update.
15085
15086         * lib/striconv.h (mem_cd_iconv): Change specification.
15087         * lib/striconv.c (mem_cd_iconv): Don't free the user-supplied original
15088         result buffer.
15089         (str_cd_iconv): Update.
15090         * tests/test-striconv.c (main): Update.
15091
15092 2007-01-21  Bruno Haible  <bruno@clisp.org>
15093
15094         * gnulib-tool: Fix test whether sed is GNU sed supporting --posix.
15095
15096 2007-01-20  Jim Meyering  <jim@meyering.net>
15097
15098         * lib/userspec.c (parse_with_separator): If a user or group string
15099         starts with "+", skip the corresponding name-to-ID look-up, since
15100         such a look-up must fail: user and group names may not include "+".
15101
15102 2007-01-19  Paul Eggert  <eggert@cs.ucla.edu>
15103
15104         * lib/poll.c: Include sys/time.h and time.h unconditionally,
15105         since we now assume the sys_time module.
15106         * m4/poll.m4 (gl_PREREQ_POLL): Don't require AC_HEADER_TIME or
15107         check for sys/time.h; no longer needed.
15108         * modules/poll (Depends-on): Depend on sys_time.
15109
15110 2007-01-18  Bruno Haible  <bruno@clisp.org>
15111
15112         * m4/mktime.m4 (AC_FUNC_MKTIME): Remove test for <sys/time.h>.
15113         * m4/strftime.m4 (gl_FUNC_STRFTIME): Likewise.
15114
15115         * m4/tempname.m4 (gl_PREREQ_TEMPNAME): Remove tests for sys/time.h and
15116         gettimeofday.
15117
15118         * tests/test-gettimeofday.c: Include <time.h>.
15119         (dummy): Remove variable.
15120
15121         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H_BODY): Renamed from
15122         gl_HEADER_SYS_TIME_H.
15123         (gl_HEADER_SYS_TIME_H): New macro.
15124
15125         * lib/sys_time_.h: Test GETTIMEOFDAY_REPLACEMENT instead of
15126         HAVE_GETTIMEOFDAY_POSIX_SIGNATURE and GETTIMEOFDAY_CLOBBERS_LOCALTIME.
15127         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY,
15128         gl_FUNC_GETTIMEOFDAY_CLOBBER): Set GETTIMEOFDAY_REPLACEMENT instead of
15129         HAVE_GETTIMEOFDAY_POSIX_SIGNATURE and GETTIMEOFDAY_CLOBBERS_LOCALTIME.
15130         * m4/sys_time_h.m4 (gl_HEADER_SYS_TIME_H): Initialize
15131         GETTIMEOFDAY_REPLACEMENT instead of HAVE_GETTIMEOFDAY_POSIX_SIGNATURE
15132         and GETTIMEOFDAY_CLOBBERS_LOCALTIME.
15133         * modules/sys_time (sys/time.h): Substitute GETTIMEOFDAY_REPLACEMENT
15134         instead of HAVE_GETTIMEOFDAY_POSIX_SIGNATURE and
15135         GETTIMEOFDAY_CLOBBERS_LOCALTIME.
15136
15137         * m4/gettimeofday.m4 (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Undo the
15138         last change; it caused a compilation error when cross-compiling to
15139         Cygwin.
15140
15141 2007-01-18  Jim Meyering  <jim@meyering.net>
15142
15143         Use "$(MKDIR_P) sys", not race-prone "test -d sys || mkdir sys".
15144         * modules/sys_stat (Makefile.am): Use "$(MKDIR_P) sys", rather
15145         than the race-prone "test -d sys || mkdir sys".
15146         (configure.ac): Use AC_PROG_MKDIR_P.
15147         * modules/sys_select: Likewise.
15148         * modules/sys_socket: Likewise.
15149         * modules/sys_time: Likewise.
15150
15151 2007-01-18  Eric Blake  <ebb9@byu.net>
15152
15153         * m4/gettimeofday.m4 (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Also
15154         replace gettimeofday.
15155         * lib/gettimeofday.c (rpl_gettimeofday): Declare with replacement
15156         name, to avoid infinite recursion.
15157
15158 2007-01-17  Paul Eggert  <eggert@cs.ucla.edu>
15159
15160         * MODULES.html.sh (Support for systems lacking POSIX:2001): New
15161         module sys_time.
15162         * lib/gethrxtime.c: Include <sys/time.h>, since we can no longer
15163         assume timespec.h defines struct timeval.
15164         * lib/settime.c: Likewise.
15165         * lib/utimens.c: Likewise.
15166         * lib/gettime.c (gettime): Remove test against HAVE_GETTIMEOFDAY,
15167         since we now assume the gettimeofday module.
15168         * lib/tempname.c (__gen_tempname): Likewise.
15169         * lib/gettimeofday.h: Remove.
15170         * lib/gettimeofday.c: Include <sys/time.h> instead of "gettimeofday.h".
15171         Don't include <sys/types.h> and <stdlib.h>; shouldn't be needed.
15172         Include <time.h>, for 'time()'.
15173         (localtime_buffer_addr): Also use this workaround if
15174         TZSET_CLOBBERS_LOCALTIME.  Set to a dummy static variable by default,
15175         to simplify the uses.  All uses changed.
15176         (localtime, gmtime, tzset, gettimeofday): Reformat slightly so
15177         that #undef is inside {}, and 'const' follows type name consistently.
15178         (tzset): Define replacement only if TZSET_CLOBBERS_LOCALTIME.
15179         (gettimeofday): Do not use the maximum possible value for
15180         tv->tv_usec, since that might break usages other than ls.c.
15181         Instead, we'll leave ls.c alone.  This undoes today's patch
15182         by Bruno.  Add a compile-time warning for 1s-clock resolution;
15183         we've never observed the problem but might as well keep the
15184         canary.
15185         * lib/nanosleep.c: Include timespec.h first, for interface check.
15186         * lib/nanosleep.c: Include <sys/time.h> unconditionally, since we
15187         now assume the sys_time module.
15188         * lib/tempname.c: Likewise.
15189         * lib/timespec.h: Likewise.
15190         * lib/nanosleep.c: Don't worry about TIME_WITH_SYS_TIME; no longer
15191         needed.
15192         * lib/strftime.c: Likewise.
15193         * lib/timespec.h: Likewise.
15194         * lib/posixtm.c: Include posixtm.h first, for interface check.
15195         Don't worry about TM_IN_SYS_TIME; that's wayyy obsolete.
15196         * lib/posixtm.h: Include stdbool.h and time.h, for proper interface.
15197         * lib/strftime.c: Don't include <sys/types.h>; shouldn't be needed.
15198         * lib/sys_time_.h: New file.
15199         * lib/timespec.h (struct timespec): Use long int, not long.
15200         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY):
15201         (gl_FUNC_GETTIMEOFDAY_CLOBBER, gl_PREREQ_GETTIMEOFDAY):
15202         Remove obsolescent call to AC_HEADER_TIME.
15203         * m4/mktime.m4 (AC_FUNC_MKTIME): Likewise.
15204         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
15205         * m4/strftime.m4 (gl_FUNC_STRFTIME): Likewise.
15206         * m4/timespec.m4 (gl_TIMESPEC, gl_CHECK_TYPE_STRUCT_TIMESPEC):
15207         Likewise.
15208         * m4/tzset.m4 (gl_FUNC_TZSET_CLOBBER): Likewise.
15209         * m4/utimbuf.m4 (gl_CHECK_TYPE_STRUCT_UTIMBUF): Likewise.
15210         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY): Move sys/time.h tests
15211         into the sys_time module.  Check for gettimeofday just once.
15212         Prefix our variables with gl_, not with ac_ or jm_.  Tighten test
15213         for gettimeofday signature to just check the signature.  Merely
15214         compile it, since linking doesn't test signature.  Improve test for
15215         whether gettimeofday.o is actually needed.
15216         (gl_FUNC_GETTIMEOFDAY_CLOBBER): Renamed from
15217         AC_FUNC_GETTIMEOFDAY_CLOBBER.  All uses changed.  Use
15218         AC_RUN_IFELSE rather than AC_TRY_RUN.  If clobbering, set
15219         and define GETTIMEOFDAY_CLOBBERS_LOCALTIME.
15220         (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Don't define
15221         GETTIMEOFDAY_CLOBBERS_LOCALTIME; that's gl_FUNC_GETTIMEOFDAY_CLOBBER's
15222         job.  Don't define tzset; that's gl_FUNC_TZSET_CLOBBER's job.
15223         * m4/mktime.m4 (AC_FUNC_MKTIME): Just include <time.h> rather
15224         than worrying about sys/time.h.
15225         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP):
15226         Don't bother worrying about TIME_WITH_SYS_TIME.
15227         * m4/stat-time.m4 (gl_STAT_TIME): Likewise.
15228         * m4/posixtm.m4 (gl_POSIXTM): Remove obsolescent call to AC_STRUCT_TM.
15229         * m4/sys_time_h.m4: New file.
15230         * m4/tzset.m4 (gl_FUNC_TZSET_CLOBBER): Require gl_HEADER_SYS_TIME_H.
15231         Don't include sys/time.h.  Return from main rather than exiting.
15232         Define TZSET_CLOBBERS_LOCALTIME, for consistency with other names;
15233         all uses changed.
15234         * modules/gethrxtime (Depends-on): Add sys_time.
15235         * modules/gettime (Depends-on): Likewise.
15236         * modules/gettimeofday (Depends-on): Likewise.
15237         * modules/nanosleep (Depends-on): Likewise.
15238         * modules/settime (Depends-on): Likewise.
15239         * modules/tempname (Depends-on): Likewise.
15240         * modules/utimens (Depends-on): Likewise.
15241         * modules/gettimeofday (Files): Remove lib/gettimeofday.h.
15242         (Include:) Change back to <sys/time.h>.
15243         (Maintainer:) Add self.
15244         * modules/sys_time: New file.
15245         * modules/tempname (Depends-on): Add gettimeofday.
15246         * tests/test-gettimeofday.c: Include <sys/time.h>
15247         rather than gettimeofday.h.
15248
15249 2007-01-17  Bruno Haible  <bruno@clisp.org>
15250
15251         * gnulib-tool (func_get_license): Revert last patch. Instead, let
15252         the license default to GPL.
15253         (func_create_testdir): Don't complain if a module is LGPL and its
15254         tests module depends on GPLed modules.
15255
15256 2007-01-17  Bruno Haible  <bruno@clisp.org>
15257
15258         * lib/gettimeofday.c (gettimeofday): Add code for the case
15259         HAVE_GETTIMEOFDAY && !GETTIMEOFDAY_CLOBBERS_LOCALTIME. Use the
15260         maximum possible value for tv->tv_usec, rather than the minimum one.
15261
15262 2005-10-08  Martin Lambers  <marlam@marlam.de>
15263 2005-10-08  Paul Eggert  <eggert@cs.ucla.edu>
15264 2007-01-16  Bruno Haible  <bruno@clisp.org>
15265
15266         * modules/gettimeofday (Files): Add lib/gettimeofday.h.
15267         (configure.ac): Remove AC_FUNC_GETTIMEOFDAY_CLOBBER. Add
15268         gl_FUNC_GETTIMEOFDAY.
15269         (Include): Add gettimeofday.h.
15270         * m4/gettimeofday.m4 (gl_FUNC_GETTIMEOFDAY): New macro.
15271         (AC_FUNC_GETTIMEOFDAY_CLOBBER): Don't invoke gl_PREREQ_GETTIMEOFDAY.
15272         (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): Define
15273         GETTIMEOFDAY_CLOBBERS_LOCALTIME. Invoke gl_PREREQ_GETTIMEOFDAY here.
15274         (gl_PREREQ_GETTIMEOFDAY): Check for <sys/timeb.h> and _ftime.
15275         * lib/gettimeofday.h: New file.
15276         * lib/gettimeofday.c: Include <sys/timeb.h>.
15277         (localtime_buffer_addr, rpl_localtime, rpl_gmtime, rpl_tzset): Define
15278         only if GETTIMEOFDAY_CLOBBERS_LOCALTIME.
15279         (rpl_gettimeofday) [!HAVE_GETTIMEOFDAY]: Use _ftime() when available;
15280         fall back on time().
15281
15282         * tests/test-gettimeofday.c: New file.
15283         * modules/gettimeofday-tests: New file.
15284
15285 2007-01-16  Eric Blake  <ebb9@byu.net>
15286
15287         * modules/fnmatch (Depends-on): Depend on wchar.
15288         * lib/fnmatch.c (WIDE_CHAR_SUPPORT): Assume <wchar.h>.
15289         * m4/fnmatch.m4: Likewise.
15290         * modules/mbchar (Makefile.am): Assume <wchar.h>.
15291         * m4/mbchar.m4: Likewise.
15292         * modules/mbswidth (Depends-on): Depend on wchar.
15293         * lib/mbswidth.c: Assume <wchar.h>.
15294         * m4/mbswidth.m4: Likewise.
15295         * modules/quotearg (Depends-on): Depend on wchar.
15296         * lib/quotearg.c: Assume <wchar.h>.
15297         * m4/quotearg.m4: Likewise.
15298         * modules/regex (Depends-on): Depend on wchar.
15299         * lib/regex_internal.h: Assume <wchar.h>.
15300         * m4/regex.m4: Likewise.
15301         * modules/stdint (Depends-on): Depend on wchar.
15302         * lib/stdint_.h [!defined WCHAR_MIN]: Assume <wchar.h>.
15303         * m4/stdint.m4: Likewise.
15304         * tests/test-stdint.c [HAVE_WINT_T]: Likewise.
15305         * modules/strftime (Depends-on): Depend on wchar.
15306         * lib/strftime.c (DO_MULTIBYTE): Assume <wchar.h>.
15307         * modules/strtol (Depends-on): Depend on wchar.
15308         * lib/strtol.c: Assume <wchar.h>.
15309         * modules/wcwidth (Depends-on): Depend on wchar.
15310         * lib/wcwidth.h: Assume <wchar.h>.
15311         * m4/wcwidth.m4: Likewise.
15312
15313 2007-01-16  Bruno Haible  <bruno@clisp.org>
15314
15315         * modules/csharpexec-script: New, created from...
15316         * modules/csharpexec: ... this.
15317
15318 2007-01-16  Paolo Bonzini  <bonzini@gnu.org>
15319
15320         * modules/javaexec-script: New, created from...
15321         * modules/javaexec: ... this.
15322
15323 2007-01-16  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
15324
15325         * modules/poll (Dependencies): Add sys_select.
15326
15327 2007-01-15  Jim Meyering  <jim@meyering.net>
15328
15329         * m4/readutmp.m4 (gl_READUTMP): Work around AIX 4.3 struct-
15330         redefinition bug when using both <utmp.h> and <utmpx.h> headers.
15331         * lib/readutmp.h: Likewise.  Reported by Daniel Richard G. in
15332         <http://article.gmane.org/gmane.comp.gnu.core-utils.bugs/9415>.
15333
15334 2007-01-15  Bruno Haible  <bruno@clisp.org>
15335
15336         * modules/striconveh: New file.
15337         * lib/striconveh.h: New file.
15338         * lib/striconveh.c: New file.
15339         * MODULES.html.sh (Internationalization functions): Add striconveh.
15340
15341         * modules/striconveh-tests: New file.
15342         * tests/test-striconveh.c: New file.
15343
15344 2007-01-15  Bruno Haible  <bruno@clisp.org>
15345
15346         * lib/striconv.c (str_cd_iconv): Use the first algorithm if iconv is
15347         not from GNU libiconv or GNU libc.
15348
15349 2007-01-15  Bruno Haible  <bruno@clisp.org>
15350
15351         * doc/gnulib-intro.texi (Copyright): Explain the different license
15352         terms for module descriptions, autoconf macros, tests, documentation.
15353
15354 2007-01-14  Bruno Haible  <bruno@clisp.org>
15355
15356         * modules/striconv-tests: New file.
15357         * tests/test-striconv.c: New file.
15358
15359 2007-01-14  Bruno Haible  <bruno@clisp.org>
15360
15361         * modules/iconv-tests: New file.
15362         * tests/test-iconv.c: New file.
15363
15364 2007-01-14  Bruno Haible  <bruno@clisp.org>
15365
15366         * gnulib-tool (func_get_license): For test modules, use the license of
15367         the main module.
15368
15369 2007-01-14  Bruno Haible  <bruno@clisp.org>
15370
15371         * modules/iconv (Include): Clarify that <iconv.h> can only be included
15372         if iconv is found to exist.
15373
15374 2007-01-14  Bruno Haible  <bruno@clisp.org>
15375
15376         * modules/c-ctype-tests: New file.
15377         * tests/test-c-ctype.c: New file.
15378
15379 2007-01-14  Bruno Haible  <bruno@clisp.org>
15380
15381         * modules/binary-io-tests: New file.
15382         * tests/test-binary-io.sh: New file.
15383         * tests/test-binary-io.c: New file.
15384
15385 2007-01-14  Bruno Haible  <bruno@clisp.org>
15386
15387         * modules/array-oset-tests: New file.
15388         * tests/test-array_oset.c: New file.
15389
15390 2007-01-14  Bruno Haible  <bruno@clisp.org>
15391
15392         * modules/array-list-tests: New file.
15393         * tests/test-array_list.c: New file.
15394
15395 2007-01-14  Bruno Haible  <bruno@clisp.org>
15396
15397         * gnulib-tool (func_create_testdir): Don't unnecessarily run configure
15398         and make.
15399         Reported by Simon Josefsson in
15400         <http://lists.gnu.org/archive/html/bug-gnulib/2007-01/msg00139.html>
15401
15402 2007-01-14  Bruno Haible  <bruno@clisp.org>
15403
15404         * modules/allocsa-tests: New file.
15405         * tests/test-allocsa.c: New file.
15406
15407 2007-01-14  Bruno Haible  <bruno@clisp.org>
15408
15409         * modules/fchdir (Depends-on): Add absolute-header.
15410         * modules/unistd (Depends-on): Likewise.
15411
15412 2006-12-30  Bruno Haible  <bruno@clisp.org>
15413
15414         * modules/fchdir: New file.
15415         * modules/unistd (Files): Add lib/unistd_.h.
15416         (Makefile.am): Generate unistd.h from unistd_.h.
15417         * lib/fchdir.c: New file.
15418         * lib/dirent_.h: New file.
15419         * lib/unistd_.h: New file.
15420         * lib/fcntl_.h (open) [FCHDIR_REPLACEMENT]: New replacement.
15421         * m4/fchdir.m4: New file.
15422         * m4/unistd_h.m4 (gl_PREREQ_UNISTD): New macro.
15423         (gl_HEADER_UNISTD): Invoke it.
15424         * lib/dup-safer.c (dup_safer) [FCHDIR_REPLACEMENT]: Use the dup
15425         function.
15426         * lib/backupfile.c (opendir, closedir): Undefine.
15427         * lib/chown.c (open, close): Undefine.
15428         * lib/clean-temp.c (open, close): Undefine.
15429         * lib/copy-file.c (open, close): Undefine.
15430         * lib/execute.c (open, close): Undefine.
15431         * lib/fsusage.c (open, close): Undefine.
15432         * lib/gc-gnulib.c (open, close): Undefine.
15433         * lib/getcwd.c (opendir, closedir): Undefine.
15434         * lib/glob.c (opendir, closedir): Undefine.
15435         * lib/javacomp.c (open, close): Undefine.
15436         * lib/mountlist.c (open, close, opendir, closedir): Undefine.
15437         * lib/openat-proc.c (open, close): Undefine.
15438         * lib/pagealign_alloc.c (open, close): Undefine.
15439         * lib/pipe.c (open, close): Undefine.
15440         * lib/progreloc.c (open, close): Undefine.
15441         * lib/savedir.c (opendir, closedir): Undefine.
15442         * lib/utime.c (open, close): Undefine.
15443         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add fchdir.
15444
15445 2007-01-10  Bruno Haible  <bruno@clisp.org>
15446
15447         * lib/striconv.c (mem_cd_iconv): Align the temporary buffer.
15448
15449 2007-01-12  Eric Blake  <ebb9@byu.net>
15450
15451         Provide a robust <wchar.h>.  Further simplifications are now
15452         possible in other modules, but not included here.
15453         * modules/wchar: New module.
15454         * m4/wchar.m4: New file.
15455         * lib/wchar_.h: Likewise.
15456         * modules/mbchar (Depends-on): Depend on wchar, as the first use
15457         of the new module.
15458         * MODULES.html.sh (Extended multibyte and wide character utilities):
15459         New section.
15460
15461 2007-01-12  Paul Eggert  <eggert@cs.ucla.edu>
15462
15463         * lib/xreadlink.c (SYMLINK_MAX) [!defined SYMLINK_MAX]: Define
15464         to a reasonable default for memory allocation.
15465         (xreadlink): Don't allocate a huge buffer, to work around a buggy
15466         file system that reports garbage st_size values for symlinks.
15467         Problem reported by Liyang Hu.
15468
15469 2007-01-11  Simon Josefsson  <simon@josefsson.org>
15470
15471         * gnulib-tool (func_all_modules): Exclude all .* files (e.g.,
15472         Emacs .#* auto-save files).
15473
15474 2007-01-11  Bruno Haible  <bruno@clisp.org>
15475
15476         * gnulib-tool (func_all_modules): Exclude all files inside the CVS
15477         directory.
15478
15479 2007-01-10  Paul Eggert  <eggert@cs.ucla.edu>
15480
15481         Use @...@ consistently in lib/wctype_.h.
15482         * lib/wctype_.h [HAVE_WINT_T]: Go back to using @...@, but rely
15483         on it being set to 1 or 0.
15484         * m4/wctype.m4 (gl_WCTYPE_H): Set HAVE_WINT_T to 1 or 0, and
15485         go back to AC_SUBSTing it.
15486         * modules/wctype (Makefile.am): Undo previous change.
15487
15488 2007-01-10  Eric Blake  <ebb9@byu.net>
15489
15490         * lib/wctype_.h [HAVE_WINT_T]: Rely on AC_DEFINE.
15491         * m4/wctype.m4 (gl_WCTYPE_H): No need to AC_SUBST(HAVE_WINT_T).
15492         * modules/wctype (Makefile.am): Likewise.
15493         Reported by Chris McGuire.
15494
15495 2007-01-10  Jim Meyering  <jim@meyering.net>
15496
15497         fts.c: a small readability/maintainability improvement
15498         * lib/fts.c (fts_read): Make this code slightly more readable and
15499         maintainable by hoisting the "sp->fts_cur = p" assignments to
15500         immediately follow the statements that set P.  Derived from
15501         the patch by Miloslav Trmac in http://bugzilla.redhat.com/222089.
15502
15503 2007-01-10  Eric Blake  <ebb9@byu.net>
15504
15505         * lib/wctype_.h [HAVE_WINT_T]: Include <stddef.h> before
15506         <wchar.h>, to work around BSDI bug in BSD/OS 4.0.1.
15507         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Likewise.
15508         * m4/wint_t.m4 (gt_TYPE_WINT_T): Likewise.
15509         Reported by Chris McGuire.
15510
15511 2007-01-09  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
15512
15513         * gnulib-tool (func_all_modules): Use POSIX conforming escaping
15514         in sed script.
15515
15516 2007-01-09  Bruno Haible  <bruno@clisp.org>
15517
15518         * MODULES.html.sh: Accept options --cvs-urls, --git-urls.
15519         (repo_url_prefix, repo_url_suffix, repo_url_suffix_repl): New
15520         variables.
15521         (func_module): Use them.
15522
15523 2007-01-09  Bruno Haible  <bruno@clisp.org>
15524
15525         * modules/unistr/base: New file.
15526         * lib/unistr.h: New file.
15527
15528         * modules/unistr/u8-to-u16: New file.
15529         * lib/unistr/u8-to-u16.c: New file.
15530
15531         * modules/unistr/u8-to-u32: New file.
15532         * lib/unistr/u8-to-u32.c: New file.
15533
15534         * modules/unistr/u16-to-u8: New file.
15535         * lib/unistr/u16-to-u8.c: New file.
15536
15537         * modules/unistr/u16-to-u32: New file.
15538         * lib/unistr/u16-to-u32.c: New file.
15539
15540         * modules/unistr/u32-to-u8: New file.
15541         * lib/unistr/u32-to-u8.c: New file.
15542
15543         * modules/unistr/u32-to-u16: New file.
15544         * lib/unistr/u32-to-u16.c: New file.
15545
15546         * modules/unistr/u8-check: New file.
15547         * modules/unistr/u16-check: New file.
15548         * modules/unistr/u32-check: New file.
15549         * lib/unistr/u8-check.c: New file.
15550         * lib/unistr/u16-check.c: New file.
15551         * lib/unistr/u32-check.c: New file.
15552
15553         * modules/unistr/u8-chr: New file.
15554         * modules/unistr/u16-chr: New file.
15555         * modules/unistr/u32-chr: New file.
15556         * lib/unistr/u8-chr.c: New file.
15557         * lib/unistr/u16-chr.c: New file.
15558         * lib/unistr/u32-chr.c: New file.
15559
15560         * modules/unistr/u8-cmp: New file.
15561         * modules/unistr/u16-cmp: New file.
15562         * modules/unistr/u32-cmp: New file.
15563         * lib/unistr/u8-cmp.c: New file.
15564         * lib/unistr/u16-cmp.c: New file.
15565         * lib/unistr/u32-cmp.c: New file.
15566
15567         * modules/unistr/u8-cpy: New file.
15568         * modules/unistr/u16-cpy: New file.
15569         * modules/unistr/u32-cpy: New file.
15570         * lib/unistr/u8-cpy.c: New file.
15571         * lib/unistr/u16-cpy.c: New file.
15572         * lib/unistr/u32-cpy.c: New file.
15573         * lib/unistr/u-cpy.h: New file.
15574
15575         * modules/unistr/u8-cpy-alloc: New file.
15576         * modules/unistr/u16-cpy-alloc: New file.
15577         * modules/unistr/u32-cpy-alloc: New file.
15578         * lib/unistr/u8-cpy-alloc.c: New file.
15579         * lib/unistr/u16-cpy-alloc.c: New file.
15580         * lib/unistr/u32-cpy-alloc.c: New file.
15581         * lib/unistr/u-cpy-alloc.h: New file.
15582
15583         * modules/unistr/u8-endswith: New file.
15584         * modules/unistr/u16-endswith: New file.
15585         * modules/unistr/u32-endswith: New file.
15586         * lib/unistr/u8-endswith.c: New file.
15587         * lib/unistr/u16-endswith.c: New file.
15588         * lib/unistr/u32-endswith.c: New file.
15589         * lib/unistr/u-endswith.h: New file.
15590
15591         * modules/unistr/u8-mblen: New file.
15592         * modules/unistr/u16-mblen: New file.
15593         * modules/unistr/u32-mblen: New file.
15594         * lib/unistr/u8-mblen.c: New file.
15595         * lib/unistr/u16-mblen.c: New file.
15596         * lib/unistr/u32-mblen.c: New file.
15597
15598         * modules/unistr/u8-mbtouc: New file.
15599         * modules/unistr/u16-mbtouc: New file.
15600         * modules/unistr/u32-mbtouc: New file.
15601         * lib/unistr/u8-mbtouc.c: New file.
15602         * lib/unistr/u16-mbtouc.c: New file.
15603         * lib/unistr/u32-mbtouc.c: New file.
15604
15605         * modules/unistr/u8-mbtouc-safe: New file.
15606         * modules/unistr/u16-mbtouc-safe: New file.
15607         * modules/unistr/u32-mbtouc-safe: New file.
15608         * lib/unistr/u8-mbtouc-safe.c: New file.
15609         * lib/unistr/u16-mbtouc-safe.c: New file.
15610         * lib/unistr/u32-mbtouc-safe.c: New file.
15611
15612         * modules/unistr/u8-move: New file.
15613         * modules/unistr/u16-move: New file.
15614         * modules/unistr/u32-move: New file.
15615         * lib/unistr/u8-move.c: New file.
15616         * lib/unistr/u16-move.c: New file.
15617         * lib/unistr/u32-move.c: New file.
15618         * lib/unistr/u-move.h: New file.
15619
15620         * modules/unistr/u8-next: New file.
15621         * modules/unistr/u16-next: New file.
15622         * modules/unistr/u32-next: New file.
15623         * lib/unistr/u8-next.c: New file.
15624         * lib/unistr/u16-next.c: New file.
15625         * lib/unistr/u32-next.c: New file.
15626
15627         * modules/unistr/u8-prev: New file.
15628         * modules/unistr/u16-prev: New file.
15629         * modules/unistr/u32-prev: New file.
15630         * lib/unistr/u8-prev.c: New file.
15631         * lib/unistr/u16-prev.c: New file.
15632         * lib/unistr/u32-prev.c: New file.
15633
15634         * modules/unistr/u8-set: New file.
15635         * modules/unistr/u16-set: New file.
15636         * modules/unistr/u32-set: New file.
15637         * lib/unistr/u8-set.c: New file.
15638         * lib/unistr/u16-set.c: New file.
15639         * lib/unistr/u32-set.c: New file.
15640         * lib/unistr/u-set.h: New file.
15641
15642         * modules/unistr/u8-startswith: New file.
15643         * modules/unistr/u16-startswith: New file.
15644         * modules/unistr/u32-startswith: New file.
15645         * lib/unistr/u8-startswith.c: New file.
15646         * lib/unistr/u16-startswith.c: New file.
15647         * lib/unistr/u32-startswith.c: New file.
15648         * lib/unistr/u-startswith.h: New file.
15649
15650         * modules/unistr/u8-stpcpy: New file.
15651         * modules/unistr/u16-stpcpy: New file.
15652         * modules/unistr/u32-stpcpy: New file.
15653         * lib/unistr/u8-stpcpy.c: New file.
15654         * lib/unistr/u16-stpcpy.c: New file.
15655         * lib/unistr/u32-stpcpy.c: New file.
15656         * lib/unistr/u-stpcpy.h: New file.
15657
15658         * modules/unistr/u8-stpncpy: New file.
15659         * modules/unistr/u16-stpncpy: New file.
15660         * modules/unistr/u32-stpncpy: New file.
15661         * lib/unistr/u8-stpncpy.c: New file.
15662         * lib/unistr/u16-stpncpy.c: New file.
15663         * lib/unistr/u32-stpncpy.c: New file.
15664         * lib/unistr/u-stpncpy.h: New file.
15665
15666         * modules/unistr/u8-strcat: New file.
15667         * modules/unistr/u16-strcat: New file.
15668         * modules/unistr/u32-strcat: New file.
15669         * lib/unistr/u8-strcat.c: New file.
15670         * lib/unistr/u16-strcat.c: New file.
15671         * lib/unistr/u32-strcat.c: New file.
15672         * lib/unistr/u-strcat.h: New file.
15673
15674         * modules/unistr/u8-strchr: New file.
15675         * modules/unistr/u16-strchr: New file.
15676         * modules/unistr/u32-strchr: New file.
15677         * lib/unistr/u8-strchr.c: New file.
15678         * lib/unistr/u16-strchr.c: New file.
15679         * lib/unistr/u32-strchr.c: New file.
15680
15681         * modules/unistr/u8-strcmp: New file.
15682         * modules/unistr/u16-strcmp: New file.
15683         * modules/unistr/u32-strcmp: New file.
15684         * lib/unistr/u8-strcmp.c: New file.
15685         * lib/unistr/u16-strcmp.c: New file.
15686         * lib/unistr/u32-strcmp.c: New file.
15687
15688         * modules/unistr/u8-strcpy: New file.
15689         * modules/unistr/u16-strcpy: New file.
15690         * modules/unistr/u32-strcpy: New file.
15691         * lib/unistr/u8-strcpy.c: New file.
15692         * lib/unistr/u16-strcpy.c: New file.
15693         * lib/unistr/u32-strcpy.c: New file.
15694         * lib/unistr/u-strcpy.h: New file.
15695
15696         * modules/unistr/u8-strcspn: New file.
15697         * modules/unistr/u16-strcspn: New file.
15698         * modules/unistr/u32-strcspn: New file.
15699         * lib/unistr/u8-strcspn.c: New file.
15700         * lib/unistr/u16-strcspn.c: New file.
15701         * lib/unistr/u32-strcspn.c: New file.
15702         * lib/unistr/u-strcspn.h: New file.
15703
15704         * modules/unistr/u8-strdup: New file.
15705         * modules/unistr/u16-strdup: New file.
15706         * modules/unistr/u32-strdup: New file.
15707         * lib/unistr/u8-strdup.c: New file.
15708         * lib/unistr/u16-strdup.c: New file.
15709         * lib/unistr/u32-strdup.c: New file.
15710         * lib/unistr/u-strdup.h: New file.
15711
15712         * modules/unistr/u8-strlen: New file.
15713         * modules/unistr/u16-strlen: New file.
15714         * modules/unistr/u32-strlen: New file.
15715         * lib/unistr/u8-strlen.c: New file.
15716         * lib/unistr/u16-strlen.c: New file.
15717         * lib/unistr/u32-strlen.c: New file.
15718         * lib/unistr/u-strlen.h: New file.
15719
15720         * modules/unistr/u8-strmblen: New file.
15721         * modules/unistr/u16-strmblen: New file.
15722         * modules/unistr/u32-strmblen: New file.
15723         * lib/unistr/u8-strmblen.c: New file.
15724         * lib/unistr/u16-strmblen.c: New file.
15725         * lib/unistr/u32-strmblen.c: New file.
15726
15727         * modules/unistr/u8-strmbtouc: New file.
15728         * modules/unistr/u16-strmbtouc: New file.
15729         * modules/unistr/u32-strmbtouc: New file.
15730         * lib/unistr/u8-strmbtouc.c: New file.
15731         * lib/unistr/u16-strmbtouc.c: New file.
15732         * lib/unistr/u32-strmbtouc.c: New file.
15733
15734         * modules/unistr/u8-strncat: New file.
15735         * modules/unistr/u16-strncat: New file.
15736         * modules/unistr/u32-strncat: New file.
15737         * lib/unistr/u8-strncat.c: New file.
15738         * lib/unistr/u16-strncat.c: New file.
15739         * lib/unistr/u32-strncat.c: New file.
15740         * lib/unistr/u-strncat.h: New file.
15741
15742         * modules/unistr/u8-strncmp: New file.
15743         * modules/unistr/u16-strncmp: New file.
15744         * modules/unistr/u32-strncmp: New file.
15745         * lib/unistr/u8-strncmp.c: New file.
15746         * lib/unistr/u16-strncmp.c: New file.
15747         * lib/unistr/u32-strncmp.c: New file.
15748
15749         * modules/unistr/u8-strncpy: New file.
15750         * modules/unistr/u16-strncpy: New file.
15751         * modules/unistr/u32-strncpy: New file.
15752         * lib/unistr/u8-strncpy.c: New file.
15753         * lib/unistr/u16-strncpy.c: New file.
15754         * lib/unistr/u32-strncpy.c: New file.
15755         * lib/unistr/u-strncpy.h: New file.
15756
15757         * modules/unistr/u8-strnlen: New file.
15758         * modules/unistr/u16-strnlen: New file.
15759         * modules/unistr/u32-strnlen: New file.
15760         * lib/unistr/u8-strnlen.c: New file.
15761         * lib/unistr/u16-strnlen.c: New file.
15762         * lib/unistr/u32-strnlen.c: New file.
15763         * lib/unistr/u-strnlen.h: New file.
15764
15765         * modules/unistr/u8-strpbrk: New file.
15766         * modules/unistr/u16-strpbrk: New file.
15767         * modules/unistr/u32-strpbrk: New file.
15768         * lib/unistr/u8-strpbrk.c: New file.
15769         * lib/unistr/u16-strpbrk.c: New file.
15770         * lib/unistr/u32-strpbrk.c: New file.
15771         * lib/unistr/u-strpbrk.h: New file.
15772
15773         * modules/unistr/u8-strrchr: New file.
15774         * modules/unistr/u16-strrchr: New file.
15775         * modules/unistr/u32-strrchr: New file.
15776         * lib/unistr/u8-strrchr.c: New file.
15777         * lib/unistr/u16-strrchr.c: New file.
15778         * lib/unistr/u32-strrchr.c: New file.
15779
15780         * modules/unistr/u8-strspn: New file.
15781         * modules/unistr/u16-strspn: New file.
15782         * modules/unistr/u32-strspn: New file.
15783         * lib/unistr/u8-strspn.c: New file.
15784         * lib/unistr/u16-strspn.c: New file.
15785         * lib/unistr/u32-strspn.c: New file.
15786         * lib/unistr/u-strspn.h: New file.
15787
15788         * modules/unistr/u8-strstr: New file.
15789         * modules/unistr/u16-strstr: New file.
15790         * modules/unistr/u32-strstr: New file.
15791         * lib/unistr/u8-strstr.c: New file.
15792         * lib/unistr/u16-strstr.c: New file.
15793         * lib/unistr/u32-strstr.c: New file.
15794         * lib/unistr/u-strstr.h: New file.
15795
15796         * modules/unistr/u8-strtok: New file.
15797         * modules/unistr/u16-strtok: New file.
15798         * modules/unistr/u32-strtok: New file.
15799         * lib/unistr/u8-strtok.c: New file.
15800         * lib/unistr/u16-strtok.c: New file.
15801         * lib/unistr/u32-strtok.c: New file.
15802         * lib/unistr/u-strtok.h: New file.
15803
15804         * modules/unistr/u8-uctomb: New file.
15805         * modules/unistr/u16-uctomb: New file.
15806         * modules/unistr/u32-uctomb: New file.
15807         * lib/unistr/u8-uctomb.c: New file.
15808         * lib/unistr/u16-uctomb.c: New file.
15809         * lib/unistr/u32-uctomb.c: New file.
15810
15811         * MODULES.html.sh (Unicode string functions): Add the new modules.
15812
15813 2007-01-08  Bruno Haible  <bruno@clisp.org>
15814
15815         * gnulib-tool (func_all_modules): Use find, not ls, to traverse the
15816         modules directory. Filter out CVS, ChangeLog, COPYING, README also from
15817         subdirectories.
15818
15819 2007-01-08  Karl Berry  <karl@gnu.org>
15820
15821         * doc/error.texi: mention that main() fns must set program_name
15822         when progname is used.
15823
15824 2007-01-08  Paul Eggert  <eggert@cs.ucla.edu>
15825
15826         * m4/wctype.m4 (gl_WCTYPE_H): Compute ABSOLUTE_WCTYPE_H even if
15827         WCTYPE_H is empty, for the benefit of builds from non-distclean
15828         directories.  Problem reported by Eric Blake in
15829         <http://lists.gnu.org/archive/html/bug-gnulib/2007-01/msg00157.html>.
15830
15831 2007-01-08  Bruno Haible  <bruno@clisp.org>
15832
15833         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME): Remove
15834         PROVIDE_CANONICALIZE_FILENAME_MODE macro definition.
15835         * lib/canonicalize.h: Test GNULIB_CANONICALIZE instead of
15836         PROVIDE_CANONICALIZE_FILENAME_MODE.
15837         * modules/canonicalize (configure.ac): Use gl_MODULE_INDICATOR.
15838
15839 2007-01-08  Bruno Haible  <bruno@clisp.org>
15840
15841         * m4/fts.m4 (gl_FUNC_FTS_LGPL): Remove _LGPL_PACKAGE macro definition.
15842         * lib/fts_.h (_LGPL_PACKAGE): Remove macro.
15843         Use !GNULIB_FTS instead of _LGPL_PACKAGE.
15844         * lib/fts.c: Likewise.
15845         * modules/fts (configure.ac): Use gl_MODULE_INDICATOR.
15846
15847 2006-12-25  Bruno Haible  <bruno@clisp.org>
15848
15849         * modules/utf8-ucs4-safe: New file.
15850         * lib/utf8-ucs4-safe.h: New file.
15851         * lib/unistr/utf8-ucs4-safe.c: New file.
15852
15853         * modules/utf16-ucs4-safe: New file.
15854         * lib/utf16-ucs4-safe.h: New file.
15855         * lib/unistr/utf16-ucs4-safe.c: New file.
15856
15857         * MODULES.html.sh (Unicode string functions): Add the new modules.
15858
15859 2007-01-08  Bruno Haible  <bruno@clisp.org>
15860
15861         * modules/utf8-ucs4 (Files, lib_SOURCES): Add unistr/utf8-ucs4.c.
15862         (Depends-on): Add unitypes.
15863         * lib/utf8-ucs4.h: Add double-inclusion guard. Include unitypes.h.
15864         (u8_mbtouc_aux): Move out to separate file.
15865         (u8_mbtouc): Use ucs4_t, uint8_t types.
15866         * lib/unistr/utf8-ucs4.c: New file.
15867
15868         * modules/utf16-ucs4 (Files, lib_SOURCES): Add unistr/utf16-ucs4.c.
15869         (Depends-on): Add unitypes.
15870         * lib/utf16-ucs4.h: Add double-inclusion guard. Include unitypes.h.
15871         (u16_mbtouc_aux): Move out to separate file.
15872         (u16_mbtouc): Use ucs4_t, uint16_t types.
15873         * lib/unistr/utf16-ucs4.c: New file.
15874
15875         * modules/ucs4-utf8 (Files, lib_SOURCES): Add unistr/ucs4-utf8.c.
15876         (Depends-on): Add unitypes.
15877         * lib/ucs4-utf8.h: Add double-inclusion guard. Include unitypes.h.
15878         (u8_uctomb_aux): Move out to separate file.
15879         (u8_uctomb): Use ucs4_t, uint8_t types.
15880         * lib/unistr/ucs4-utf8.c: New file.
15881
15882         * modules/ucs4-utf16 (Files, lib_SOURCES): Add unistr/ucs4-utf16.c.
15883         (Depends-on): Add unitypes.
15884         * lib/ucs4-utf16.h: Add double-inclusion guard. Include unitypes.h.
15885         (u16_uctomb_aux): Move out to separate file.
15886         (u16_uctomb): Use ucs4_t, uint16_t types.
15887         * lib/unistr/ucs4-utf16.c: New file.
15888
15889 2006-12-25  Bruno Haible  <bruno@clisp.org>
15890
15891         * modules/unitypes: New file.
15892         * lib/unitypes.h: New file.
15893         * MODULES.html.sh (func_all_modules): New section "Unicode string
15894         functions". Move ucs4-utf8, ucs4-utf16, utf8-ucs4, utf16-ucs4 to
15895         this section. Add unitypes.
15896
15897 2007-01-08  Bruno Haible  <bruno@clisp.org>
15898
15899         Avoid variable names that conflict with those from libtool.
15900         * m4/lib-link.m4 (AC_LIB_RPATH, AC_LIB_LINKFLAGS_BODY,
15901         AC_LIB_LINKFLAGS_FROM_LIBS): Rename libext to acl_libext,
15902         shlibext to acl_shlibext, libname_spec to acl_libname_spec,
15903         library_names_spec to acl_library_names_spec, hardcode_* to
15904         acl_hardcode_*.
15905         Reported by Ralf Wildenhues.
15906
15907 2007-01-08  Bruno Haible  <bruno@clisp.org>
15908
15909         * m4/gc-arcfour.m4 (gl_GC_ARCFOUR): Remove GC_USE_ARCFOUR macro
15910         definition.
15911         * m4/gc-arctwo.m4 (gl_GC_ARCTWO): Remove GC_USE_ARCTWO macro
15912         definition.
15913         * m4/gc-des.m4 (gl_GC_DES): Remove GC_USE_DES macro definition.
15914         * m4/gc-hmac-md5.m4 (gl_GC_HMAC_MD5): Remove GC_USE_HMAC_MD5 macro
15915         definition.
15916         * m4/gc-hmac-sha1.m4 (gl_GC_HMAC_SHA1): Remove GC_USE_HMAC_SHA1 macro
15917         definition.
15918         * m4/gc-md2.m4 (gl_GC_MD2): Remove GC_USE_MD2 macro definition.
15919         * m4/gc-md4.m4 (gl_GC_MD4): Remove GC_USE_MD4 macro definition.
15920         * m4/gc-md5.m4 (gl_GC_MD5): Remove GC_USE_MD5 macro definition.
15921         * m4/gc-random.m4 (gl_GC_RANDOM): Remove GC_USE_RANDOM macro
15922         definition.
15923         * m4/gc-rijndael.m4 (gl_GC_RIJNDAEL): Remove GC_USE_RIJNDAEL macro
15924         definition.
15925         * m4/gc-sha1.m4 (gl_GC_SHA1): Remove GC_USE_SHA1 macro definition.
15926         * lib/gc-gnulib.c: Use GNULIB_GC_<algorithm> instead of
15927         GC_USE_<algorithm>.
15928         * lib/gc-libgcrypt.c: Likewise.
15929         * modules/gc-arcfour (configure.ac): Use gl_MODULE_INDICATOR.
15930         * modules/gc-arctwo (configure.ac): Likewise.
15931         * modules/gc-des (configure.ac): Likewise.
15932         * modules/gc-hmac-md5 (configure.ac): Likewise.
15933         * modules/gc-hmac-sha1 (configure.ac): Likewise.
15934         * modules/gc-md2 (configure.ac): Likewise.
15935         * modules/gc-md4 (configure.ac): Likewise.
15936         * modules/gc-md5 (configure.ac): Likewise.
15937         * modules/gc-random (configure.ac): Likewise.
15938         * modules/gc-rijndael (configure.ac): Likewise.
15939         * modules/gc-sha1 (configure.ac): Likewise.
15940
15941 2007-01-08  Bruno Haible  <bruno@clisp.org>
15942
15943         * m4/close-stream.m4 (gl_CLOSE_STREAM): Remove GNULIB_CLOSE_STREAM
15944         macro definition.
15945         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Remove GNULIB_FCNTL_SAFER macro
15946         definition.
15947         * m4/stdio-safer.m4 (gl_FOPEN_SAFER): Remove GNULIB_FOPEN_SAFER macro
15948         definition.
15949         * modules/close-stream (configure.ac): Invoke gl_MODULE_INDICATOR.
15950         * modules/fcntl-safer (configure.ac): Likewise.
15951         * modules/fopen-safer (configure.ac): Likewise.
15952         * modules/fwriteerror (configure.ac): Likewise. Remove explicit
15953         GNULIB_FWRITEERROR macro definition.
15954
15955 2007-01-08  Bruno Haible  <bruno@clisp.org>
15956
15957         * m4/gnulib-common.m4: New file.
15958         * gnulib-tool (func_get_autoconf_snippet): Undo last change.
15959         (func_get_filelist): Add m4/gnulib-common.m4.
15960
15961 2007-01-08  Bruno Haible  <bruno@clisp.org>
15962
15963         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Simplify the sorting
15964         command.
15965
15966 2007-01-08  Jim Meyering  <jim@meyering.net>
15967
15968         Use a more robust test for a "can't happen" condition.
15969         * lib/fts.c (fts_read): Revert the change of 2006-11-22, since it
15970         narrowed the st_size value.  Presuming the "can't happen" condition
15971         is true, that narrowing could conceivably convert an invalid st_size
15972         value into a valid one.  Instead, use a change based on Matthew
15973         Woehlke's original patch.
15974
15975         Slight readability improvement: use an assert-like macro
15976         in place of literal "abort ()" uses.
15977         * lib/fts.c (fts_assert): Define.
15978         (fts_set_stat_required, cwd_advance_fd, fts_read, fd_ring_check):
15979         Use this macro instead of a bare 'abort'.
15980
15981 2007-01-05  Paul Eggert  <eggert@cs.ucla.edu>
15982
15983         Don't worry about using IRIX 5.3's wctype.h broken definitions;
15984         simply work around them.
15985         * lib/wctype_.h: Remove test for HAVE_WCTYPE_CTMP_BUG.
15986         (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit, iswgraph, iswlower):
15987         (iswprint, iswpunct, iswspace, iswupper, iswxdigit): Undef before
15988         declaring.
15989         Don't bother to define as macros, since the standard doesn't require it.
15990         * m4/wctype.m4 (WCTYPE_H, ABSOLUTE_WCTYPE_H): Simplify, since we no
15991         longer worry about IRIX 5.3.
15992         (HAVE_WCTYPE_CTMP_BUG): Remove.
15993
15994 2007-01-04  Paul Eggert  <eggert@cs.ucla.edu>
15995
15996         * lib/wctype_.h (_ctmp_) [HAVE_WCTYPE_CTMP_BUG]: Now of type wchar_t,
15997         not wint_t.  Also, include <ctype.h>, to fix another IRIX bug.
15998         * m4/wctype.m4 (gl_WCTYPE_H): Likewise.
15999         Problems reported by Georg Schwarz for IRIX 5.3.
16000
16001         * gnulib-tool (autoconf_minversion): Take the maximum version number
16002         found, not the minimum.  Problem reported by James Youngman.
16003
16004 2007-01-03  Karl Berry  <karl@gnu.org>
16005
16006         * doc/error.texi: new file, explaining interaction with progname.
16007         * doc/gnulib.texi: include it.  Update copyright.
16008
16009 2007-01-03  Simon Josefsson  <simon@josefsson.org>
16010
16011         * gnulib-tool (func_create_testdir): Run AC_CANONICAL_BUILD and
16012         AC_CANONICAL_HOST, to improve autobuild outputs.
16013
16014 2007-01-03  Paolo Bonzini  <bonzini@gnu.org>
16015             Yoann Vandoorselaere <yoann.v@prelude-ids.com>
16016
16017         * lib/poll.c (poll): Use recv on Mac OS X to distinguish connected
16018         sockets, server sockets, and other file descriptors.  Count errors
16019         to compute the return value.  Reorder the code a bit to be easier
16020         to follow.  Don't set event bits that were not requested (except
16021         POLLERR and POLLHUP).
16022
16023 2007-01-01  Bruno Haible  <bruno@clisp.org>
16024
16025         * modules/lchmod (Include): Require lchmod.h, not lchown.h.
16026
16027 2007-01-03  Jim Meyering  <jim@meyering.net>
16028
16029         * modules/fts-lgpl (Depends-on): Add i-ring.  Reported by Bruno Haible.
16030
16031 2007-01-02  Bruno Haible  <bruno@clisp.org>
16032
16033         * modules/settime (Include): Require timespec.h.
16034         * modules/nanosleep (Include): Likewise.
16035
16036 2007-01-01  Bruno Haible  <bruno@clisp.org>
16037
16038         * gnulib-tool (func_emit_copyright_notice): Bump year.
16039         (func_get_autoconf_snippet): Emit a GNULIB_<modulename> macro.
16040
16041 2007-01-01  Bruno Haible  <bruno@clisp.org>
16042
16043         Improve support for OpenBSD.
16044         * build-aux/config.rpath (libname_spec): Export.
16045         (library_names_spec): New variable. Export.
16046         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Extract libname_spec and
16047         library_names_spec from the config.rpath output. Locate shared library
16048         through the name pattern in library_names_spec.
16049
16050 2007-01-01  Eric Blake  <ebb9@byu.net>
16051
16052         * lib/version-etc.c (COPYRIGHT_YEAR): Bump for new year.
16053
16054 2006-12-30  Paul Eggert  <eggert@cs.ucla.edu>
16055
16056         * gnulib-tool (SORT): Remove, since we no longer assume GNU sort.
16057         Rewrite so as not to assume GNU sort or "tail -1".  Also, don't
16058         assume the C locale, and avoid an "eval" that could cause trouble.
16059         Problem with SORT reported by Bob Proulx.
16060
16061         * lib/getpagesize.h (getpagesize) [defined __amigaos4__]:
16062         Define.  Trivial patch from Henning Nielsen Lund, originally
16063         sent to bug-grep@gnu.org today.
16064
16065 2006-12-29  Paul Eggert  <eggert@cs.ucla.edu>
16066
16067         * lib/acl.h: Include sys/types.h and sys/stat.h, for mode_t and
16068         struct stat.  Problem reported by Henning Nielsen Lund.
16069         * lib/acl.c: Include acl.h first, to check interface.  Don't
16070         bother to include sys/types.h and sys/stat.h again.
16071
16072 2006-12-28  Paul Eggert  <eggert@cs.ucla.edu>
16073
16074         Import the following change from libc; problem reported by
16075         Sven Verdoolaege.
16076
16077         2005-10-13  Ulrich Drepper  <drepper@redhat.com>
16078
16079         [BZ #1373]
16080         * lib/argp.h: Remove __NTH for __argp_usage inline function.
16081
16082 2006-12-28  Jim Meyering  <jim@meyering.net>
16083
16084         * build-aux/announce-gen: Do not assume that the package
16085         builds any of tar.gz, tar.bz2, and .xdelta files.
16086         Suggestion from Simon Josefsson.
16087
16088 2006-12-28  Simon Josefsson  <simon@josefsson.org>
16089
16090         * modules/announce-gen: New file.
16091
16092 2006-12-27  Paul Eggert  <eggert@cs.ucla.edu>
16093
16094         * lib/mbchar.h: Just include <wctype.h>; the wctype module
16095         handles its gotchas now.
16096         * lib/mbswidth.c: Likewise.
16097         * lib/wcwidth.h: Likewise.
16098         * m4/mbchar.m4 (gl_MBCHAR): Don't bother checking for wctype.h
16099         and iswcntrl; the wctype module does this stuff now.
16100         * m4/mbswidth.m4 (gl_MBSWIDTH): Likewise.
16101         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Likewise.
16102         * modules/mbchar (Depends-on): Add wctype.
16103         * modules/mbswidth (Depends-on): Likewise.
16104         * modules/wcwidth (Depends-on): Likewise.
16105
16106 2006-12-27  Eric Blake  <ebb9@byu.net>
16107
16108         * lib/fnmatch.c: Reinstate inclusion of <wchar.h>, since this
16109         module uses more than what <wctype.h> is required to provide.
16110
16111 2006-12-26  Eric Blake  <ebb9@byu.net>
16112
16113         * gnulib-tool (sed_extract_prog): Avoid space-tab.
16114
16115 2006-12-26  Eric Blake  <ebb9@byu.net>
16116
16117         * modules/absolute-header: New module.
16118         * modules/fcntl (Depends-on): Depend on it.
16119         * modules/inttypes (Depends-on): Likewise.
16120         * modules/stdint (Depends-on): Likewise.
16121         * modules/sys_stat (Depends-on): Likewise.
16122         * modules/wctype (Depends-on): Likewise.
16123         * MODULES.html.sh (Support for building libraries and
16124         executables): Document it.
16125
16126 2006-12-25  Paul Eggert  <eggert@cs.ucla.edu>
16127
16128         * gnulib-tool (SED): Remove, undoing previous change.
16129         The problem was that it broke coreutils on Solaris, because
16130         "sed --posix" leaked into a makefile.
16131         (sed): New alias, if 'alias' and GNU sed.
16132
16133 2006-12-24  Jim Meyering  <jim@meyering.net>
16134
16135         Work around an fchownat bug in glibc-2.4:
16136         http://lists.ubuntu.com/archives/ubuntu-users/2006-September/093218.html
16137         This bug would cause "chown -RP ... DIR" to follow symlinks in DIR,
16138         in spite of the -P option.
16139         * m4/openat.m4 (gl_FUNC_FCHOWNAT, gl_FUNC_FCHOWNAT_DEREF_BUG):
16140         New macros.
16141         (gl_PREREQ_OPENAT): Require gl_FUNC_FCHOWNAT.
16142         * modules/openat (Files): Add lib/fchownat.c.
16143         * lib/openat.c (fchownat): Don't define here.  Move to...
16144         * lib/fchownat.c: ...this new file.
16145
16146 2006-12-23  Paul Eggert  <eggert@cs.ucla.edu>
16147
16148         Fix bug reported by Bruno Haible in
16149         <http://lists.gnu.org/archive/html/bug-gnulib/2006-12/msg00228.html>
16150         where quotearg.c didn't compile on Mac OS X 10.2 because it
16151         lacks <wchar.h> and wint_t.
16152         * lib/wctype_.h (__wctype_wint_t): New type.
16153         Include <stdio.h>, <time.h>, <wchar.h> only if HAVE_WINT_T.
16154         (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit, iswgraph):
16155         (iswlower, iswprint, iswpunct, iswspace, iswupper, ixwxdigit):
16156         Arg is now of type __wctype_wint_t, not wint_t.
16157         * m4/wctype.m4 (gl_WCTYPE_H): Require gt_TYPE_WINT_T, and
16158         substitute HAVE_WINT_T.
16159         * modules/wctype (Files): Add m4/wint_t.m4.
16160         (wctype.h): Substitute HAVE_WINT_T.
16161
16162 2006-12-23  Bruno Haible  <bruno@clisp.org>
16163
16164         * lib/safe-read.h [C++]: Wrap declarations in extern "C".
16165
16166 2006-12-23  Bruno Haible  <bruno@clisp.org>
16167
16168         * lib/canonicalize-lgpl.c (__realpath): Test HAVE_READLINK instead of
16169         S_ISLNK.
16170         Needed because gnulib's sys/stat.h replacement defines S_ISLNK on
16171         mingw.
16172
16173 2006-12-22  Bruno Haible  <bruno@clisp.org>
16174
16175         * lib/copy-file.c: Include acl.h.
16176         (copy_file_preserving) [USE_ACL]: Use copy_acl instead of chmod.
16177         Close the file descriptors only after being done with copy_acl.
16178         * modules/copy-file (Depends-on): Add acl.
16179
16180 2006-12-22  Bruno Haible  <bruno@clisp.org>
16181
16182         * gnulib-tool (SED): New variable.
16183         Use $SED instead of sed everywhere.
16184
16185 2006-12-22  Bruno Haible  <bruno@clisp.org>
16186
16187         * modules/no-c++: New file.
16188         * m4/no-c++.m4: New file.
16189         * MODULES.html.sh (Support for building libraries and executables):
16190         Add no-c++.
16191
16192 2006-12-22  Paul Eggert  <eggert@cs.ucla.edu>
16193
16194         * m4/mktime.m4 (AC_FUNC_MKTIME): Sync from Autoconf.
16195         Include <limits.h>, and use its INT_MAX to rewrite the
16196         j loop so that it does not overflow 'int'.  Problem reported by
16197         Ralf Wildenhues in
16198         <http://lists.gnu.org/archive/html/bug-gnulib/2006-12/msg00084.html>.
16199         Play it safe by shifting left by 1 rather than multiplying by 2,
16200         as GCC is less likely to optimize this away when the value
16201         is signed (when it assumes overflow leads to undefined behavior).
16202         Also, don't assume time_t uses two's complement.
16203
16204 2006-12-21  Paul Eggert  <eggert@cs.ucla.edu>
16205
16206         * MODULES.html.sh: New module wctype.
16207         * lib/wctype_.h, m4/wctype.m4, modules/wctype: New files.
16208         * lib/fnmatch.c: Don't bother to include <wchar.h> before
16209         <wctype.h>, since the new wctype module should fix this.
16210         * lib/quotearg.c: Include <wctype.h> unconditionally, since
16211         the wctype module should arrange for it.
16212         * lib/regex_internal.h: Likewise.
16213         * m4/quotearg.m4 (gl_QUOTEARG): Don't check for wctype.h or iswprint,
16214         since the wctype module should handle this now.
16215         * m4/regex.m4 (gl_PREREQ_REGEX): Don't check for wctype.h.
16216         * modules/fnmatch (Depends-on): Add wctype.
16217         * modules/quotearg (Depends-on): Likewise.
16218         * modules/regex (Depends-on): Likewise.
16219
16220 2006-12-19  Bruno Haible  <bruno@clisp.org>
16221
16222         * lib/strdup.h [C++]: Wrap definitions in extern "C".
16223         Suggested by Lorenzo Bettini <bettini@dsi.unifi.it>.
16224
16225 2006-12-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
16226
16227         * modules/savewd (Depends-on): Fix dependency on fcntl.
16228
16229 2006-12-18  Paul Eggert  <eggert@cs.ucla.edu>
16230
16231         * m4/stdint.m4 (gl_STDINT_H): Set STDINT_H to empty if stdint.h
16232         conforms to C99, rather than relying on the user's environment
16233         setting of STDINT_H.
16234
16235 2006-12-18  Paul Eggert  <eggert@cs.ucla.edu>
16236         and Eric Blake  <ebb9@byu.net>
16237
16238         * lib/dirname.h (DOUBLE_SLASH_IS_DISTINCT_ROOT): Default to 0, not 1.
16239         This is more consistent with the other defines here.
16240         * m4/double-slash-root.m4 (gl_DOUBLE_SLASH_ROOT):
16241         Port to z/OS.  Problem reported by Paul Gilmartin.
16242         Change local vars to use gl_ prefix rather than ac_.
16243         Don't define DOUBLE_SLASH_IS_DISTINCT_ROOT to 0, for consistency
16244         with other defines.
16245         * modules/double-slash-root: New module.
16246         * modules/dirname (Files): Remove m4/double-slash-root.m4.
16247         (Depends-on): Add double-slash-root.
16248         * MODULES.html.sh (File system functions): Mention new module.
16249
16250 2006-12-14  Paul Eggert  <eggert@cs.ucla.edu>
16251
16252         * lib/yesno.c [!ENABLE_NLS]: Don't include getline.h.
16253         (yesno) [!ENABLE_NLS]: Don't invoke getline or rpmatch.
16254         This is for the benefit of gzip, which doesn't do i18n.
16255
16256 2006-12-12  Jim Meyering  <jim@meyering.net>
16257
16258         * m4/acl.m4 (gl_ACL_GET_FILE): Fix logic error.
16259         Reported by Andreas Schwab <schwab@suse.de>.
16260
16261 2006-12-12  Bruno Haible  <bruno@clisp.org>
16262
16263         Merge these changes.
16264         2006-09-05  Bruno Haible  <bruno@clisp.org>
16265         * lib/iconvme.c (iconv_string): No need to save and restore errno when
16266         iconv_alloc succeeded.
16267         (iconv_alloc): Don't assume that malloc() or realloc(), when failing,
16268         sets errno to ENOMEM. (malloc on GNU/kFreeBSD doesn't.) No need to
16269         test for " && dest " at the end - dest is always != NULL there. Call
16270         iconv with 4xNULL arguments initially, to reset the state. Call iconv
16271         with 2xNULL arguments, also to flush the state storage. Handle the
16272         IRIX iconv behaviour. Realloc the final result, to throw away unused
16273         memory.
16274
16275 2006-12-11  Paul Eggert  <eggert@cs.ucla.edu>
16276
16277         * m4/openat.m4 (gl_FUNC_OPENAT): Don't compile mkdirat
16278         and fchmodat unconditionally, since glibc 2.4 has them.
16279         Problem reported by Arkadiusz Miskiewicz.
16280
16281 2006-12-10  Bruno Haible  <bruno@clisp.org>
16282
16283         * gnulib-tool (func_import): Show the include files only for those
16284         modules that are copied and specified.
16285         Reported by Karl Berry.
16286
16287 2006-12-08  Jim Meyering  <jim@meyering.net>
16288
16289         * build-aux/announce-gen ($VERSION): Don't use of $Revision...$.
16290         Instead, use Emacs' time-stamp write hook.  Note that the time is UTC.
16291
16292         * build-aux/announce-gen: Add two new options, both optional:
16293         --bootstrap-tools=TOOL_LIST
16294               a comma-separated list of tools, e.g.,
16295               autoconf,automake,bison,gnulib
16296         --gnulib-snapshot-date=DATE
16297               if gnulib is in the bootstrap tool list,
16298               then report this as the snapshot date.
16299               If not specified, use the current date/time.
16300               If you specify a date here, be sure it's UTC.
16301
16302 2006-12-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
16303
16304         * tests/test-argp-2.sh: Fix test to match actual output.
16305         (func_compare): Fix sed script to be portable.
16306
16307 2006-12-05  Paul Eggert  <eggert@cs.ucla.edu>
16308
16309         * lib/utimens.c (futimens) [HAVE_BUGGY_NFS_TIME_STAMPS]: Add a
16310         workaround for this case.  It is not autoconfigured now; offhand
16311         it's hard to see how to autoconfigure it.
16312
16313 2006-12-03  Paul Eggert  <eggert@cs.ucla.edu>
16314
16315         * lib/mkdir-p.c (make_dir_parents): Fix race condition when making
16316         a directory that is about to be chowned.  Such a directory's
16317         initial file permissions should permit the owner only and this
16318         should not be changed until after the chown, since the group and
16319         other bits would be incorrect if they granted permission before
16320         the chown.
16321
16322         Fix porting problem for iswctype reported by Georg Schwarz in:
16323         http://lists.gnu.org/archive/html/bug-coreutils/2006-12/msg00017.html
16324         * lib/fnmatch.c (WIDE_CHAR_SUPPORT): Require HAVE_ISWCTYPE, too.
16325         * lib/regex_internal.h (RE_ENABLE_I18N): Likewise.
16326         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for iswctype, too.
16327         * m4/regex.m4 (gl_PREREQ_REGEX): Likewise.
16328
16329 2006-12-03  Jim Meyering  <jim@meyering.net>
16330
16331         * lib/fts.c (fts_load): Don't set sp->fts_dev here, since
16332         p->fts_statp may not yet be defined.
16333         (fts_read): Instead, set it in the caller, once p->fts_statp is
16334         sure to be defined, and corresponds to a top-level directory.
16335         This bug made du -x fail.  Here's the coreutils test case:
16336         http://git.sv.gnu.org/gitweb/?p=coreutils.git;a=commit;h=ba45154d8e9f
16337         Reported by Mike Frysinger.
16338
16339 2006-12-01  Jim Meyering  <jim@meyering.net>
16340
16341         * modules/savewd (Depends-on): Add fcntl_h to avoid self-test
16342         build failure due to missing definition of HAVE_WORKING_O_NOFOLLOW.
16343         Reported by Simon Josefsson.
16344
16345 2006-11-30  Jim Meyering  <jim@meyering.net>
16346
16347         * m4/warning.m4: Use the all-permissive copyright notice
16348         recommended by RMS (rather than LGPL).
16349         * m4/vararrays.m4: Likewise.
16350         * m4/flexmember.m4: Likewise.
16351
16352 2006-11-29  Bruno Haible  <bruno@clisp.org>
16353
16354         * gnulib-tool (func_emit_lib_Makefile_am): Initialize also
16355         noinst_LIBRARIES. Augment noinst_LIBRARIES and noinst_LTLIBRARIES
16356         using +=.
16357         Reported by Simon Josefsson <simon@josefsson.org>.
16358
16359 2006-11-28  James Youngman <jay@gnu.org>
16360
16361         * README: Advise users that they might find the bug-gnulib@gnu.org
16362         and autotools-announce@gnu.org mailing lists useful.
16363
16364 2006-11-28  Bruno Haible  <bruno@clisp.org>
16365
16366         * m4/ptrdiff_max.m4: Remove file.
16367
16368 2006-11-21  Bruno Haible  <bruno@clisp.org>
16369
16370         * m4/eoverflow.m4 (gl_EOVERFLOW): Use AC_COMPUTE_INT instead of
16371         _AC_COMPUTE_INT.
16372         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
16373         * m4/ptrdiff_max.m4 (gl_PTRDIFF_MAX): Use AC_COMPUTE_INT instead of
16374         _AC_COMPUTE_INT.
16375         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
16376         * m4/size_max.m4 (gl_SIZE_MAX): Use AC_COMPUTE_INT instead of
16377         _AC_COMPUTE_INT.
16378         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
16379
16380 2006-11-28  Jim Meyering  <jim@meyering.net>
16381
16382         * lib/regcomp.c (parse_branch): Rename local, exp->expr, to avoid
16383         warning from "gcc -Wshadow" about shadowing the builtin.
16384
16385 2006-11-27  Bruno Haible  <bruno@clisp.org>
16386
16387         * m4/stdint.m4 (gl_STDINT_BITSIZEOF): Use AC_COMPUTE_INT instead of
16388         _AC_COMPUTE_INT.
16389         (AC_COMPUTE_INT): Add fallback definition for autoconf < 2.61.
16390
16391 2006-11-27  Bruno Haible  <bruno@clisp.org>
16392             Paul Eggert  <eggert@cs.ucla.edu>
16393
16394         * lib/regex.h (__restrict_arr): Redo logic of #if, for clarity.
16395
16396 2006-11-26  Bruno Haible  <bruno@clisp.org>
16397
16398         * gnulib-tool (func_emit_lib_Makefile_am): Initialize also
16399         noinst_LTLIBRARIES.
16400
16401 2006-11-27  Paul Eggert  <eggert@cs.ucla.edu>
16402             Bruno Haible  <bruno@clisp.org>
16403
16404         * lib/gettext.h (_LIBGETTEXT_HAVE_VARIABLE_SIZE_ARRAYS): Define to 0
16405         if compiling with "gcc -ansi".
16406
16407 2006-11-26  Paul Eggert  <eggert@cs.ucla.edu>
16408
16409         Fix some incompatibilities with gcc -ansi -pedantic.
16410         * lib/regex.h (__restrict_arr): Don't use the [restrict] syntax
16411         if compiling pedantically with GCC, unless it's C99 or later.
16412         Don't trust sys/cdefs.h's definition of __restrict_arr, either, as
16413         it mishandles gcc -ansi -pedantic as well.
16414         * lib/regex_internal.h (re_token_t): Don't use enum bitfields
16415         if gcc -pedantic.
16416         * lib/regexec.c (check_node_accept_bytes): Don't use auto
16417         initializers for struct if -pedantic, unless it's C99 or later.
16418
16419 2006-11-25  Nix  <nix@esperi.org.uk>  (tiny change)
16420
16421         * m4/fcntl_h.m4 (gl_FCNTL_H): Test the atime, not the mtime.
16422         Don't close an fd more than once. Identical atimes indicate
16423         success, not failure.
16424
16425 2006-11-22  Robinson Mittmann <bob@hoplon.com>  (tiny change)
16426
16427         * lib/sincosl.c (kernel_sinl): Fix typo in threshold.
16428
16429 2006-11-23  Jim Meyering  <jim@meyering.net>
16430
16431         * build-aux/announce-gen: New file.  From coreutils.
16432
16433 2006-11-22  Jim Meyering  <jim@meyering.net>
16434
16435         Work around a compile-time error from the HP-UX 11.00 /bin/cc.
16436         * lib/fts.c (enum Fts_stat): Give this previously-anon enum a name.
16437         (fts_read): Use a temporary to narrow the overused st_size member
16438         before using it in a switch statement.  Reported by Matthew Woehlke.
16439
16440         * m4/clock_time.m4 (gl_CLOCK_TIME): Quote AC_SUBST argument.
16441         * m4/euidaccess.m4 (gl_PREREQ_EUIDACCESS): Likewise.
16442
16443 2006-11-20  Bruno Haible  <bruno@clisp.org>
16444
16445         * gettext.m4 (AM_GNU_GETTEXT): Revert 2005-07-28 patch: Use
16446         changequote instead of pairs of brackets.
16447         Reported by Andreas Schwab <schwab@suse.de>.
16448
16449 2006-11-21  Jim Meyering  <jim@meyering.net>
16450
16451         * lib/fts.c (fts_safe_changedir): Move a declaration "up",
16452         so as to remain compatible with older compilers.
16453         Patch from Michael Deutschmann.
16454
16455 2006-11-20  Paul Eggert  <eggert@cs.ucla.edu>
16456
16457         * MODULES.html.sh (File system functions): Add openat.
16458
16459         * lib/openat.h (rpl_fstatat): New macro, if
16460         [HAVE_OPENAT && ! LSTAT_FOLLOWS_SLASHED_SYMLINK.
16461         (fstatat): Define to rpl_fstatat under the same conditions,
16462         unless COMPILING_FSTATAT.
16463         * m4/openat.m4 (gl_FUNC_OPENAT): Compile fstatat.c too, if fstatat
16464         seems to have the bug.
16465         * lib/fstatat.c: New file.
16466         * modules/openat (Files): Add it.
16467
16468 2006-11-20  Bruno Haible  <bruno@clisp.org>
16469
16470         * Makefile: New file.
16471
16472 2006-11-20  Jim Meyering  <jim@meyering.net>
16473
16474         The beginnings of syntax-related checks for gnulib.
16475         * lib/Makefile: New file.
16476         * lib/t-idcache: New script.  Ensure that the two halves of
16477         idcache.c stay in sync.
16478
16479         * lib/idcache.c: Adjust comments in user- and group- portions to
16480         be more accurate, and to be consistent with one another.
16481
16482 2006-11-20  Jim Meyering  <jim@meyering.net>
16483
16484         * lib/idcache.c: Restore most of the 2006-11-06 patch, so as to
16485         continue using the flexible array member (thus, this module performs
16486         half as many malloc calls), with the addition that...
16487         (getgroup, getuser): Consistently record a non-match via an empty
16488         "name" string, and map an empty string match to a NULL return value.
16489         * modules/idcache (Depends-on): Re-add flexmember.
16490
16491         * lib/idcache.c (getuser): Remove all uses of the register keyword.
16492         (getuidbyname, getgroup, getgidbyname): Likewise.
16493
16494         Use cleaner syntax: NULL rather than 0.
16495         * lib/idcache.c (getuidbyname, getgidbyname): Return NULL, not 0.
16496
16497 2006-11-20  Paul Eggert  <eggert@cs.ucla.edu>
16498
16499         * lib/idcache.c: Undo most recent patch, dated 2006-11-06.
16500         It mishandled the case where the group was missing.
16501         Problem reported by Greg Schafer.
16502         * modules/idcache: Likewise.
16503
16504 2006-11-18  Jim Meyering  <jim@meyering.net>
16505
16506         * check-module (%exempt_header): Add exception for some
16507         conditionally-included headers.
16508
16509         * modules/i-ring (Depends-on): Add verify.
16510         (License): Change to LGPL.
16511
16512 2006-11-16  Paul Eggert  <eggert@cs.ucla.edu>
16513
16514         * modules/getaddinfo (Depends-on): Remove inttostr; add snprintf.
16515         * lib/getaddrinfo.c: Include snprintf.h rather than intprops.h
16516         and inttostr.h.  Use snprintf rather than uinttostr, so that
16517         LGPLed code doesn't depend on GPLed.
16518
16519 2006-11-17  Paul Eggert  <eggert@cs.ucla.edu>
16520
16521         * modules/inline (License): Change from GPL to LGPL.
16522
16523 2006-11-17  Jim Meyering  <jim@meyering.net>
16524
16525         * modules/d-type (License): Switch to LGPL.
16526
16527 2006-11-15  Bruno Haible  <bruno@clisp.org>
16528
16529         * m4/alloca.m4 (gl_FUNC_ALLOCA): Fix the AC_CACHE_CHECK message.
16530
16531 2006-11-15  Eric Blake  <ebb9@byu.net>
16532
16533         * m4/allocsa.m4 (gl_ALLOCSA): Don't invoke macro already picked up by
16534         the module dependency.
16535
16536 2006-11-15  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
16537             Bruno Haible  <bruno@clisp.org>
16538
16539         * gnulib-tool (func_create_testdir): Add license consistency check.
16540
16541 2006-11-15  Eric Blake  <ebb9@byu.net>
16542
16543         * m4/alloca.m4 (gl_FUNC_ALLOCA): Use AC_CACHE_CHECK to avoid a
16544         random "(cached)" in configure output.
16545
16546 2006-11-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
16547
16548         * m4/inttypes.m4 (gl_INTTYPES_H): Use AC_CACHE_CHECK so that the
16549         test for conforming inttypes.h is both announced and cached.
16550
16551         * MODULES.html.sh (seen_modules, seen_files): New variables.
16552         (func_module): Rewrite to use a few less gnulib-tool and sed
16553         invocations.  Avoid a couple of quadratic algorithms for ...
16554         (missed_modules, missed_files): ... these, with ...
16555         (func_append, func_tmpdir): ... these new functions, from
16556         gnulib-tool.  Analogously, install traps for cleanup.
16557
16558         * tests/test-gc.c (main): Remove unused variables.
16559         * tests/test-read-file.c: Include stdlib.h, for 'free'.
16560
16561 2006-11-14  Paul Eggert  <eggert@cs.ucla.edu>
16562
16563         * modules/inttostr (License): Change to LGPL.
16564
16565 2006-11-14  Eric Blake  <ebb9@byu.net>
16566
16567         * modules/tempname (License): Change to LGPL.
16568
16569 2006-11-14  Eric Blake  <ebb9@byu.net>
16570
16571         * doc/functions.texi (Function Portability): *printf functions on
16572         Cygwin now understand all POSIX size specifiers.
16573
16574 2006-11-14  Bruno Haible  <bruno@clisp.org>
16575
16576         * modules/c-ctype (License): Change to LGPL.
16577
16578 2006-11-12  Bruno Haible  <bruno@clisp.org>
16579
16580         * m4/lib-link.m4 (AC_LIB_LINKFLAGS, AC_LIB_HAVE_LINKFLAGS,
16581         AC_LIB_LINKFLAGS_BODY): Also set a LIB${NAME}_PREFIX variable. Needed
16582         for GNOME libraries, for which the include files are installed in
16583         subdirectories of $prefix/include.
16584
16585 2006-11-12  Bruno Haible  <bruno@clisp.org>
16586
16587         * m4/lib-link.m4: Require at least autoconf-2.54.
16588         (AC_LIB_LINKFLAGS_BODY) [autoconf < 2.61]: Turn dots into the library
16589         name to underscores for the --with option.
16590
16591 2006-11-13  Bruno Haible  <bruno@clisp.org>
16592
16593         * gnulib-tool (func_create_testdir): Set gl_source_base correctly in
16594         the tests directory.
16595         Reported by Ralf Wildenhues.
16596
16597 2006-11-13  Bruno Haible  <bruno@clisp.org>
16598
16599         * gnulib-tool (func_emit_initmacro_start): Also override AC_LIBSOURCES.
16600         (func_emit_initmacro_end): Undo the override here.
16601         (func_emit_initmacro_done): Emit a definition for gl_LIBSOURCES.
16602         Works around the famous automake error in coreutils.
16603
16604 2006-11-13  Eric Blake  <ebb9@byu.net>
16605
16606         * lib/gl_anytree_oset.h (gl_tree_search_atleast): Return the
16607         element, not its node.
16608
16609 2006-11-12  Bruno Haible  <bruno@clisp.org>
16610
16611         * gnulib-tool (func_emit_lib_Makefile_am): Replace occurrences of
16612         '$(top_srcdir)/build-aux/', taking into account the real auxdir.
16613
16614 2006-11-12  Bruno Haible  <bruno@clisp.org>
16615
16616         * gnulib-tool: New option --local-symlink.
16617         (func_usage): Document it.
16618         (lsymbolic): New variable.
16619         (func_import, func_create_testdir): If --symlink was not specified,
16620         test whether --local-symlink was specified and the file comes from
16621         the local_gnulib_dir.
16622
16623 2006-11-12  Bruno Haible  <bruno@clisp.org>
16624
16625         * gnulib-tool (func_ln): New function.
16626         (func_ln_if_changed, func_create_testdir): Use it instead of "ln -s".
16627
16628 2006-11-12  Bruno Haible  <bruno@clisp.org>
16629
16630         Finish support for source files in subdirectories.
16631         * gnulib-tool (func_emit_lib_Makefile_am): If some of the source files
16632         are in subdirectories, set uses_subdirs and add 'subdir-objects' to
16633         AUTOMAKE_OPTIONS.
16634         (func_import, func_create_testdir): Invoke AM_PROG_CC_C_O in this case.
16635
16636 2006-11-12  Bruno Haible  <bruno@clisp.org>
16637
16638         * gnulib-tool (func_get_automake_snippet): Synthesize also an
16639         EXTRA_lib_SOURCES augmentation.
16640         (func_emit_lib_Makefile_am): Initialize EXTRA_lib..._SOURCES to empty.
16641
16642 2006-11-12  Jim Meyering  <jim@meyering.net>
16643
16644         Make fts (in FTS_CWDFD mode) more efficient by caching a few open
16645         file descriptors.  This also averts a failure on systems with
16646         native openat support when a traversed directory lacks "x" access.
16647         * lib/fts_.h: Include "i-ring.h"
16648         (struct FTS) [fts_fd_ring]: New member.
16649         * lib/fts.c (RESTORE_INITIAL_CWD): Also call fd_ring_clear.
16650         (FCHDIR): Add parentheses.
16651         (fd_ring_check, fd_ring_print) [!FTS_DEBUG]: Define away.
16652         (cwd_advance_fd): Add a 3rd parameter.  Adjust all callers.
16653         When descending, rather than simply closing the previous
16654         fts_cwd_fd value, push that file descriptor onto the ring.
16655         (same_fd, fd_ring_print, fd_ring_check) [FTS_DEBUG]: New functions.
16656         (fts_open): Initialize the new fd_ring member.
16657         (fts_close): Clear the ring.
16658         (fts_safe_changedir): When possible, use our new fd_ring to skip
16659         the diropen and fstat and dev/ino comparison that would normally
16660         accompany a virtual `chdir ("..")'.
16661
16662         * modules/fts (Depends-on): Add i-ring.
16663         * modules/i-ring: New module.
16664         * lib/i-ring.c, lib/i-ring.h, lib/i-ring-test.c: New files.
16665         * m4/i-ring.m4: New file.
16666
16667 2006-11-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
16668
16669         * gnulib-tool (func_create_testdir): Fix replacement of
16670         `build-aux' in configure.ac.  Run autotools in gltests
16671         subdirectory.
16672         (func_create_testdir, func_create_megatestdir, test): There is
16673         no need for '--force' in most autotool invocations in a new
16674         tree.  Actually fail the whole test if any of the tools, or the
16675         configure or make stages fail.
16676
16677         Sync from Automake.
16678         * build-aux/gnupload: Revert last change.  Add pointer to upload
16679         instructions of the GNU Maintenance Instructions.
16680         Suggestion by Karl Berry.
16681
16682 2006-11-10  Jim Meyering  <jim@meyering.net>
16683
16684         * lib/fts.c [FTS_DEBUG]: Don't try to print a pointer via %s.
16685
16686 2006-11-09  Paul Eggert  <eggert@cs.ucla.edu>
16687
16688         * lib/gettext.h (dgettext, dcgettext, ngettext) [! ENABLE_NLS]:
16689         (dngettext, dcngettext, bindtextdomain) [! ENABLE_NLS]:
16690         (bind_textdomain_codeset) [! ENABLE_NLS]:
16691         Evaluate all the arguments.  That way, callers get compatible behavior
16692         if the arguments have side effects.  Also, it avoids some GCC
16693         diagnostics in some cases; Joel E. Denny reported problems when Bison
16694         was configured with --enable-gcc-warnigs.
16695
16696 2006-11-10  Jim Meyering  <jim@meyering.net>
16697
16698         * m4/inline.m4 (gl_INLINE): Check with the compiler, not cpp, so that
16699         relevant options in CFLAGS (like -O, -fno-inline) are taken into
16700         account.
16701
16702 2006-11-10  Jim Meyering  <jim@meyering.net>
16703
16704         * modules/inline: New file/module.
16705         * modules/xalloc (Files): Remove m4/inline.m4.
16706         (Depends-on): Add inline, instead.
16707         * modules/oset: Likewise.
16708         * modules/list: Likewise.
16709
16710 2006-11-09  Paul Eggert  <eggert@cs.ucla.edu>
16711
16712         * lib/stdint_.h (uintmax_t): Fix typo: int64_t -> uint64_t.
16713         Problem reported by Matthew Woehlke.
16714
16715 2006-11-09  Bruno Haible  <bruno@clisp.org>
16716
16717         * lib/tempname.c (gen_tempname): Remove variant that invokes
16718         __gen_tempname.
16719         * m4/tempname.m4 (gl_FUNC_GEN_TEMPNAME): Don't test for
16720         __gen_tempname.
16721
16722 2006-11-08  Bruno Haible  <bruno@clisp.org>
16723
16724         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Set ac_cv_type_long_long_int
16725         to 'yes' instead of 'cross-compiling'.
16726
16727 2006-11-08  Paul Eggert  <eggert@cs.ucla.edu>
16728
16729         * lib/quotearg.h (quotearg_free): New decl.
16730         * lib/quotearg.c (quotearg_free): New function.
16731         (slot0, nslots, slotvec0, slotvec):
16732         Now file-scope so that quotearg_free can get at them.
16733
16734 2006-11-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
16735
16736         Sync from Automake.
16737         * build-aux/gnupload: Add missing 'gnu' to example URL.
16738         Report by Karl Berry.
16739
16740 2006-11-08  Bruno Haible  <bruno@clisp.org>
16741
16742         * m4/inline.m4 (gl_INLINE): Also test __NO_INLINE__.
16743         Suggested by Paul Eggert.
16744
16745 2006-11-08  Jim Meyering  <jim@meyering.net>
16746
16747         * lib/fts.c [!_LGPL_PACKAGE]: Don't include fcntl--.h twice.
16748         It's already included if !_LIBC.
16749         (fts_safe_changedir): Add a comment.
16750
16751 2006-11-07  Paul Eggert  <eggert@cs.ucla.edu>
16752
16753         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Detect bug in
16754         Tandem NonStop Kernel (OSS) cc -O circa 2004, reported by
16755         Matthew Woehlke.
16756
16757         * lib/xalloc.h (XMALLOC, XNMALLOC, XZALLOC, XCALLOC): Move
16758         definitions up, to avoid colliding with change below.
16759         (static_inline) [HAVE_INLINE]: New macro.
16760         (xnmalloc, xnrealloc, x2nrealloc, xcharalloc):
16761         Provide extern decls when !HAVE_INLINE.  Do not define unless
16762         static_inline is defined, either by us or by xmalloc.c.  Use
16763         static_inline rather than static inline.
16764         (XCALLOC): Optimize sizeof(T) = 1 case.
16765         * lib/xmalloc.c (static_inline) [!HAVE_INLINE]: New macro.
16766
16767 2006-11-07  Bruno Haible  <bruno@clisp.org>
16768
16769         * lib/xalloc.h (XNMALLOC): Restore optimization of sizeof(T) = 1 case.
16770         * m4/xalloc.m4 (gl_PREREQ_XALLOC): Require gl_INLINE instead of
16771         AC_C_INLINE.
16772         * modules/xalloc (Files): Add m4/inline.m4.
16773
16774 2006-11-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
16775
16776         * README: Fix typo.
16777         * doc/gnulib.texi (Miscellaneous Notes): Likewise, rename...
16778         (Miscellanous Notes): ...from this.
16779
16780 2006-11-07  Paul Eggert  <eggert@cs.ucla.edu>
16781
16782         * m4/flexmember.m4 (AC_C_FLEXIBLE_ARRAY_MEMBER):
16783         Mention that offsetof should be used instead of sizeof.
16784         From Bruno Haible.
16785
16786 2006-11-07  Bruno Haible  <bruno@clisp.org>
16787
16788         * lib/w32spawn.h (prepare_spawn): Use XNMALLOC instead of xmalloc.
16789
16790 2006-11-06  Paul Eggert  <eggert@cs.ucla.edu>
16791
16792         Simplify xmalloc expressions. Add overflow check in xmalloc arguments.
16793         * lib/gl_anyavltree_list2.h (create_subtree_with_contents):
16794         (gl_tree_create, gl_tree_add_first, gl_tree_add_last):
16795         (gl_tree_add_before, gl_tree_add_after):
16796         Use XMALLOC instead of xmalloc, and XCALLOC instead of xzalloc.
16797         * lib/gl_anyhash_list2.h (hash_resize): Likewise.
16798         * lib/gl_anylinked_list2.h (gl_linked_create_empty, gl_linked_create):
16799         (gl_linked_add_first, gl_linked_add_last, gl_linked_add_before):
16800         (gl_linked_add_after, gl_linked_add_at): Likewise.
16801         * lib/gl_anyrbtree_list2.h (create_subtree_with_contents):
16802         (gl_tree_create, gl_tree_add_first, gl_tree_add_last):
16803         (gl_tree_add_before, gl_tree_add_after): Likewise.
16804         * lib/gl_anytree_list2.h (gl_tree_create_empty): Likewise.
16805         * lib/gl_anytree_oset.h (gl_tree_create_empty): Likewise.
16806         * lib/gl_anytreehash_list1.h (add_to_bucket): Likewise.
16807
16808 2006-11-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
16809
16810         * lib/gl_oset.h: Use C comment style, not C++ comment style.
16811
16812 2006-11-06  Bruno Haible  <bruno@clisp.org>
16813
16814         * m4/inline.m4: New file.
16815         * m4/gl_list.m4 (gl_LIST): Require gl_INLINE.
16816         * modules/list (Files): Add m4/inline.m4.
16817         * modules/oset (Files): Likewise.
16818
16819 2006-11-06  Paul Eggert  <eggert@cs.ucla.edu>
16820
16821         * lib/idcache.c: Include <stddef.h>, for offsetof.
16822         (struct userid.name): Change from char * to a flexible array member.
16823         All uses changed.
16824         * modules/idcache (Depends-on): Add flexmember.
16825
16826         * MODULES.html.sh (Core language properties): New module flexmember.
16827         * modules/flexmember, m4/flexmember.m4: New files.
16828
16829         * lib/xalloc.h (xnmalloc, xnrealloc, x2nrealloc): Now static
16830         inline functions that are identical with the old xnmalloc_inline,
16831         xnrealloc_inline, x2nrealloc_inline of lib/xmalloc.c.  This is so
16832         that we can avoid some unnecessary integer multiplications and
16833         divisions in the common case where the element size is known at
16834         compile time.
16835         (XNMALLOC) [HAVE_INLINE]: Remove special case, which is no longer
16836         needed.
16837         (xnboundedmalloc): Remove.
16838         (XMALLOC, XNMALLOC, XZALLOC, XCALLOC): Use lower-case letters for
16839         arguments, for consistency with rest of this header.
16840         (xcharalloc): Rewrite using XNMALLOC.
16841         * lib/xmalloc.c (xnmalloc_inline, xnmalloc, xnrealloc_inline):
16842         (xnrealloc, x2nrealloc_inline, x2nrealloc): Remove.  The *_inline
16843         versions have been moved to lib/xalloc.h and renamed to be the
16844         non-*_inline versions.
16845         (xmalloc, xrealloc): Implement without reference to the xnmalloc
16846         and xnrealloc functions, since those functions are now inline and
16847         now call us.
16848         (x2realloc): Invoke x2realloc, not x2realloc_inline, to accommodate
16849         renaming described above.
16850         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Remove AC_C_INLINE since
16851         xmalloc.c no longer uses inline directly.  gl_PREREQ_XALLOC now
16852         captures the dependency in AC_C_INLINE.
16853
16854         New module canonicalize-lgpl, proposed by Charles Wilson in
16855         <http://lists.gnu.org/archive/html/bug-gnulib/2006-11/msg00020.html>
16856         with a few small changes afterwards.
16857         * MODULES.html.sh (File system functions): New module
16858         canonicalize-lgpl.
16859         * lib/canonicalize.h: Add comments for canonicalize_filename_mode
16860         and canonicalize_file_name.
16861         * lib/canonicalize-lgpl.c, m4/canonicalize-lgpl.m4:
16862         * modules/canonicalize-lgpl: New files.
16863
16864 2006-11-05  Bruno Haible  <bruno@clisp.org>
16865
16866         * gnulib-tool (func_import, func_create_testdir): Create directories
16867         also for files in subdirectories of lib/.
16868
16869 2006-11-05  Bruno Haible  <bruno@clisp.org>
16870
16871         * lib/gl_array_list.c (gl_array_iterator_next): Make pointer decrement
16872         ANSI C compliant.
16873
16874 2006-11-03  Bruno Haible  <bruno@clisp.org>
16875
16876         Simplify xmalloc expressions. Add overflow check in xmalloc arguments.
16877         * m4/xalloc.m4 (gl_PREREQ_XALLOC): Require AC_C_INLINE.
16878         * lib/xalloc.h (XMALLOC, XNMALLOC, XZALLOC, XCALLOC): New macros.
16879         (xnboundedmalloc): New inline function.
16880         * lib/classpath.c (new_classpath): Use XNMALLOC instead of xmalloc.
16881         * lib/clean-temp.c (create_temp_dir): Use XNMALLOC, XMALLOC instead of
16882         xmalloc.
16883         * lib/concatpath.c (concatenated_pathname): Use XNMALLOC instead of
16884         xmalloc.
16885         * lib/fatal-signal.c (at_fatal_signal): Use XNMALLOC instead of xmalloc.
16886         * lib/findprog.c (find_in_path): Use XNMALLOC instead of xmalloc.
16887         * lib/gl_array_list.c (gl_array_create_empty): Use XMALLOC instead of
16888         xmalloc.
16889         (gl_array_create): Use XNMALLOC, XMALLOC instead of xmalloc.
16890         * lib/gl_array_oset.c (gl_array_create_empty): Use XNMALLOC instead of
16891         xmalloc.
16892         * lib/gl_avltree_oset.c (gl_tree_add_first, gl_tree_add_before,
16893         gl_tree_add_after): Use XMALLOC instead of xmalloc.
16894         * lib/gl_carray_list.c (gl_carray_create_empty): Use XMALLOC instead of
16895         xmalloc.
16896         (gl_carray_create): Use XNMALLOC, XMALLOC instead of xmalloc.
16897         * lib/gl_rbtree_oset.c (gl_tree_add_first, gl_tree_add_before,
16898         gl_tree_add_after): Use XMALLOC instead of xmalloc.
16899         * lib/gl_sublist.c (gl_sublist_create): Use XMALLOC instead of xmalloc.
16900         * lib/pagealign_alloc.c (new_memnode): Use XMALLOC instead of xmalloc.
16901         * lib/sh-quote.c (shell_quote_argv): Use XNMALLOC instead of xmalloc.
16902         * lib/xvasprintf.c (xstrcat): Use XNMALLOC instead of xmalloc.
16903
16904 2006-11-03  Bruno Haible  <bruno@clisp.org>
16905
16906         * lib/c-ctype.h [C++]: Define functions without name mangling.
16907         * lib/fwriteerror.h [C++]: Likewise.
16908         * lib/gcd.h [C++]: Likewise.
16909         * lib/linebreak.h [C++]: Likewise.
16910
16911 2006-11-03  Paul Eggert  <eggert@cs.ucla.edu>
16912
16913         * lib/canonicalize.h: (canonicalize_mode_t, CAN_EXISTING):
16914         (CAN_ALL_BUT_LAST, CAN_MISSING, canonicalize_filename_mode):
16915         Define only if PROVIDE_CANONICALIZE_FILENAME_MODE is defined.
16916         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME):
16917         Check for functions and headers just once.
16918         Check for declaration of canonicalize_file_name.
16919         Define PROVIDE_CANONICALIZE_FILENAME_MODE.
16920
16921 2006-11-02  Charles Wilson  <cygwin@cwilson.fastmail.fm>
16922
16923         * gnulib-tool (func_import): Fix typo in actioncmd.
16924
16925 2006-11-02  Bruno Haible  <bruno@clisp.org>
16926
16927         * gnulib-tool (func_get_automake_snippet): Interpret a backslash-
16928         newline sequence in the Makefile.am snippet as a space, like "make"
16929         does.
16930         Reported by Roger Persson <perrog@gmail.com>.
16931
16932 2006-11-01  Bruno Haible  <bruno@clisp.org>
16933
16934         * m4/strcase.m4 (gl_FUNC_STRNCASECMP): Check whether strncasecmp is
16935         already declared in <string.h>.
16936         * lib/strcase.h (strncasecmp): Don't declare it if yes.
16937
16938 2006-11-01  Bruno Haible  <bruno@clisp.org>
16939
16940         * m4/strcase.m4 (gl_FUNC_STRCASECMP): Don't define strcasecmp here.
16941         * lib/strcase.h: Include <string.h>.
16942         (strcasecmp): Define to rpl_strcasecmp here.
16943
16944 2006-11-01  Bruno Haible  <bruno@clisp.org>
16945
16946         * lib/printf-parse.c (PRINTF_PARSE): Cast malloc/realloc results.
16947
16948 2006-11-01  Eric Blake  <ebb9@byu.net>
16949
16950         * lib/mkstemp-safer.c (mkstemp_safer): Allow C++ compilation.
16951
16952         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Allow C++ configuration.
16953
16954 2006-10-29  Bruno Haible  <bruno@clisp.org>
16955
16956         Make it compile in C++ mode.
16957         * lib/full-write.c (full_rw): Add a cast.
16958
16959 2006-11-01  Bruno Haible  <bruno@clisp.org>
16960
16961         * gnulib-tool (func_get_automake_snippet): Change sed_combine_lines to
16962         be POSIX compliant.
16963         Reported by Roger Persson <perrog@gmail.com>.
16964
16965 2006-11-01  Eric Blake  <ebb9@byu.net>
16966
16967         * lib/getopt_.h: Fix comments.
16968
16969 2006-10-31  Eric Blake  <ebb9@byu.net>
16970
16971         * modules/tmpdir (Depends-on): Add sys_stat.
16972         * modules/mkdtemp (Depends-on): Add tempname, drop unistd.
16973         * lib/mkdtemp.c (gen_tempname): Remove; tempname covers this.
16974         * lib/tmpdir.c (S_ISDIR): Simplify, thanks to sys_stat.
16975         * m4/mkdtemp.m4 (gl_PREREQ_MKDTEMP): Simplify, thanks to
16976         tempname.
16977
16978 2006-10-31  Paul Eggert  <eggert@cs.ucla.edu>
16979
16980         Avoid some C++ diagnostics reported by Bruno Haible.
16981         * lib/quotearg.c (clone_quoting_options): Use xmemdup rather than
16982         xmalloc.
16983         (quotearg_alloc): Use xcharalloc rather than xmalloc.
16984         (struct slotvec): Move to top level.
16985         (quotearg_n_options): Rewrite to avoid xmalloc.
16986         * lib/xalloc.h (xcharalloc): New function.
16987         * (xrealloc, xnrealloc, x2realloc, x2nrealloc, xmemdup):
16988         [defined __cplusplus]: Add function template that provides result
16989         type propagation.  This part of the change is from Bruno Haible.
16990
16991 2006-10-29  Bruno Haible  <bruno@clisp.org>
16992
16993         Make it compile in C++ mode.
16994         * lib/striconv.c (mem_cd_iconv): Cast malloc/realloc result.
16995         * lib/strnlen1.c (strnlen1): Cast memchr result.
16996         * lib/mbchar.h (mb_copy): Rename arguments to 'new_mbc', 'old_mbc'.
16997         * lib/clean-temp.c (string_equals, string_hash): Add casts.
16998         (create_temp_dir): Rename local variable 'template'.
16999         (compile_csharp_using_sscli): Add cast.
17000         * lib/fatal-signal.c (at_fatal_signal): Cast xmalloc result.
17001         * lib/findprog.c (find_in_path): Likewise.
17002         * lib/linebreak.c (mbs_width_linebreaks): Cast malloc result.
17003         * lib/wait-process.c (register_slave_subprocess): Likewise.
17004
17005 2006-10-22  Bruno Haible  <bruno@clisp.org>
17006
17007         * modules/tsearch: New file.
17008         * lib/tsearch.h: New file.
17009         * lib/tsearch.c: New file, from glibc-2.5 with small modifications.
17010         * m4/tsearch.m4: New file.
17011         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add tsearch.
17012
17013 2006-10-29  Eric Blake  <ebb9@byu.net>
17014
17015         * lib/arcfour.c: Assume config.h.
17016         * lib/arctwo.c: Likewise.
17017         * lib/base64.c: Likewise.
17018         * lib/check-version.c: Likewise.
17019         * lib/crc.c: Likewise.
17020         * lib/des.c: Likewise.
17021         * lib/gc-gnulib.c: Likewise.
17022         * lib/gc-libgcrypt.c: Likewise.
17023         * lib/gc-pbkdf2-sha1.c: Likewise.
17024         * lib/getaddrinfo.c: Likewise.
17025         * lib/getdelim.c: Likewise.
17026         * lib/getline.c: Likewise.
17027         * lib/hmac-md5.c: Likewise.
17028         * lib/hmac-sha1.c: Likewise.
17029         * lib/iconvme.c: Likewise.
17030         * lib/md2.c: Likewise.
17031         * lib/md4.c: Likewise.
17032         * lib/memxor.c: Likewise.
17033         * lib/read-file.c: Likewise.
17034         * lib/readline.c: Likewise.
17035         * lib/rijndael-alg-fst.c: Likewise.
17036         * lib/rijndael-api-fst.c: Likewise.
17037         * lib/xgetdomainname.c: Likewise.
17038
17039 2006-10-28  Eric Blake  <ebb9@byu.net>
17040
17041         * lib/xstrndup.c: Assume config.h.
17042
17043 2006-10-27  Paul Eggert  <eggert@cs.ucla.edu>
17044
17045         Move stat.h-substitute stuff from lib/stat-macros.h to lib/stat_.h.
17046         stat-macros.h is now for our own macros, whereas stat_h is for
17047         macros in the <sys/stat.h> name space.
17048         * lib/stat-macros.h: Remove copyright notice, as this file is now tiny.
17049         (STAT_MACROS_H): Remove.
17050         (S_IFMT, S_ISBLK, S_ISCHR, S_ISDIR, S_ISFIFO, S_ISLNK, S_ISNAM):
17051         (S_ISMPB, S_ISMPC, S_ISNWK, S_ISREG, S_ISSOCK, S_ISDOOR, S_ISPORT):
17052         (S_TYPEISMQ, S_TYPEISTMO, S_TYPEISSEM, S_TYPEISSHM, S_ISCTG, S_ISOFD):
17053         (S_ISOFL, S_ISWHT, S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IRGRP):
17054         (S_IROTH, S_IWUSR, S_IWGRP, S_IWOTH, S_IXUSR, S_IXGRP, S_IXOTH):
17055         (S_IRWXU, S_IRWXG, S_IRWXO, S_IXUGO, S_IRWXUGO):
17056         Move these macros to ...
17057         * lib/stat_.h: here.  Don't include stat-macros.h.
17058         * lib/canonicalize.c: Don't include stat-macros.h.
17059         * lib/chown.c: Likewise.
17060         * lib/euidaccess.c: Likewise.
17061         * lib/file-type.c: Likewise.
17062         * lib/filemode.c: Likewise.
17063         * lib/glob.c: Likewise.
17064         * lib/isapipe.c: Likewise.
17065         * lib/lchown.c: Likewise.
17066         * lib/lstat.c: Likewise.
17067         * lib/mkdir-p.c: Likewise.
17068         * lib/rmdir.c: Likewise.
17069         * m4/lchown.m4 (gl_FUNC_LCHOWN): Don't require gl_STAT_MACROS.
17070         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Don't check for io.h
17071         unless mkdir isn't declared, to speed up 'configure'.
17072         Always create sys/stat.h, since it's unlikely any real sys/stat.h
17073         would define all the S_* symbols.
17074         * modules/canonicalize (Depends-on):
17075         Depend on sys_stat, not stat-macros.
17076         * modules/chown: Likewise.
17077         * modules/euidaccess: Likewise.
17078         * modules/filemode: Likewise.
17079         * modules/file-type: Likewise.
17080         * modules/glob: Likewise.
17081         * modules/isapipe: Likewise.
17082         * modules/lchown: Likewise.
17083         * modules/lstat: Likewise.
17084         * modules/mkancesdirs: Likewise.
17085         * modules/rmdir: Likewise.
17086         * modules/mkdir-p (Depends-on): Also depend on sys_stat.
17087         * modules/modechange: Likewise.
17088         * modules/stat-macros (Files): Remove m4/stat-macros.m4.
17089         (configure.ac): Remove gl_STAT_MACROS.
17090         * modules/sys_stat (Depends-on): Remove stat-macros.
17091
17092 2006-10-27  Bruno Haible  <bruno@clisp.org>
17093
17094         * m4/signed.m4: Remove file.
17095         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_ARGS_: Remove bh_C_SIGNED
17096         invocation.
17097         * modules/vasnprintf (Files): Remove m4/signed.m4.
17098
17099 2006-10-27  Bruno Haible  <bruno@clisp.org>
17100
17101         Update to GNU gettext 0.16.
17102         * modules/gettext (Files): Add m4/intl.m4, m4/intldir.m4. Remove
17103         m4/inttypes-h.m4, m4/signed.m4.
17104         * m4/gettext.m4: Update to GNU gettext 0.16.
17105         * m4/intl.m4: New file, from GNU gettext.
17106         * m4/intldir.m4: New file, from GNU gettext.
17107         * config/srclist.txt: Update
17108
17109 2006-10-27  Eric Blake  <ebb9@byu.net>
17110
17111         * MODULES.html.sh: Document tempname.
17112         * modules/mkstemp (Depends-on): Add tempname, and drop transitive
17113         dependencies.
17114         (Files): Move lib/tempname.c...
17115         * modules/tempname: ...to this new module.
17116         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Remove tempname checks.
17117         (gl_PREREQ_TEMPNAME): Move...
17118         * m4/tempname.m4: ...to this new file.
17119         * lib/mkstemp.c (includes) [!_LIBC]: Use tempname.h.
17120         * modules/sys_stat (Depends-on): Add stat-macros.
17121         * lib/stat_.h (includes): Pick up stat macros.
17122         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Replace <sys/stat.h>
17123         if stat macros are broken.
17124         * lib/tempname.c (includes): No need to include "stat-macros.h".
17125         (__gen_tempname) [!_LIBC]: Expose as gen_tempname.
17126         (direxists, __path_search) [!_LIBC]: Don't compile these in
17127         gnulib; the tmpdir module covers that.
17128         * lib/tempname.h: New file.
17129
17130 2006-10-26  Paul Eggert  <eggert@cs.ucla.edu>
17131
17132         * COPYING: Explain how gnulib-tool converts licence headers.
17133         Almost all wording by Eric Blake.
17134
17135 2006-10-25  Paul Eggert  <eggert@cs.ucla.edu>
17136
17137         * lib/mbchar.h (is_basic_table): Make read-only.
17138         * lib/mbchar.c (is_basic_table): Likewise.
17139         Reported by John Darrington.
17140
17141 2006-10-25  Bruno Haible  <bruno@clisp.org>
17142
17143         * lib/progname.h (set_program_name): Undefine before defining.
17144
17145 2006-10-25  Bruno Haible  <bruno@clisp.org>
17146
17147         * lib/gettext.h (_LIBGETTEXT_HAVE_VARIABLE_SIZE_ARRAYS): Define to
17148         false for non-gcc C++ compilers.
17149         Reported by Nelson H. F. Beebe <beebe@math.utah.edu>.
17150
17151 2006-10-24  Bruno Haible  <bruno@clisp.org>
17152
17153         * lib/striconv.c (mem_cd_iconv, str_cd_iconv): Treat all non-GNU
17154         iconv implementations like Irix iconv.
17155
17156 2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
17157
17158         * modules/vararrays: New file.
17159         * m4/vararrays.m4: New file, taken from diffutils.
17160         * MODULES.html.sh: New module vararrays.
17161
17162 2006-10-24  Karl Berry  <karl@gnu.org>
17163
17164         * doc/gnulib-intro.texi: --- instead of --; non-naive naive.
17165         Don't call GNU Unix.
17166
17167 2006-10-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
17168
17169         * users.txt: Add Libtool.
17170
17171         Sync from Libtool:
17172
17173         2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
17174
17175         * lib/argz.c: Remove check for HAVE_CONFIG_H, to conform
17176         to gnulib's policy of including config.h unconditionally.
17177
17178 2006-10-24  Bruno Haible  <bruno@clisp.org>
17179
17180         * modules/wcwidth (Files): Add m4/wint_t.m4.
17181         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Require gt_TYPE_WINT_T.
17182         * lib/wcwidth.h (iswprint): Use 'int' if 'wint_t' is not defined.
17183
17184 2006-10-24  Paul Eggert  <eggert@cs.ucla.edu>
17185
17186         * lib/getdate.y (yyerror): Make the arguments pointer-to-const,
17187         to pacify GCC with some -W flags enabled.  Problem reported by
17188         Bruno Haible.
17189
17190 2006-10-24  Jim Meyering  <jim@meyering.net>
17191
17192         * MODULES.html.sh: Remove uinttostr.  It's not a module.
17193         Reported by Karl Berry.
17194
17195 2006-10-23  Bruno Haible  <bruno@clisp.org>
17196
17197         * lib/fts.c (fts_build): Move variable declaration, for C89 compliance.
17198
17199 2006-10-24  Bruno Haible  <bruno@clisp.org>
17200
17201         * lib/gl_list.h: Use C comment style, not C++ comment style.
17202
17203 2006-10-23  Eric Blake  <ebb9@byu.net>
17204
17205         * lib/getaddrinfo.c (includes): Add missing include.
17206
17207 2006-10-23  Bruno Haible  <bruno@clisp.org>
17208             Paul Eggert  <eggert@cs.ucla.edu>
17209
17210         Ability to rename obstack_free.
17211         * lib/obstack.h (__obstack_free): New macro. Declare instead of
17212         obstack_free.
17213         (obstack_free): Invoke the __obstack_free macro.
17214         * lib/obstack.c (obstack_free): Use __obstack_free macro.
17215
17216 2006-10-23  Bruno Haible  <bruno@clisp.org>
17217             Paul Eggert  <eggert@cs.ucla.edu>
17218
17219         * lib/argp.h (argp_parse, __argp_parse): Comment out the identifiers
17220         __argc, __argv from the declaration. (They are defined as macros on
17221         mingw.)
17222
17223 2006-10-22  Bruno Haible  <bruno@clisp.org>
17224
17225         * doc/gnulib-intro.texi: New file.
17226         * doc/gnulib.texi: Include it.
17227
17228 2006-10-21  Bruno Haible  <bruno@clisp.org>
17229
17230         * doc/gnulib.texi: Split the chapter "Gnulib" into 3 chapters
17231         "Introduction", "Miscellanous Notes", "Particular Modules".
17232
17233 2006-10-21  Bruno Haible  <bruno@clisp.org>
17234
17235         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
17236         Change mostlyclean-local rule to avoid sh syntax error from bash
17237         versions 2.00..2.05 when $(MOSTLYCLEANDIRS) is empty.
17238
17239 2006-10-23  Jim Meyering  <jim@meyering.net>
17240
17241         * lib/getaddrinfo.c (getnameinfo): Use new lightweight uinttostr,
17242         in place of snprintf.
17243
17244         * modules/inttostr (Files): Add lib/uinttostr.c.
17245         * lib/uinttostr.c (inttostr): New file/function.
17246         * lib/inttostr.h (uinttostr): Declare.
17247         * m4/inttostr.m4: Add AC_LIBOBJ([uinttostr]).
17248         * MODULES.html.sh (Numeric conversion functions <stdlib.h>):
17249         Add uinttostr.
17250         * modules/getaddrinfo (Depends-on): Remove snprintf.  Add inttostr.
17251
17252 2006-10-21  Paul Eggert  <eggert@cs.ucla.edu>
17253
17254         * lib/canonicalize.c (ELOOP): Define if not already defined.
17255         Problem reported by Bruno Haible in
17256         <http://lists.gnu.org/archive/html/bug-gnulib/2006-10/msg00282.html>.
17257
17258 2006-10-21  Paul Eggert  <eggert@cs.ucla.edu>
17259
17260         * lib/stdint_.h [defined _AIX]: Don't include <sys/types.h>.
17261         Problem reported by Perry Smith and Ville Laurikari.
17262
17263         * lib/getndelim2.c (SSIZE_MAX): Use same defn that getdelim.c
17264         uses.
17265
17266 2006-10-19  Bruno Haible  <bruno@clisp.org>
17267
17268         * lib/getndelim2.c (SSIZE_MAX): Provide fallback definition. Needed
17269         for mingw.
17270
17271 2006-10-19  Bruno Haible  <bruno@clisp.org>
17272
17273         * lib/openat-priv.h (EOPNOTSUPP): Provide fallback definition.
17274         Needed for mingw.
17275
17276 2006-10-19  Bruno Haible  <bruno@clisp.org>
17277
17278         * m4/size_max.m4 (gl_SIZE_MAX): Cache the result.
17279
17280 2006-10-19  Bruno Haible  <bruno@clisp.org>
17281
17282         * m4/allocsa.m4 (gl_ALLOCSA): Invoke gl_FUNC_ALLOCA, don't AC_REQUIRE
17283         it.
17284
17285 2006-10-19  Bruno Haible  <bruno@clisp.org>
17286
17287         * m4/alloca.m4 (gl_FUNC_ALLOCA): Cache the result of the AC_EGREP_CPP
17288         invocation.
17289
17290 2006-10-19  Bruno Haible  <bruno@clisp.org>
17291
17292         * gnulib-tool (func_create_testdir): Don't include ftruncate and
17293         mountlist by default.
17294
17295 2006-10-16  Bruno Haible  <bruno@clisp.org>
17296
17297         * lib/c-strstr.c: Include c-strstr.h.
17298
17299 2006-10-18  Charles Wilson  <cygwin@cwilson.fastmail.fm>
17300
17301         * gnulib-tool: Don't clobber $sourcebase when $local_gnulib_dir ends
17302         in a slash.
17303
17304 2006-10-18  Bruno Haible  <bruno@clisp.org>
17305
17306         * lib/lock.h [C++]: Wrap definitions in extern "C".
17307
17308 2006-10-18  Bruno Haible  <bruno@clisp.org>
17309
17310         * gnulib-tool (func_emit_initmacro_end): Remove duplicates from the
17311         gl_LIBOBJS list.
17312
17313 2006-10-18  Bruno Haible  <bruno@clisp.org>
17314
17315         * lib/findprog.c (find_in_path): Avoid "gcc -Wwrite-strings" warning.
17316
17317 2006-10-19  Paul Eggert  <eggert@cs.ucla.edu>
17318
17319         * lib/xstrtol.h: Include gettext.h.
17320         (_STRTOL_ERROR): Wrap English-language formats inside gettext.
17321         Problem reported by Eric Blake.
17322         * modules/xstrtol (Depends-on): Add gettext-h.
17323
17324 2006-10-19  Paul Eggert  <eggert@cs.ucla.edu>  (tiny change)
17325
17326         * lib/strftime.c (advance): New macro.
17327         (add): Use it to avoid adding 0 to a FILE *.  FILE can be an
17328         incomplete type, so you can't add 0 to it.  Problem and patch
17329         reported by Eelco Dolstra for dietlibc.
17330
17331 2006-10-18  Jim Meyering  <jim@meyering.net>
17332
17333         * lib/readutmp.c (desirable_utmp_entry): Use "bool" as the
17334         type for a local, and rename it: s/up/user_proc/.
17335
17336 2006-10-18  Sergey Poznyakoff  <gray@gnu.org.ua>
17337
17338         * lib/readutmp.c (desirable_utmp_entry): Implement new flag:
17339         READ_UTMP_USER_PROCESS.
17340         * lib/readutmp.h (READ_UTMP_USER_PROCESS): New flag
17341
17342 2006-10-17  Paul Eggert  <eggert@cs.ucla.edu>
17343
17344         * lib/localcharset.c: Do not check HAVE_SETLOCALE.
17345         * m4/localcharset.m4 (gl_LOCALCHARSET): Don't check for setlocale.
17346
17347 2006-10-17  Eric Blake  <ebb9@byu.net>
17348
17349         * lib/sigprocmask.c (sigprocmask): Fix typo.
17350
17351         * m4/signalblocking.m4 (gl_PREREQ_SIGPROCMASK): Fix typo.
17352
17353         * modules/clean-temp (Makefile.am): Don't add to make output...
17354         (configure.ac): ...instead define SIGNAL_SAFE_LIST inside
17355         config.h.
17356
17357 2006-10-17  Bruno Haible  <bruno@clisp.org>
17358
17359         * lib/gettext.h (gettext, ngettext, pgettext, npgettext): Define
17360         differently if DEFAULT_TEXT_DOMAIN is set.
17361
17362 2006-10-16  Bruno Haible  <bruno@clisp.org>
17363
17364         * lib/clean-temp.c: Include fwriteerror.h.
17365
17366 2006-10-16  Bruno Haible  <bruno@clisp.org>
17367
17368         * getndelim2.m4 (gl_GETNDELIM2): Remove 2003-10-23 hack.
17369
17370 2006-10-16  Bruno Haible  <bruno@clisp.org>
17371
17372         * m4/signalblocking.m4 (gl_PREREQ_SIGPROCMASK): Also test for sigset_t.
17373         * lib/sigprocmask.h: Include <sys/types.h>.
17374         (sigset_t): Use the system's definition if present.
17375
17376 2006-10-17  Eric Blake  <ebb9@byu.net>
17377
17378         * lib/xvasprintf.c (includes): Assume config.h.
17379         * lib/xasprintf.c (includes): Likewise.
17380
17381 2006-10-16  Paul Eggert  <eggert@cs.ucla.edu>
17382
17383         * lib/fsusage.c (PROPAGATE_ALL_ONES): Don't assume uintmax_t is
17384         at least as wide as intmax_t.
17385
17386 2006-10-16  Alexandre Duret-Lutz  <adl@gnu.org>
17387
17388         (Imported from Automake.)
17389         * build-aux/gnupload: Update to version 1.1 of directive file.
17390
17391 2006-10-16  Eric Blake  <ebb9@byu.net>
17392
17393         * modules/configmake (Makefile.am): Add pkglibexecdir support, to
17394         match Automake 1.10a.
17395
17396 2006-10-14  Bruno Haible  <bruno@clisp.org>
17397
17398         * modules/sigprocmask: New file.
17399         * lib/sigprocmask.h: New file.
17400         * lib/sigprocmask.c: New file.
17401         * m4/signalblocking.m4 (gl_SIGNALBLOCKING): Renamed from
17402         gt_SIGNALBLOCKING. When not defining HAVE_POSIX_SIGNALBLOCKING,
17403         request sigprocmask.o.
17404         (gl_PREREQ_SIGPROCMASK): New macro.
17405         * modules/fatal-signal (Files): Remove m4/signalblocking.m4.
17406         (Depends-on): Add sigprocmask.
17407         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Don't require
17408         gt_SIGNALBLOCKING. Test for 'raise' only once.
17409         * lib/fatal-signal.c: Include sigprocmask.h.
17410         (fatal_signal_set, init_fatal_signal_set, block_fatal_signals,
17411         unblock_fatal_signals): Define always.
17412         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
17413         sigprocmask.
17414
17415 2006-10-14  Paul Eggert  <eggert@cs.ucla.edu>
17416
17417         Sync from Automake.
17418         * build-aux/install-sh (posix_mkdir): Reject FreeBSD 6.1 mkdir -p -m,
17419         which incorrectly sets the mode of an existing destination
17420         directory.  In some cases the unpatched install-sh could do the
17421         equivalent of "chmod 777 /" or "chmod 0 /" on a buggy FreeBSD
17422         system.  We hope this is rare in practice, but it's clearly worth
17423         fixing.  Problem reported by Alex Unleashed in
17424         <http://lists.gnu.org/archive/html/bug-autoconf/2006-10/msg00012.html>.
17425         Also, don't bother to check for -m bugs unless we're using -m;
17426         suggested by Stepan Kasal.
17427
17428 2006-10-14  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
17429
17430         Sync from Automake.
17431         * build-aux/depcomp (gcc3): Put dependency extraction flags before the
17432         `-c' flag, so they appear at the same position as in %FASTDEP%
17433         mode in depend2.am.  Fixes build failure for FreeBSD's c89,
17434         which ignores unknown options only after the first non-option.
17435         Bug report against M4 by Nelson H. F. Beebe.
17436
17437 2006-10-13  Jim Meyering  <jim@meyering.net>
17438
17439         Fix a bug in yesterday's change.
17440         * lib/fts.c (fts_open): When using FTS_XDEV|FTS_NOSTAT,
17441         p->fts_statp->st_dev would be used uninitialized.
17442         Ensures that we always call fts_stat on the very first entry.
17443         Miklos Szeredi reported that find -xdev stopped working.
17444
17445 2006-10-12  Bruno Haible  <bruno@clisp.org>
17446
17447         * gnulib-tool (func_get_automake_snippet): Append an automatically
17448         computed EXTRA_DIST augmentation.
17449         * modules/acl (Makefile.am): Remove EXTRA_DIST augmentation.
17450         * modules/alloca-opt (Makefile.am): Likewise.
17451         * modules/allocsa (Makefile.am): Likewise.
17452         * modules/arcfour (Makefile.am): Likewise.
17453         * modules/arctwo (Makefile.am): Likewise.
17454         * modules/argmatch (Makefile.am): Likewise.
17455         * modules/argz (Makefile.am): Likewise.
17456         * modules/atexit (Makefile.am): Likewise.
17457         * modules/backupfile (Makefile.am): Likewise.
17458         * modules/byteswap (Makefile.am): Likewise.
17459         * modules/c-strtod (Makefile.am): Likewise.
17460         * modules/c-strtold (Makefile.am): Likewise.
17461         * modules/calloc (Makefile.am): Likewise.
17462         * modules/canon-host (Makefile.am): Likewise.
17463         * modules/canonicalize (Makefile.am): Likewise.
17464         * modules/chdir-long (Makefile.am): Likewise.
17465         * modules/chdir-safer (Makefile.am): Likewise.
17466         * modules/check-version (Makefile.am): Likewise.
17467         * modules/chown (Makefile.am): Likewise.
17468         * modules/cloexec (Makefile.am): Likewise.
17469         * modules/close-stream (Makefile.am): Likewise.
17470         * modules/closeout (Makefile.am): Likewise.
17471         * modules/crc (Makefile.am): Likewise.
17472         * modules/csharpexec (Makefile.am): Likewise.
17473         * modules/cycle-check (Makefile.am): Likewise.
17474         * modules/des (Makefile.am): Likewise.
17475         * modules/dev-ino (Makefile.am): Likewise.
17476         * modules/dirfd (Makefile.am): Likewise.
17477         * modules/dirname (Makefile.am): Likewise.
17478         * modules/dup2 (Makefile.am): Likewise.
17479         * modules/eealloc (Makefile.am): Likewise.
17480         * modules/error (Makefile.am): Likewise.
17481         * modules/euidaccess (Makefile.am): Likewise.
17482         * modules/exclude (Makefile.am): Likewise.
17483         * modules/exitfail (Makefile.am): Likewise.
17484         * modules/fcntl-safer (Makefile.am): Likewise.
17485         * modules/fcntl (Makefile.am): Likewise.
17486         * modules/file-type (Makefile.am): Likewise.
17487         * modules/fileblocks (Makefile.am): Likewise.
17488         * modules/filemode (Makefile.am): Likewise.
17489         * modules/filenamecat (Makefile.am): Likewise.
17490         * modules/fnmatch (Makefile.am): Likewise.
17491         * modules/fopen-safer (Makefile.am): Likewise.
17492         * modules/fpending (Makefile.am): Likewise.
17493         * modules/fprintftime (Makefile.am): Likewise.
17494         * modules/free (Makefile.am): Likewise.
17495         * modules/fsusage (Makefile.am): Likewise.
17496         * modules/ftruncate (Makefile.am): Likewise.
17497         * modules/fts (Makefile.am): Likewise.
17498         * modules/gc-arcfour (Makefile.am): Likewise.
17499         * modules/gc-des (Makefile.am): Likewise.
17500         * modules/gc-hmac-md5 (Makefile.am): Likewise.
17501         * modules/gc-hmac-sha1 (Makefile.am): Likewise.
17502         * modules/gc-md4 (Makefile.am): Likewise.
17503         * modules/gc-pbkdf2-sha1 (Makefile.am): Likewise.
17504         * modules/gc-sha1 (Makefile.am): Likewise.
17505         * modules/gc (Makefile.am): Likewise.
17506         * modules/getaddrinfo (Makefile.am): Likewise.
17507         * modules/getcwd (Makefile.am): Likewise.
17508         * modules/getdelim (Makefile.am): Likewise.
17509         * modules/getdomainname (Makefile.am): Likewise.
17510         * modules/getgroups (Makefile.am): Likewise.
17511         * modules/gethostname (Makefile.am): Likewise.
17512         * modules/gethrxtime (Makefile.am): Likewise.
17513         * modules/getline (Makefile.am): Likewise.
17514         * modules/getloadavg (Makefile.am): Likewise.
17515         * modules/getlogin_r (Makefile.am): Likewise.
17516         * modules/getndelim2 (Makefile.am): Likewise.
17517         * modules/getopt (Makefile.am): Likewise.
17518         * modules/getpagesize (Makefile.am): Likewise.
17519         * modules/getpass-gnu (Makefile.am): Likewise.
17520         * modules/getpass (Makefile.am): Likewise.
17521         * modules/getsubopt (Makefile.am): Likewise.
17522         * modules/gettime (Makefile.am): Likewise.
17523         * modules/gettimeofday (Makefile.am): Likewise.
17524         * modules/getugroups (Makefile.am): Likewise.
17525         * modules/getusershell (Makefile.am): Likewise.
17526         * modules/glob (Makefile.am): Likewise.
17527         * modules/group-member (Makefile.am): Likewise.
17528         * modules/hard-locale (Makefile.am): Likewise.
17529         * modules/hash (Makefile.am): Likewise.
17530         * modules/hmac-md5 (Makefile.am): Likewise.
17531         * modules/hmac-sha1 (Makefile.am): Likewise.
17532         * modules/human (Makefile.am): Likewise.
17533         * modules/idcache (Makefile.am): Likewise.
17534         * modules/imaxabs (Makefile.am): Likewise.
17535         * modules/imaxdiv (Makefile.am): Likewise.
17536         * modules/inet_ntop (Makefile.am): Likewise.
17537         * modules/inet_pton (Makefile.am): Likewise.
17538         * modules/intprops (Makefile.am): Likewise.
17539         * modules/inttostr (Makefile.am): Likewise.
17540         * modules/inttypes (Makefile.am): Likewise.
17541         * modules/isapipe (Makefile.am): Likewise.
17542         * modules/javaversion (Makefile.am): Likewise.
17543         * modules/lchmod (Makefile.am): Likewise.
17544         * modules/lchown (Makefile.am): Likewise.
17545         * modules/localcharset (Makefile.am): Likewise.
17546         * modules/long-options (Makefile.am): Likewise.
17547         * modules/lstat (Makefile.am): Likewise.
17548         * modules/malloc (Makefile.am): Likewise.
17549         * modules/mathl (Makefile.am): Likewise.
17550         * modules/mbchar (Makefile.am): Likewise.
17551         * modules/md2 (Makefile.am): Likewise.
17552         * modules/md4 (Makefile.am): Likewise.
17553         * modules/md5 (Makefile.am): Likewise.
17554         * modules/memcasecmp (Makefile.am): Likewise.
17555         * modules/memchr (Makefile.am): Likewise.
17556         * modules/memcmp (Makefile.am): Likewise.
17557         * modules/memcoll (Makefile.am): Likewise.
17558         * modules/memcpy (Makefile.am): Likewise.
17559         * modules/memmem (Makefile.am): Likewise.
17560         * modules/memmove (Makefile.am): Likewise.
17561         * modules/mempcpy (Makefile.am): Likewise.
17562         * modules/memrchr (Makefile.am): Likewise.
17563         * modules/memset (Makefile.am): Likewise.
17564         * modules/memxor (Makefile.am): Likewise.
17565         * modules/mkancesdirs (Makefile.am): Likewise.
17566         * modules/mkdir-p (Makefile.am): Likewise.
17567         * modules/mkdir (Makefile.am): Likewise.
17568         * modules/mkdtemp (Makefile.am): Likewise.
17569         * modules/mkstemp (Makefile.am): Likewise.
17570         * modules/mktime (Makefile.am): Likewise.
17571         * modules/modechange (Makefile.am): Likewise.
17572         * modules/mountlist (Makefile.am): Likewise.
17573         * modules/nanosleep (Makefile.am): Likewise.
17574         * modules/obstack (Makefile.am): Likewise.
17575         * modules/openat (Makefile.am): Likewise.
17576         * modules/pagealign_alloc (Makefile.am): Likewise.
17577         * modules/pathmax (Makefile.am): Likewise.
17578         * modules/physmem (Makefile.am): Likewise.
17579         * modules/poll (Makefile.am): Likewise.
17580         * modules/posixtm (Makefile.am): Likewise.
17581         * modules/posixver (Makefile.am): Likewise.
17582         * modules/putenv (Makefile.am): Likewise.
17583         * modules/quote (Makefile.am): Likewise.
17584         * modules/quotearg (Makefile.am): Likewise.
17585         * modules/raise (Makefile.am): Likewise.
17586         * modules/read-file (Makefile.am): Likewise.
17587         * modules/readline (Makefile.am): Likewise.
17588         * modules/readlink (Makefile.am): Likewise.
17589         * modules/readtokens (Makefile.am): Likewise.
17590         * modules/readutmp (Makefile.am): Likewise.
17591         * modules/realloc (Makefile.am): Likewise.
17592         * modules/regex (Makefile.am): Likewise.
17593         * modules/rename-dest-slash (Makefile.am): Likewise.
17594         * modules/rename (Makefile.am): Likewise.
17595         * modules/rijndael (Makefile.am): Likewise.
17596         * modules/rmdir (Makefile.am): Likewise.
17597         * modules/rpmatch (Makefile.am): Likewise.
17598         * modules/safe-read (Makefile.am): Likewise.
17599         * modules/safe-write (Makefile.am): Likewise.
17600         * modules/same-inode (Makefile.am): Likewise.
17601         * modules/same (Makefile.am): Likewise.
17602         * modules/save-cwd (Makefile.am): Likewise.
17603         * modules/savedir (Makefile.am): Likewise.
17604         * modules/setenv (Makefile.am): Likewise.
17605         * modules/settime (Makefile.am): Likewise.
17606         * modules/sha1 (Makefile.am): Likewise.
17607         * modules/sig2str (Makefile.am): Likewise.
17608         * modules/snprintf (Makefile.am): Likewise.
17609         * modules/stat-macros (Makefile.am): Likewise.
17610         * modules/stat-time (Makefile.am): Likewise.
17611         * modules/stdbool (Makefile.am): Likewise.
17612         * modules/stdint (Makefile.am): Likewise.
17613         * modules/stdlib-safer (Makefile.am): Likewise.
17614         * modules/stpcpy (Makefile.am): Likewise.
17615         * modules/stpncpy (Makefile.am): Likewise.
17616         * modules/strcase (Makefile.am): Likewise.
17617         * modules/strcasestr (Makefile.am): Likewise.
17618         * modules/strchrnul (Makefile.am): Likewise.
17619         * modules/strcspn (Makefile.am): Likewise.
17620         * modules/strdup (Makefile.am): Likewise.
17621         * modules/strerror (Makefile.am): Likewise.
17622         * modules/strftime (Makefile.am): Likewise.
17623         * modules/strndup (Makefile.am): Likewise.
17624         * modules/strnlen (Makefile.am): Likewise.
17625         * modules/strpbrk (Makefile.am): Likewise.
17626         * modules/strsep (Makefile.am): Likewise.
17627         * modules/strstr (Makefile.am): Likewise.
17628         * modules/strtod (Makefile.am): Likewise.
17629         * modules/strtoimax (Makefile.am): Likewise.
17630         * modules/strtok_r (Makefile.am): Likewise.
17631         * modules/strtol (Makefile.am): Likewise.
17632         * modules/strtoll (Makefile.am): Likewise.
17633         * modules/strtoul (Makefile.am): Likewise.
17634         * modules/strtoull (Makefile.am): Likewise.
17635         * modules/strtoumax (Makefile.am): Likewise.
17636         * modules/strverscmp (Makefile.am): Likewise.
17637         * modules/sys_socket (Makefile.am): Likewise.
17638         * modules/sys_stat (Makefile.am): Likewise.
17639         * modules/sysexits (Makefile.am): Likewise.
17640         * modules/time_r (Makefile.am): Likewise.
17641         * modules/timegm (Makefile.am): Likewise.
17642         * modules/timespec (Makefile.am): Likewise.
17643         * modules/tmpfile-safer (Makefile.am): Likewise.
17644         * modules/trim (Makefile.am): Likewise.
17645         * modules/unistd-safer (Makefile.am): Likewise.
17646         * modules/unlinkdir (Makefile.am): Likewise.
17647         * modules/unlocked-io (Makefile.am): Likewise.
17648         * modules/userspec (Makefile.am): Likewise.
17649         * modules/utime (Makefile.am): Likewise.
17650         * modules/utimecmp (Makefile.am): Likewise.
17651         * modules/utimens (Makefile.am): Likewise.
17652         * modules/vasnprintf (Makefile.am): Likewise.
17653         * modules/vasprintf (Makefile.am): Likewise.
17654         * modules/vsnprintf (Makefile.am): Likewise.
17655         * modules/xalloc (Makefile.am): Likewise.
17656         * modules/xgetcwd (Makefile.am): Likewise.
17657         * modules/xnanosleep (Makefile.am): Likewise.
17658         * modules/xreadlink (Makefile.am): Likewise.
17659         * modules/xstrtod (Makefile.am): Likewise.
17660         * modules/xstrtol (Makefile.am): Likewise.
17661         * modules/xstrtold (Makefile.am): Likewise.
17662         * modules/yesno (Makefile.am): Likewise.
17663         * modules/getdate (Makefile.am): Don't add getdate.h to EXTRA_DIST.
17664
17665 2006-10-12  Paul Eggert  <eggert@cs.ucla.edu>
17666
17667         * modules/error (Makefile.am): Distribute files through
17668         EXTRA_DIST, not lib_SOURCES.
17669
17670 2006-10-12  Eric Blake  <ebb9@byu.net>
17671
17672         * modules/error (Makefile.am): Distribute files in /lib.
17673         * modules/obstack (Makefile.am): Likewise.
17674
17675 2006-10-12  Bruno Haible  <bruno@clisp.org>
17676
17677         * modules/acl (Makefile.am): Distribute all files in lib/ through
17678         EXTRA_DIST.
17679         * modules/arcfour (Makefile.am): Likewise.
17680         * modules/arctwo (Makefile.am): Likewise.
17681         * modules/argmatch (Makefile.am): Likewise.
17682         * modules/argz (Makefile.am): Likewise.
17683         * modules/atexit (Makefile.am): Likewise.
17684         * modules/backupfile (Makefile.am): Likewise.
17685         * modules/c-strtod (Makefile.am): Likewise.
17686         * modules/c-strtold (Makefile.am): Likewise.
17687         * modules/calloc (Makefile.am): Likewise.
17688         * modules/canon-host (Makefile.am): Likewise.
17689         * modules/canonicalize (Makefile.am): Likewise.
17690         * modules/chdir-long (Makefile.am): Likewise.
17691         * modules/chdir-safer (Makefile.am): Likewise.
17692         * modules/check-version (Makefile.am): Likewise.
17693         * modules/chown (Makefile.am): Likewise.
17694         * modules/cloexec (Makefile.am): Likewise.
17695         * modules/close-stream (Makefile.am): Likewise.
17696         * modules/closeout (Makefile.am): Likewise.
17697         * modules/crc (Makefile.am): Likewise.
17698         * modules/cycle-check (Makefile.am): Likewise.
17699         * modules/des (Makefile.am): Likewise.
17700         * modules/dirfd (Makefile.am): Likewise.
17701         * modules/dirname (Makefile.am): Likewise.
17702         * modules/dup2 (Makefile.am): Likewise.
17703         * modules/euidaccess (Makefile.am): Likewise.
17704         * modules/exclude (Makefile.am): Likewise.
17705         * modules/exitfail (Makefile.am): Likewise.
17706         * modules/fcntl-safer (Makefile.am): Likewise.
17707         * modules/file-type (Makefile.am): Likewise.
17708         * modules/fileblocks (Makefile.am): Likewise.
17709         * modules/filemode (Makefile.am): Likewise.
17710         * modules/filenamecat (Makefile.am): Likewise.
17711         * modules/fnmatch (Makefile.am): Likewise.
17712         * modules/fopen-safer (Makefile.am): Likewise.
17713         * modules/fpending (Makefile.am): Likewise.
17714         * modules/fprintftime (Makefile.am): Likewise.
17715         * modules/free (Makefile.am): Likewise.
17716         * modules/fsusage (Makefile.am): Likewise.
17717         * modules/ftruncate (Makefile.am): Likewise.
17718         * modules/fts (Makefile.am): Likewise.
17719         * modules/gc (Makefile.am): Likewise.
17720         * modules/gc-pbkdf2-sha1 (Makefile.am): Likewise.
17721         * modules/getaddrinfo (Makefile.am): Likewise.
17722         * modules/getcwd (Makefile.am): Likewise.
17723         * modules/getdelim (Makefile.am): Likewise.
17724         * modules/getdomainname (Makefile.am): Likewise.
17725         * modules/getgroups (Makefile.am): Likewise.
17726         * modules/gethostname (Makefile.am): Likewise.
17727         * modules/gethrxtime (Makefile.am): Likewise.
17728         * modules/getline (Makefile.am): Likewise.
17729         * modules/getloadavg (Makefile.am): Likewise.
17730         * modules/getlogin_r (Makefile.am): Likewise.
17731         * modules/getopt (Makefile.am): Likewise.
17732         * modules/getpass (Makefile.am): Likewise.
17733         * modules/getpass-gnu (Makefile.am): Likewise.
17734         * modules/getsubopt (Makefile.am): Likewise.
17735         * modules/gettime (Makefile.am): Likewise.
17736         * modules/gettimeofday (Makefile.am): Likewise.
17737         * modules/getugroups (Makefile.am): Likewise.
17738         * modules/getusershell (Makefile.am): Likewise.
17739         * modules/glob (Makefile.am): Likewise.
17740         * modules/group-member (Makefile.am): Likewise.
17741         * modules/hard-locale (Makefile.am): Likewise.
17742         * modules/hash (Makefile.am): Likewise.
17743         * modules/hmac-md5 (Makefile.am): Likewise.
17744         * modules/hmac-sha1 (Makefile.am): Likewise.
17745         * modules/human (Makefile.am): Likewise.
17746         * modules/idcache (Makefile.am): Likewise.
17747         * modules/imaxabs (Makefile.am): Likewise.
17748         * modules/imaxdiv (Makefile.am): Likewise.
17749         * modules/inet_ntop (Makefile.am): Likewise.
17750         * modules/inet_pton (Makefile.am): Likewise.
17751         * modules/inttostr (Makefile.am): Likewise.
17752         * modules/isapipe (Makefile.am): Likewise.
17753         * modules/lchown (Makefile.am): Likewise.
17754         * modules/long-options (Makefile.am): Likewise.
17755         * modules/lstat (Makefile.am): Likewise.
17756         * modules/malloc (Makefile.am): Likewise.
17757         * modules/mathl (Makefile.am): Likewise.
17758         * modules/mbchar (Makefile.am): Likewise.
17759         * modules/md2 (Makefile.am): Likewise.
17760         * modules/md4 (Makefile.am): Likewise.
17761         * modules/md5 (Makefile.am): Likewise.
17762         * modules/memcasecmp (Makefile.am): Likewise.
17763         * modules/memchr (Makefile.am): Likewise.
17764         * modules/memcmp (Makefile.am): Likewise.
17765         * modules/memcoll (Makefile.am): Likewise.
17766         * modules/memcpy (Makefile.am): Likewise.
17767         * modules/memmem (Makefile.am): Likewise.
17768         * modules/memmove (Makefile.am): Likewise.
17769         * modules/mempcpy (Makefile.am): Likewise.
17770         * modules/memrchr (Makefile.am): Likewise.
17771         * modules/memset (Makefile.am): Likewise.
17772         * modules/memxor (Makefile.am): Likewise.
17773         * modules/mkancesdirs (Makefile.am): Likewise.
17774         * modules/mkdir (Makefile.am): Likewise.
17775         * modules/mkdir-p (Makefile.am): Likewise.
17776         * modules/mkdtemp (Makefile.am): Likewise.
17777         * modules/mkstemp (Makefile.am): Likewise.
17778         * modules/mktime (Makefile.am): Likewise.
17779         * modules/modechange (Makefile.am): Likewise.
17780         * modules/mountlist (Makefile.am): Likewise.
17781         * modules/nanosleep (Makefile.am): Likewise.
17782         * modules/openat (Makefile.am): Likewise.
17783         * modules/pagealign_alloc (Makefile.am): Likewise.
17784         * modules/physmem (Makefile.am): Likewise.
17785         * modules/poll (Makefile.am): Likewise.
17786         * modules/posixtm (Makefile.am): Likewise.
17787         * modules/posixver (Makefile.am): Likewise.
17788         * modules/putenv (Makefile.am): Likewise.
17789         * modules/quote (Makefile.am): Likewise.
17790         * modules/quotearg (Makefile.am): Likewise.
17791         * modules/raise (Makefile.am): Likewise.
17792         * modules/read-file (Makefile.am): Likewise.
17793         * modules/readline (Makefile.am): Likewise.
17794         * modules/readlink (Makefile.am): Likewise.
17795         * modules/readtokens (Makefile.am): Likewise.
17796         * modules/readutmp (Makefile.am): Likewise.
17797         * modules/realloc (Makefile.am): Likewise.
17798         * modules/regex (Makefile.am): Likewise.
17799         * modules/rename (Makefile.am): Likewise.
17800         * modules/rename-dest-slash (Makefile.am): Likewise.
17801         * modules/rijndael (Makefile.am): Likewise.
17802         * modules/rmdir (Makefile.am): Likewise.
17803         * modules/rpmatch (Makefile.am): Likewise.
17804         * modules/safe-read (Makefile.am): Likewise.
17805         * modules/safe-write (Makefile.am): Likewise.
17806         * modules/same (Makefile.am): Likewise.
17807         * modules/save-cwd (Makefile.am): Likewise.
17808         * modules/savedir (Makefile.am): Likewise.
17809         * modules/setenv (Makefile.am): Likewise.
17810         * modules/settime (Makefile.am): Likewise.
17811         * modules/sha1 (Makefile.am): Likewise.
17812         * modules/sig2str (Makefile.am): Likewise.
17813         * modules/snprintf (Makefile.am): Likewise.
17814         * modules/stdlib-safer (Makefile.am): Likewise.
17815         * modules/stpcpy (Makefile.am): Likewise.
17816         * modules/stpncpy (Makefile.am): Likewise.
17817         * modules/strcase (Makefile.am): Likewise.
17818         * modules/strcasestr (Makefile.am): Likewise.
17819         * modules/strchrnul (Makefile.am): Likewise.
17820         * modules/strcspn (Makefile.am): Likewise.
17821         * modules/strdup (Makefile.am): Likewise.
17822         * modules/strerror (Makefile.am): Likewise.
17823         * modules/strftime (Makefile.am): Likewise.
17824         * modules/strndup (Makefile.am): Likewise.
17825         * modules/strnlen (Makefile.am): Likewise.
17826         * modules/strpbrk (Makefile.am): Likewise.
17827         * modules/strsep (Makefile.am): Likewise.
17828         * modules/strstr (Makefile.am): Likewise.
17829         * modules/strtod (Makefile.am): Likewise.
17830         * modules/strtoimax (Makefile.am): Likewise.
17831         * modules/strtok_r (Makefile.am): Likewise.
17832         * modules/strtol (Makefile.am): Likewise.
17833         * modules/strtoll (Makefile.am): Likewise.
17834         * modules/strtoul (Makefile.am): Likewise.
17835         * modules/strtoull (Makefile.am): Likewise.
17836         * modules/strtoumax (Makefile.am): Likewise.
17837         * modules/strverscmp (Makefile.am): Likewise.
17838         * modules/time_r (Makefile.am): Likewise.
17839         * modules/timegm (Makefile.am): Likewise.
17840         * modules/tmpfile-safer (Makefile.am): Likewise.
17841         * modules/unistd-safer (Makefile.am): Likewise.
17842         * modules/unlinkdir (Makefile.am): Likewise.
17843         * modules/userspec (Makefile.am): Likewise.
17844         * modules/utime (Makefile.am): Likewise.
17845         * modules/utimecmp (Makefile.am): Likewise.
17846         * modules/utimens (Makefile.am): Likewise.
17847         * modules/vasnprintf (Makefile.am): Likewise.
17848         * modules/vasprintf (Makefile.am): Likewise.
17849         * modules/vsnprintf (Makefile.am): Likewise.
17850         * modules/xalloc (Makefile.am): Likewise.
17851         * modules/xgetcwd (Makefile.am): Likewise.
17852         * modules/xnanosleep (Makefile.am): Likewise.
17853         * modules/xreadlink (Makefile.am): Likewise.
17854         * modules/xstrtod (Makefile.am): Likewise.
17855         * modules/xstrtol (Makefile.am): Likewise.
17856         * modules/xstrtold (Makefile.am): Likewise.
17857         * modules/yesno (Makefile.am): Likewise.
17858
17859 2006-10-12  Jim Meyering  <jim@meyering.net>
17860
17861         * m4/getloadavg.m4: Revert the change below.
17862
17863         * m4/getloadavg.m4 (gl_GETLOADAVG): Test for the existence of
17864         lib/getloadavg.c using "ls -L", not "test -f".  The latter would
17865         fail with a symlink, which is what coreutils' ./bootstrap now
17866         creates by default.
17867
17868 2006-10-12  Bruno Haible  <bruno@clisp.org>
17869
17870         * lib/inttypes_.h (_LONG_LONG_FORMAT_PREFIX): Don't define for MSVC or
17871         mingw.
17872         (_PRI64_PREFIX, _PRIu64_PREFIX, _SCN64_PREFIX, _SCNu64_PREFIX): Handle
17873         MSVC and mingw explicitly.
17874
17875 2006-10-11  Simon Josefsson  <jas@extundo.com>
17876             Bruno Haible  <bruno@clisp.org>
17877
17878         Add support for multiple gnulib-tool invocations in the scope of a
17879         single configure.ac file.
17880         * gnulib-tool (func_emit_lib_Makefile_am): In the _LIBADD variable,
17881         use a private [LT]LIBOBJS variant. Define a _DEPENDENCIES variable
17882         with the same contents as the _LIBADD variable.
17883         (func_emit_initmacro_start, func_emit_initmacro_end,
17884         func_emit_initmacro_done): New functions.
17885         (func_import, func_create_testdir): Invoke them. Allow the identifiers
17886         gl_LIBOBJS and gl_LTLIBOBJS.
17887
17888 2006-10-11  Bruno Haible  <bruno@clisp.org>
17889
17890         * gnulib-tool (GETTEXTPATH, AUTOHEADER, AUTOPOINT): New variables.
17891         (func_create_testdir): Don't create po/Makefile.am, don't invoke
17892         autoreconf. Instead, invoke autopoint explicitly but move back the
17893         *.m4 files from gnulib.
17894
17895 2006-10-11  Bruno Haible  <bruno@clisp.org>
17896
17897         * gnulib-tool (func_usage): Make module names after --create-testdir
17898         optional.
17899         (func_create_testdir): If no module was specified, use nearly all
17900         modules.
17901
17902 2006-10-12  Jim Meyering  <jim@meyering.net>
17903
17904         Big performance improvement for fts-based tools that use FTS_NOSTAT.
17905         Avoid spurious inode-mismatch problems on non-POSIX file systems.
17906         Details: http://article.gmane.org/gmane.comp.lib.gnulib.bugs/7416
17907         * lib/fts_.h (FTS_DEFER_STAT): Define new flag.
17908         (FTS_OPTIONMASK): Extend the mask to reflect this addition.
17909         * lib/fts.c (DT_IS_KNOWN, DT_MUST_BE): Define.
17910         (FTS_NO_STAT_REQUIRED, FTS_STAT_REQUIRED): Define.
17911         (fts_set_stat_required): New function.
17912         (fts_open): Defer the calls to fts_stat, if possible or requested.
17913         Move the code that maps a command-line fts_info value FTS_DOT to FTS_D
17914         into fts_stat itself.
17915         (fts_read): Perform any required (deferred) fts_stat call.
17916         (fts_build): Likewise, for the directory we're about to open and read.
17917         In the readdir loop, carefully decide whether each entry will require
17918         an eventual call to fts_stat, using dirent.d_type info if available.
17919         (fts_stat): Move the test for whether to honor FTS_COMFOLLOW on
17920         a command line argument into this function.  Update all callers.
17921         Map a return value of FTS_DOT to FTS_D for a command line argument.
17922         * modules/fts (Depends-on): Add d-type.  Alphabetize.
17923         Thanks to Miklos Szeredi for his tenacity and for the initial
17924         bug report about "find" failing on a FUSE-based file system.
17925
17926         * lib/fts.c (fts_open): Use consistent indentation.
17927
17928 2006-10-12  Paul Eggert  <eggert@cs.ucla.edu>
17929
17930         * m4/extensions.m4 (AC_USE_SYSTEM_EXTENSIONS): Renamed from
17931         gl_USE_SYSTEM_EXTENSIONS, to fix a coreutils bootstrap failure
17932         reported by Jim Meyering.  All uses of cache variables renamed
17933         to match Autoconf's.
17934         (gl_USE_SYSTEM_EXTENSIONS): New macro, which simply requires
17935         the other one.
17936
17937         * m4/rename-dest-slash.m4 (gl_FUNC_RENAME_TRAILING_DEST_SLASH):
17938         Fix misspelling in diagnostic.
17939
17940 2006-10-11  Paul Eggert  <eggert@cs.ucla.edu>
17941
17942         * lib/mkdir-p.c (HAVE_FCHMOD): Define to false if not already
17943         defined.  Problem reported by Matthew Woehlke.
17944
17945         * lib/inttypes_.h (_LONG_LONG_FORMAT_PREFIX): New macro.
17946         Add support for Tandem NonStop R series.
17947         (_PRI64_PREFIX, _PRIu64_PREFIX, _SCN64_PREFIX, _SCNu64_PREFIX):
17948         Use new macro.
17949
17950         * lib/rename-dest-slash.c: Include stdbool.h but not string.h.
17951         (has_trailing_slash): Omit size arg; all callers changed.
17952         Omit 'inline', since it doesn't help performance and we'd
17953         need to configure it.
17954         Don't count //, ///, etc. as having a trailing slash.
17955         As a side effect, this removes a C99ism reported by Matthew Woehlke.
17956         (rpl_rename_dest_slash): On failure, use rename's errno rather
17957         than (in some cases) an incorrect or junk errno.
17958         Simplify code by removing need to compute length; this does
17959         cause it to make two passes instead of one over the file name,
17960         but it's worth it.
17961
17962         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Undo previous
17963         change, since Autoconf's version may no longer be appropriate now
17964         that we are using CVS Autoconf's version.  Add support for Tandem.
17965
17966 2006-10-11  Paul Eggert  <eggert@cs.ucla.edu>
17967             Bruno Haible  <bruno@clisp.org>
17968
17969         * lib/allocsa.h (sa_alignment_longlong, sa_alignment_max): Test
17970         HAVE_LONG_LONG_INT instead of HAVE_LONG_LONG.
17971         * m4/allocsa.m4 (gl_ALLOCSA): Invoke AC_TYPE_LONG_LONG_INT instead of
17972         gl_AC_TYPE_LONG_LONG.
17973
17974         * lib/printf-args.h (arg_type, argument): Test HAVE_LONG_LONG_INT
17975         instead of HAVE_LONG_LONG.
17976         * lib/printf-args.c (printf_fetchargs): Likewise.
17977         * lib/printf-parse.c (PRINTF_PARSE): Likewise.
17978         * lib/vasnprintf.c (VASNPRINTF): Likewise.
17979         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_ARGS, gl_PREREQ_PRINTF_PARSE,
17980         gl_PREREQ_VASNPRINTF): Invoke AC_TYPE_LONG_LONG_INT instead of
17981         gl_AC_TYPE_LONG_LONG.
17982
17983 2006-10-11  Bruno Haible  <bruno@clisp.org>
17984
17985         * m4/longlong.m4: Add comments.
17986         * m4/ulonglong.m4: Likewise.
17987
17988 2006-10-10  Bruno Haible  <bruno@clisp.org>
17989
17990         Make it possible to #define stpcpy, strdup to aliases.
17991         * lib/stpcpy.c (stpcpy) [!_LIBC]: Don't undefine.
17992         * lib/strdup.c (strdup) [!_LIBC]: Don't undefine.
17993
17994 2006-10-10  Bruno Haible  <bruno@clisp.org>
17995
17996         Make it possible to #define gcd to an alias.
17997         * lib/gcd.c: Include config.h.
17998
17999 2006-10-10  Bruno Haible  <bruno@clisp.org>
18000
18001         Make it possible to #define c_isascii to an alias.
18002         * lib/c-ctype.h: Don't define the macros if NO_C_CTYPE_MACROS is
18003         defined. Undefine the macros before defining them, to avoid gcc
18004         warnings.
18005         * lib/c-ctype.c: Include config.h. Don't undefine the macros; instead,
18006         define NO_C_CTYPE_MACROS early.
18007
18008 2006-10-10  Bruno Haible  <bruno@clisp.org>
18009
18010         Make it possible to #define set_program_name to an alias.
18011         * lib/progname.c: Don't undefine set_program_name; instead, undefine
18012         ENABLE_RELOCATABLE early.
18013
18014 2006-10-10  Paul Eggert  <eggert@cs.ucla.edu>
18015
18016         Port to Tandem NSK OSS, which has 64-bit signed int but at most
18017         32-bit unsigned int.  Problem reported by Matthew Woehlke in:
18018         http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00062.html
18019         More generally, don't assume that 64-bit signed int is available
18020         if unsigned int is, and vice versa.
18021         * lib/inttypes_.h (_PRIu64_PREFIX, _SCNu64_PREFIX): Depend on
18022         unsigned symbols, not on their signed counterparts.
18023         * lib/stdint_.h (uint64_t, uint_least64_t, uint_fast64_t, uintmax_t):
18024         (UINT64_MAX, UINT_LEAST64_MAX, UINT_FAST64_MAX, UINTMAX_MAX):
18025         (UINT64_C, UINTMAX_C):
18026         Likewise.
18027         * lib/strtoimax.c (strtoll): Depend on signed symbols, not their
18028         unsigned counterparts.
18029         (Have_long_long, Unsigned): New macros.
18030         (Int): Renamed from INT.
18031         (strtoimax): Use the new macros.
18032         * m4/stdint.m4 (gl_STDINT_H): Require AC_TYPE_UNSIGNED_LONG_LONG_INT
18033         and substitute HAVE_UNSIGNED_LONG_LONG_INT.
18034         * modules/inttypes (inttypes.h): Substitute
18035         HAVE_UNSIGNED_LONG_LONG_INT.
18036         * modules/stdint (stdint.h): Likewise.
18037         (Files): Add m4/ulonglong.m4.
18038
18039 2006-10-10  Bruno Haible  <bruno@clisp.org>
18040
18041         Fix a gcc -Wshadow warning.
18042         * lib/gl_anyhash_list2.h (hash_resize): Rename local variable 'index'
18043         to 'bucket'.
18044         * lib/gl_anylinked_list2.h (gl_linked_search_from_to,
18045         gl_linked_indexof_from_to): Likewise.
18046         * lib/gl_linkedhash_list.c (add_to_bucket, remove_from_bucket):
18047         Likewise.
18048         * lib/gl_anytreehash_list1.h (add_to_bucket, remove_from_bucket):
18049         Likewise.
18050         * lib/gl_anytreehash_list2.h (gl_tree_search_from_to): Likewise.
18051         Reported by Eric Blake.
18052
18053 2006-10-09  Paul Eggert  <eggert@cs.ucla.edu>
18054
18055         * lib/filemode.h [HAVE_DECL_STRMODE]: Include unistd.h too,
18056         for NetBSD.  Problem reported by Bruno Haible.
18057
18058 2006-10-09  Jim Meyering  <jim@meyering.net>
18059
18060         * lib/lchown.c: Include <sys/stat.h> before "stat-macros.h".
18061         Patch from Bruno Haible.
18062
18063 2006-10-09  Jim Meyering  <jim@meyering.net>
18064
18065         * lib/fts-cycle.c (leave_dir): When "leaving" a top level directory due
18066         to FTS_SKIP, don't copy the parent's uninitialized dev/ino values.
18067         Trigger with e.g., mkdir d && valgrind ./chmod u+rwx d d
18068
18069 2006-10-08  Paul Eggert  <eggert@cs.ucla.edu>
18070
18071         Don't include <config.h> twice; this doesn't work in some cases,
18072         e.g., when config.h has "#define intmax_t long long int" and
18073         we include <config.h>, <inttypes.h>, <config.h> in that order.
18074         Problem reported by Matthew Woehlke in:
18075         http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00073.html
18076         * lib/fprintftime.c: Don't include config.h or fprintftime.h.
18077         * lib/fts-cycle.c: Don't include config.h.
18078         * lib/strftime.c: Include fprintftime.h if FPRINTFTIME is defined.
18079         * lib/xstrtoimax.c: Remove copyright notice since it's short tnow.
18080         Don't include config.h or xstrtol.h.  Define STRTOL_T_MINIMUM
18081         and STRTOL_T_MAXIMUM unconditionally, since we now assume gnulib
18082         inttypes.h.
18083         * lib/xstrtoumax.c: Likewise.
18084         * lib/xstrtol.c: Include config.h and xstrtol.h after defining
18085         __strtol and the like, so that this module is more like its siblings.
18086         (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM) [! defined STRTOL_T_MINIMUM]:
18087         Remove; no longer needed now that we assume gnulib inttypes.h.
18088
18089 2006-10-08  Bruno Haible  <bruno@clisp.org>
18090
18091         * doc/gnulib-tool.texi: Emphasize the drawbacks of the --symlink
18092         option.
18093
18094 2006-10-07  Jim Meyering  <jim@meyering.net>
18095
18096         * modules/inttypes (inttypes.h): Revert what seems to have been
18097         an inadvertent part of today's change: use "|", not "/" in the
18098         substitution for the "/"-containing string, $(ABSOLUTE_INTTYPES_H).
18099
18100 2006-10-07  Bruno Haible  <bruno@clisp.org>
18101
18102         * modules/sublist: New file.
18103
18104 2006-10-07  Bruno Haible  <bruno@clisp.org>
18105
18106         * modules/alloca-opt (alloca.h): Add a "DO NOT EDIT" comment.
18107         * modules/argz (argz.h): Likewise.
18108         * modules/arpa_inet (arpa/inet.h): Likewise.
18109         * modules/byteswap (byteswap.h): Likewise.
18110         * modules/configmake (configmake.h): Likewise.
18111         * modules/fcntl (fcntl.h): Likewise.
18112         * modules/fnmatch (fnmatch.h): Likewise.
18113         * modules/getopt (getopt.h): Likewise.
18114         * modules/glob (glob.h): Likewise.
18115         * modules/inttypes (inttypes.h): Likewise.
18116         * modules/netinet_in (netinet/in.h): Likewise.
18117         * modules/poll (poll.h): Likewise.
18118         * modules/stdbool (stdbool.h): Likewise.
18119         * modules/stdint (stdint.h): Likewise.
18120         * modules/sys_select (sys/select.h): Likewise.
18121         * modules/sys_socket (sys/socket.h): Likewise.
18122         * modules/sys_stat (sys/stat.h): Likewise.
18123         * modules/sysexits (sysexits.h): Likewise.
18124         * modules/unistd (unistd.h): Likewise.
18125         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
18126         Add a "DO NOT EDIT" comment to the generated file.
18127         (func_import): Likewise for gnulib-comp.m4.
18128
18129 2006-10-07  Bruno Haible  <bruno@clisp.org>
18130
18131         * lib/gl_sublist.h: New file.
18132         * lib/gl_sublist.c: New file.
18133
18134 2006-10-06  Paul Eggert  <eggert@cs.ucla.edu>
18135
18136         * lib/mkancesdirs.c (mkancesdirs): Pass to MAKE_DIR both the full file
18137         name (relative to the original working directory) and the file
18138         name component (relative to the temporary working directory).  All
18139         callers changed.
18140         * lib/mkancesdirs.h (mkancesdirs): Adjust prototype to match.
18141         * lib/mkdir-p.c (make_dir_parents): Likewise.
18142         * lib/mkdir-p.h (make_dir_parents): Likewise.
18143
18144 2006-10-06  Eric Blake  <ebb9@byu.net>
18145
18146         Define several macros for use by the clean-temp module.
18147         * m4/close-stream.m4 (gl_CLOSE_STREAM): Define GNULIB_CLOSE_STREAM.
18148         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Define GNULIB_FCNTL_SAFER.
18149         * m4/stdio-safer.m4 (gl_FOPEN_SAFER): Define GNULIB_FOPEN_SAFER.
18150
18151         * lib/clean-temp.h (close_stream_temp): New declaration.
18152         * lib/clean-temp.c (includes): Pull in headers according to what
18153         other modules are in use.
18154         (close_stream_temp) [GNULIB_CLOSE_STREAM]: New function.
18155
18156 2006-10-06  Bruno Haible  <bruno@clisp.org>
18157
18158         * lib/javacomp.c (write_temp_file): Use fopen_temp, fwriteerror_temp
18159         instead of fopen, fwriteerror.
18160
18161 2006-10-06  Bruno Haible  <bruno@clisp.org>
18162
18163         * lib/clean-temp.h (cleanup_temp_file, cleanup_temp_subdir,
18164         cleanup_temp_dir_contents, cleanup_temp_dir): Change return type to
18165         int.
18166         * lib/clean-temp.c (do_unlink, do_rmdir, cleanup_temp_file,
18167         cleanup_temp_subdir, cleanup_temp_dir_contents, cleanup_temp_dir):
18168         Return an error indicator.
18169         Suggested by Eric Blake.
18170
18171 2006-10-06  Bruno Haible  <bruno@clisp.org>
18172
18173         * lib/clean-temp.c (PATH_MAX): Provide a fallback for GNU Hurd.
18174         Reported by Eric Blake.
18175
18176 2006-10-06  Bruno Haible  <bruno@clisp.org>
18177
18178         * modules/closeout (Description): Mention stderr too.
18179
18180 2006-10-06  Bruno Haible  <bruno@clisp.org>
18181         and Paul Eggert  <eggert@cs.ucla.edu>
18182
18183         * lib/closeout.c (close_stdout): Also close stderr.
18184         * lib/closeout.h: Update comment.
18185
18186 2006-10-05  Paul Eggert  <eggert@cs.ucla.edu>
18187
18188         Fix some Darwin-7.9.0 porting problems reported by Bruno Haible in
18189         <http://lists.gnu.org/archive/html/bug-coreutils/2006-10/msg00063.html>.
18190         * lib/dirchownmod.c: Include lchown.h.
18191         * lib/lchown.c: Don't include files that lchown.h now includes.
18192         Don't declare chown, since lchown.h now does that.
18193         * lib/lchown.h: Include errno.h, sys/types.h, unistd.h.
18194         (lchown): Define to rpl_chown if lchown is declared but
18195         does not exist.  Declare using a prototype if lchown is not
18196         declared.  Add a copyright notice.
18197         * lib/mkstemp.h: Include <unistd.h>.
18198         * lib/openat.c: Include lchown.h.
18199
18200         * lib/fcntl_.h (O_NOFOLLOW): Don't depend on O_NOFOLLOW_IS_INEFFECTIVE;
18201         we now test for that separately.
18202         * lib/fts.c (fts_safe_changedir): Inspect HAVE_WORKING_O_NOFOLLOW
18203         rather than O_NOFOLLOW, when testing whether it's possible to
18204         avoid a race condition reliably.
18205         * lib/savewd.c (savewd_chdir): Likewise.
18206
18207         Remove macros that are no longer needed now that stdint.h is
18208         reliable.
18209         * lib/fsusage.c (UINTMAX_MAX): Remove.
18210         * lib/human.c (SIZE_MAX, UINTMAX_MAX): Remove.
18211         * lib/utimecmp.c (SIZE_MAX): Remove.
18212
18213         * m4/lchown.m4 (gl_FUNC_LCHOWN): Check whether lchown is declared.
18214
18215         * m4/fcntl_h.m4 (gl_FCNTL_H): Define HAVE_WORKING_O_NOFOLLOW instead
18216         of O_NOFOLLOW_IS_INEFFECTIVE.  Define HAVE_WORKING_O_NOATIME if
18217         O_NOATIME works.
18218
18219 2006-10-05  Bruno Haible  <bruno@clisp.org>
18220
18221         * lib/gl_list.h (gl_sortedlist_search_from_to,
18222         gl_sortedlist_indexof_from_to): New declarations.
18223         (gl_list_implementation): New fields sortedlist_search_from_to,
18224         sortedlist_indexof_from_to.
18225         (gl_sortedlist_search_from_to, gl_sortedlist_indexof_from_to): New
18226         inline functions.
18227         * lib/gl_list.c (gl_sortedlist_search_from_to,
18228         gl_sortedlist_indexof_from_to): New functions.
18229         * lib/gl_array_list.c (gl_array_sortedlist_indexof_from_to): New
18230         function.
18231         (gl_array_sortedlist_indexof, gl_array_sortedlist_search): Use it.
18232         (gl_array_sortedlist_search_from_to): New function.
18233         (gl_array_list_implementation): Update.
18234         * lib/gl_carray_list.c (gl_carray_sortedlist_indexof_from_to): New
18235         function.
18236         (gl_carray_sortedlist_indexof, gl_carray_sortedlist_search): Use it.
18237         (gl_carray_sortedlist_search_from_to): New function.
18238         (gl_carray_list_implementation): Update.
18239         * lib/gl_anylinked_list2.h (gl_linked_sortedlist_search_from_to,
18240         gl_linked_sortedlist_indexof_from_to): New functions.
18241         * lib/gl_linked_list.c (gl_linked_list_implementation): Update.
18242         * lib/gl_linkedhash_list.c (gl_linkedhash_list_implementation): Update.
18243         * lib/gl_anytree_list2.h (gl_tree_sortedlist_search_from_to,
18244         gl_tree_sortedlist_indexof_from_to): New functions.
18245         * lib/gl_avltree_list.c (gl_avltree_list_implementation): Update.
18246         * lib/gl_avltreehash_list.c (gl_avltreehash_list_implementation):
18247         Update.
18248         * lib/gl_rbtree_list.c (gl_rbtree_list_implementation): Update.
18249         * lib/gl_rbtreehash_list.c (gl_avltreehash_list_implementation):
18250         Update.
18251
18252 2006-10-05  Bruno Haible  <bruno@clisp.org>
18253
18254         * lib/gl_list.h (gl_list_search_from, gl_list_search_from_to,
18255         gl_list_indexof_from, gl_list_indexof_from_to): New declarations.
18256         (struct gl_list_implementation): Add fields search_from_to,
18257         indexof_from_to. Remove fields search, indexof.
18258         (gl_list_search): Use the search_from_to method.
18259         (gl_list_search_from, gl_list_search_from_to): New functions.
18260         (gl_list_indexof): Use the indexof_from_to method.
18261         (gl_list_indexof_from, gl_list_indexof_from_to): New functions.
18262         * lib/gl_list.c (gl_list_search): Use the search_from_to method.
18263         (gl_list_search_from, gl_list_search_from_to): New functions.
18264         (gl_list_indexof): Use the indexof_from_to method.
18265         (gl_list_indexof_from, gl_list_indexof_from_to): New functions.
18266         * lib/gl_array_list.c (gl_array_indexof_from_to): Renamed from
18267         gl_array_indexof. Add start_index, end_index arguments.
18268         (gl_array_search_from_to): Renamed from gl_array_search. Add
18269         start_index, end_index arguments.
18270         (gl_array_remove, gl_array_list_implementation): Update.
18271         * lib/gl_carray_list.c (gl_carray_indexof_from_to): Renamed from
18272         gl_carray_indexof. Add start_index, end_index arguments.
18273         (gl_carray_search_from_to): Renamed from gl_carray_search. Add
18274         start_index, end_index arguments.
18275         (gl_carray_remove, gl_carray_list_implementation): Update.
18276         * lib/gl_anylinked_list2.h (gl_linked_search_from_to): Renamed from
18277         gl_linked_search. Add start_index, end_index arguments.
18278         (gl_linked_indexof_from_to): Renamed from gl_linked_indexof. Add
18279         start_index, end_index arguments.
18280         (gl_linked_remove): Update.
18281         * lib/gl_linked_list.c (gl_linked_list_implementation): Update.
18282         * lib/gl_linkedhash_list.c (gl_linkedhash_list_implementation): Update.
18283         * lib/gl_anytree_list1.h (iterstack_item_t): Change type of 'rightp'
18284         field to 'size_t'.
18285         * lib/gl_anytree_list2.h (gl_tree_search_from_to): Renamed from
18286         gl_tree_search. Add start_index, end_index arguments.
18287         (gl_tree_indexof_from_to): Renamed from gl_tree_indexof. Add
18288         start_index, end_index arguments.
18289         (gl_tree_remove): Update.
18290         * lib/gl_avltree_list.c (gl_avltree_list_implementation): Update.
18291         * lib/gl_rbtree_list.c (gl_rbtree_list_implementation): Update.
18292         * lib/gl_anytreehash_list1.h (compare_position_threshold): New
18293         function.
18294         * lib/gl_anytreehash_list2.h (gl_tree_search_from_to): Renamed from
18295         gl_tree_search. Add start_index, end_index arguments.
18296         (gl_tree_indexof_from_to): Renamed from gl_tree_indexof. Add
18297         start_index, end_index arguments.
18298         * lib/gl_avltreehash_list.c (gl_avltreehash_list_implementation):
18299         Update.
18300         * lib/gl_rbtreehash_list.c (gl_rbtreehash_list_implementation): Update.
18301
18302 2006-10-05  Bruno Haible  <bruno@clisp.org>
18303
18304         * modules/fwriteerror (configure.ac): Define GNULIB_FWRITEERROR.
18305
18306         * lib/clean-temp.h (open_temp, fopen_temp, close_temp, fclose_temp,
18307         fwriteerror_temp): New declarations.
18308         * lib/clean-temp.c (uintptr_t): Provide fallback definition.
18309         (descriptors): New variable.
18310         (cleanup): First, close the descriptors.
18311         (register_fd, unregister_fd, open_temp, fopen_temp, close_temp,
18312         fclose_temp, fwriteerror_temp): New functions.
18313
18314 2006-10-04  Jim Meyering  <jim@meyering.net>
18315
18316         * lib/fts.c (fts_open): Tiny comment change.
18317
18318 2006-10-04  Bruno Haible  <bruno@clisp.org>
18319
18320         Make it possible to invoke AC_GNU_SOURCE after gl_LOCK_EARLY.
18321         * m4/lock.m4 (gl_LOCK_EARLY_BODY): New macro, extracted code from
18322         gl_LOCK_BODY.
18323         (gl_LOCK_EARLY): Require gl_LOCK_EARLY_BODY, not gl_LOCK_BODY.
18324         (gl_LOCK_BODY): Remove settings of CPPFLAGS, now done in
18325         gl_LOCK_EARLY_BODY.
18326         (gl_LOCK): Require gl_LOCK_BODY.
18327
18328 2006-10-04  Bruno Haible  <bruno@clisp.org>
18329
18330         * lib/gl_oset.h (gl_setelement_threshold_fn): New type.
18331         (gl_oset_search_atleast): New declaration.
18332         (struct gl_oset_implementation): Add field 'search_atleast'.
18333         (gl_oset_search_atleast): New inline function.
18334         * lib/gl_oset.c (gl_oset_search_atleast): New function.
18335         * lib/gl_array_oset.c (gl_array_search_atleast): New function.
18336         (gl_array_oset_implementation): Update.
18337         * lib/gl_anytree_oset.h (gl_tree_search_atleast): New function.
18338         * lib/gl_avltree_oset.c (gl_avltree_oset_implementation): Update.
18339         * lib/gl_rbtree_oset.c (gl_rbtree_oset_implementation): Update.
18340
18341 2006-10-04  Bruno Haible  <bruno@clisp.org>
18342
18343         * lib/fatal-signal.c (fatal_signals) [WOE32]: Add the SIGBREAK signal.
18344
18345 2006-10-03  Bruno Haible  <bruno@clisp.org>
18346
18347         * lib/gl_rbtreehash_list.c (gl_rbtreehash_list_implementation): Renamed
18348         from gl_avltreehash_list_implementation.
18349
18350 2006-10-03  Bruno Haible  <bruno@clisp.org>
18351
18352         * lib/gl_oset.c (gl_oset_add): Fix return type.
18353
18354 2006-10-02  Paolo Bonzini  <bonzini@gnu.org>  (tiny change)
18355
18356         * lib/quotearg.c (mbstate_t) [!HAVE_MBRTOWC]: #define to int.
18357
18358 2006-10-02  Eric Blake  <ebb9@byu.net>
18359
18360         * modules/strnlen (Depends-on): Add extensions.
18361
18362 2006-10-02  Eric Blake  <ebb9@byu.net>
18363
18364         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Use autoconf's
18365         definition in 2.60+.
18366
18367 2006-10-02  Dmitry V. Levin  <ldv@altlinux.org>
18368
18369         * lib/fts.c (fts_close, fts_build, fts_palloc): Remove redundant
18370         checks.
18371
18372 2006-10-02  Bruno Haible  <bruno@clisp.org>
18373
18374         * gnulib-tool (func_emit_lib_Makefile_am): Don't add no-dependencies
18375         to the AUTOMAKE_OPTIONS.
18376         Reported by Jim Meyering.
18377
18378 2006-09-29  Paul Eggert  <eggert@cs.ucla.edu>
18379
18380         Work around bug in Solaris 10 /proc file system:
18381         /proc/self/fd/NNN/.. isn't the parent directory of
18382         the directory whose file descriptor is NNN.  This needs to
18383         be worked around at run time, not compile time, since a
18384         program might be built on Solaris 8, where things work, and
18385         run on Solaris 10.
18386         * lib/openat-priv.h (BUILD_PROC_NAME): Remove.  All callers changed
18387         to use the following interface instead:
18388         (OPENAT_BUFFER_SIZE): New macro.
18389         (openat_proc_name): New function.
18390         * lib/at-func.c (AT_FUNC_NAME): Adjust to above changes.
18391         * lib/openat.c (openat_permissive, openat_needs_fchdir, fdopendir):
18392         Likewise.
18393         * lib/openat-proc.c: New file.
18394         * modules/openat (Files): Add lib/openat-proc.c.
18395         (Depends-on): Add same-inode, stdbool.
18396         * m4/openat.m4 (gl_FUNC_OPENAT): Add AC_LIBOBJ(openat-proc).
18397
18398 2006-09-29  Bruno Haible  <bruno@clisp.org>
18399
18400         * lib/fwriteerror.h (fwriteerror_no_ebadf): New declaration.
18401         * lib/(do_fwriteerror): Renamed from fwriteerror. Add ignore_ebadf
18402         argument. Set stdout_closed before testing for ferror, not after.
18403         (fwriteerror, fwriteerror_no_ebadf): New functions.
18404
18405 2006-09-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
18406
18407         * m4/intmax.m4 (gt_TYPE_INTMAX_T): Avoid unused variables warning.
18408
18409 2006-09-28  Paolo Bonzini  <bonzini@gnu.org>
18410
18411         * lib/poll.c (rpl_poll) [__APPLE__]: Use FIONREAD instead of MSG_PEEK.
18412         * m4/poll.m4: Look for sys/ioctl.h and sys/filio.h.
18413
18414 2006-09-28  Jim Meyering  <jim@meyering.net>
18415
18416         * lib/mkdir-p.c: Include "dirchownmod.h", not "dirchownmod.c".
18417         Include <unistd.h>.
18418
18419 2006-09-28  Bruno Haible  <bruno@clisp.org>
18420
18421         * modules/avltreehash-list (Depends-on): Add stdint, remove size_max.
18422         * modules/linkedhash-list (Depends-on): Likewise.
18423         * modules/rbtreehash-list (Depends-on): Likewise.
18424
18425 2006-09-28  Bruno Haible  <bruno@clisp.org>
18426
18427         * lib/strndup.h: Simplify the redefinition of strndup.
18428         (_GL_CONCAT, _GL_XCONCAT, __STRNDUP_ID): Remove macros.
18429         * m4/strndup.m4 (gl_FUNC_STRNDUP): Don't define __STRNDUP_PREFIX.
18430
18431 2006-09-28  Bruno Haible  <bruno@clisp.org>
18432
18433         * lib/gl_avltreehash_list.c: Include <stdint.h> instead of size_max.h.
18434         * lib/gl_linkedhash_list.c: Likewise.
18435         * lib/gl_rbtreehash_list.c: Likewise.
18436
18437 2006-09-27  Paul Eggert  <eggert@cs.ucla.edu>
18438
18439         * lib/canon-host.c (canon_host_r): Work around bug in Darwin 7.9.0
18440         getaddrinfo.
18441
18442         * lib/__fpending.h: Don't include <stdio_ext.h> unless
18443         HAVE_DECL___FPENDING.  This avoids a bug with lsbcc, where
18444         it causes <stdio_ext.h> to cause a compile-time error.
18445         Problem reported by Nelson H. F. Beebe.
18446         * lib/getpass.c: Likewise, except for HAVE_DECL___FSETLOCKING instead
18447         of HAVE_DECL___PENDING.
18448
18449         * m4/fpending.m4 (gl_FUNC_FPENDING): Check for stdio_ext at most once.
18450         * m4/getpass.m4 (gl_PREREQ_GETPASS): Check for __fsetlocking's
18451         declaration.
18452
18453 2006-09-27  Jim Meyering  <jim@meyering.net>
18454
18455         This file could end up with a definition for a function
18456         named __strndup, rather than rpl_strndup on a system with
18457         incomplete weak_alias support.
18458         * lib/strndup.c (strndup): Rename from __strndup.
18459         Remove #defines that used to map __strndup to strndup.
18460         Don't use K&R prototypes.
18461         Remove LIBC-related code, since this file is not sync'd with glibc.
18462         * lib/strndup.h: Revamp, accordingly.
18463         * m4/strndup.m4: Modernize.
18464
18465 2006-09-26  Paul Eggert  <eggert@cs.ucla.edu>
18466
18467         * modules/savewd (Depends-on): Add 'raise'.
18468         * lib/savewd.c: Include <signal.h>, for 'raise'.
18469
18470 2006-09-26  Jim Meyering  <jim@meyering.net>
18471
18472         * m4/acl.m4 (AC_FUNC_ACL): Disable ACL support altogether
18473         when we detect Darwin 8.7.0's acl_get_file bug.
18474         Rearrange to perform the new (below) run-test while $LIBS
18475         contains any acl-related library.  Set USE_ACL at the end.
18476         (gl_ACL_GET_FILE): New function.
18477
18478 2006-09-26  Eric Blake  <ebb9@byu.net>
18479
18480         * lib/verror.c: Include <config.h> unconditionally.
18481
18482 2006-09-25  Paul Eggert  <eggert@cs.ucla.edu>
18483
18484         * modules/clock-time (Maintainer): Add self.
18485         * modules/getlogin_r (Depends-on): Add extensions.
18486
18487 2006-09-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
18488
18489         * modules/clock-time: New module.
18490         * modules/nanosleep (Depends-on): Add clock-time.
18491         * modules/gethrxtime (Depends-on): Likewise.
18492         * modules/gettime (Depends-on): Likewise.
18493         * modules/settime (Depends-on): Likewise.
18494
18495         * modules/fts-lgpl: Depend on openat.
18496         * modules/mkancesdirs: Depend on savewd.
18497         * modules/mkdir-p: Likewise.
18498
18499 2006-09-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
18500
18501         * m4/host-os.m4 (gl_HOST_OS): Require AC_CANONICAL_HOST.
18502
18503         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Rename cache variable from
18504         `gl_have_arbitrary_file_name_length_limit' to
18505         `gl_cv_have_arbitrary_file_name_length_limit', so that caching
18506         actually works between configure runs.
18507
18508 2006-09-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
18509             Bruno Haible  <bruno@clisp.org>
18510
18511         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Include <string.h>.
18512
18513 2006-09-25  Jim Meyering  <jim@meyering.net>
18514
18515         * m4/fcntl_h.m4 (gl_FCNTL_H): Fix typo in test for failed open.
18516         This typo caused coreutils/tests/dd/misc to fail on Darwin 8.7.0.
18517
18518 2006-09-25  Eric Blake  <ebb9@byu.net>
18519
18520         * gnulib-tool (func_import, func_create_testdir): Fix typos in
18521         exec's in 2006-09-18 patch when shuffling fds.
18522
18523 2006-09-25  Bruno Haible  <bruno@clisp.org>
18524
18525         * m4/getloadavg.m4 (gl_GETLOADAVG): Fix directory in error message.
18526         Reported by Jim Meyering.
18527
18528 2006-09-24  Jim Meyering  <jim@meyering.net>
18529
18530         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Don't use '>' to
18531         compare a pointer against a literal "0".  That caused failures with
18532         at least HP-UX's hpcc.
18533
18534 2006-09-22  Simon Josefsson  <jas@extundo.com>
18535
18536         * modules/gc-sha1:
18537         * modules/gc-md4:
18538         * modules/gc-hmac-sha1:
18539         * modules/gc-hmac-md5:
18540         * modules/gc-des:
18541         * modules/gc-arcfour: Distribute more files.
18542
18543 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
18544
18545         * lib/gl_anylinked_list2.h [lint] (gl_linked_iterator)
18546         (gl_linked_iterator_from_to): Initialize struct completely.
18547         * lib/gl_anytree_list2.h [lint] (gl_tree_iterator): Likewise.
18548         (gl_tree_iterator_from_to): Likewise
18549         * lib/gl_anytree_oset.h [lint] (gl_tree_iterator): Likewise.
18550         * lib/gl_array_list.c [lint] (gl_array_iterator)
18551         (gl_array_iterator_from_to): Likewise.
18552         * lib/gl_array_oset.c [lint] (gl_array_iterator): Likewise.
18553         * lib/gl_carray_list.c [lint] (gl_carray_iterator)
18554         (gl_carray_iterator_from_to): Likewise.
18555
18556         * lib/gc-gnulib.c [GC_USE_HMAC_SHA1]: include hmac.h for hmac_sha1.
18557         * lib/md4.c (md4_process_block): Remove unused variable.
18558         * lib/rijndael-api-fst.c (rijndaelBlockDecrypt): GCC suggests
18559         parentheses for clarity.
18560
18561 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
18562
18563         * modules/bison-i18n (Depends-on): Add gettext.
18564
18565 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
18566
18567         * m4/fsusage.m4 (gl_STATFS_TRUNCATES): Avoid unused variable.
18568         * m4/getdate.m4 (gl_C_COMPOUND_LITERALS): Likewise.
18569         * m4/jm-winsz1.m4 (gl_HEADER_TIOCGWINSZ_IN_TERMIOS_H): Likewise;
18570         also add missing comma that caused broken test.
18571         * m4/link-follow.m4 (gl_AC_FUNC_LINK_FOLLOWS_SYMLINK): Include
18572         stdlib.h, for `abort'.
18573         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Avoid unused
18574         variables.
18575         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Check for and
18576         include unistd.h if present, for `rmdir'.
18577         * m4/physmem.m4 (gl_SYS__SYSTEM_CONFIGURATION): Avoid unused
18578         variables.
18579         * m4/putenv.m4 (gl_FUNC_PUTENV): Rewrite using AC_RUN_IFELSE, and
18580         in the process include standard headers for prototypes.
18581         * m4/readutmp.m4 (gl_READUTMP): Require AC_GNU_SOURCE, so utmpxname
18582         gets declared on GNU/Linux.
18583         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Check for and include
18584         unistd.h, for `rmdir'.
18585         * m4/time_r.m4 (gl_TIME_R): Avoid unused variables.
18586
18587         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Avoid expression that is
18588         always true.
18589         * m4/strndup.m4 (gl_FUNC_STRNDUP): include stdlib.h, for `free'.
18590
18591         * m4/sockpfaf.m4 (gl_SOCKET_FAMILIES): Avoid gcc -Wall warnings.
18592
18593 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
18594
18595         * gnulib-tool (func_version): Create output all at once.  This
18596         may help avoid triggering unnecessary SIGPIPEs, and at any
18597         rate it doesn't hurt.
18598
18599 2006-09-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
18600             Bruno Haible  <bruno@clisp.org>
18601
18602         * m4/lock.m4 (gl_LOCK_BODY): Avoid unused variables warning.
18603         * m4/mbswidth.m4 (gl_MBSWIDTH): Likewise.
18604         * m4/signed.m4 (bh_C_SIGNED): Likewise.
18605
18606         * m4/vasprintf.m4 (gl_PREREQ_VASPRINTF_H): New macro.
18607         (gl_FUNC_VASPRINTF): Invoke it.
18608
18609 2006-09-22  Bruno Haible  <bruno@clisp.org>
18610
18611         * m4/getloadavg.m4 (gl_GETLOADAVG): Expect the directory of
18612         getloadavg.c as first argument.
18613
18614 2006-09-22  Bruno Haible  <bruno@clisp.org>
18615
18616         * gnulib-tool (func_import, func_create_testdir): Set gl_source_base
18617         at the beginning of the gl_INIT macro.
18618         * modules/getloadavg (configure.ac): Pass $gl_source_base to
18619         gl_GETLOADAVG.
18620
18621 2006-09-22  Bruno Haible  <bruno@clisp.org>
18622
18623         * gnulib-tool (func_create_megatestdir): Don't include the config-h
18624         module.
18625         Suggested by Ralf Wildenhues.
18626
18627 2006-09-20  Paul Eggert  <eggert@cs.ucla.edu>
18628
18629         Import this patch from libc:
18630
18631         2006-09-06  Jakub Jelinek  <jakub@redhat.com>
18632
18633         * lib/regex_internal.c (re_string_reconstruct): Handle
18634         offset < pstr->valid_raw_len && pstr->offsets_needed case.
18635         Ensure no bytes read before raw_mbs array.  Pass a saved copy of
18636         pstr->valid_len - 1 rather than pstr->valid_raw_len - 1 to
18637         re_string_context_at.
18638
18639         * m4/regex.m4 (gl_REGEX): Check for locale.h, since the test
18640         now requires it.
18641         (gl_PREREQ_REGEX): Don't check for locale.h any more, since
18642         gl_REGEX now does it for us.
18643         (gl_REGEX): Add test taken from
18644         http://sourceware.org/ml/libc-hacker/2006-09/msg00008.html.
18645
18646         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Require AC_SYS_LARGEFILE.
18647         Check that large offsets work.  Modernize Autoconf usages.
18648         Prefer "yes" to mean a good thing rather than a bad.
18649         Don't put "#define mkstemp" in config.h, as this might interfere
18650         with standard system headers that "#define mkstemp mkstemp64".
18651
18652         * modules/mkstemp (Depends-on): Add extensions, so that
18653         mkstemp is visible on some platforms.
18654         (Makefile.am): Add mkstemp.h to EXTRA_DIST.
18655         (Include): Change to "mkstemp.h" from <stdlib.h>.
18656         (Files): Add mkstemp.h.
18657
18658         * lib/mkstemp.h: New file, since some standard headers
18659         #define mkstemp.
18660         * lib/mkstemp.c: Revamp to put the !_LIBC code together.
18661         Include "mkstemp.h".
18662         Make the _LIBC code resemble glibc original more,
18663         e.g., use K&R style.
18664         * lib/mkstemp-safer.c: Include "mkstemp.h" instead of <stdlib.h>.
18665         (mkstemp): Remove, since mkstemp.h does this for us.
18666         * lib/stdlib--.h: Include mkstemp.h.
18667
18668         Import this patch from libc:
18669
18670         2006-04-07  Ulrich Drepper  <drepper@redhat.com>
18671
18672         * lib/tempname.c (__gen_tempname): Change attempts_min
18673         into a macro.  Use preprocessor to decide how to initialize
18674         attempts [Coverity CID 67].
18675
18676 2006-09-20  Bruno Haible  <bruno@clisp.org>
18677
18678         * lib/mkdtemp.c: Import from libc.
18679         2006-04-07  Ulrich Drepper  <drepper@redhat.com>
18680                 * sysdeps/posix/tempname.c (__gen_tempname): Change
18681                 attempts_min into a macro.  Use preprocessor to decide how to
18682                 initialize attempts [Coverity CID 67].
18683         2001-11-27  Paul Eggert  <eggert@twinsun.com>
18684                 * sysdeps/posix/tempname.c (__gen_tempname): Try at least
18685                 ATTEMPTS_MIN or TMP_MAX times, whichever is greater.
18686
18687 2006-09-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
18688
18689         * gnulib-tool (func_exit): New function, to allow to pass the
18690         exit status portably through the trap.  Use everywhere.
18691         (--help, --version): Signal a write error.
18692         (trap): catch SIGPIPE, for write errors.
18693         Exit at the end of the trap, with the correct exit status.
18694
18695 2006-09-19  Karl Berry  <karl@gnu.org>
18696
18697         * doc/gnulib.texi: note about the license texinfo files.
18698
18699 2006-09-19  Eric Blake  <ebb9@byu.net>
18700
18701         * gnulib-tool: Avoid space-tab.
18702
18703 2006-09-18  Paul Eggert  <eggert@cs.ucla.edu>
18704
18705         * lib/getaddrinfo.c (getaddrinfo) [defined HAVE_IPV6]: Fix typo
18706         that prevented coreutils 6.1 from building.  Problem reported
18707         by Petter Reinholdtsen.
18708
18709 2006-09-18  Paul Eggert  <eggert@cs.ucla.edu>
18710
18711         * gnulib-tool (avoidlist): Fix typo that broke options like
18712         --avoid=lock that are used by coreutils bootstrap.
18713
18714 2006-09-18  Mark D. Baushke  <mdb@gnu.org>
18715
18716         * m4/inttypes.m4 (gl_INTTYPES_H): Quote "test" args
18717         more systematically.
18718
18719 2006-09-18  Jim Meyering  <jim@meyering.net>
18720
18721         * lib/savewd.c (savewd_restore): Don't shadow: s/status/child_status/.
18722
18723 2006-09-18  Bruno Haible  <bruno@clisp.org>
18724
18725         * modules/inttypes (Files): Remove m4/inttypes-h.m4.
18726
18727 2006-09-18  Bruno Haible  <bruno@clisp.org>
18728
18729         * m4/inttypes-h.m4 (gl_HEADER_INTTYPES_H): Remove macro.
18730         * m4/inttypes-pri.m4: Require autoconf >= 2.52.
18731         (gt_INTTYPES_PRI): Invoke AC_CHECK_HEADERS on inttypes.h. Test
18732         ac_cv_header_inttypes_h instead of gl_cv_header_inttypes_h.
18733         * m4/gettext.m4: Require autoconf >= 2.52.
18734         (gt_INTL_SUBDIR_CORE): Invoke AC_CHECK_HEADERS on inttypes.h.
18735         * m4/inttypes.m4 (gl_INTTYPES_H): Test ac_cv_header_inttypes_h instead
18736         of gl_cv_header_inttypes_h.
18737
18738 2006-09-18  Bruno Haible  <bruno@clisp.org>
18739
18740         * lib/javaversion.c: Include configmake.h.
18741
18742 2006-09-18  Bruno Haible  <bruno@clisp.org>
18743
18744         * gnulib-tool (func_import, func_create_testdir): Use exec tricks to
18745         avoid that the while loops be executed in a subshell.
18746
18747 2006-09-18  Bruno Haible  <bruno@clisp.org>
18748
18749         * MODULES.html.sh (func_module): Break long lines.
18750         Suggested by Bruce Korb <bkorb@gnu.org>.
18751
18752 2006-09-17  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
18753
18754         Speed up by a factor of 1.12.
18755         * gnulib-tool (nl): New variable.
18756         (func_import): Rewrite include directive extraction to only read each
18757         directive once.
18758
18759 2006-09-17  Bruno Haible  <bruno@clisp.org>
18760
18761         * modules/javaversion (Makefile.am): Remove DEFS setting.
18762         (Depends-on): Add configmake, for PKGDATADIR definition.
18763
18764 2006-09-17  Bruno Haible  <bruno@clisp.org>
18765
18766         * gnulib-tool (func_create_testdir): Rewrite all files at once.
18767
18768 2006-09-17  Bruno Haible  <bruno@clisp.org>
18769
18770         * gnulib-tool (func_append): New function, stolen from libtool.m4.
18771         (func_modules_transitive_closure, func_modules_add_dummy,
18772         func_modules_to_filelist, func_import, func_create_testdir,
18773         func_create_megatestdir, ...): Use it wherever possible.
18774         Suggested by Ralf Wildenhues.
18775
18776 2006-09-16  Karl Berry  <karl@gnu.org>
18777
18778         * doc/fdl.texi (ADDENDUM): switch to @heading from @appendixsubsec,
18779         to avoid sectioning errors.
18780         * doc/lgpl.texi, gpl.texi (Copying): downcase @unnumbered title.
18781         [ifinfo]: blank line after @center-ed titles.
18782         * doc/lgpl.texi (Library Copying): Rename main node to GNU LGPL.
18783         Spell FSF address consistently with others.
18784         (These changes approved by rms.)
18785
18786 2006-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
18787
18788         Speed up by a factor of 1.61.
18789         * gnulib-tool (func_modules_transitive_closure): Rewrite to not check
18790         already checked module names again.
18791
18792 2006-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
18793
18794         Speed up by a factor of 1.13.
18795         * gnulib-tool (func_import): Rewrite all old_files at once; likewise
18796         for new_files, and the input to func_add_or_update.
18797
18798 2006-09-15  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
18799
18800         * gnulib-tool (func_all_modules, func_modules_to_filelist, func_import,
18801         func_create_testdir, ...): Change 'sort | uniq' to 'sort -u'.
18802
18803 2006-09-15  Paul Eggert  <eggert@cs.ucla.edu>
18804
18805         * modules/mkancesdirs (Depends-on): Add fcntl.
18806         * modules/savewd: New file.
18807         * MODULES.html.sh (File system functions): Add savewd.
18808
18809         * modules/configmake (Makefile.am): Add support for the
18810         Automake-supplied PKGLIBDIR, PKGINCLUDEDIR, PKGDATADIR.
18811
18812 2006-09-15  Paul Eggert  <eggert@cs.ucla.edu>
18813
18814         * m4/savewd.m4: New file.
18815
18816 2006-09-15  Paul Eggert  <eggert@cs.ucla.edu>
18817
18818         * lib/dirchownmod.c: Don't include fcntl.h; no longer needed.
18819         (dirchownmod): New arg FD.  All callers changed.
18820         Use FD rather than opening the directory ourself, as opening is
18821         now the caller's responsibility.
18822         * lib/dirchownmod.h: Likewise.
18823         * lib/mkancesdirs.c: Include <sys/types.h>, for portability to older
18824         hosts that require <sys/types.h> before <sys/stat.h>.  Include
18825         fcntl.h, savewd.h, and unistd.h, not dirname.h and stat-macros.h.
18826         (test_dir): Remove.
18827         (mkancesdirs): Return length of prefix of FILE that has already
18828         been made, or -2 if there is a child doing the work.  Redo
18829         algorithm so that it is O(N) rather than O(N**2).  Optimize away
18830         ".", and treat ".." specially since it might stray back into
18831         already-created areas.  Use a subprocess if necessary.  New arg
18832         WD; all users changed.  MAKE_DIR function should now return 1
18833         if it creates a directory that is not readable.  Return -2 if
18834         a child process is spun off.
18835         * lib/mkancesdirs.h: Include <stddef.h>, for ptrdiff_t.
18836         Adjust signature to match code.
18837         * lib/mkdir-p.c: Include dirname.h, for IS_ABSOLUTE_FILE_NAME.
18838         (make_dir_parents): Use a subprocess if necessary.  New arg WD;
18839         all users changed.
18840         * lib/savewd.c, lib/savewd.h: New files.
18841
18842 2006-09-15  Jim Meyering  <jim@meyering.net>
18843
18844         * modules/rename-dest-slash: New module.
18845         * MODULES.html.sh (posix_compat): Add it here.
18846
18847         * modules/rename: Reflect vb_FUNC_RENAME -> gl_FUNC_RENAME change.
18848
18849 2006-09-15  Jim Meyering  <jim@meyering.net>
18850
18851         * m4/rename-dest-slash.m4 (gl_FUNC_RENAME_TRAILING_DEST_SLASH): New
18852         file.
18853
18854         * m4/rename.m4 (gl_FUNC_RENAME): Rename from vb_FUNC_RENAME.
18855
18856 2006-09-15  Jim Meyering  <jim@meyering.net>
18857
18858         * lib/rename-dest-slash.c (has_trailing_slash): Use
18859         FILE_SYSTEM_PREFIX_LEN, for non-POSIX systems.
18860         (rpl_rename_dest_slash): Perform the cheaper trailing slash
18861         test before testing whether SRC is a directory.
18862         Suggestions from Bruno Haible.
18863
18864         Avoid a warning about an unused variable.
18865         * lib/regex_internal.c (re_dfa_add_node): Move declaration of "type"
18866         into the #ifdef block where it's used.
18867
18868         * lib/rename-dest-slash.c: New file.
18869
18870 2006-09-14  Bruno Haible  <bruno@clisp.org>
18871
18872         * lib/allocsa.c: Include <config.h> unconditionally.
18873         * lib/asnprintf.c: Likewise.
18874         * lib/asprintf.c: Likewise.
18875         * lib/c-strcasecmp.c: Likewise.
18876         * lib/c-strcasestr.c: Likewise.
18877         * lib/c-strncasecmp.c: Likewise.
18878         * lib/c-strstr.c: Likewise.
18879         * lib/classpath.c: Likewise.
18880         * lib/clean-temp.c: Likewise.
18881         * lib/concatpath.c: Likewise.
18882         * lib/copy-file.c: Likewise.
18883         * lib/csharpcomp.c: Likewise.
18884         * lib/csharpexec.c: Likewise.
18885         * lib/execute.c: Likewise.
18886         * lib/fatal-signal.c: Likewise.
18887         * lib/findprog.c: Likewise.
18888         * lib/fwriteerror.c: Likewise.
18889         * lib/gl_array_list.c: Likewise.
18890         * lib/gl_array_oset.c: Likewise.
18891         * lib/gl_avltree_list.c: Likewise.
18892         * lib/gl_avltree_oset.c: Likewise.
18893         * lib/gl_avltreehash_list.c: Likewise.
18894         * lib/gl_carray_list.c: Likewise.
18895         * lib/gl_linked_list.c: Likewise.
18896         * lib/gl_linkedhash_list.c: Likewise.
18897         * lib/gl_list.c: Likewise.
18898         * lib/gl_oset.c: Likewise.
18899         * lib/gl_rbtree_list.c: Likewise.
18900         * lib/gl_rbtree_oset.c: Likewise.
18901         * lib/gl_rbtreehash_list.c: Likewise.
18902         * lib/imaxabs.c: Likewise.
18903         * lib/imaxdiv.c: Likewise.
18904         * lib/javacomp.c: Likewise.
18905         * lib/javaexec.c: Likewise.
18906         * lib/javaversion.c: Likewise.
18907         * lib/linebreak.c: Likewise.
18908         * lib/localcharset.c: Likewise.
18909         * lib/lock.c: Likewise.
18910         * lib/mbchar.c: Likewise.
18911         * lib/mbswidth.c: Likewise.
18912         * lib/mkdtemp.c: Likewise.
18913         * lib/pipe.c: Likewise.
18914         * lib/printf-args.c: Likewise.
18915         * lib/printf-parse.c: Likewise.
18916         * lib/progname.c: Likewise.
18917         * lib/progreloc.c: Likewise.
18918         * lib/readlink.c: Likewise.
18919         * lib/sh-quote.c: Likewise.
18920         * lib/stpcpy.c: Likewise.
18921         * lib/stpncpy.c: Likewise.
18922         * lib/strcasecmp.c: Likewise.
18923         * lib/strcasestr.c: Likewise.
18924         * lib/strcspn.c: Likewise.
18925         * lib/striconv.c: Likewise.
18926         * lib/strncasecmp.c: Likewise.
18927         * lib/strnlen1.c: Likewise.
18928         * lib/strstr.c: Likewise.
18929         * lib/strtok_r.c: Likewise.
18930         * lib/tls.c: Likewise.
18931         * lib/tmpdir.c: Likewise.
18932         * lib/unicodeio.c: Likewise.
18933         * lib/unsetenv.c: Likewise.
18934         * lib/vasnprintf.c: Likewise.
18935         * lib/vasprintf.c: Likewise.
18936         * lib/wait-process.c: Likewise.
18937         * lib/xallocsa.c: Likewise.
18938         * lib/xsetenv.c: Likewise.
18939         * lib/xstriconv.c: Likewise.
18940
18941 2006-09-13  Simon Josefsson  <jas@extundo.com>
18942
18943         * m4/getdate.m4: Don't AC_LIBOBJ([getdate]), automake takes care of
18944         that internally, suggested by Ralf Wildenhues
18945         <Ralf.Wildenhues@gmx.de>.
18946
18947 2006-09-13  Simon Josefsson  <jas@extundo.com>
18948
18949         * gnulib-tool (func_emit_lib_Makefile_am): Use $(LIBOBJS), not
18950         @LIBOBJS@.
18951         Suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
18952
18953 2006-09-13  Paul Eggert  <eggert@cs.ucla.edu>
18954
18955         * lib/_fpending.c: Include <config.h> unconditionally, since we no
18956         longer worry about uses that don't define HAVE_CONFIG_H.
18957         * lib/acl.c, lib/alloca.c, lib/argmatch.c, lib/atexit.c:
18958         * lib/backupfile.c, lib/basename.c, lib/c-stack.c, lib/c-strtod.c:
18959         * lib/calloc.c,lib/ canon-host.c, lib/canonicalize.c, lib/chdir-long.c:
18960         * lib/chdir-safer.c, lib/chown.c, lib/cloexec.c, lib/close-stream.c:
18961         * lib/closeout.c, lib/creat-safer.c, lib/cycle-check.c, lib/diacrit.c:
18962         * lib/dirchownmod.c, lib/dirfd.c, lib/dirname.c, lib/dup-safer.c:
18963         * lib/dup2.c, lib/error.c, lib/euidaccess.c, lib/exclude.c:
18964         * lib/exitfail.c, lib/fchmodat.c, lib/fchown-stub.c, lib/fd-safer.c:
18965         * lib/file-type.c, lib/fileblocks.c, lib/filemode.c, lib/filenamecat.c:
18966         * lib/fnmatch.c, lib/fopen-safer.c, lib/fprintftime.c, lib/free.c:
18967         * lib/fsusage.c, lib/ftruncate.c, lib/fts-cycle.c, lib/fts.c:
18968         * lib/full-write.c, lib/gai_strerror.c, lib/getcwd.c, lib/getdate.y:
18969         * lib/getdomainname.c, lib/getgroups.c, lib/gethostname.c:
18970         * lib/gethrxtime.c, lib/getloadavg.c, lib/getlogin_r.c:
18971         * lib/getndelim2.c, lib/getnline.c, lib/getopt.c, lib/getopt1.c:
18972         * lib/getpass.c, lib/gettime.c, lib/gettimeofday.c, lib/getugroups.c:
18973         * lib/getusershell.c, lib/glob.c, lib/group-member.c:
18974         * lib/hard-locale.c, lib/hash-pjw.c, lib/hash.c, lib/human.c:
18975         * lib/idcache.c, lib/inet_ntop.c, lib/inet_pton.c, lib/inttostr.c:
18976         * lib/isdir.c, lib/lchown.c, lib/linebuffer.c, lib/long-options.c:
18977         * lib/lstat.c, lib/malloc.c, lib/md5.c, lib/memcasecmp.c, lib/memchr.c:
18978         * lib/memcmp.c, lib/memcoll.c, lib/memcpy.c, lib/memmove.c:
18979         * lib/memrchr.c, lib/mkancesdirs.c, lib/mkdir-p.c, lib/mkdir.c:
18980         * lib/mkdirat.c, lib/mkstemp-safer.c, lib/mkstemp.c, lib/modechange.c:
18981         * lib/mountlist.c, lib/nanosleep.c, lib/obstack.c, lib/open-safer.c:
18982         * lib/openat-die.c, lib/openat.c, lib/pagealign_alloc.c, lib/physmem.c:
18983         * lib/pipe-safer.c, lib/posixtm.c, lib/posixver.c, lib/putenv.c:
18984         * lib/quote.c, lib/quotearg.c, lib/raise.c, lib/readtokens.c:
18985         * lib/readtokens0.c, lib/readutmp.c, lib/realloc.c, lib/regex.c:
18986         * lib/rename.c, lib/rmdir.c, lib/rpmatch.c, lib/safe-read.c:
18987         * lib/same.c, lib/save-cwd.c, lib/savedir.c, lib/setenv.c:
18988         * lib/settime.c, lib/sha1.c, lib/sig2str.c, lib/snprintf.c:
18989         * lib/strdup.c, lib/strerror.c, lib/strftime.c, lib/stripslash.c:
18990         * lib/strndup.c, lib/strnlen.c, lib/strpbrk.c, lib/strtod.c:
18991         * lib/strtoimax.c, lib/strtol.c, lib/strverscmp.c, lib/tempname.c:
18992         * lib/time_r.c, lib/timegm.c, lib/tmpfile-safer.c, lib/unlinkdir.c:
18993         * lib/userspec.c, lib/utime.c, lib/utimecmp.c, lib/utimens.c:
18994         * lib/version-etc-fsf.c, lib/version-etc.c, lib/xalloc-die.c:
18995         * lib/xgetcwd.c, lib/xgethostname.c, lib/xmalloc.c, lib/xmemcoll.c:
18996         * lib/xnanosleep.c, lib/xreadlink.c, lib/xstrtod.c, lib/xstrtoimax.c:
18997         * lib/xstrtol.c, lib/xstrtoumax.c, lib/yesno.c:
18998         Likewise.
18999
19000 2006-09-13  Eric Blake  <ebb9@byu.net>
19001
19002         * lib/getopt.c: Fix typo in last commit.
19003
19004 2006-09-12  Sergey Poznyakoff  <gray@gnu.org.ua>
19005
19006         * lib/argp-help.c (argp_doc): Make sure NULL is not passed to
19007         dgettext.
19008
19009 2006-09-12  Jim Meyering  <jim@meyering.net>
19010
19011         * lib/nanosleep.c: Include <sys/types.h> before sys/select.h, to avoid
19012         compilation failure (due to use of pid_t in latter) on NetBSD 1.6.
19013         Reported by Nelson H. F. Beebe.
19014
19015 2006-09-10  Sergey Poznyakoff  <gray@gnu.org.ua>
19016
19017         * lib/argp-parse.c (__argp_parse) [!_LIBC]: Make sure
19018         program_invocation_name and program_invocation_short_name are
19019         initialized.
19020         * lib/argp-namefrob.h: Move declarations of program_invocation_name
19021         and program_invocation_short_name to argp.h, so they are visible
19022         to user programs.
19023         * lib/argp.h: Likewise
19024
19025 2006-09-10  Bruno Haible  <bruno@clisp.org>
19026
19027         * modules/mkdtemp (Files): Remove m4/ulonglong.m4, m4/stdint_h.m4,
19028         m4/inttypes_h.m4, m4/uintmax_t.m4.
19029
19030 2006-09-10  Bruno Haible  <bruno@clisp.org>
19031
19032         * m4/mkdtemp.m4 (gl_PREREQ_MKDTEMP): Don't require
19033         gl_AC_TYPE_UINTMAX_T.
19034
19035 2006-09-10  Bruno Haible  <bruno@clisp.org>
19036
19037         * lib/mkdtemp.c: Include <stdint.h> always. Don't include <inttypes.h>.
19038
19039 2006-09-09  Sergey Poznyakoff  <gray@gnu.org.ua>
19040
19041         * lib/argp.h (struct argp): Document the N_("..") "\v" N_("..")
19042         convention.  Text proposed by Bruno Haible.
19043         (struct argp_option): Document the use of N_() wrappers.
19044
19045         * lib/argp-help.c (argp_doc): Split the untranslated doc string on
19046         '\v', and translate the two parts separately, instead of feeding
19047         the whole string to gettext.  This allows to exclude
19048         '\v' from the strings visible to the translator by writing doc
19049         strings as N_("..") "\v" N_("..").
19050
19051 2006-09-09  Paul Eggert  <eggert@cs.ucla.edu>
19052
19053         * config/srclist.txt: Undo latest change; the bug was fixed.
19054
19055 2006-09-09  Bruno Haible  <bruno@clisp.org>
19056
19057         * gnulib-tool (func_emit_lib_Makefile_am): Eliminate lib_LDFLAGS
19058         assignments if building a library without libtool.
19059         (func_emit_tests_Makefile_am): Likewise. Handle lib_* variables as
19060         in func_emit_lib_Makefile_am.
19061         (func_import): When building a static library libfoo.a, arrange to
19062         define variables LIBFOO_LIBDEPS and LIBFOO_LTLIBDEPS.
19063         (func_create_testdir): Likewise.
19064         * modules/gc (configure.ac, Makefile.am): If building statically,
19065         augment gl_libdeps and gl_ltlibdeps instead of lib_LDFLAGS.
19066         * modules/iconvme (configure.ac, Makefile.am): Likewise.
19067         * modules/striconv (configure.ac, Makefile.am): Likewise.
19068         Based on a suggestion by Ralf Wildenhues.
19069
19070 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
19071
19072         * m4/mktime.m4 (AC_FUNC_MKTIME): Sync from Autoconf.
19073         Check for unistd.h too, since Autoconf doesn't assume POSIX.
19074         Also:
19075
19076         2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
19077         Add year_2050_test to catch glibc bug 2821
19078         <http://sourceware.org/bugzilla/show_bug.cgi?id=2821>.
19079
19080         2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
19081         Prefer #ifdef to #if.
19082
19083         2006-04-02  Paul Eggert  <eggert@cs.ucla.edu>
19084         Return from 'main' instead of calling 'exit'.
19085
19086 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
19087
19088         * lib/mktime.c (guess_time_tm): Fix bug where mktime
19089         returned the maximum time_t value rather than (time_t) -1.
19090         Problem originally reported by William Bardwell
19091         <http://sourceware.org/bugzilla/show_bug.cgi?id=2821>.
19092
19093         * lib/isapipe.h (HAVE_FIFO_PIPES) [!defined HAVE_FIFO_PIPES]:
19094         Moved to here ...
19095         * lib/isapipe.c (HAVE_FIFO_PIPES) [!defined HAVE_FIFO_PIPES]:
19096         ... from here.
19097
19098 2006-09-08  Paul Eggert  <eggert@cs.ucla.edu>
19099
19100         * config/srclist.txt: Temporarily comment out mktime.c until glibc bug
19101         2821 is fixed.
19102
19103 2006-09-08  Jim Meyering  <jim@meyering.net>
19104
19105         Don't make generated files read-only.  That would bother too many
19106         people.  However, do retain the ability to work when targets are
19107         read-only: remove the destination and temporary files before writing
19108         them (when generated via sed or echo), or by using the -f option for
19109         both cp and mv commands.  Suggestion to use -f from Paul Eggert.
19110         * modules/alloca-opt, modules/argz, modules/arpa_inet:
19111         * modules/byteswap, modules/configmake, modules/fcntl:
19112         * modules/fnmatch, modules/getopt, modules/glob, modules/inttypes:
19113         * modules/localcharset, modules/netinet_in, modules/poll:
19114         * modules/stdbool, modules/stdint, modules/sys_select:
19115         * modules/sys_socket, modules/sys_stat, modules/sysexits:
19116
19117 2006-09-08  Jim Meyering  <jim@meyering.net>
19118
19119         Avoid new build failure on FreeBSD 6.0.
19120         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Include
19121         <sys/param.h> when testing whether getmntinfo uses statvfs.  Patch by
19122         Pavel Tsekov, in <http://savannah.gnu.org/bugs/?17643>.
19123
19124 2006-09-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
19125
19126         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Don't use plain echo.
19127
19128 2006-09-07  Jim Meyering  <jim@meyering.net>
19129
19130         Fix global typo in last change: use chmod u-w, not chmod u-x.
19131         Spotted by Paul Eggert and Bruce Korb.
19132         * modules/alloca-opt, modules/argz, modules/arpa_inet:
19133         * modules/byteswap, modules/configmake, modules/fcntl:
19134         * modules/fnmatch, modules/getopt, modules/glob, modules/inttypes:
19135         * modules/localcharset, modules/netinet_in, modules/poll:
19136         * modules/stdbool, modules/stdint, modules/sys_select:
19137         * modules/sys_socket, modules/sys_stat, modules/sysexits:
19138
19139 2006-09-06  Jim Meyering  <jim@meyering.net>
19140
19141         Make generated files be read-only.
19142         * modules/alloca-opt (Makefile.am): Work also when $@ is read-only.
19143         Ensure that each generated file is now read-only.
19144         * modules/argz: Likewise.
19145         * modules/arpa_inet: Likewise.
19146         * modules/byteswap: Likewise.
19147         * modules/configmake: Likewise.
19148         * modules/fcntl: Likewise.
19149         * modules/fnmatch: Likewise.
19150         * modules/getopt: Likewise.
19151         * modules/glob: Likewise.
19152         * modules/inttypes: Likewise.
19153         * modules/netinet_in: Likewise.
19154         * modules/poll: Likewise.
19155         * modules/stdbool: Likewise.
19156         * modules/stdint: Likewise.
19157         * modules/sys_select: Likewise.
19158         * modules/sys_socket: Likewise.
19159         * modules/sys_stat: Likewise.
19160         * modules/sysexits: Likewise.
19161         * modules/localcharset: Same as above, but continue using temporary
19162         file named "t-$@" (why different?) rather than the "$@-t" used
19163         everywhere else.
19164
19165         * modules/sysexits (Makefile.am): Replace literal occurrences
19166         of "sysexit.h" more readable, and more consistent, "$@".
19167
19168 2006-09-06  Bruno Haible  <bruno@clisp.org>
19169
19170         * modules/striconv: New file.
19171         * modules/xstriconv: New file.
19172         * MODULES.html.sh (Internationalization functions): Add striconv,
19173         xstriconv.
19174
19175 2006-09-06  Bruno Haible  <bruno@clisp.org>
19176
19177         * modules/gc (Makefile.am): Augment lib_LDFLAGS, not lib_LIBADD.
19178         * modules/iconvme (Makefile.am): Likewise. Also handle the case of
19179         not using libtool correctly.
19180
19181 2006-09-06  Bruno Haible  <bruno@clisp.org>
19182
19183         * lib/striconv.h: New file.
19184         * lib/striconv.c: New file, merging iconvme.c with GNU gettext's
19185         iconvstring.c.
19186         * lib/xstriconv.h: New file.
19187         * lib/xstriconv.c: New file.
19188
19189 2006-09-06  Bruno Haible  <bruno@clisp.org>
19190
19191         * gnulib-tool (func_emit_lib_Makefile_am): Initialize also
19192         lib_..._LDFLAGS.
19193
19194 2006-09-05  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
19195
19196         * lib/argz_.h: Sync from Libtool.
19197
19198         2006-09-04  George Bosilca <bosilca@cs.utk.edu>
19199                 and Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
19200
19201         * lib/libltdl/argz_.h: It's __cplusplus, not _cplusplus.
19202
19203 2006-09-05  Davide Angelocola  <davide.angelocola@tiscali.it>
19204
19205         * modules/trim: New file.
19206
19207 2006-09-05  Davide Angelocola  <davide.angelocola@tiscali.it>
19208
19209         * lib/trim.h: New file.
19210         * lib/trim.c: New file.
19211
19212 2006-09-05  Bruno Haible  <bruno@clisp.org>
19213
19214         * MODULES.html.sh (String handling): Add trim.
19215
19216 2006-09-04  Karl Berry  <karl@gnu.org>
19217
19218         * config/srclist.txt (signed.m4, gettext.m4): changes not propagated
19219         until next release.
19220
19221 2006-09-03  Bruno Haible  <bruno@clisp.org>
19222
19223         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Locate mingw shared libraries
19224         correctly.
19225
19226 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
19227
19228         * m4/getloadavg.m4 (gl_GETLOADAVG): Use CONFIGURING_GETLOADAVG,
19229         not gl_GETLOADAVG.  Omit unneeded semicolons.
19230         Problems reported by Ralf Wildenhues in
19231         <http://lists.gnu.org/archive/html/bug-gnulib/2006-09/msg00000.html>.
19232         (gl_PREREQ_GETLOADAVG): Use AC_DEFUN, not m4_define.  Put
19233         at the end, which is the usual gnulib style.
19234
19235         * m4/fstypename.m4 (gl_FSTYPENAME): Use AC_CHECK_MEMBERS instead
19236         of doing all the work ourselves.
19237         * m4/fsusage.m4 (gl_PREREQ_FSUSAGE_EXTRA): Don't check for
19238         sys/statvfs.h since the code doesn't use HAVE_SYS_STATVFS_H.
19239
19240 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
19241
19242         * lib/getloadavg.c: Use CONFIGURING_GETLOADAVG, not gl_GETLOADAVG.
19243         Problem reported by Ralf Wildenhues in
19244         <http://lists.gnu.org/archive/html/bug-gnulib/2006-09/msg00000.html>.
19245
19246         * lib/mountlist.c: All uses of HAVE_F_FSTYPENAME_IN_STATFS replaced by
19247         HAVE_STRUCT_STATFS_F_FSTYPENAME.
19248
19249 2006-09-01  Paul Eggert  <eggert@cs.ucla.edu>
19250
19251         * gnulib-tool (func_emit_lib_Makefile_am): Fix typos in
19252         yesterday's patch by changing test -n to test -z.
19253
19254 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
19255
19256         * modules/getloadavg (Files): Add m4/getloadavg.m4.
19257         (configure.ac): AC_FUNC_GETLOADAVG -> gl_GETLOADAVG, as
19258         the former is now obsolescent.
19259
19260         * modules/chdir-long (Depends-on): Add fcntl.
19261
19262 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
19263
19264         * m4/fnmatch.m4: Add comment that Autoconf AC_FUNC_FNMATCH is
19265         obsolescent, and programs should use gnulib instead.
19266         * m4/getloadavg.m4: New file, with contents taken from Autoconf
19267         but with prefixes changed.
19268
19269 2006-08-31  Paul Eggert  <eggert@cs.ucla.edu>
19270
19271         * lib/getloadavg.c [defined gl_GETLOADAVG]: Don't include config.h
19272         or stdbool.h, because they might not exist while configuring.
19273
19274         * lib/chdir-long.c: Include <fcntl.h>, for O_DIRECTORY.
19275         Don't include unistd.h or limits.h; not needed, since chdir-long.h
19276         does that for us.
19277         (O_DIRECTORY): Remove.
19278
19279 2006-08-31  Eric Blake  <ebb9@byu.net>
19280
19281         * gnulib-tool: Don't let emacs change spaces to TAB.
19282
19283 2006-08-31  Bruno Haible  <bruno@clisp.org>
19284
19285         * gnulib-tool: When calling func_import more than once, do it in a
19286         subshell.
19287         Reported by Eric Blake <ebb9@byu.net>.
19288
19289 2006-08-31  Bruno Haible  <bruno@clisp.org>
19290
19291         * gnulib-tool (nl): Remove variable.
19292         (sed_transform_lib_file): Use more robust test for config-h module.
19293         (func_import): Fix typo in 2006-08-25 patch.
19294
19295 2006-08-31  Bruno Haible  <bruno@clisp.org>
19296
19297         * gnulib-tool (func_emit_lib_Makefile_am): When --makefile-name was
19298         specified, augment Makefile.am variables instead of assigning them.
19299
19300 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
19301
19302         Work around a bug in both the Linux and SunOS 64-bit kernels:
19303         nanosleep mishandles sleeps for longer than 2**31 seconds.
19304         Problem reported by Frank v Waveren in
19305         <http://lists.gnu.org/archive/html/bug-coreutils/2006-08/msg00298.html>.
19306         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Require gl_CLOCK_TIME.
19307         Check for nanosleep bug.
19308         (LIB_NANOSLEEP): Append clock_gettime library if needed.
19309
19310 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
19311
19312         Work around a bug in both the Linux and SunOS 64-bit kernels:
19313         nanosleep mishandles sleeps for longer than 2**31 seconds.
19314         Problem reported by Frank v Waveren in
19315         <http://lists.gnu.org/archive/html/bug-coreutils/2006-08/msg00298.html>.
19316         * lib/nanosleep.c (BILLION): New constant.
19317         (getnow) [HAVE_BUG_BIG_NANOSLEEP]: New functions.
19318         (rpl_nanosleep) [HAVE_BUG_BIG_NANOSLEEP]: Completely new
19319         implementation.
19320
19321 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
19322
19323         * modules/nanosleep (Depends-on): Add gettime.
19324
19325 2006-08-30  Paul Eggert  <eggert@cs.ucla.edu>
19326         and Simon Josefsson  <jas@extundo.com>
19327         and Oskar Liljeblad  <oskar@osk.mine.nu>
19328
19329         * MODULES.html.sh (Support for building documentation): Add gpl, lgpl.
19330         * gnulib-tool (func_import): New license type 'unmodifiable license
19331         text'.
19332         * modules/fdl: Use it.  Longer description.
19333         * module/gpl, module/lgpl: New files.
19334
19335 2006-08-30  Jim Meyering  <jim@meyering.net>
19336
19337         * lib/isapipe.c (isapipe): Rename local s/fd/fd_pair/ to avoid
19338         shadowing the parameter.
19339
19340 2006-08-29  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
19341
19342         Sync from Libtool:
19343
19344         2006-08-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
19345
19346         * lib/libltdl/argz.c: Use `#ifdef HAVE_CONFIG_H', to facilitate code
19347         sharing with gnulib.  Report by Eric Blake.
19348
19349 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
19350
19351         * modules/isapipe: New file.
19352         * MODULES.html.sh (File descriptor based Input/Output): Add isapipe.
19353
19354 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
19355
19356         * modules/configmake (Makefile.am): Add a comment, and omit
19357         the CONFIGMAKE_ prefix from generated macro names.  Suggested
19358         by Bruno Haible.
19359
19360 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
19361
19362         * m4/isapipe.m4: New file.
19363
19364 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
19365
19366         * lib/isapipe.c, lib/isapipe.h: New files.
19367
19368 2006-08-29  Jim Meyering  <jim@meyering.net>
19369
19370         * modules/configmake (Makefile.am): Make configmake.h depend on
19371         Makefile.  Otherwise, a stale configmake.h could hang around.
19372
19373 2006-08-29  Eric Blake  <ebb9@byu.net>
19374
19375         * lib/error.c (error_at_line, print_errno_message): Match libc, after
19376         resolution of upstream bug 3044.
19377
19378 2006-08-29  Bruno Haible  <bruno@clisp.org>
19379
19380         * modules/localcharset (Depends-on): Add configmake.
19381         (Makefile.am): Remove setting of LIBDIR through DEFS.
19382
19383 2006-08-29  Bruno Haible  <bruno@clisp.org>
19384
19385         * lib/localcharset.c: Include configmake.h in order to get LIBDIR
19386         defined.
19387
19388 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
19389
19390         * modules/fcntl: New file.
19391         * modules/chdir-safer (Depends-on): Add fcntl.
19392         * modules/fts: Likewise.
19393         * modules/mkdir-p: Likewise.
19394
19395         * modules/stdint (Makefile.am): Do not substitute ABSOLUTE_INTTYPES_H.
19396         This undoes the most recent change, since we're now addressing the
19397         problem in a different way.
19398
19399         * gnulib-tool (emit_lib_Makefile_am): Don't put $makefile_name
19400         into output, since the output might be called Makefile.am even
19401         if $makefile_name is something different.
19402         (func_import): Use $makefile_am rather than
19403         ${makefile_name-Makefile.am}, to fix a bug where makefile_name was
19404         empty.
19405
19406         * modules/inttypes (Files): Add m4/inttypes-h.m4.
19407
19408 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
19409
19410         * m4/inttypes.m4 (gl_INTTYPES_H): Move ABSOLUTE_INTTYPES_H code here...
19411         * m4/stdint.m4 (gl_STDINT_H): ... from here.  This undoes the most
19412         recent change to stdint.m4, since we're now addressing the problem in a
19413         different way.
19414
19415 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
19416
19417         * m4/fcntl_h.m4: New file.
19418
19419 2006-08-28  Paul Eggert  <eggert@cs.ucla.edu>
19420
19421         * lib/fcntl_.h: New file.
19422         * lib/chdir-safer.c (O_DIRECTORY, O_NOFOLLOW): Remove, now that we have
19423         the fcntl module.
19424         * lib/dirchownmod.c: Likewise.
19425         * lib/fts.c: Likewise.
19426
19427         * lib/inttypes_.h [defined _GL_JUST_INCLUDE_ABSOLUTE_INTTYPES_H]:
19428         Include @ABSOLUTE_INTTYPES_H@ if available, but do nothing else.
19429         * lib/stdint_.h (_GL_JUST_INCLUDE_ABSOLUTE_INTTYPES_H): Define
19430         just before including <inttypes.h>, to avoid circular inclusion.
19431
19432 2006-08-28  Jim Meyering  <jim@meyering.net>
19433
19434         * doc/visibility.texi: Actually read and correct the grammar of the
19435         sentence affected by yesterday's change.
19436
19437 2006-08-28  Eric Blake  <ebb9@byu.net>
19438
19439         * modules/inttypes (Makefile.am): Fix sed error when inttypes.h
19440         needs wrapper.
19441
19442 2006-08-28  Eric Blake  <ebb9@byu.net>
19443
19444         * m4/inttypes.m4 (gl_INTTYPES_H): Fix missing #endif.
19445
19446 2006-08-28  Eric Blake  <ebb9@byu.net>
19447
19448         * m4/codeset.m4 (AM_LANGINFO_CODESET): Avoid compiler warning.
19449
19450 2006-08-28  Bruno Haible  <bruno@clisp.org>
19451
19452         * modules/c-strstr: New file, from GNU gettext.
19453         * MODULES.html.sh (String handling): Add c-strstr.
19454
19455 2006-08-28  Bruno Haible  <bruno@clisp.org>
19456
19457         * m4/inttypes.m4 (gl_INTTYPES_H): Don't test for the existence of SCNX*
19458         macros.
19459         Reported by Eric Blake.
19460
19461 2006-08-28  Bruno Haible  <bruno@clisp.org>
19462
19463         * lib/vasnprintf.c (EOVERFLOW): Remove definition.
19464         (VASNPRINTF): Return a string of length > INT_MAX without failing.
19465         * lib/vasprintf.c: Include errno.h, limits.h.
19466         (EOVERFLOW): New fallback definition.
19467         (vasprintf): Test here whether the string length is > INT_MAX.
19468         * lib/vsnprintf.c: Include errno.h, limits.h.
19469         (EOVERFLOW): New fallback definition.
19470         (vsnprintf): Fix bug when generated string was too long for the buffer.
19471         Test here whether the string length is > INT_MAX.
19472
19473 2006-08-28  Bruno Haible  <bruno@clisp.org>
19474
19475         * lib/inttypes_.h (SCNX*): Remove definitions.
19476         Reported by Eric Blake.
19477
19478 2006-08-28  Bruno Haible  <bruno@clisp.org>
19479
19480         * lib/c-strstr.h: New file, from GNU gettext.
19481         * lib/c-strstr.c: New file, from GNU gettext.
19482
19483 2006-08-28  Bruno Haible  <bruno@clisp.org>
19484
19485         * gnulib-tool: Reorder some statements.
19486
19487 2006-08-28  Bruno Haible  <bruno@clisp.org>
19488
19489         * gnulib-tool: New option --makefile-name.
19490         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am): Use
19491         $makefile_name.
19492         (func_import): Write $makefile_name to the cache file, and read it from
19493         there unless explicitly specified. Use $makefile_name as file name
19494         instead of Makefile.am. Adjust the recommendations accordingly.
19495
19496 2006-08-28  Bruno Haible  <bruno@clisp.org>
19497
19498         * gnulib-tool (func_verify_module): Check against misapplying patch.
19499
19500 2006-08-28  Bruno Haible  <bruno@clisp.org>
19501
19502         * gnulib-tool (func_relativize, func_relconcat): New functions.
19503         Give an error if --local-dir is given with --update.
19504         Remove trailing slashes from $local_gnulib_dir.
19505         (func_import): Store the relativized $local_gnulib_dir in
19506         gnulib-cache.m4, and read it from there if not specified explicitly.
19507
19508 2006-08-28  Bruno Haible  <bruno@clisp.org>
19509
19510         * gnulib-tool (func_get_tests_module): Don't assume that $gnulib_dir
19511         is the current directory. Respect also $local_gnulib_dir.
19512
19513 2006-08-28  Bruno Haible  <bruno@clisp.org>
19514             Simon Josefsson  <jas@extundo.com>
19515
19516         BeOS portability.
19517         * lib/getaddrinfo.c (PF_INET, PF_UNSPEC): New macros.
19518
19519 2006-08-27  Jim Meyering  <jim@meyering.net>
19520
19521         * doc/visibility.texi: Remove duplicate word: "pointer".
19522
19523 2006-08-26  Bruno Haible  <bruno@clisp.org>
19524
19525         * modules/inttypes (Files): Add lib/inttypes_.h, remove lib/inttypes.h.
19526         Add m4/inttypes.m4, remove m4/_inttypes_h.m4 and m4/include_next.m4.
19527         (Makefile.am): Create inttypes.h from inttypes_.h.
19528         * modules/stdint (Makefile.am): Substitute also ABSOLUTE_INTTYPES_H.
19529
19530         * modules/imaxabs: New file.
19531
19532         * modules/imaxdiv: New file.
19533
19534 2006-08-26  Bruno Haible  <bruno@clisp.org>
19535
19536         * m4/inttypes.m4: New file.
19537         * m4/_inttypes_h.m4: Remove file.
19538         * m4/inttypes-pri.m4 (gt_INTTYPES_PRI): Also AC_SUBST
19539         PRI_MACROS_BROKEN.
19540         * m4/stdint.m4 (gl_STDINT_H): Define also ABSOLUTE_INTTYPES_H.
19541
19542         * m4/imaxabs.m4: New file.
19543
19544         * m4/imaxdiv.m4: New file.
19545
19546 2006-08-26  Bruno Haible  <bruno@clisp.org>
19547
19548         * lib/inttypes_.h: New file.
19549         * lib/inttypes.h: Remove file.
19550         * lib/stdint_.h: Include <inttypes.h> through its absolute filename.
19551
19552         * lib/imaxabs.c: New file.
19553
19554         * lib/imaxdiv.c: New file.
19555
19556 2006-08-25  Paul Eggert  <eggert@cs.ucla.edu>
19557
19558         New config-h module, so that "make" output needn't be cluttered
19559         by -DHAVE_CONFIG_H.
19560         * MODULES.html.sh (Support for building libraries and executables):
19561         Add config-h.
19562         * modules/config-h: New file.
19563         * gnulib-tool (nl, sed_transform_lib_file): New vars.
19564         (func_import): Turn "#ifdef HAVE_CONFIG_H" to "#if 1" if
19565         the config-h module is used.
19566
19567         New configmake module, so that "make" output needn't be cluttered
19568         by fluff like '-DLIBDIR=\"/usr/local/lib\"'.
19569         * MODULES.html.sh (Support for building libraries and executables):
19570         Add configmake.
19571         * modules/configmake: New file.
19572
19573 2006-08-25  Paul Eggert  <eggert@cs.ucla.edu>
19574
19575         * m4/config-h.m4: New file.
19576
19577 2006-08-24  Paul Eggert  <eggert@cs.ucla.edu>
19578
19579         * config/srclist.txt: Add elisp-comp.
19580
19581 2006-08-24  Paul Eggert  <eggert@cs.ucla.edu>
19582
19583         * MODULES.html.sh (Support for building libraries and executables):
19584         Add elisp-comp.
19585         * build-aux/elisp-comp: New file.
19586         * modules/elisp-comp: New file.
19587
19588 2006-08-24  Bruno Haible  <bruno@clisp.org>
19589
19590         * gnulib-tool (func_create_testdir): Use non-default values of
19591         sourcebase and m4base.
19592
19593 2006-08-24  Bruno Haible  <bruno@clisp.org>
19594
19595         * MODULES.html.sh (Compatibility checks for POSIX:2001 functions: Fix
19596         HTML structure.
19597
19598 2006-08-23  Paul Eggert  <eggert@cs.ucla.edu>
19599
19600         * modules/openat (Depends-on): Add lchown.
19601
19602 2006-08-23  Bruno Haible  <bruno@clisp.org>
19603
19604         * gnulib-tool (func_import, func_create_testdir): Emit an invocation
19605         of gl_LOCK_EARLY instead of gl_LOCK.
19606
19607 2006-08-23  Bruno Haible  <bruno@clisp.org>
19608
19609         * m4/lock.m4 (gl_LOCK_BODY): Change the default value of gl_use_threads
19610         on OSF/1 to no.
19611         Reported by Stephen Cartwright <sgcartwr@ucalgary.ca>.
19612
19613 2006-08-23  Bruno Haible  <bruno@clisp.org>
19614
19615         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Don't consider BeOS statvfs
19616         as unusable.
19617
19618         * m4/lock.m4 (gl_LOCK_EARLY): Renamed from gl_LOCK.
19619         (gl_LOCK_BODY): Remove gl_PREREQ_LOCK invocation.
19620         (gl_LOCK): New macro.
19621
19622 2006-08-22  Simon Josefsson  <jas@extundo.com>
19623
19624         * modules/gc-md5 (Makefile.am): Need to add md5.h, after changes
19625         to md5 module.
19626
19627 2006-08-22  Simon Josefsson  <jas@extundo.com>
19628
19629         * MODULES.html.sh: Add "Support for maintaining and release
19630         projects".
19631
19632         * build-aux/gnupload: New file, from coreutils.
19633
19634 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
19635
19636         Avoid the need for AC_LIBSOURCES in m4 macros.
19637         * modules/arcfour (EXTRA_DIST): Add arcfour.h.
19638         * modules/arctwo (EXTRA_DIST): Add arctwo.h.
19639         * modules/check-version (EXTRA_DIST): Add check-version.h.
19640         * modules/crc (EXTRA_DIST): Add crc.h.
19641         * modules/des (EXTRA_DIST): Add des.h.
19642         * modules/gc (EXTRA_DIST): Add gc.h.
19643         * modules/getdelim (EXTRA_DIST): Add getdelim.h.
19644         * modules/getline (EXTRA_DIST): Add getline.h.
19645         * modules/getlogin_r (EXTRA_DIST): Add getlogin_r.h.
19646         * modules/hmac-md5 (EXTRA_DIST): Add hmac.h.
19647         * modules/hmac-sha1 (EXTRA_DIST): Add hmac.h.
19648         * modules/md2 (EXTRA_DIST): Add md2.h.
19649         * modules/md4 (EXTRA_DIST): Add md4.h.
19650         * modules/pagealign_alloc (EXTRA_DIST): Add pagealign_alloc.h.
19651         * modules/read-file (EXTRA_DIST): Add read-file.h.
19652         * modules/readline (EXTRA_DIST): Add readline.h.
19653         * modules/rijndael (EXTRA_DIST): Add rijndael-alg-fst.h,
19654         rijndael-api-fst.h.
19655
19656 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
19657
19658         * m4/rijndael.m4 (gl_ARCFOUR):
19659         * m4/arctwo.m4 (gl_ARCTWO):
19660         * m4/check-version.m4 (gl_CHECK_VERSION):
19661         * m4/crc.m4 (gl_CRC):
19662         * m4/des.m4 (gl_DES):
19663         * m4/gc-pbkdf2-sha1.m4 (gl_GC_PBKDF2_SHA1):
19664         * m4/gc.m4 (gl_GC):
19665         * m4/getdelim.m4 (gl_FUNC_GETDELIM):
19666         * m4/getline.m4 (gl_FUNC_GETLINE):
19667         * m4/getlogin_r.m4 (gl_GETLOGIN_R_SUBSTITUTE):
19668         * m4/hmac-md5.m4 (gl_HMAC_MD5):
19669         * m4/hmac-sha1.m4 (gl_HMAC_SHA1):
19670         * m4/md2.m4 (gl_MD2):
19671         * m4/md4.m4 (gl_MD4):
19672         * m4/pagealign_alloc.m4 (gl_PAGEALIGN_ALLOC):
19673         * m4/read-file.m4 (gl_FUNC_READ_FILE):
19674         * m4/readline.m4 (gl_FUNC_READLINE):
19675         * m4/rijndael.m4 (gl_RIJNDAEL):
19676         Don't use AC_LIBSOURCES; instead, rely on the files in ../modules/
19677         to get the necessary .h files and whatnot.
19678
19679 2006-08-22  Paul Eggert  <eggert@cs.ucla.edu>
19680
19681         * config/srclist.txt: Remove gnupload, since coreutils now syncs from
19682         gnulib rather than the other way around.
19683         * config/srclistvars.sh (COREUTILS): Remove.
19684
19685 2006-08-22  Jim Meyering  <jim@meyering.net>
19686
19687         * modules/mkdir-p (Makefile.am): Fix typo: s/lib+SOURCES/lib_SOURCES/.
19688
19689         * modules/getpass-gnu (Makefile.am): Add getpass.h to EXTRA_DIST.
19690
19691 2006-08-22  Eric Blake  <ebb9@byu.net>
19692
19693         * modules/regexprops-generic: New file.
19694         * MODULES.html.sh (Support for building documentation): List it.
19695
19696 2006-08-22  Eric Blake  <ebb9@byu.net>
19697
19698         * m4/stdint_h.m4 (gl_AC_HEADER_STDINT_H): Avoid compiler warning.
19699         * m4/inttypes_h.m4 (gl_AC_HEADER_INTTYPES_H): Likewise.
19700         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Likewise.
19701         * m4/intmax_t.m4 (gt_AC_TYPE_INTMAX_T): Likewise.
19702
19703 2006-08-22  Bruno Haible  <bruno@clisp.org>
19704
19705         * gnulib-tool (func_emit_lib_Makefile_am): Don't treat lib_LIBRARIES
19706         and lib_LTLIBRARIES like the other lib_* variables.
19707
19708 2006-08-22  Bruno Haible  <bruno@clisp.org>
19709
19710         * build-aux/x-to-1.in: New file, from GNU gettext.
19711
19712 2006-08-22  Bruno Haible  <bruno@clisp.org>
19713
19714         * m4/readutmp.m4 (gl_READUTMP): Compile readutmp.c only if <utmp.h> or
19715         <utmpx.h> exists.
19716
19717 2006-08-22  Bruno Haible  <bruno@clisp.org>
19718
19719         * lib/readutmp.h: Skip most definitions if neither <utmp.h> nor
19720         <utmpx.h> exists.
19721
19722 2006-08-21  Paul Eggert  <eggert@cs.ucla.edu>
19723
19724         BeOS portability.
19725         * lib/dirchownmod.c (dirchownmod): Don't use fchmod if it doesn't
19726         exist.
19727         Problem reported by Bruno Haible.
19728
19729 2006-08-21  Paul Eggert  <eggert@cs.ucla.edu>
19730
19731         Avoid the need for AC_LIBSOURCES in m4 macros.
19732         * modules/acl (EXTRA_DIST): Add acl.h.
19733         * modules/argmatch (Files): Add m4/argmatch.m4.
19734         (configure.ac): Add gl_ARGMATCH.
19735         (EXTRA_DIST): Renamed from lib_SOURCES, for
19736         consistency with the other modules.  Remove argmatch.c.
19737         * modules/backupfile (EXTRA_DIST): Add backupfile.h.
19738         * modules/c-strtod (EXTRA_DIST): Add c-strtod.h.
19739         * modules/c-strtold (EXTRA_DIST): Add c-strtod.c, c-strtod.h.
19740         * modules/canonhost (EXTRA_DIST): Add c-canonhost.h.
19741         * modules/canonicalize (EXTRA_DIST): Add canonicalize.h.
19742         * modules/chdir-long (EXTRA_DIST): Add chdir-long.h.
19743         * modules/chdir-safer (EXTRA_DIST): Add chdir-safer.h.
19744         * modules/cloexec (EXTRA_DIST): Add cloexec.h.
19745         * modules/close-stream (EXTRA_DIST): Add close-stream.h.
19746         * modules/closeout (EXTRA_DIST): Add closeout.h.
19747         * modules/cycle-check (EXTRA_DIST): Add cycle-check.h.
19748         * modules/dev-ino (EXTRA_DIST): Add dev-ino.h.
19749         * modules/dirfd (EXTRA_DIST): Add dirfd.h.
19750         * modules/dirname (EXTRA_DIST): Renamed from lib_SOURCES.  Add
19751         dirname.h; remove basename.c and stripslash.c.
19752         * modules/exclude (EXTRA_DIST): Add exclude.h.
19753         * modules/exitfail (EXTRA_DIST): Add exitfail.h.
19754         * modules/fcntl-safer (EXTRA_DIST): Add fcntl-safer.h fcntl--.h.
19755         * modules/file-type (EXTRA_DIST): Add file-type.h.
19756         * modules/filemode (EXTRA_DIST): Add filemode.h.
19757         * modules/filenamecat (EXTRA_DIST): Add filenamecat.h.
19758         * modules/fopen-safer (EXTRA_DIST): Add stdio-safer.h stdio--.h.
19759         * modules/fpending (EXTRA_DIST): Add __fpending.h.
19760         * modules/fprintftime (EXTRA_DIST): Add fprintftime.h.
19761         * modules/fsusage (EXTRA_DIST): Add fsusage.h.
19762         * modules/fts (EXTRA_DIST): Add fts_.h fts-cycle.c.
19763         * modules/getcwd (EXTRA_DIST): Add getcwd.h.
19764         * modules/getdate (EXTRA_DIST): Add getdate.c.
19765         * modules/gethrxtime (EXTRA_DIST): Add gethrxtime.h xtime.h.
19766         * modules/getpagesize (EXTRA_DIST): Add getpagesize.h.
19767         * modules/getpass (EXTRA_DIST): Add getpass.h.
19768         * modules/glob (EXTRA_DIST): Add glob_.h glob-libc.h.
19769         * modules/group-member (EXTRA_DIST): Add group-member.h.
19770         * modules/hard-locale (EXTRA_DIST): Add hard-locale.h.
19771         * modules/hash (EXTRA_DIST): Add hash.h.
19772         * modules/human (EXTRA_DIST): Add human.h.
19773         * modules/inttypes (EXTRA_DIST): Add inttypes.h.
19774         * modules/lchmod (EXTRA_DIST): Add lchmod.h.
19775         * modules/lchown (EXTRA_DIST): Add lchown.h.
19776         * modules/long-options (EXTRA_DIST): Add long-options.h.
19777         * modules/lstat (EXTRA_DIST): Add lstat.h.
19778         * modules/md5 (EXTRA_DIST): Add memcasecmp.h.
19779         * modules/memcoll (EXTRA_DIST): Add memcoll.h.
19780         * modules/mempcpy (EXTRA_DIST): Add mempcpy.h.
19781         * modules/memrchr (EXTRA_DIST): Add memrchr.h.
19782         * modules/memxor (EXTRA_DIST): Add memxor.h.
19783         * modules/mkancesdirs (EXTRA_DIST): Add mkancesdirs.h.
19784         * modules/mkdir-p (EXTRA_DIST): Add modechange.h.
19785         * modules/mountlist (EXTRA_DIST): Add mountlist.h.
19786         * modules/openat (EXTRA_DIST): Add at-func.c openat.h openat-priv.h.
19787         * modules/pathmax (EXTRA_DIST): Add pathmax.h.
19788         * modules/physmem (EXTRA_DIST): Add physmem.h.
19789         * modules/posixtm (EXTRA_DIST): Add posixtm.h.
19790         * modules/posixver (EXTRA_DIST): Add posixver.h.
19791         * modules/quote (EXTRA_DIST): Add quote.h.
19792         * modules/quotearg (EXTRA_DIST): Add quotearg.h.
19793         * modules/readtokens (EXTRA_DIST): Add readtokens.h.
19794         * modules/readutmp (EXTRA_DIST): Add readutmp.h.
19795         * modules/regex (EXTRA_DIST): Add regcomp.c regex.h regex_internal.c
19796         regex_internal.h regexec.c.
19797         * modules/safe-read (EXTRA_DIST): Add safe-read.h.
19798         * modules/safe-write (EXTRA_DIST): Add safe-write.h.
19799         * modules/same (EXTRA_DIST): Add same.h.
19800         * modules/same-inode (EXTRA_DIST): Add same-inode.h.
19801         * modules/save-cwd (EXTRA_DIST): Add save-cwd.h.
19802         * modules/savedir (EXTRA_DIST): Add savedir.h.
19803         * modules/sha1 (EXTRA_DIST): Add sha1.h.
19804         * modules/sig2str (EXTRA_DIST): Add sig2str.h.
19805         * modules/stat-macros (EXTRA_DIST): Add stat-macros.h.
19806         * modules/stat-time (EXTRA_DIST): Add stat-time.h.
19807         * modules/stdlib-safer (EXTRA_DIST): Add stdlib-safer.h stdlib--.h.
19808         * modules/strdup (EXTRA_DIST): Add strdup.h.
19809         * modules/strftime (EXTRA_DIST): Add strftime.h.
19810         * modules/strndup (EXTRA_DIST): Add strndup.h.
19811         * modules/strnlen (EXTRA_DIST): Add strnlen.h.
19812         * modules/strverscmp (EXTRA_DIST): Add strverscmp.h.
19813         * modules/time_r (EXTRA_DIST): Add time_r.h.
19814         * modules/timespec (EXTRA_DIST): Add timespec.h.
19815         * modules/tmpfile-safer (EXTRA_DIST): Add stdio-safer.h stdio--.h.
19816         * modules/unistd-safer (EXTRA_DIST): Add unistd-safer.h unistd--.h.
19817         * modules/unlinkdir (EXTRA_DIST): Add unlinkdir.h.
19818         * modules/unlocked-io (EXTRA_DIST): Add unlocked-io.h.
19819         * modules/userspec (EXTRA_DIST): Add userspec.h.
19820         * modules/utimecmp (EXTRA_DIST): Add utimecmp.h.
19821         * modules/utimens (EXTRA_DIST): Add utimens.h.
19822         * modules/xalloc (EXTRA_DIST): Add xalloc.h.
19823         * modules/xgetcwd (EXTRA_DIST): Add xgetcwd.h.
19824         * modules/xnanosleep (EXTRA_DIST): Add xnanosleep.h.
19825         * modules/xreadlink (EXTRA_DIST): Add xreadlink.h.
19826         * modules/xstrtod (EXTRA_DIST): Add xstrtod.h.
19827         * modules/xstrtol (EXTRA_DIST): Add xstrtol.h.
19828         * modules/xstrtold (EXTRA_DIST): Add xstrtod.c xstrtod.h.
19829         * modules/yesno (EXTRA_DIST): Add yesno.h.
19830
19831 2006-08-21  Paul Eggert  <eggert@cs.ucla.edu>
19832
19833         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Check for fchmod.
19834
19835         * m4/argmatch.m4: New file, from coreutils with AC_LIBSOURCES removed.
19836         * m4/dev-ino.m4, same-inode.m4: Remove.
19837
19838         * m4/_inttypes_h.m4 (gl_INTTYPES_H):
19839         * m4/acl.m4 (AC_FUNC_ACL):
19840         * m4/backupfile.m4 (gl_BACKUPFILE):
19841         * m4/c-strtod.m4 (gl_C99_STRTOLD):
19842         * m4/canon-host.m4 (gl_CANON_HOST):
19843         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME):
19844         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG):
19845         * m4/chdir-safer.m4 (gl_CHDIR_SAFER):
19846         * m4/cloexec.m4 (gl_CLOEXEC):
19847         * m4/close-stream.m4 (gl_CLOSE_STREAM):
19848         * m4/closeout.m4 (gl_CLOSEOUT):
19849         * m4/dirfd.m4 (gl_FUNC_DIRFD):
19850         * m4/dirname.m4 (gl_DIRNAME):
19851         * m4/exclude.m4 (gl_EXCLUDE):
19852         * m4/exitfail.m4 (gl_EXITFAIL):
19853         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER):
19854         * m4/file-type.m4 (gl_FILE_TYPE):
19855         * m4/filemode.m4 (gl_FILEMODE):
19856         * m4/filenamecat.m4 (gl_FILE_NAME_CONCAT):
19857         * m4/fpending.m4 (gl_FUNC_FPENDING):
19858         * m4/fprintftime.m4 (gl_FPRINTFTIME):
19859         * m4/fts.m4 (gl_FUNC_FTS):
19860         * m4/getcwd.m4 (gl_FUNC_GETCWD_NULL):
19861         * m4/getdate.m4 (gl_GETDATE):
19862         * m4/gethrxtime.m4 (gl_GETHRXTIME):
19863         * m4/getpagesize.m4 (gl_GETPAGESIZE):
19864         * m4/getpass.m4 (gl_FUNC_GETPASS):
19865         * m4/gettime.m4 (gl_GETTIME):
19866         * m4/getugroups.m4 (gl_GETUGROUPS):
19867         * m4/glob.m4 (gl_GLOB_SUBSTITUTE):
19868         * m4/group-member.m4 (gl_FUNC_GROUP_MEMBER):
19869         * m4/hard-locale.m4 (gl_HARD_LOCALE):
19870         * m4/hash.m4 (gl_HASH):
19871         * m4/idcache.m4 (gl_IDCACHE):
19872         * m4/lchmod.m4 (gl_FUNC_LCHMOD):
19873         * m4/lchown.m4 (gl_FUNC_LCHOWN):
19874         * m4/long-options.m4 (gl_LONG_OPTIONS):
19875         * m4/lstat.m4 (gl_FUNC_LSTAT):
19876         * m4/md5.m4 (gl_MD5):
19877         * m4/memcasecmp.m4 (gl_MEMCASECMP):
19878         * m4/memcoll.m4 (gl_MEMCOLL):
19879         * m4/mempcpy.m4 (gl_FUNC_MEMPCPY):
19880         * m4/memrchr.m4 (gl_FUNC_MEMRCHR):
19881         * m4/memxor.m4 (gl_MEMXOR):
19882         * m4/mkancesdirs.m4 (gl_MKANCESDIRS):
19883         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS):
19884         * m4/modechange.m4 (gl_MODECHANGE):
19885         * m4/mountlist.m4 (gl_MOUNTLIST):
19886         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP):
19887         * m4/openat.m4 (gl_FUNC_OPENAT):
19888         * m4/pathmax.m4 (gl_PATHMAX):
19889         * m4/physmem.m4 (gl_PHYSMEM):
19890         * m4/posixtm.m4 (gl_POSIXTM):
19891         * m4/posixver.m4 (gl_POSIXVER):
19892         * m4/quote.m4 (gl_QUOTE):
19893         * m4/quotearg.m4 (gl_QUOTEARG):
19894         * m4/readtokens.m4 (gl_READTOKENS):
19895         * m4/readutmp.m4 (gl_READUTMP):
19896         * m4/regex.m4 (gl_REGEX):
19897         * m4/safe-read.m4 (gl_SAFE_READ):
19898         * m4/safe-write.m4 (gl_SAFE_WRITE):
19899         * m4/same.m4 (gl_SAME):
19900         * m4/save-cwd.m4 (gl_SAVE_CWD):
19901         * m4/savedir.m4 (gl_SAVEDIR):
19902         * m4/settime.m4 (gl_SETTIME):
19903         * m4/sha1.m4 (gl_SHA1):
19904         * m4/sig2str.m4 (gl_FUNC_SIG2STR):
19905         * m4/stat-macros.m4 (gl_STAT_MACROS):
19906         * m4/stat-time.m4 (gl_STAT_TIME):
19907         * m4/stdio-safer.m4 (gl_FOPEN_SAFER):
19908         * m4/stdlib-safer.m4 (gl_STDLIB_SAFER):
19909         * m4/strdup.m4 (gl_FUNC_STRDUP):
19910         * m4/strftime.m4 (gl_FUNC_GNU_STRFTIME):
19911         * m4/strndup.m4 (gl_FUNC_STRNDUP):
19912         * m4/strnlen.m4 (gl_FUNC_STRNLEN):
19913         * m4/strverscmp.m4 (gl_FUNC_STRVERSCMP):
19914         * m4/time_r.m4 (gl_TIME_R):
19915         * m4/timespec.m4 (gl_TIMESPEC):
19916         * m4/unistd-safer.m4 (gl_UNISTD_SAFER):
19917         * m4/unlinkdir.m4 (gl_UNLINKDIR):
19918         * m4/unlocked-io.m4 (gl_FUNC_GLIBC_UNLOCKED_IO):
19919         * m4/userspec.m4 (gl_USERSPEC):
19920         * m4/utimecmp.m4 (gl_UTIMECMP):
19921         * m4/utimens.m4 (gl_UTIMENS):
19922         * m4/xalloc.m4 (gl_XALLOC):
19923         * m4/xgetcwd.m4 (gl_XGETCWD):
19924         * m4/xnanosleep.m4 (gl_XNANOSLEEP):
19925         * m4/xreadlink.m4 (gl_XREADLINK):
19926         * m4/xstrtod.m4 (gl_XSTRTOD):
19927         * m4/yesno.m4 (gl_YESNO):
19928         Don't use AC_LIBSOURCES; instead, rely on the files in ../modules/
19929         to get the necessary .h files and whatnot.
19930
19931 2006-08-21  Mark D. Baushke  <mdb@gnu.org>
19932             Bruno Haible  <bruno@clisp.org>
19933
19934         * gnulib-tool (func_verify_module): Work around Sun's non-POSIX 1003.2
19935         /bin/sh understanding of '!' conditional negation.
19936
19937 2006-08-21  Jim Meyering  <jim@meyering.net>
19938
19939         * modules/openat (Depends-on): Really alphabetize.
19940
19941         * modules/acl (Depends-on): Add error and quote.
19942
19943         * check-module (find_included_lib_files): Add at-func.c to the
19944         ok-to-include-more-than-once white list.
19945
19946         * modules/openat (Depends-on): Add lstat.  Alphabetize.
19947
19948 2006-08-21  Bruno Haible  <bruno@clisp.org>
19949
19950         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
19951         Emit a pkgdata_DATA variable only if some snippets add contents to it.
19952         Reported by Martin Lambers <marlam@marlam.de>.
19953
19954 2006-08-21  Bruno Haible  <bruno@clisp.org>
19955
19956         * gnulib-tool (func_emit_lib_Makefile_am): If the snippets already
19957         specify an installation location, don't emit a noinst_LIBRARIES or
19958         noinst_LTLIBRARIES assignment.
19959
19960 2006-08-21  Bruno Haible  <bruno@clisp.org>
19961
19962         BeOS portability.
19963         * modules/mbchar (Include): Don't test HAVE_WCTYPE_H any more, since
19964         BeOS has mbrtowc() but no <wctype.h>.
19965
19966 2006-08-21  Bruno Haible  <bruno@clisp.org>
19967
19968         BeOS portability.
19969         * m4/mbchar.m4 (gl_MBCHAR): Compile mbchar.c also if <wctype.h> doesn't
19970         exist.
19971
19972 2006-08-21  Bruno Haible  <bruno@clisp.org>
19973
19974         BeOS portability.
19975         * lib/mbchar.h: Include <wctype.h> only if it exists.
19976
19977 2006-08-20  Paul Eggert  <eggert@cs.ucla.edu>
19978
19979         Remove files that are no longer needed by their respective modules.
19980         * m4/obstack.m4: Remove.
19981         * m4/strerror_r.m4: Remove.
19982         * m4/uint32_t.m4: Remove.
19983         * m4/uintptr_t.m4: Remove.
19984         * m4/ullong_max.m4: Remove.
19985         * m4/xstrtoimax.m4: Remove.
19986         * m4/xstrtoumax.m4: Remove.
19987
19988         * m4/cycle-check.m4 (gl_CYCLE_CHECK): Do not require
19989         gl_AC_TYPE_UINTMAX_T, gl_STRUCT_DEV_INO, or gl_SAME_INODE, since gnulib
19990         dependencies now capture this.
19991
19992         * m4/cycle-check.m4 (gl_CYCLE_CHECK):
19993         Do not use AC_LIBSOURCES, since gnulib modules now do this.
19994         * m4/fsusage.m4 (gl_FSUSAGE): Likewise.
19995         * m4/human.m4 (gl_HUMAN): Likewise.
19996         * m4/inttostr.m4 (gl_INTTOSTR): Likewise.
19997         * m4/xstrtol.m4 (gl_XSTRTOL): Likewise.
19998
19999         * m4/filemode.m4 (gl_FILEMODE): Require AC_STRUCT_ST_DM_MODE.
20000
20001         * m4/filemode.m4 (gl_PREREQ_FSUSAGE_EXTRA): Do not require
20002         gl_AC_TYPE_INTMAX_T or gl_AC_TYPE_UINTMAX_T, since we now require
20003         stdint.
20004         * m4/human.m4 (gl_HUMAN): Likewise.
20005         * m4/inttostr.m4 (gl_PREREQ_INTTOSTR): Likewise.
20006         * m4/mkstemp.m4 (gl_PREREQ_TEMPNAME): Likewise.
20007         * m4/strtoimax.m4 (gl_PREREQ_STRTOIMAX): Likewise.
20008         * m4/strtoumax.m4 (gl_PREREQ_STRTOUMAX): Likewise.
20009         * m4/xstrtol (gl_XSTRTOL): Likewise.
20010
20011         * m4/gethrxtime.m4 (gl_XTIME): gl_AC_TYPE_LONG_LONG ->
20012         AC_TYPE_LONG_LONG_INT.
20013         * m4/strtoimax.m4 (gl_PREREQ_STRTOIMAX): Likewise.
20014         * m4/strtoll.m4 (gl_FUNC_STRTOLL): Likewise.
20015         * m4/strtoull.m4 (gl_FUNC_STRTOULL): Likewise, for unsigned long.
20016         * m4/strtoumax.m4 (gl_PREREQ_STRTOUMAX): Likewise.
20017
20018         * m4/human.m4 (gl_HUMAN): Do not require AM_STDBOOL_H since we depend
20019         on stdbool.
20020
20021         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL_H, gl_PREREQ_XSTRTOL): Remove.
20022         (gl_PREREQ_XSTRTOUL): Remove.
20023
20024         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Check for hasmntopt.
20025
20026         * m4/posixver.m4: Fix comment since head -1 now works even in POSIX
20027         mode.
20028
20029 2006-08-20  Paul Eggert  <eggert@cs.ucla.edu>
20030
20031         Add and change modules to make it easier for coreutils to use
20032         gnulib-tool.
20033         * modules/backupfile (Files): Remove m4/d-ino.m4.
20034         (Depends-on): Add d-ino.
20035         * modules/cycle-check (Depends-on): Add stdint.
20036         (lib_SOURCES): Add cycle-check.h.
20037         * modules/d-ino: New module.
20038         * modules/d-type: New module.
20039         * modules/error (Files): Remove m4/strerror_r.m4.
20040         * modules/filemode (Files): Add m4/st_dm_mode.m4.
20041         * modules/fsuage (Files): Remove m4/ulonglong.m4, m4/stdint_h.m4,
20042         m4/inttypes_h.m4, m4/uintmax_t.m4.
20043         (Depends-on): Add stdint.
20044         (lib_SOURCES): Add fsusage.h.
20045         * modules/getcwd (Files): Remove d-ino.m4.
20046         (Depends-on): Add d-ino.
20047         * modules/getndelim2 (Depends-on): Add stdint.
20048         * modules/glob (Files): Remove m4/d-type.m4.
20049         (Depends-on): Add d-type.
20050         * modules/host-os: New module.
20051         * modules/human (Files):  Remove m4/ulonglong.m4, m4/stdint_h.m4,
20052         m4/inttypes_h.m4, m4/uintmax_t.m4.
20053         * Depends-on: Add stdint.
20054         (lib_SOURCES): Add human.h.
20055         * modules/inttostr (Files): Remove m4/intmax_t.m4,
20056         m4/inttostr.m4, m4/inttypes_h.m4, m4/longlong.m4, m4/stdint_h.m4,
20057         m4/uintmax_t.m4, m4/ulonglong.m4.
20058         (Depends-on): Add stdint.
20059         (EXTRA_DIST): Add inttostr.h.
20060         * modules/lchmod: New module.
20061         * modules/link-follow: New module.
20062         * modules/mkdir-p (Files): Remove lib/lchmod.h, m4/lchmod.m4.
20063         (Depends-on): Add lchmod.
20064         * modules/mkstemp (Files): Remove m4/ulonglong.m4,
20065         m4/stdint_h.m4, m4/inttypes_h.m4, m4/uintmax_t.m4.
20066         (Depends-on): Add stdint.
20067         * modules/obstack (Files): Remove m4/inttypes_h.m4, m4/obstack.m4,
20068         m4/stdint_h.m4, m4/uintmax_t.m4, m4/ulonglong.m4.
20069         (Depends-on): Add stdint.
20070         (configure.ac): Change gl_OBSTACK to AC_FUNC_OBSTACK.
20071         * modules/perl: New module.
20072         * modules/regex (Depends-on): Add stdint.
20073         * modules/rmdir-errno: New module.
20074         * modules/strtoimax (Files): Remove m4/stdint_h.m4, m4/inttypes_h.m4,
20075         m4/intmax_t.m4.
20076         (Depends-on): Add stdint.
20077         * modules/strtoumax (Files): Remove m4/stdint_h.m4, m4/inttypes_h.m4,
20078         m4/uintmax_t.m4.
20079         (Depends-on): Add stdint.
20080         * modules/unlink-busy: New module.
20081         * modules/utimecmp (Depends-on): Add stdint.
20082         * modules/uptime: New module.
20083         * modules/winsz-ioctl: New module.
20084         * modules/winsz-termios: New module.
20085         * modules/xnanosleep (Depends-on): Add nanosleep.
20086         * modules/ullong_max: Remove.
20087         * modules/xstrtoimax (Files): Remove m4/xstrtoimax.m4.
20088         (configure.ac): Remove gl_XSTRTOIMAX; no action needed now.
20089         * modules/xstrtol (Files): Remove m4/ulonglong.m4, m4/longlong.m4,
20090         m4/stdint_h.m4, m4/inttypes_h.m4, m4/uintmax_t.m4, m4/intmax_t.m4.
20091         (Depends-on): Add inttypes.
20092         (lib_SOURCES): Add xstrtol.h.
20093         * modules/xstrtoumax (Files): Remove m4/xstrtoumax.m4.
20094         (configure.ac): Remove gl_XSTRTOUMAX; no action needed now.
20095         * MODULES.html.sh: Move 'assert' into the assert section.
20096         Move 'dummy' into the linking section.
20097         Remove ullong_max.
20098         Add section for compatibility checks for POSIX:2001 functions,
20099         and put d-ino, d-type, link-follow, rmdir-errno, unlink-busy,
20100         winsz-ioctl, and winsz-termios into it.
20101         Add lchmod.
20102         Add top-level Misc section and put host-os, perl, and uptime
20103         into it.
20104
20105 2006-08-20  Paul Eggert  <eggert@cs.ucla.edu>
20106
20107         * lib/cycle-check.h: Include <stdint.h> unconditionally, since we
20108         now assume the stdint module.  Do not include inttypes.h.
20109         * lib/fsusage.h: Likewise.
20110         * lib/getndelim2.c: Likewise.
20111         * lib/human.h: Likewise.
20112         * lib/inttostr.h: Likewise.
20113         * lib/obstack.c: Likewise.
20114         * lib/regex_internal.h: Likewise.
20115         * lib/tempname.c: Likewise.
20116         * lib/utimecmp.c: Likewise.
20117         * lib/xstrtol.h: Likewise.
20118
20119         * lib/stat_.h: Fix typo: HAVE_FUNC_LSTAT -> HAVE_LSTAT.
20120
20121         * lib/strtoimax.c: Adjust to macro name changes in Autoconf,
20122         e.g., HAVE_LONG_LONG -> HAVE_LONG_LONG_INT.
20123         * lib/xtime.h: Likewise.
20124
20125 2006-08-19  Paul Eggert  <eggert@cs.ucla.edu>
20126
20127         * modules/openat (Files): Add lib/fchmodat.c.
20128         Fixes problem reported by Jay Youngman.
20129
20130 2006-08-19  Paul Eggert  <eggert@cs.ucla.edu>
20131
20132         * lib/fchmodat.c: New file, from coreutils.  This was inadvertently
20133         omitted in the 2006-08-17 update.  Problem reported by Jay Youngman.
20134
20135 2006-08-18  Paul Eggert  <eggert@cs.ucla.edu>
20136             Bruno Haible  <bruno@clisp.org>
20137
20138         * m4/bison-i18n.m4 (BISON_I18N): Also handle the case where yacc exists
20139         and is a script that invokes bison. Tighten the code. Add comments.
20140
20141 2006-08-18  Jim Meyering  <jim@meyering.net>
20142
20143         * m4/gethrxtime.m4 (gl_PREREQ_GETHRXTIME): Also check for
20144         CLOCK_REALTIME, since gethrxtime may revert to using clock_gettime via
20145         gettime.c.  Gabor Z. Papp reported that gethrxtime-using programs
20146         failed to link due to unresolved clock_gettime on a linux-2.4.x system.
20147
20148 2006-08-18  Bruno Haible  <bruno@clisp.org>
20149
20150         * modules/bison-i18n: New file.
20151         * MODULES.html.sh (Internationalization functions): Add it.
20152
20153 2006-08-18  Bruno Haible  <bruno@clisp.org>
20154
20155         * m4/ls-mntd-fs.m4 (gl_LIST_MOUNTED_FILE_SYSTEMS): Also check for
20156         sys/statvfs.h. When getmntinfo was found, check its declaration and
20157         set either MOUNTED_GETMNTINFO or MOUNTED_GETMNTINFO2 depending on it.
20158
20159 2006-08-18  Bruno Haible  <bruno@clisp.org>
20160
20161         * m4/bison-i18n.m4: New file, from bison.
20162
20163 2006-08-18  Bruno Haible  <bruno@clisp.org>
20164
20165         * lib/mountlist.c [MOUNTED_GETMNTINFO2]: Include sys/statvfs.h.
20166         (ME_DUMMY): Treat "kernfs" as a dummy.
20167         (read_file_system_list) [MOUNTED_GETMNTINFO2]: Implement.
20168
20169 2006-08-17  Paul Eggert  <eggert@cs.ucla.edu>
20170
20171         Update from coreutils.
20172
20173         2006-08-15  Jim Meyering  <jim@meyering.net>
20174
20175         * m4/openat.m4 (gl_FUNC_OPENAT): Add at-func.c via AC_LIBSOURCES.
20176
20177         2006-01-17  Jim Meyering  <jim@meyering.net>
20178
20179         * m4/fts.m4 (gl_FUNC_FTS_CORE): Depend on gl_FUNC_OPENAT.
20180
20181         2006-01-11  Jim Meyering  <jim@meyering.net>
20182
20183         * m4/openat.m4 (gl_FUNC_OPENAT): Require and compile fchmodat.c.
20184         Check for the lchmod function.
20185
20186 2006-08-17  Paul Eggert  <eggert@cs.ucla.edu>
20187
20188         Update from coreutils.
20189
20190         * lib/__fpending.h: Add copyright notice.
20191         * lib/fprintftime.h: Likewise.
20192         * lib/savedir.c: Use (C) in copyright notice.
20193         * lib/savedir.h: Likewise.
20194
20195         2006-08-15  Jim Meyering  <jim@meyering.net>
20196
20197         * lib/at-func.c: New file, with the logic of all emulated at-functions.
20198         * lib/openat-priv.h: Include <errno.h> and define ENOSYS,
20199         in support of the EXPECTED_ERRNO macro.
20200         * lib/openat.c (fstatat, unlinkat, fchownat): Remove function
20201         definitions.  Instead, define the appropriate symbols and include
20202         "at-func.c".
20203         * lib/mkdirat.c (mkdirat): Likewise.
20204         * lib/fchmodat.c (fchmodat): Likewise.
20205         (ENOSYS): Remove definition.
20206         * lib/openat.c: Don't include <errno.h>, now that "openat-priv.h" does
20207         it.  Don't include "unistd--.h" -- it wasn't ever used.
20208
20209         2006-01-17  Jim Meyering  <jim@meyering.net>
20210
20211         Rewrite fts.c not to change the current working directory,
20212         by using openat, fstatat, fdopendir, etc..
20213
20214         * lib/fts.c [! _LIBC]: Include "openat.h" and "unistd--.h".
20215         (HAVE_OPENAT_SUPPORT): Define.
20216         [_LIBC] (fchdir): Don't undef or define; no longer used.
20217         (FCHDIR): Define in terms of cwd_advance_fd rather than fchdir.
20218         Now, this `function' always succeeds, and consumes its file descriptor
20219         parameter -- so callers must not close such FDs.  Update callers.
20220         (diropen_fd, opendirat, cwd_advance_fd): New functions.
20221         (diropen): Add parameter, SP.  Adjust all callers.
20222         Implement using diropen_fd, rather than open.
20223         (fts_open): Initialize new member, fts_cwd_fd.
20224         Remove fts_rft-setting code.
20225         (fts_close): Close fts_cwd_fd, if necessary.
20226         (__opendir2): Define in terms of opendir or opendirat,
20227         depending on whether the FST_NOCHDIR flag is set.
20228         (fts_build): Since fts_safe_changedir consumes its FD, and since
20229         this code must do `closedir(dirp)', dup the dirfd(dirp) argument,
20230         and close the dup'd file descriptor upon failure.
20231         (fts_stat): Use fstatat(...AT_SYMLINK_NOFOLLOW) in place of lstat.
20232         (fts_safe_changedir): Tweak semantics to reflect that this function
20233         now calls cwd_advance_fd and hence consumes its FD argument.
20234         * lib/fts_.h [struct FTS] (fts_cwd_fd): New member.
20235         [struct FTS] (fts_rft): Remove now-unused member.
20236         [struct FTS] (fts_cycle.state): Improve comment.
20237
20238         * lib/openat.c (openat_needs_fchdir): New function.
20239         * lib/openat.h (openat_needs_fchdir): Declare it.
20240
20241 2006-08-16  Paul Eggert  <eggert@cs.ucla.edu>
20242
20243         * lib/memcoll.c (memcoll): Set errno = 0 in the shortcut case, too.
20244         Problem and fix reported by Pádraig Brady in
20245         <http://lists.gnu.org/archive/html/bug-coreutils/2006-08/msg00099.html>.
20246
20247 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
20248
20249         * modules/cycle-check (configure.ac): Add gl_CYCLE_CHECK.
20250
20251 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
20252
20253         * lib/memcoll.c (memcoll): Optimize for the common case where the
20254         arguments are bytewise equal.
20255
20256 2006-08-15  Paul Eggert  <eggert@cs.ucla.edu>
20257
20258         * doc/regexprops-generic.texi: Add a copyright notice.
20259
20260 2006-08-15  Bruno Haible  <bruno@clisp.org>
20261
20262         * modules/tmpdir (License): Change to LGPL.
20263
20264 2006-08-15  Bruno Haible  <bruno@clisp.org>
20265
20266         * gnulib-tool (func_all_modules, func_verify_module): COPYING is not a
20267         module.
20268
20269 2006-08-14  Simon Josefsson  <jas@extundo.com>
20270
20271         * config/srclist.txt: Add gnupload.
20272
20273 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
20274
20275         Change copyright notice from LGPL 2 to GPL 2, since that's the
20276         standard form used in the gnulib repository.
20277         * tests/test-lock.c: Likewise.
20278         * tests/test-stdint.c: Likewise.
20279         * tests/test-tls.c: Likewise.
20280
20281         * users.txt: Add bison, diffutils, libprelude, prelude-lml,
20282         prelude-manager.  User shorter URLs for GNU projects, without '?'.
20283         Add copyright notice.
20284
20285         * check-module: Add copyright notice.  Output a copyright
20286         notice if "--version" is specified.
20287         * modules/COPYING: New file.
20288         * tests/test-getaddrinfo.c: Add copyright notice.
20289         * tests/test-verify.c: Likewise.
20290
20291 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
20292
20293         Change copyright notice from LGPL 2 to GPL 2, since that's the
20294         standard form used in the gnulib repository.
20295         * lib/lock.c: LGPL -> GPL.
20296         * lib/lock.h: Likewise.
20297         * lib/strnlen1.c: Likewise.
20298         * lib/strnlen1.h: Likewise.
20299         * lib/tls.c: Likewise.
20300         * lib/tls.h: Likewise.
20301         * lib/tmpdir.c: Likewise.
20302
20303         * lib/TODO: Remove; this belongs only in coreutils.
20304
20305 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
20306
20307         Add copyright notices to long-enough files that lack them, since
20308         otherwise the files aren't clearly free.  Use the same notice that
20309         getdate.texi already uses.
20310         * doc/alloca-opt.texi: Add copyright notice.
20311         * doc/alloca.texi: Likewise.
20312         * doc/ctime.texi: Likewise.
20313         * doc/functions.texi: Likewise.
20314         * doc/gcd.texi: Likewise.
20315         * doc/gnulib-tool.texi: Likewise.
20316         * doc/inet_ntoa.texi: Likewise.
20317         * doc/visibility.texi: Likewise.
20318
20319         * doc/getdate.texi: Update FDL version from 1.1 to 1.2.
20320         * doc/quote.texi: Add copyright notice.
20321
20322         * doc/solaris-versions: Add SunOS 5.10, SunOS 1.x, SunOS 4.0, SunOS
20323         4.0.x, SunOS 4.1.1.1, SunOS 4.1.1_U1, SunOS 4.1.3B.  SunOS 4.1.3
20324         was Solaris 1.1A.  Remove space before B in Solaris 1.1.1B.
20325         Mention SunOS 5.11.  Mention that everything before SunOS 5.7
20326         is now obsolete, and give a pointer to the Sun list.
20327         Add copyright notice.
20328
20329 2006-08-14  Paul Eggert  <eggert@cs.ucla.edu>
20330
20331         * config/srclistvars.sh: Add copyright notice.
20332
20333 2006-08-14  Eric Blake  <ebb9@byu.net>
20334
20335         Import the following change from libc:
20336
20337         2006-08-12  Ulrich Drepper  <drepper@redhat.com>
20338
20339         Upstream bug 2997.
20340         * lib/misc/error.c: Add space between program name and message if file
20341         name is missing.
20342
20343 2006-08-12  Karl Berry  <karl@gnu.org>
20344
20345         * config/srclist.txt (ssize_t.m4, sig_atomic_t.m4, signalblocking.m4):
20346         remove, these originate in gnulib now.
20347
20348 2006-08-11  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
20349
20350         * doc/Makefile (standards.info standards.html standards.dvi):
20351         Also depend on make-stds.texi.
20352
20353 2006-08-11  Paul Eggert  <eggert@cs.ucla.edu>
20354
20355         * lib/pipe-safer.c (pipe_safer): Fix misspelling: HAVE_FUNC_PIPE ->
20356         HAVE_PIPE.  Fix a file descriptor leak when fd_safer fails.
20357
20358         * lib/regex_internal.c (re_string_skip_chars): Don't assume WEOF fits
20359         in wchar_t.  Problem reported by Eric Blake.
20360
20361         * lib/snprintf.c (snprintf): memcpy LEN bytes, not SIZE - 1, when
20362         LEN is smaller than SIZE.  Suggested by Bruno Haible.
20363         Also, help the compiler to keep LEN in a register.
20364
20365 2006-08-11  Eric Blake  <ebb9@byu.net>
20366
20367         * users.txt: Sort.  Add tar.
20368
20369 2006-08-11  Bruno Haible  <bruno@clisp.org>
20370
20371         * users.txt: New file.
20372
20373 2006-08-11  Bruno Haible  <bruno@clisp.org>
20374
20375         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Include <stdio.h> and <time.h>
20376         before <wchar.h>. Needed for OSF/1 and BSD/OS.
20377
20378 2006-08-10  Paul Eggert  <eggert@cs.ucla.edu>
20379
20380         * modules/snprintf (Depends-on): Remove minmax.
20381         (Maintainer): Add self and Bruno.
20382
20383 2006-08-10  Paul Eggert  <eggert@cs.ucla.edu>
20384
20385         * lib/.cppi-disable: Add snprintf.h, socket_.h.
20386         * lib/snprintf.c: Include <errno.h> and <limits.h>.
20387         (EOVERFLOW): Define if the system does not.
20388         Do not include "minmax.h"; it wasn't used.
20389         (snprintf): Don't assume size_t promotes to an unsigned type.
20390         Fix bug when generated string was too long for the buffer: the
20391         buffer's contents are supposed to be the initial prefix of the
20392         output.  Don't assume vasnprintf returns EOVERFLOW if the size
20393         exceeds INT_MAX; do the check ourselves.
20394
20395         Import the following changes from libc:
20396
20397         2006-06-02  Jakub Jelinek  <jakub@redhat.com>
20398
20399         * lib/posix/regex_internal.c (re_string_skip_chars): If no character
20400         has been converted at all, set *last_wc to WEOF.  If mbrtowc failed,
20401         set wc to the byte which couldn't be converted.
20402         (re_string_reconstruct): Don't clear valid_raw_len before calling
20403         re_string_skip_chars.  If wc is WEOF after re_string_skip_chars, set
20404         tip_context using re_string_context_at.
20405
20406         2006-05-02  Ulrich Drepper  <drepper@redhat.com>
20407
20408         * lib/posix/regex.h: g++ still cannot handled [restrict].
20409
20410         2006-04-21  Ulrich Drepper  <drepper@redhat.com>
20411
20412         * lib/posix/regex.h: Remove special handling for VMS.
20413
20414 2006-08-10  Jim Meyering  <jim@meyering.net>
20415
20416         * modules/same-inode: New module.
20417         * modules/dev-ino: New module.
20418         * modules/cycle-check: Depend on these modules, rather than simply
20419         including their .h files.
20420         (Makefile.am): Don't list cycle-check.[ch] here, now that they're
20421         required via m4/cycle-check.m4.
20422         * modules/same: Depend on new same-inode module, rather than
20423         including same-inode.h.
20424         * modules/chdir-safer: New file.
20425
20426         * modules/chown (Depends-on): Add stat-macros.
20427
20428 2006-08-10  Jim Meyering  <jim@meyering.net>
20429
20430         * m4/cycle-check.m4: New file.
20431         Require gl_STRUCT_DEV_INO and gl_SAME_INODE.
20432         * m4/dev-ino.m4, m4/same-inode.m4: New files.
20433
20434 2006-08-10  Eric Blake  <ebb9@byu.net>
20435
20436         * modules/verror (Depends-on): Remove bogus gl_VERROR that snuck
20437         in from original proposal.
20438
20439 2006-08-10  Eric Blake  <ebb9@byu.net>
20440         and Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
20441
20442         * gnulib-tool (func_import): Detect unexpanded macros in gnulib
20443         namespace.
20444
20445 2006-08-10  Bruno Haible  <bruno@clisp.org>
20446
20447         * gnulib-tool (func_create_testdir): Detect unexpanded macros here
20448         as well.
20449
20450 2006-08-09  Paul Eggert  <eggert@cs.ucla.edu>
20451
20452         Sync from coreutils.
20453
20454         2006-07-19  Mike Frysinger  <vapier@gentoo.org>
20455
20456         * lib/mountlist.c [ME_REMOTE]: Filter out cifs.
20457         Reported by Toralf Förster in <http://bugs.gentoo.org/141012>.
20458
20459 2006-08-09  Paul Eggert  <eggert@cs.ucla.edu>
20460
20461         * modules/restrict: Remove; no longer needed now that we assume
20462         Autoconf 2.59 or later.
20463         * MODULES.html.sh: Remove 'restrict'.
20464         * modules/argp (Depends-on): Remove 'restrict'.
20465         * modules/base64 (Depends-on): Likewise.
20466         * modules/gc (Depends-on): Likewise.
20467         * modules/getaddrinfo (Depends-on): Likewise.
20468         * modules/glob (Depends-on): Likewise.
20469         * modules/inet_ntop (Depends-on): Likewise.
20470         * modules/inet_pton (Depends-on): Likewise.
20471         * modules/memxor (Depends-on): Likewise.
20472         * modules/regex (Depends-on): Likewise.
20473         * modules/strtok_r (Depends-on): Likewise.
20474         * modules/time_r (Depends-on): Likewise.
20475
20476 2006-08-09  Paul Eggert  <eggert@cs.ucla.edu>
20477
20478         * m4/argp.m4 (gl_ARGP): Require AC_C_RESTRICT.
20479         * m4/gc.m4 (gl_PREREQ_GC): Likewise.
20480         * m4/glob.m4 (gl_PREREQ_GLOB): Likewise.
20481         * m4/inet_ntop.m4 (gl_PREREQ_INET_NTOP): Likewise.
20482         * m4/inet_pton.m4 (gl_PREREQ_INET_PTON): Likewise.
20483         * m4/memxor.m4 (gl_MEMXOR): Likewise.
20484         * m4/restrict.m4: Remove; no longer needed.  All remaining uses of
20485         gl_C_RESTRICT replaced by AC_C_RESTRICT.
20486
20487         Merge from coreutils.
20488         * m4/regex.m4 (gl_PREREQ_REGEX): Require AC_C_RESTRICT, not
20489         gl_C_RESTRICT, now that we assume Autoconf 2.59 or later.
20490         * m4/strtok_r.m4 (gl_FUNC_STRTOK_R): Likewise.
20491         * m4/time_r.m4 (gl_TIME_R): Likewise.
20492
20493 2006-08-09  Karl Berry  <karl@gnu.org>
20494
20495         * config/srclist.txt: no more gettext-tools, per Bruno.
20496
20497 2006-08-08  Eric Blake  <ebb9@byu.net>
20498
20499         * modules/verror: New module.
20500         * MODULES.html.sh: Document it.
20501
20502 2006-08-08  Eric Blake  <ebb9@byu.net>
20503
20504         * lib/verror.h, lib/verror.c: New files.
20505
20506 2006-08-08  Eric Blake  <ebb9@byu.net>
20507
20508         * lib/verror.c (verror_at_line): Work around glibc bug 2997, so that
20509         verror_at_line output complies with GNU Coding Standards even when
20510         file is NULL.
20511
20512 2006-08-07  Bruno Haible  <bruno@clisp.org>
20513
20514         * lib/allocsa.h (sa_alignof) [_AIX]: Also consider 'long long' in newer
20515         versions of AIX.
20516         Reported by Ralf Wildenhues.
20517
20518 2006-08-07  Bruno Haible  <bruno@clisp.org>
20519
20520         * gnulib-tool (func_create_testdir): Wrap the set of autoconf snippets
20521         in an AC_DEFUN. Needed so that the autoconf snippets can use
20522         AC_REQUIRE.
20523
20524 2006-08-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
20525
20526         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
20527         Initialize pkgdata_DATA.
20528         * modules/javaversion (Makefile.am): Add to pkgdata_DATA, rather than
20529         overriding it.
20530
20531 2006-08-06  Eric Blake  <ebb9@byu.net>
20532
20533         * lib/error.h: Fold in some upstream changes from glibc.
20534         * lib/error.c: Likewise.
20535
20536 2006-08-04  Bruno Haible  <bruno@clisp.org>
20537
20538         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
20539         Make the mostlyclean-local rule depend on mostlyclean-generic.
20540         Reported by Jim Meyering. Solution suggested by Ralf Wildenhues.
20541
20542 2006-07-31  Bruno Haible  <bruno@clisp.org>
20543
20544         * m4/localcharset.m4 (gl_LOCALCHARSET): Remove tests for <stddef.h>,
20545         <stdlib.h>, <string.h>.
20546
20547 2006-07-30  Bruno Haible  <bruno@clisp.org>
20548
20549         * modules/readlink (License): Change to LGPL.
20550
20551 2006-07-30  Bruno Haible  <bruno@clisp.org>
20552
20553         * modules/javaversion (Makefile.am): Distribute javaversion.java and
20554         javaversion.class. Also install javaversion.class in $(pkgdatadir) and
20555         set PKGDATADIR to point to it.
20556
20557 2006-07-30  Bruno Haible  <bruno@clisp.org>
20558
20559         * modules/csharpexec (configure.ac): Comment out macro invocation.
20560         * modules/javaexec (configure.ac): Likewise.
20561         * modules/javacomp-script (configure.ac): Likewise.
20562
20563         * modules/csharpcomp-script (configure.ac): Use AC_REQUIRE.
20564
20565 2006-07-30  Bruno Haible  <bruno@clisp.org>
20566
20567         * modules/clean-temp (Depends-on): Add linkedhash-list, remove
20568         linked-list.
20569
20570 2006-07-30  Bruno Haible  <bruno@clisp.org>
20571
20572         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Assume <string.h> exists.
20573
20574 2006-07-30  Bruno Haible  <bruno@clisp.org>
20575
20576         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
20577         Initialize MOSTLYCLEANFILES to core and *.stackdump, so that core dumps
20578         get removed.
20579
20580 2006-07-29  Bruno Haible  <bruno@clisp.org>
20581
20582         Make it possible for gnulib-tool to work with locally modified or
20583         augmented gnulib repositories.
20584         * gnulib-tool (func_usage): Document --local-dir option.
20585         (local_gnulib_dir): New variable.
20586         Handle --local-dir option.
20587         (func_lookup_file): New function.
20588         (func_all_modules, func_verify_module): Look also in $local_gnulib_dir.
20589         (func_get_description, func_get_filelist, func_get_description,
20590         func_get_filelist, func_get_dependencies, func_get_autoconf_snippet,
20591         func_get_automake_snippet, func_get_include_directive,
20592         func_get_license, func_get_maintainer): Use func_lookup_file.
20593         (func_import, func_create_testdir): Use func_lookup_file.
20594
20595 2006-07-29  Bruno Haible  <bruno@clisp.org>
20596
20597         * modules/setenv (Depends-on): Add unistd.
20598
20599 2006-07-29  Bruno Haible  <bruno@clisp.org>
20600
20601         * lib/setenv.c: Undo unintended modification done on 2006-02-27.
20602
20603 2006-07-29  Bruno Haible  <bruno@clisp.org>
20604
20605         * lib/localcharset.c: Assume <stddef.h>, <stdlib.h>, <string.h> exist.
20606
20607 2006-07-29  Bruno Haible  <bruno@clisp.org>
20608
20609         * gnulib-tool (import, update): If there is no Makefile.am, look at
20610         aclocal.m4, instead of bailing out.
20611
20612 2006-07-29  Bruno Haible  <bruno@clisp.org>
20613
20614         * gnulib-tool (func_usage): Revert most of the 2006-07-15 change.
20615         Categorize the options by when they are useful.
20616
20617 2006-07-29  Bruno Haible  <bruno@clisp.org>
20618
20619         * gnulib-tool (func_usage): Document option --no-libtool.
20620         Handle option --no-libtool.
20621         (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am): Update
20622         for changed semantics of $libtool variable.
20623         (func_import): Likewise. If libtool is not used, show this through
20624         an option --no-libtool.
20625         (func_create_testdir): Update.
20626
20627 2006-07-29  Bruno Haible  <bruno@clisp.org>
20628
20629         * gnulib-tool (func_import): Extend error message about missing
20630         --doc-base.
20631
20632 2006-07-29  Bruno Haible  <bruno@clisp.org>
20633
20634         * gnulib-tool (func_import): Don't create the $docbase directory if
20635         there is no file to store there.
20636
20637 2006-07-29  Bruno Haible  <bruno@clisp.org>
20638
20639         * gnulib-tool (autoconf_minversion): If a --dir option is given and
20640         relevant, look for configure.ac there, not in the current directory.
20641         Also use a simple search for AC_PREREQ, not "autoconf --trace".
20642
20643 2006-07-29  Bruno Haible  <bruno@clisp.org>
20644
20645         * gnulib-tool (SORT): New variable.
20646         (func_usage): Undocument --assume-autoconf option.
20647         Remove --assume-autoconf option handling.
20648         (autoconf_minversion): Determine from the contents of configure.ac.
20649         (func_import): Remove autoconf_minversion handling.
20650         Suggested by Eric Blake.
20651
20652 2006-07-29  Bruno Haible  <bruno@clisp.org>
20653
20654         * doc/gnulib-tool.texi (gl_LIBTOOL): Mention --no-libtool option.
20655
20656 2006-07-29  Bruno Haible  <bruno@clisp.org>
20657
20658         * config/srclist.txt (*setenv.[ch]): Remove rules.
20659
20660 2006-07-28  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
20661
20662         * m4/inet_pton.m4, inet_ntop.m4: Check for netinet/in.h too.
20663
20664 2006-07-28  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
20665
20666         * lib/inet_ntop.h, inet_pton.h: Need to include netinet/in.h before
20667         arpa/inet.h.
20668
20669 2006-07-28  Simon Josefsson  <jas@extundo.com>
20670
20671         * modules/inet_ntop (Depends-on): Depend on arpa_inet.
20672         * modules/inet_pton (Depends-on): Likewise.
20673
20674 2006-07-28  Simon Josefsson  <jas@extundo.com>
20675
20676         * m4/netinet_in_h.m4: New file.
20677
20678 2006-07-28  Simon Josefsson  <jas@extundo.com>
20679
20680         * lib/inet_ntop.h, inet_pton.h: No need to guard netinet/in.h
20681         #include's.
20682
20683 2006-07-28  Simon Josefsson  <jas@extundo.com>
20684
20685         * lib/inet_ntop.h, inet_pton.h: No need to guard arpa/inet.h
20686         #include's.
20687
20688 2006-07-28  Paul Eggert  <eggert@cs.ucla.edu>
20689
20690         * lib/modechange.c (mode_compile): Numeric modes now affect setuid and
20691         setgid on directories only if they set these bits.
20692         * lib/modechange.h: Remove obsolete comment about masks.
20693
20694 2006-07-28  Eric Blake  <ebb9@byu.net>
20695
20696         * lib/regex_internal.h (struct re_dfa_t) [!_LIBC]: Avoid invalid C89
20697         macro expansion.
20698
20699 2006-07-28  Bruno Haible  <bruno@clisp.org>
20700
20701         * lib/inet_ntop.h, inet_pton.h: Use #if HAVE* instead of #ifdef HAVE*.
20702
20703 2006-07-28  Bruno Haible  <bruno@clisp.org>
20704
20705         * m4/mbchar.m4 (gl_MBCHAR): Also test for iswcntrl.
20706
20707 2006-07-28  Bruno Haible  <bruno@clisp.org>
20708
20709         * lib/mbchar.h (iswalnum, iswalpha, iswblank, iswcntrl, iswdigit,
20710         iswgraph, iswlower, iswprint, iswpunct, iswspace, iswupper, iswxdigit):
20711         Define fallbacks.
20712         Avoids link error on FreeBSD 4.x.
20713         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
20714
20715         * lib/wcwidth.h (iswprint): Assume an ASCII compatible wide character
20716         encoding.
20717         * lib/mbswidth.c (iswcntrl): Likewise.
20718
20719 2006-07-27  Bruno Haible  <bruno@clisp.org>
20720
20721         * m4/stdint.m4 (gl_STDINT_H): Define __STDC_CONSTANT_MACROS during the
20722         test.
20723
20724 2006-07-27  Bruno Haible  <bruno@clisp.org>
20725
20726         * lib/stdint_.h (INT*_C, UINT*_C) [C++]: Define these if
20727         __STDC_CONSTANT_MACROS is defined, not if __STDC_LIMIT_MACROS is
20728         defined.
20729
20730 2006-07-26  Eric Blake  <ebb9@byu.net>
20731
20732         * m4/unistd-safer.m4 (gl_UNISTD_SAFER): Check for missing pipe.
20733
20734 2006-07-26  Eric Blake  <ebb9@byu.net>
20735
20736         * lib/mkstemp-safer.c [! HAVE_MKSTEMP]: Add prototype for platforms
20737         like mingw that lack mkstemp.
20738         * lib/pipe-safer.c (pipe_safer) [!HAVE_FUNC_PIPE]: Provide fallback to
20739         avoid compilation warning on mingw.
20740
20741 2006-07-26  Bruno Haible  <bruno@clisp.org>
20742
20743         * m4/stdint.m4 (gl_STDINT_H): Also verify the existence of the macros
20744         INT*_MIN, INT_LEAST*_MAX, INT_LEAST*_MIN, UINT_LEAST*_MAX,
20745         INT_FAST*_MIN, INTPTR_MIN.
20746
20747 2006-07-25  Bruno Haible  <bruno@clisp.org>
20748
20749         * modules/version-etc (Depends-on): Add stdarg.
20750
20751 2006-07-25  Bruno Haible  <bruno@clisp.org>
20752
20753         * m4/stdint.m4 (gl_INTEGER_TYPE_SUFFIX): Avoid 'eval' in front of
20754         complex commands.
20755
20756 2006-07-25  Bruno Haible  <bruno@clisp.org>
20757
20758         * lib/version-etc.c (version_etc_va): Use va_copy, assumed to be
20759         defined in <stdarg.h> or config.h.
20760
20761 2006-07-24  Paul Eggert  <eggert@cs.ucla.edu>
20762
20763         * m4/stdio-safer.m4 (gl_FOPEN_SAFER, gl_TMPFILE_SAFER): New macros.
20764         (gl_STDIO_SAFER): Remove.
20765
20766 2006-07-24  Paul Eggert  <eggert@cs.ucla.edu>
20767
20768         * MODULES.html.sh (File stream based Input/Output):
20769         Add fopen-safer, tmpfile-safer; remove stdio-safer.
20770         * modules/getusershell (Depends-on): Change stdio-safer to fopen-safer.
20771         * modules/fopen-safer, modules/tmpfile-safer: New files.
20772         * modules/stdio-safer: Remove.
20773
20774 2006-07-24  Bruno Haible  <bruno@clisp.org>
20775
20776         * modules/tmpdir: New file.
20777         * MODULES.html.sh (File system functions): Add it.
20778
20779 2006-07-24  Bruno Haible  <bruno@clisp.org>
20780
20781         * modules/javacomp (Depends-on): Add unistd, javaversion, binary-io,
20782         getline, pathname, fwriteerror, clean-temp, xvasprintf, strstr.
20783
20784 2006-07-24  Bruno Haible  <bruno@clisp.org>
20785
20786         * modules/clean-temp: New file.
20787
20788 2006-07-24  Bruno Haible  <bruno@clisp.org>
20789
20790         * m4/tmpdir.m4: New file, from GNU gettext.
20791
20792 2006-07-24  Bruno Haible  <bruno@clisp.org>
20793
20794         * lib/tmpdir.h: New file, from GNU gettext.
20795         * lib/tmpdir.c: New file, from GNU gettext.
20796
20797 2006-07-24  Bruno Haible  <bruno@clisp.org>
20798
20799         * lib/clean-temp.h: New file, from GNU gettext.
20800         * lib/clean-temp.c: New file, from GNU gettext.
20801
20802 2006-07-23  Eric Blake  <ebb9@byu.net>
20803
20804         * modules/stdio-safer (Files): Add tmpfile-safer.c.
20805         (Depends-on): Add binary-io.
20806
20807 2006-07-23  Eric Blake  <ebb9@byu.net>
20808
20809         * m4/stdio-safer.m4 (gl_STDIO_SAFER): Add tmpfile-safer.c.
20810
20811 2006-07-23  Eric Blake  <ebb9@byu.net>
20812
20813         * lib/tmpfile-safer.c: New file.
20814         * lib/stdio-safer.h (fopen_safer): Add prototype.
20815         * lib/stdio--.h (tmpfile): Make safer.
20816
20817 2006-07-23  Bruno Haible  <bruno@clisp.org>
20818
20819         * lib/gl_anylinked_list2.h (ASYNCSAFE): New macro.
20820         (gl_linked_add_first, gl_linked_add_last, gl_linked_add_before,
20821         gl_linked_add_after, gl_linked_add_at, gl_linked_remove_node,
20822         gl_linked_remove_at): Use it.
20823
20824 2006-07-22  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
20825         and Simon Josefsson <jas@extundo.com>
20826
20827         * lib/getaddrinfo.h (AI_PASSIVE): Make sure it is defined.
20828
20829         * lib/getaddrinfo.c (getaddrinfo): Support AI_PASSIVE.
20830
20831 2006-07-22  Paul Eggert  <eggert@cs.ucla.edu>
20832
20833         * modules/close-stream: New file.
20834         * modules/closeout (Description): Make it clear that it exits
20835         with a diagnostic on error.
20836         (Depends-on): Add close-stream.  Remove fpending, stdbool.
20837         * MODULES.html.sh (File stream based Input/Output): Add close-stream.
20838
20839 2006-07-22  Paul Eggert  <eggert@cs.ucla.edu>
20840
20841         * m4/close-stream.m4: New file.
20842
20843 2006-07-22  Paul Eggert  <eggert@cs.ucla.edu>
20844
20845         * lib/close-stream.c, lib/close-stream.h: New files.
20846
20847 2006-07-22  Bruno Haible  <bruno@clisp.org>
20848
20849         Merge from GNU gettext 0.15.
20850
20851         2006-05-01  Bruno Haible  <bruno@clisp.org>
20852
20853                 * build-aux/javacomp.sh.in: Update for changed javacomp.m4.
20854
20855         2006-07-22  Bruno Haible  <bruno@clisp.org>
20856
20857                 * modules/javaversion: New file.
20858                 * MODULES.html.sh (Java): Add javaversion.
20859
20860         2006-03-12  Bruno Haible  <bruno@clisp.org>
20861
20862                 * build-aux/javaexec.sh.in: Update for changed javaexec.m4.
20863
20864         2005-12-04  Bruno Haible  <bruno@clisp.org>
20865
20866                 * build-aux/csharpexec.sh.in: Add support for 'clix' launcher
20867                 (untested).
20868
20869         2006-06-21  Bruno Haible  <bruno@clisp.org>
20870
20871                 Avoid warnings from recent versions of mcs.
20872                 * build-aux/csharpcomp.sh.in (options_mcs): Don't use options
20873                 -o, -L, -r any more. Use options documented since mcs-1.0
20874                 instead. Similarly for -g.
20875
20876         2005-12-04  Bruno Haible  <bruno@clisp.org>
20877
20878                 * build-aux/csharpcomp.sh.in: Suffix for resources is
20879                 .resources, not .resource.
20880
20881         2005-07-09  Bruno Haible  <bruno@clisp.org>
20882
20883                 * build-aux/csharpcomp.sh.in (options_csc): For -l option,
20884                 add a .dll suffix.
20885                 Reported by Mark Junker <mjscod@gmx.de>.
20886
20887         2006-07-22  Bruno Haible  <bruno@clisp.org>
20888
20889                 * modules/gettext: Upgrade to gettext-0.15.
20890                 (Files): Remove m4/isc-posix.m4. Add m4/lock.m4,
20891                 m4/visibility.m4.
20892                 Replace m4/inttypes.m4 with m4/inttypes-h.m4.
20893
20894 2006-07-22  Bruno Haible  <bruno@clisp.org>
20895
20896         Merge from GNU gettext 0.15.
20897
20898         2006-03-25  Bruno Haible  <bruno@clisp.org>
20899
20900                 * lib-link.m4 (AC_LIB_LINKFLAGS_FROM_LIBS): New macro.
20901
20902         2006-07-21  Bruno Haible  <bruno@clisp.org>
20903
20904                 * javacomp.m4 (gt_JAVACOMP): Convert target_version "null" to
20905                 "1.1".
20906
20907         2006-05-09  Bruno Haible  <bruno@clisp.org>
20908
20909                 * javacomp.m4 (gt_JAVACOMP): On Cygwin, set
20910                 CLASSPATH_SEPARATOR to a semicolon. Use CLASSPATH_SEPARATOR
20911                 for the conftestver execution.
20912
20913         2006-05-01  Bruno Haible  <bruno@clisp.org>
20914
20915                 * javacomp.m4 (gt_JAVACOMP): Accept a source-version and an
20916                 optional target-version argument. Verify that the compiler
20917                 groks source of the specified source-version, or add -source
20918                 option as necessary. Verify that the compiler produces
20919                 bytecode in the specified target-version, or add -target and
20920                 -source options as necessary. Make the result of the test
20921                 available as variable CONF_JAVAC. Also log error output in
20922                 config.log.
20923
20924         2006-03-11  Bruno Haible  <bruno@clisp.org>
20925
20926                 * javacomp.m4 (gt_JAVACOMP): Treat gcj-4.x like gcj-3.x.
20927
20928         2006-05-09  Bruno Haible  <bruno@clisp.org>
20929
20930                 * javaexec.m4 (gt_JAVAEXEC): On Cygwin, set
20931                 CLASSPATH_SEPARATOR to a semicolon.
20932
20933         2006-03-12  Bruno Haible  <bruno@clisp.org>
20934
20935                 * javaexec.m4 (gt_JAVAEXEC): Make the result of the test
20936                 available as variable CONF_JAVA, for subsequent autoconf
20937                 tests. Also log error output in config.log.
20938
20939         2006-07-19  Bruno Haible  <bruno@clisp.org>
20940
20941                 * getline.m4 (AM_FUNC_GETLINE): When cross-compiling, assume
20942                 that getline works on glibc2 systems. Needed to avoid trouble
20943                 in relocatable.c.
20944                 Reported by Nils Magnus Larsgard <nmlarsgaard@atmel.no>.
20945
20946         2005-12-04  Bruno Haible  <bruno@clisp.org>
20947
20948                 * csharpexec.m4 (gt_CSHARPEXEC): Add support for 'clix'
20949                 launcher (untested).
20950
20951         2005-12-04  Bruno Haible  <bruno@clisp.org>
20952
20953                 * csharpcomp.m4 (gt_CSHARPCOMP): Also set CSHARPCOMPFLAGS.
20954
20955         2006-07-22  Bruno Haible  <bruno@clisp.org>
20956
20957                 * gettext.m4: Update from GNU gettext-0.15.
20958                 * nls.m4: Likewise.
20959                 * po.m4: Likewise.
20960                 * inttypes-pri.m4: Likewise.
20961                 * inttypes-h.m4: Renamed from inttypes.m4.
20962                 (gl_HEADER_INTTYPES_H): Renamed from gt_HEADER_INTTYPES_H.
20963
20964 2006-07-22  Bruno Haible  <bruno@clisp.org>
20965
20966         Merge from GNU gettext 0.15.
20967
20968         2005-07-05  Bruno Haible  <bruno@clisp.org>
20969
20970                 * printf-args.c (printf_fetchargs): Work around broken
20971                 definition of wint_t on mingw.
20972
20973         2005-02-12  Bruno Haible  <bruno@clisp.org>
20974
20975                 * xallocsa.h: Add extern "C" for C++.
20976
20977         2006-05-17  Bruno Haible  <bruno@clisp.org>
20978
20979                 Cygwin portability.
20980                 * progreloc.c (WIN32_NATIVE): Renamed from WIN32.
20981
20982         2006-04-30  Bruno Haible  <bruno@clisp.org>
20983
20984                 * progreloc.c: Include <mach-o/dyld.h> if available.
20985                 (find_executable): Use _NSGetExecutablePath when possible.
20986
20987         2006-05-06  Charles Wilson  <cygwin@cwilson.fastmail.fm>
20988
20989                 * progreloc.c (maybe_executable) [CYGWIN]: Use the access()
20990                 function.
20991
20992         2005-12-29  Bruno Haible  <bruno@clisp.org>
20993
20994                 * progreloc.c (set_program_name_and_installdir): Fix
20995                 compilation error.
20996
20997         2005-12-04  Bruno Haible  <bruno@clisp.org>
20998
20999                 Cygwin portability.
21000                 * progreloc.c: Include <windows.h> also on Cygwin.
21001                 (find_executable): Add support for Cygwin.
21002                 (set_program_name_and_installdir): Handle also platforms with
21003                 nonempty EXEEXT.
21004
21005         2006-07-11  Bruno Haible  <bruno@clisp.org>
21006
21007                 * javacomp.c: Fix a comment.
21008                 Reported by Jim Meyering.
21009
21010         2006-04-30  Bruno Haible  <bruno@clisp.org>
21011
21012                 * javacomp.h (compile_java_class): Add source_version,
21013                 target_version arguments.
21014                 * javacomp.c: Rewritten to choose only a compiler that
21015                 respects the specified source_version and target_version.
21016
21017         2006-06-27  Bruno Haible  <bruno@clisp.org>
21018
21019                 Assume correct S_ISDIR macro.
21020                 * mkdtemp.c: Remove test of STAT_MACROS_BROKEN.
21021
21022         2006-07-22  Bruno Haible  <bruno@clisp.org>
21023
21024                 * javaversion.h: New file, from GNU gettext.
21025                 * javaversion.c: New file, from GNU gettext.
21026                 * javaversion.java: New file, from GNU gettext.
21027                 * javaversion.class: New file, from GNU gettext.
21028
21029         2006-05-17  Bruno Haible  <bruno@clisp.org>
21030
21031                 Cygwin portability.
21032                 * javaexec.c (execute_java_class): Test for jview program
21033                 also on Cygwin.
21034
21035         2006-04-09  Bruno Haible  <bruno@clisp.org>
21036
21037                 * fatal-signal.c: Don't include string.h.
21038                 (at_fatal_signal): Use a copying loop instead of memcpy.
21039
21040         2005-12-04  Bruno Haible  <bruno@clisp.org>
21041
21042                 * csharpexec.c: Add support for 'clix' launcher (untested).
21043                 (execute_csharp_using_sscli): New function.
21044                 (execute_csharp_program): Call it.
21045
21046         2006-06-21  Bruno Haible  <bruno@clisp.org>
21047
21048                 Avoid warnings from recent versions of mcs.
21049                 * csharpcomp.c (compile_csharp_using_mono): Don't use options
21050                 -o, -L, -r any more. Use options documented since mcs-1.0
21051                 instead. Similarly for -g.
21052
21053         2005-07-09  Bruno Haible  <bruno@clisp.org>
21054
21055                 * csharpcomp.c (compile_csharp_using_sscli): For -l option,
21056                 add a .dll suffix.
21057                 Reported by Mark Junker <mjscod@gmx.de>.
21058
21059         2006-06-17  Bruno Haible  <bruno@clisp.org>
21060
21061                 * config.charset: Update for NetBSD 3.0.
21062
21063         2006-05-17  Bruno Haible  <bruno@clisp.org>
21064
21065                 Cygwin portability.
21066                 * localcharset.c (WIN32_NATIVE): Renamed from WIN32.
21067
21068         2006-05-16  Bruno Haible  <bruno@clisp.org>
21069
21070                 * localcharset.c [CYGWIN]: Include <windows.h>.
21071                 (get_charset_aliases): For Cygwin, return the same CPxxx
21072                 aliases list as under WIN32.
21073                 (locale_charset) [CYGWIN]: Try to retrieve the encoding from
21074                 the environment variables. Fall back to GetACP().
21075
21076         2006-04-05  Bruno Haible  <bruno@clisp.org>
21077
21078                 * config.charset: Update Juan Manuel Guerrero's address.
21079
21080         2005-02-12  Bruno Haible  <bruno@clisp.org>
21081
21082                 * allocsa.h: Add extern "C" for C++.
21083
21084         2005-02-10  Bruno Haible  <bruno@clisp.org>
21085
21086                 * allocsa.h (sa_alignof): Define differently with AIX xlc, to
21087                 avoid a bug of this compiler on AIX 3.2.5 dealing with enums.
21088
21089         2006-07-22  Bruno Haible  <bruno@clisp.org>
21090
21091                 * gettext.h: Update to GNU gettext-0.15.
21092
21093 2006-07-22  Bruno Haible  <bruno@clisp.org>
21094
21095         * config/srclist.txt: Resync printf-args.c, vasnprintf.c,
21096         localcharset.c, mkdtemp.c, config.rpath, lib-ld.m4, lib-link.m4,
21097         lib-prefix.m4, longdouble.m4, ssize_t.m4.
21098
21099 2006-07-21  Eric Blake  <ebb9@byu.net>
21100
21101         * modules/stdlib-safer: New file.
21102         * MODULES.html.sh (File stream based Input/Output): Add
21103         stdlib-safer.
21104
21105 2006-07-21  Eric Blake  <ebb9@byu.net>
21106
21107         * lib/stdlib-safer.h: New file from coreutils, required by
21108         stdlib--.h.
21109
21110 2006-07-20  Paul Eggert  <eggert@cs.ucla.edu>
21111
21112         * gnulib-tool (func_usage): Document --assume-autoconf='latest-stable'.
21113
21114 2006-07-20  Bruno Haible  <bruno@clisp.org>
21115
21116         * gnulib-tool: Recognize new option --assume-autoconf.
21117         (autoconf_minversion): New variable.
21118         (func_get_filelist): Use it to decide whether to add onceonly_2_57.m4.
21119
21120 2006-07-20  Bruno Haible  <bruno@clisp.org>
21121
21122         * MODULES.html.sh (func_all_modules): Add a missing func_begin_table.
21123
21124 2006-07-19  Derek R. Price  <derek@ximbiot.com>
21125
21126         * lib/getaddrinfo.h: Don't define unimplemented AI_* flags.
21127         Reindent and repaginate.
21128
21129 2006-07-19  Derek Price  <derek@ximbiot.com>
21130
21131         * doc/gnulib.texi (Libtool and Windows):  Eliminate passive voice.
21132         Correct grammar.
21133
21134 2006-07-17  Bruno Haible  <bruno@clisp.org>
21135
21136         * modules/list: New file.
21137         * modules/array-list: New file.
21138         * modules/carray-list, modules/carray-list-tests: New files.
21139         * modules/linked-list, modules/linked-list-tests: New files.
21140         * modules/avltree-list, modules/avltree-list-tests: New files.
21141         * modules/rbtree-list, modules/rbtree-list-tests: New files.
21142         * modules/linkedhash-list, modules/linkedhash-list-tests: New files.
21143         * modules/avltreehash-list, modules/avltreehash-list-tests: New files.
21144         * modules/rbtreehash-list, modules/rbtreehash-list-tests: New files.
21145         * modules/oset: New file.
21146         * modules/array-oset: New file.
21147         * modules/avltree-oset, modules/avltree-oset-tests: New files.
21148         * modules/rbtree-oset, modules/rbtree-oset-tests: New files.
21149         * tests/test-carray_list.c: New file.
21150         * tests/test-linked_list.c: New file.
21151         * tests/test-avltree_list.c: New file.
21152         * tests/test-rbtree_list.c: New file.
21153         * tests/test-linkedhash_list.c: New file.
21154         * tests/test-avltreehash_list.c: New file.
21155         * tests/test-rbtreehash_list.c: New file.
21156         * tests/test-avltree_oset.c: New file.
21157         * tests/test-rbtree_oset.c: New file.
21158         * MODULES.html.sh (Container data structures): New section.
21159
21160 2006-07-17  Bruno Haible  <bruno@clisp.org>
21161
21162         * m4/gl_list.m4: New file.
21163
21164 2006-07-17  Bruno Haible  <bruno@clisp.org>
21165
21166         * lib/gl_list.h: New file.
21167         * lib/gl_list.c: New file.
21168         * lib/gl_array_list.h: New file.
21169         * lib/gl_array_list.c: New file.
21170         * lib/gl_carray_list.h: New file.
21171         * lib/gl_carray_list.c: New file.
21172         * lib/gl_linked_list.h: New file.
21173         * lib/gl_linked_list.c: New file.
21174         * lib/gl_anylinked_list1.h: New file.
21175         * lib/gl_anylinked_list2.h: New file.
21176         * lib/gl_avltree_list.h: New file.
21177         * lib/gl_avltree_list.c: New file.
21178         * lib/gl_anyavltree_list1.h: New file.
21179         * lib/gl_anyavltree_list2.h: New file.
21180         * lib/gl_rbtree_list.h: New file.
21181         * lib/gl_rbtree_list.c: New file.
21182         * lib/gl_anyrbtree_list1.h: New file.
21183         * lib/gl_anyrbtree_list2.h: New file.
21184         * lib/gl_anytree_list1.h: New file.
21185         * lib/gl_anytree_list2.h: New file.
21186         * lib/gl_linkedhash_list.h: New file.
21187         * lib/gl_linkedhash_list.c: New file.
21188         * lib/gl_anyhash_list1.h: New file.
21189         * lib/gl_anyhash_list2.h: New file.
21190         * lib/gl_avltreehash_list.h: New file.
21191         * lib/gl_avltreehash_list.c: New file.
21192         * lib/gl_rbtreehash_list.h: New file.
21193         * lib/gl_rbtreehash_list.c: New file.
21194         * lib/gl_anytreehash_list1.h: New file.
21195         * lib/gl_anytreehash_list2.h: New file.
21196
21197         * lib/gl_oset.h: New file.
21198         * lib/gl_oset.c: New file.
21199         * lib/gl_array_oset.h: New file.
21200         * lib/gl_array_oset.c: New file.
21201         * lib/gl_avltree_oset.h: New file.
21202         * lib/gl_avltree_oset.c: New file.
21203         * lib/gl_rbtree_oset.h: New file.
21204         * lib/gl_rbtree_oset.c: New file.
21205         * lib/gl_anytree_oset.h: New file.
21206
21207 2006-07-16  Paul Eggert  <eggert@cs.ucla.edu>
21208
21209         * m4/mkancesdirs.m4: New file.
21210         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Mention dirchownmod.c,
21211         dirchownmod.h.  Don't require AC_FUNC_ALLOCA, gl_AFS, gl_CHDIR_SAFER;
21212         no longer needed.  Require gl_FUNC_LCHOWN, since dirchownmod.c needs
21213         it.
21214
21215 2006-07-16  Paul Eggert  <eggert@cs.ucla.edu>
21216
21217         * lib/dirchownmod.c, lib/dirchownmod.h, lib/mkancesdirs.c:
21218         * lib/mkancesdirs.h: New files.
21219         * lib/mkdir-p.c: Don't include alloca.h, stdio.h, sys/types.h,
21220         unistd.h, string.h, chdir-safer.h, dirname.h, lchmod.h, lchown.h,
21221         save-cwd.h.  Instead, include dirchownmod.h and mkancesdirs.h.
21222         (make_dir_parents): New args MAKE_ANCESTOR, OPTIONS, ANNOUNCE,
21223         MODE_BITS.  Remove options VERBOSE_FMT_STRING, CWD_ERRNO.  All
21224         callers changed.  Revamp internals significantly, by not
21225         attempting to create directories that are temporarily more
21226         permissive than the final results.  Do not attempt to use
21227         save_cwd/restore_cwd; it isn't worth it for mkdir and install.
21228         This removes some race conditions, fixes some bugs, and simplifies
21229         things.  Use new dirchownmod function to do owner and mode changes.
21230         * lib/mkdir-p.h: Likewise.
21231         * lib/modechange.c (octal_to_mode): New function.
21232         (struct mode_change): New member mentioned.
21233         (make_node_op_equals): New arg mentioned.  All callers changed.
21234         (mode_compile): Keep track of which mode bits the user has explicitly
21235         mentioned.
21236         (mode_adjust): New arg DIR, so that we implement the X op correctly.
21237         New arg PMODE_BITS, to keep track of which mode bits the user
21238         mentioned; it treats S_ISUID and S_ISGID speciall.
21239         All callers changed.
21240         * lib/modechange.h: Likewise.
21241
21242 2006-07-16  Paul Eggert  <eggert@cs.ucla.edu>
21243
21244         * MODULES.html.sh: Add mkancestors.
21245         * modules/mkancesdirs: New module.
21246         * modules/mkdir-p (Files): Remove lib/chdir-safer.c, lib/chdir-safer.h,
21247         lib/same-inode.h, m4/afs.m4, m4/chdir-safer.m4.
21248         The chdir-safer and afs files are now orphans; I'll remove them
21249         unless someone speaks up.
21250         Add lib/dirchownmod.c, lib/dirchownmod.h.
21251         (Depends-on): Remove alloca, chown, save-cwd, dirname.
21252         Add lchown, mkancesdirs.
21253         (Maintainer): Add self.
21254
21255 2006-07-15  Karl Berry  <karl@gnu.org>
21256
21257         * gnulib-tool: help message wording/arrangement.
21258
21259 2006-07-14  Simon Josefsson  <jas@extundo.com>
21260
21261         * doc/gnulib.texi (Libtool and Windows): New section.
21262
21263 2006-07-12  Simon Josefsson  <jas@extundo.com>
21264
21265         * modules/gendocs (License): Fix license, approved by Karl.
21266
21267 2006-07-12  Eric Blake  <ebb9@byu.net>
21268
21269         * MODULES.html.sh: Add gendocs.
21270
21271 2006-07-11  Eric Blake  <ebb9@byu.net>
21272
21273         * modules/fdl: New module, to install doc/fdl.texi.
21274         * MODULES.html.sh: Add new section for documentation modules.
21275         * gnulib-tool: Avoid space-tab.
21276         (--doc-base): New option, to manage files from doc.
21277
21278 2006-07-11  Eric Blake  <ebb9@byu.net>
21279
21280         * m4/absolute-header.m4: Fix comments to match recent change.
21281
21282 2006-07-11  Eric Blake  <ebb9@byu.net>
21283
21284         * gnulib-tool: List --doc-base before --tests-base.
21285
21286 2006-07-11  Derek R. Price  <derek@ximbiot.com>
21287
21288         * lib/glob.c: s/NAMLEN/_D_EXACT_NAMLEN/.
21289
21290 2006-07-11  Bruno Haible  <bruno@clisp.org>
21291
21292         * README: Mention where to put documentation.
21293
21294 2006-07-10  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
21295
21296         * doc/functions.texi, gnulib-tool.texi, gnulib.texi: Fix some typos.
21297
21298 2006-07-10  Paul Eggert  <eggert@cs.ucla.edu>
21299
21300         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Like today's change
21301         to stdint.m4.
21302
21303 2006-07-10  Paul Eggert  <eggert@cs.ucla.edu>
21304
21305         * m4/stdint.m4 (gl_STDINT_H): Like yesterday's change to
21306         absolute-header.m4.  Also, set ABSOLUTE_STDINT_H to a string
21307         "no/such/file/stdint.h" when there is no such file, so that
21308         the resulting C code can be parsed by dodgy compilers.
21309         Problems reported by Bob Proulx.
21310
21311 2006-07-10  Derek R. Price  <derek@ximbiot.com>
21312
21313         * lib/backupfile.c, dirfd.h, fts.c, getcwd.c, glob.c, glob_.h:
21314         Ignore the obsolescent !HAVE_DIRENT_H case.  Consolidate NAMLEN
21315         macros into the GNU _D_EXACT_NAMLEN.
21316         * lib/savedir.c:  Likewise.
21317         (savedirstream): Use _D_EXACT_NAMLEN in preference to strlen.
21318
21319 2006-07-10  Derek R. Price  <derek@ximbiot.com>
21320         and Paul Eggert  <eggert@cs.ucla.edu>
21321
21322         * m4/backupfile.m4, d-ino.m4, d-type.m4, dirfd.m4, fts.m4, getcwd.m4:
21323         * m4/savedir.m4:
21324         Ignore the obsolescent !HAVE_DIRENT_H case.  Consolidate NAMLEN
21325         macros into the GNU _D_EXACT_NAMLEN.
21326
21327 2006-07-09  Paul Eggert  <eggert@cs.ucla.edu>
21328
21329         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Use "" rather than <>
21330         around the absolute name, to work around a problem with the HP-UX
21331         11.23 native C compiler, reported by Bob Proulx.
21332
21333 2006-07-09  Paul Eggert  <eggert@cs.ucla.edu>
21334
21335         * doc/maintain.texi, make-stds.texi: Sync from
21336         <http://savannah.gnu.org/projects/gnustandards>.
21337
21338 2006-07-09  Paul Eggert  <eggert@cs.ucla.edu>
21339
21340         * build-aux/depcomp, build-aux/install-sh: Sync from Automake.
21341
21342 2006-07-09  Jim Meyering  <jim@meyering.net>
21343
21344         * m4/glob.m4: Remove a doubled word in a comment.
21345
21346 2006-07-09  Jim Meyering  <jim@meyering.net>
21347
21348         * lib/argp-pv.c: Remove a doubled word in a comment.
21349         * lib/check-version.c (check_version): Likewise.
21350         * lib/javacomp.c (compile_java_class): Likewise.
21351
21352 2006-07-08  Paul Eggert  <eggert@cs.ucla.edu>
21353
21354         * gnulib-tool (func_get_filelist): Don't echo m4/onceonly_2_57.m4,
21355         for the benefit of people using Autoconf 2.60.  If you want to
21356         support older Autoconf versions you can copy m4/onceonly_2_57.m4
21357         (or m4/onceonly.m4, if pre-2.57) manually.
21358
21359 2006-07-08  Jim Meyering  <jim@meyering.net>
21360
21361         * m4/link-follow.m4: Remove one of two adjacent "whether"s in a
21362         comment.
21363         * m4/getopt.m4: Remove one of two adjacent "your"s in a comment.
21364         * m4/regex.m4 (gl_REGEX): Remove one of two adjacent "the"s in a
21365         comment.
21366
21367 2006-07-08  Jim Meyering  <jim@meyering.net>
21368
21369         * lib/getndelim2.h (getndelim2): Remove doubled "after" in comment.
21370
21371 2006-07-07  Simon Josefsson  <jas@extundo.com>
21372
21373         * tests/test-crc.c: Change expected crc value, the test vector
21374         were probably computed using the old broken crc.c?
21375
21376 2006-07-06  Simon Josefsson  <jas@extundo.com>
21377
21378         * modules/sys_socket (Files): Add m4/sockpfaf.m4 (this module is
21379         now the canonical place for the M4 file).
21380
21381         * modules/getaddrinfo (Files): Remove m4/sockpfaf.m4, we get it
21382         from the sys_socket dependency now.
21383
21384         * modules/inet_pton (Files): Ditto.
21385
21386         * modules/inet_ntop (Files): Ditto.
21387
21388 2006-07-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
21389
21390         * modules/getusershell (configure.ac): Use gl_FUNC_GETUSERSHELL,
21391         not gl_PREREQ_GETUSERSHELL.
21392
21393 2006-07-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
21394
21395         * m4/_inttypes_h.m4 (gl_INTTYPES_H): Use AC_CHECK_DECLS_ONCE
21396         with only one argument, for Autoconf 2.60.
21397         * m4/fileblocks.m4 (gl_PREREQ_FILEBLOCKS): AC_CHECK_DECLS_ONCE may
21398         expand to nothing, so add a shell command to avoid syntax error.
21399         * m4/getpass.m4 (gl_PREREQ_GETPASS): Likewise.
21400
21401 2006-07-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
21402
21403         * lib/strtod.c (strtod): cast the argument of tolower to unsigned char.
21404
21405 2006-07-06  Paul Eggert  <eggert@cs.ucla.edu>
21406
21407         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Don't check for getenv decl;
21408         no longer needed.  Check for isblank decl.
21409         * m4/mkstemp.m4 (gl_PREREQ_TEMPNAME): Don't check for getenv decl.
21410         * m4/regex.m4 (gl_PREREQ_REGEX): Dheck for isblank decl instead
21411         of existence.
21412
21413 2006-07-06  Paul Eggert  <eggert@cs.ucla.edu>
21414
21415         * lib/getloadavg.c: Use __VMS, not VMS.
21416         * lib/getopt.c: Likewise.
21417         * lib/getpagesize.h: Likewise.
21418         * lib/glob.c: Remove most VMS cruft; it hasn't been tested for a while
21419         and probably does not work.
21420
21421 2006-07-06  Paul Eggert  <eggert@cs.ucla.edu>
21422
21423         * lib/.cppi-disable: Add wcwidth.
21424         * lib/fnmatch.c (ISBLANK): Remove.  All uses changed to isblank.
21425         (isblank) [! (defined isblank || HAVE_DECL_ISBLANK)]: New macro.
21426         (ISGRAPH): Remove.  All uses changed to isgraph.
21427         (FOLD) [!defined _LIBC]: Remove special case.
21428         * lib/getdate.y (lookup_word): Remove no-longer-needed call to islower.
21429         * lib/regex_internal.h (isblank): Depend on HAVE_DECL_ISBLANK, not
21430         HAVE_ISBLANK.
21431         * lib/strftime.c (TOLOWER, TOUPPER) [!defined _LIBC]: Remove special
21432         case.
21433
21434 2006-07-06  Jim Hyslop  <jhyslop@dreampossible.ca>  (tiny change)
21435
21436         * lib/getaddrinfo.c: Changes to compile under MSVC6: changed
21437         '#if WIN32_NATIVE' to '#ifdef' & moved WSAAPI macro inside
21438         brackets.  Other minor changes to suppress some compiler
21439         warnings.
21440
21441 2006-07-06  Derek R. Price  <derek@ximbiot.com>
21442         and Paul Eggert  <eggert@cs.ucla.edu>
21443
21444         * m4/backupfile.m4 (gl_BACKUPFILE): Check for dirent.h, instead
21445         of invoking obsolescent AC_HEADER_DIRENT macro.
21446         * m4/d-ino.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_INO): Likewise.
21447         * m4/d-type.m4 (gl_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Likewise.
21448         * m4/dirfd.m4 (gl_FUNC_DIRFD): Likewise.
21449         * m4/fts.m4 (gl_FUNC_FTS_CORE): Likewise.
21450         * m4/getcwd.m4 (gl_PREREQ_GETCWD): Likewise.
21451         * m4/glob.m4 (gl_PREREQ_GLOB): Likewise.
21452         * m4/savedir.m4 (gl_SAVEDIR): Likewise.
21453         * m4/readdir.m4: Remove; no longer needed.
21454
21455 2006-07-06  Derek R. Price  <derek@ximbiot.com>
21456         and Paul Eggert  <eggert@cs.ucla.edu>
21457
21458         * lib/backupfile.c [HAVE_DIRENT_H && ! HAVE_NDIR_H]:
21459         Don't worry about this obsolete case any more.
21460         (HAVE_DIR): Remove.  All uses removed; we now assume you can read
21461         directories.
21462         * lib/dirfd.h [HAVE_DIRENT_H && ! HAVE_NDIR_H]: Don't
21463         worry about this obsolete case any more.
21464         * lib/fts.c: Likewise.
21465         * lib/getcwd.c: Likewise.
21466         * lib/glob.h: Likewise.
21467         * lib/savedir.c: Likewise.
21468
21469 2006-07-05  Paul Eggert  <eggert@cs.ucla.edu>
21470
21471         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Use AC_CHECK_DECLS_ONCE
21472         rather than AC_CHECK_DECLS for strtoimax and strtoumax.
21473         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Remove; no longer
21474         needed.
21475         All uses removed.
21476         * m4/strtol.m4 (gl_PREREQ_STRTOL): Likewise.
21477         * m4/strtoul.m4 (gl_PREREQ_STRTOUL): Likewise.
21478         * m4/exclude.m4 (gl_EXCLUDE): Don't check for isascii; no longer
21479         needed.
21480         * m4/getdate.m4 (gl_GETDATE): Likewise.
21481         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Likewise.
21482         * m4/memcasecmp.m4 (gl_MEMCASECMP): Likewise.
21483         * m4/strtod.m4 (gl_FUNC_STRTOD): Likewise.
21484         * m4/strtol.m4 (gl_PREREQ_STRTOL): Likewise.
21485         * m4/strtoul.m4 (gl_PREREQ_STRTOUL): Likewise.
21486         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
21487         * m4/exclude.m4 (gl_EXCLUDE): Don't require AC_C_INLINE; no longer
21488         needed.
21489
21490 2006-07-05  Paul Eggert  <eggert@cs.ucla.edu>
21491
21492         * lib/memcasecmp.c: Include <limits.h>.
21493         (memcasecmp): Don't assume UCHAR_MAX <= INT_MAX.
21494         * lib/strtod.c (strtod): Don't assume isspace works on negative chars.
21495         Don't assume isdigit succeeds only on '0' through '9'.
21496
21497 2006-07-05  Eric Blake  <ebb9@byu.net>
21498
21499         * modules/getaddrinfo (Depends-on): Add snprintf.
21500
21501 2006-07-05  Eric Blake  <ebb9@byu.net>
21502
21503         * m4/sockpfaf.m4 (gl_SOCKET_FAMILIES): Use gl_HEADER_SYS_SOCKET
21504         to avoid 'header present but could not be compiled' on cygwin.
21505
21506 2006-07-05  Eric Blake  <ebb9@byu.net>
21507
21508         * lib/getaddrinfo.h (NI_NUMERICHOST, NI_NUMERICSERV): Define if
21509         missing from netdb.h.
21510         * lib/getaddrinfo.c (includes): Include inet_ntop and snprintf.
21511
21512 2006-07-05  Derek R. Price  <derek@ximbiot.com>
21513
21514         * m4/calloc.m4 (_AC_FUNC_CALLOC_IF): Don't require AC_HEADER_STDC;
21515         no longer needed.
21516         * m4/exclude.m4 (gl_EXCLUDE): Likewise.
21517         * m4/getdate.m4 (gl_GETDATE): Likewise.
21518         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Likewise.
21519         * m4/memcasecmp.m4 (gl_MEMCASECMP): Likewise.
21520         * m4/strtod.m4 (gl_FUNC_STRTOD): Likewise.
21521         * m4/strtol.m4 (gl_PREREQ_STRTOL): Likewise.
21522         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
21523
21524 2006-07-05  Derek R. Price  <derek@ximbiot.com>
21525
21526         * lib/exclude.c (IN_CTYPE_DOMAIN, is_space): Remove; no longer needed.
21527         All uses of is_space replaced by isspace.
21528         * lib/exit.h: Don't talk about STDC_HEADERS.
21529         * lib/fnmatch.c (ISASCII): Remove; no longer needed.  All uses removed.
21530         (ISPRINT, ISDIGIT, ISALNUM, ISALPHA, ISCNTRL, ISLOWER, ISPUNCT):
21531         (ISSPACE, ISUPPER, ISXDIGIT): Remove; no longer needed.  All uses
21532         replaced by isprint etc.
21533         * lib/getdate.y (IN_CTYPE_DOMAIN, ISSPACE, ISALPHA, ISLOWER): Likewise.
21534         * lib/getusershell.c (IN_CTYPE_DOMAIN, ISSPACE): Likewise.
21535         * lib/memcasecmp.c (IN_CTYPE_DOMAIN, ISLOWER, TOUPPER): Likewise.
21536         * lib/strtod.c (IN_CTYPE_DOMAIN, ISSPACE, ISDIGIT, TOLOWER): Likewise.
21537         * lib/strtol.c (IN_CTYPE_DOMAIN): Likewise.
21538         * lib/xstrtol.c (IN_CTYPE_DOMAIN, ISSPACE): Likewise.
21539
21540 2006-07-05  Bruno Haible  <bruno@clisp.org>
21541
21542         * m4/strndup.m4 (gl_FUNC_STRNDUP): When cross-compiling, check whether
21543         the function exists, before testing against AIX.
21544         Reported by Martin Lambers <marlam@marlam.de>.
21545
21546 2006-07-04  Paul Eggert  <eggert@cs.ucla.edu>
21547
21548         * modules/cycle-check (lib_SOURCES): Add same-inode.h.
21549         From Mark D. Baushke.
21550
21551 2006-07-04  Paul Eggert  <eggert@cs.ucla.edu>
21552
21553         * m4/absolute-header.m4 (gl_ABSOLUTE_HEADER): Prepend three slashes
21554         to the absolute name, not just one, to bypass Sun C 5.8's
21555         "warning: #include of /usr/include/... may be non-portable".
21556
21557 2006-07-04  Eric Blake  <ebb9@byu.net>
21558
21559         * modules/dirname-tests: New test module.
21560         * tests/test-dirname.c: New file, replacing dirname.c
21561         TEST_DIRNAME section that was recently deleted.
21562
21563 2006-07-04  Bruno Haible  <bruno@clisp.org>
21564
21565         Assume ANSI C header files and <ctype.h> functions.
21566         * lib/mbswidth.c (IN_CTYPE_DOMAIN, ISPRINT, ISCNTRL): Remove macros.
21567         (mbsnwidth): Use isprint, iscntrl instead.
21568
21569 2006-07-03  Paul Eggert  <eggert@cs.ucla.edu>
21570
21571         Merge from coreutils.
21572         * MODULES.html.sh: Add xstrtold.
21573         * modules/xstrtold: New file.
21574         * modules/cycle-check (Files): Add lib/same-inode.h.
21575         * modules/dirname (Files): Add m4/double-slash-root.m4.
21576         * modules/getcwd (Files): Add m4/getcwd-abort-bug.m4.
21577         * modules/mkdir-p (Files): Add lib/same-inode.h.
21578         * modules/same (Files): Add lib/same-inode.h.
21579
21580 2006-07-03  Paul Eggert  <eggert@cs.ucla.edu>
21581
21582         * m4/absolute-header.m4: Renamed from full-header-path.m4.
21583         This is to keep the terminology clean; POSIX talks about
21584         "absolute pathnames", not "full pathnames", but the GNU
21585         Coding Standards say to use "path" for something else;
21586         so use "absolute" to keep both sides happy.
21587         (gl_ABSOLUTE_HEADER): Renamed from gl_FULL_HEADER_PATH.
21588         Set gl_absolute_header, not gl_full_header_path.
21589         Set gl_cv_absolute_<header>, not gl_full_path_<header>.
21590         Define ABSOLUTE_<HEADER>, not FULL_PATH_<HEADER>.
21591         All uses changed.
21592
21593         Merge from coreutils.
21594
21595         2006-06-30  Paul Eggert  <eggert@cs.ucla.edu>
21596
21597         * m4/c-strtod.m4 (gl_C_STRTOLD): Add c-strtod.c to LIBSOURCES.
21598         Require gl_USE_SYSTEM_EXTENSIONS, not gl_C_STRTOD, since we don't
21599         want to require the building of c-strtod.o.
21600         * m4/lib-check.m4 (cu_LIB_CHECK): Remove SEQ_LIBM, since seq no longer
21601         needs -lm directly.
21602         * m4/xstrtod.m4 (gl_XSTRTOLD): New macro.
21603
21604         2006-06-19  Paul Eggert  <eggert@cs.ucla.edu>
21605
21606         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Prefer binutils's
21607         --as-needed option if available.  Problem reported by Albert Chin in
21608         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00114.html>.
21609         However, use -Wl,--as-needed, not bare --as-needed, since HP-UX 11.11
21610         cc merely issues a bunch of annoying warnings for --as-needed
21611         (this problem was reported by Bob Proulx).  Also, try linking with
21612         -lm to detect a bug in binutils 2.16 (this problem was reported
21613         by Ralf Wildenhues).
21614
21615         2006-06-18  Jim Meyering  <jim@meyering.net>
21616
21617         Test for a bug that causes glibc's getcwd to suffer a failed assertion.
21618         * m4/getcwd-abort-bug.m4 (gl_FUNC_GETCWD_ABORT_BUG): New file and
21619         macro.
21620         * m4/getcwd.m4 (gl_FUNC_GETCWD): If we detect support for getcwd_null,
21621         also check for glibc-2.4's abort-inducing bug.
21622
21623         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Fix typo.
21624         Low-probability clean-up should be to use rmdir to get rid of
21625         the just-created directory, not unlink.
21626
21627         * m4/ftruncate.m4 (gl_FUNC_FTRUNCATE): If ftruncate is missing, make
21628         configure fail, and request a bug report to inform us about it.
21629         Add a comment that, barring reports to the contrary, in 2007 we'll
21630         assume ftruncate is universally available.
21631
21632         2006-04-17  Paul Eggert  <eggert@cs.ucla.edu>
21633
21634         * m4/filemode.m4 (gl_FILEMODE): Check for strmode declaration.
21635
21636         2006-03-12  Jim Meyering  <jim@meyering.net>
21637
21638         * m4/chdir-safer.m4 (gl_CHDIR_SAFER): Add same-inode.h to the list.
21639         * m4/cycle-check.m4 (gl_CYCLE_CHECK): Likewise.
21640         * m4/same.m4 (gl_SAME): Likewise.
21641         * m4/root-dev-ino.m4 (gl_ROOT_DEV_INO): Likewise.
21642
21643         2006-03-11  Eric Blake  <ebb9@byu.net>
21644
21645         * m4/double-slash-root.m4: New file, provides gl_DOUBLE_SLASH_ROOT.
21646         * m4/dirname.m4 (gl_DIRNAME): Use gl_DOUBLE_SLASH_ROOT.
21647         * m4/dos.m4 (FILE_SYSTEM_PREFIX_LEN): Move from here to dirname.h.
21648         (FILE_SYSTEM_DRIVE_PREFIX_CAN_BE_RELATIVE): New define.
21649
21650 2006-07-03  Paul Eggert  <eggert@cs.ucla.edu>
21651
21652         * lib/stdint_.h: Include <sys/types.h> after @FULL_PATH_STDINT_H@, for
21653         MacOS X 10.4.6.  Don't mention <sys/int_types.h>.  Problems
21654         reported by Mark D. Baushke, one in
21655         <http://lists.gnu.org/archive/html/bug-gnulib/2006-07/msg00015.html>.
21656
21657         Merge from coreutils.
21658
21659         * lib/.cppi-disable: Add stdint_.h.
21660         * lib/.cvsignore: Add stdint.h.
21661
21662         2006-06-30  Paul Eggert  <eggert@cs.ucla.edu>
21663
21664         * lib/xstrtod.c (XSTRTOD, DOUBLE): New macros, so that we can support
21665         both double and long double versions.
21666         (XSTRTOD): Renamed from xstrtod.  Use DOUBLE internally.
21667         * lib/xstrtold.c: New file.
21668         * lib/xstrtod.h (xstrtold): New decl.
21669
21670         2006-05-22  Paul Eggert  <eggert@cs.ucla.edu>
21671
21672         * lib/filemode.c (setst): Remove.
21673         (strmode): Rewrite to avoid setst.  This makes the code shorter,
21674         (arguably) clearer, and the generated code is a bit smaller on my
21675         Debian GNU/Linux stable x86 host.
21676
21677         2006-04-17  Paul Eggert  <eggert@cs.ucla.edu>
21678
21679         * lib/filemode.c: Include "filemode.h" first, to test the interface.
21680         Assume that filemode.h includes sys/types.h and sys/stat.h.
21681         (HAVE_ST_DM_MODE): New macro, moved here from ls.c.
21682         (ftypelet): Reorder to put common cases first, for efficiency.
21683         Add 'P', 'w'.  Remove 'M', since it's now the caller's responsibility
21684         to do 'M'.
21685         (strmode): Renamed from mode_string, and now stores 12 bytes instead
21686         of 10, for compatibility with FreeBSD.  All callers changed.
21687         (filemodestring): Now stores 12 bytes instead of 10, and sets file
21688         types that can't be deduced solely from st_mode.  First arg is now a
21689         const pointer.
21690         * lib/filemode.h (HAVE_DECL_STRMODE): Include <string.h> for strmode.
21691         (strmode): Renamed from mode_string.
21692         (filemodestring): New decl.
21693         * lib/stat-macros.h: Don't undef S_ISDOOR, since it's never buggy.
21694         (S_ISDOOR): Don't bother with S_IFDOOR, since that code is never
21695         needed.
21696         (S_ISPORT, S_ISWHT): New macros, if not already defined.
21697
21698         2006-04-12  Paul Eggert  <eggert@cs.ucla.edu>
21699
21700         * lib/fsusage.c: Don't include <inttypes.h> or <stdint.h>, since
21701         fsusage.h now does that.  Include fsusage.h first, to test interface.
21702         Prefer statvfs if it works, since it's blessed by POSIX.  Attempt
21703         at most one method (the old code could have generated decls that
21704         didn't conform to C89, not that this was ever exercised).
21705         * lib/fsusage.h: Include <inttypes.h> and <stdint.h> if they exist.
21706
21707         2006-03-19  Jim Meyering  <jim@meyering.net>
21708
21709         Work even in a chroot where d_ino values for entries in "/"
21710         don't match the stat.st_ino values for the same names.
21711         * lib/getcwd.c (__getcwd): When no d_ino value matches the target inode
21712         number, iterate through all entries again, using lstat instead.
21713         Reported by Kenshi Muto in http://bugs.debian.org/355810, and by
21714         Zouhir Hafidi in https://bugzilla.redhat.com/bugzilla/190656.
21715
21716         * lib/getcwd.c (__getcwd): Clarify a comment.
21717         Use memcpy in place of a call to strcpy.
21718
21719         2006-03-12  Jim Meyering  <jim@meyering.net>
21720
21721         * lib/fts-cycle.c (leave_dir): If cycle-check's saved dev-ino pair
21722         matches that of the current directory (which we're about to chdir ".."
21723         out of), then save the dev-ino of the parent, instead.
21724
21725         * lib/same-inode.h (SAME_INODE): New file/macro.
21726         * lib/chdir-safer.c (SAME_INODE): Remove definition.
21727         Include "same-inode.h", instead.
21728         * lib/same.c: Likewise.
21729         * lib/cycle-check.h: Include "same-inode.h".
21730         (CYCLE_CHECK_REFLECT_CHDIR_UP): Define.
21731         * lib/cycle-check.c (SAME_INODE): Remove definition.
21732         * lib/root-dev-ino.h: Include "same-inode.h".
21733
21734         2006-03-11  Eric Blake  <ebb9@byu.net>
21735
21736         * lib/same.c (same_name): s/base_name/last_component/
21737         * lib/backupfile.c (check_extension, numbered_backup): Likewise.
21738         * lib/filenamecat.c (file_name_concat): Likewise.
21739
21740         2006-03-11  Eric Blake  <ebb9@byu.net>,
21741                     Paul Eggert  <eggert@cs.ucla.edu>
21742
21743         * lib/dirname.h (FILE_SYSTEM_PREFIX_LEN): Move here from dos.m4.
21744         [FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX]: Don't treat 1: as a
21745         drive prefix.
21746         (IS_ABSOLUTE_FILE_NAME): Treat all drive letters as absolute on
21747         platforms like cygwin with FILE_SYSTEM_DRIVE_PREFIX_IS_ABSOLUTE.
21748         (last_component): New method.
21749         * lib/dirname.c (dir_len): Determine when drive letters need a
21750         subsequent slash.  Preserve // when it is special.
21751         (dir_name): Don't append dot when drive letter is absolute.
21752         [TEST_DIRNAME]: Move into a full-blown gnulib test.
21753         * lib/basename.c (base_name): New semantics - malloc the result.
21754         Preserve // when it is special.  Preserve relative files that look
21755         like drive letters.
21756         (base_len): Preserve // when it is special.
21757         (last_component): New method, similar to old base_name semantics.
21758         * lib/stripslash.c (strip_trailing_slashes): Use last_component, not
21759         base_name.  Strip redundant slashes from ///.
21760
21761 2006-07-03  Jim Meyering  <jim@meyering.net>
21762
21763         * lib/cycle-check.h (CYCLE_CHECK_REFLECT_CHDIR_UP): Abort if this
21764         macro is used before the first cycle_check call.
21765
21766 2006-07-03  Eric Blake  <ebb9@byu.net>
21767
21768         * modules/dirname (Depends-on): Add xstrndup.
21769
21770 2006-07-02  Paul Eggert  <eggert@cs.ucla.edu>
21771
21772         * m4/stdint.m4 (gl_STDINT_H): Use more-mnemonic identifiers for
21773         test cases, so that config.log is a bit easier to follow.
21774
21775 2006-07-02  Paul Eggert  <eggert@cs.ucla.edu>
21776
21777         * lib/stdint_.h (intmax_t, uintmax_t): Prefer long to long long if
21778         both are 64 bits, since this seems to be the tradition, and this
21779         prevents gcc -Wformat from warning about usages with PRIuMAX.  If
21780         we ever run into a host that prefers long long to long in this
21781         case, we'll need another configure-time test.  Problem reported by
21782         Jim Meyering.
21783
21784 2006-07-02  Eric Blake  <ebb9@byu.net>
21785
21786         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Simplify by using AC_CHECK_DECLS.
21787
21788 2006-07-01  Paul Eggert  <eggert@cs.ucla.edu>
21789
21790         * modules/inttypes (Depends-on): No longer depends on stdint.
21791         * modules/stdint (Description): Say more about assumptions.
21792         Say that the fast types might differ.  Say macros are used.
21793         (Files): Remove m4/size_max.m4, m4/wchar_t.m4.  Add m4/longlong.m4.
21794         (Makefile.am): Revise list of substituted symbols to match
21795         new stdint.m4.
21796         * modules/stdint-tests (Files): Add m4/wchar_t.m4, m4/wint_t.m4.
21797         (configure.ac): Add gt_TYPE_WCHAR_T, gt_TYPE_WINT_T.
21798         * tests/test-stdint.c (verify_same_types)
21799         [! (__GNUC__ >= 2 && DO_PEDANTIC)]: Put in a decl, so that
21800         the code conforms to C99/C89.
21801         Test for WCHAR_MIN and WCHAR_MAX only if HAVE_WCHAR_T.
21802         Test for WINT_MIN and WINT_MAX only if HAVE_WINT_T.
21803
21804 2006-07-01  Paul Eggert  <eggert@cs.ucla.edu>
21805
21806         * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Backport from Autoconf 2.60,
21807         but fix a bug, by requiring at least 64 bits.
21808         * m4/ulonglong.m4 (AC_TYPE_UNSIGNED_LONG_LONG_INT): Likewise.
21809         * m4/longlong.m4 (gl_AC_TYPE_LONG_LONG): Now just call
21810         AC_TYPE_LONG_LONG_INT.  This macro is obsolete and will go soon.
21811         * m4/ulonglong.m4 (gl_AC_TYPE_UNSIGNED_LONG_LONG) Likewise.
21812
21813         * m4/stdint.m4 (gl_STDINT_H): Rewrite to accommodate stdint_.h
21814         changes.  Make 2.59 a prerequisite.  Check and substitute for
21815         HAVE_LONG_LONG_INT.  Rely on Autoconf to check for stdint.h and
21816         inttypes.h.  Do not use special include files; just use the
21817         defaults.  Check for sys/inttypes.h and sys/bitypes.h in the usual
21818         way now.  Remove no-longer-needed tests for HAVE_LONG_64BIT,
21819         HAVE_LONG_LONG_64BIT, int8_t, int16_t, int32_t, int64_t, uint8_t,
21820         uint16_t, uint32_t uint64_t, int_least8_t, int_least16_t,
21821         int_least32_t, int_least64_t, uint_least8_t, uint_least16_t,
21822         uint_least32_t, uint_least64_t, int_fast8_t, int_fast16_t,
21823         int_fast32_t, int_fast64_t, uint_fast8_t uint_fast16_t,
21824         uint_fast32_t, uint_fast64_t, intptr_t, uintptr_t, intmax_t,
21825         uintmax_t, INT8_MIN, INT8_MAX, UINT8_MAX, INT16_MIN, INT16_MAX,
21826         UINT16_MAX, INT32_MIN, INT32_MAX, UINT32_MAX, INT64_MIN,
21827         INT64_MAX, UINT64_MAX, INT_LEAST8_MIN, INT_LEAST8_MAX,
21828         UINT_LEAST8_MAX, INT_LEAST16_MIN, INT_LEAST16_MAX,
21829         UINT_LEAST16_MAX, INT_LEAST32_MIN, INT_LEAST32_MAX,
21830         UINT_LEAST32_MAX, INT_LEAST64_MIN, INT_LEAST64_MAX,
21831         UINT_LEAST64_MAX, INT_FAST8_MIN, INT_FAST8_MAX, UINT_FAST8_MAX,
21832         INT_FAST16_MIN, INT_FAST16_MAX, UINT_FAST16_MAX, INT_FAST32_MIN,
21833         INT_FAST32_MAX, UINT_FAST32_MAX, INT_FAST64_MIN, INT_FAST64_MAX,
21834         UINT_FAST64_MAX, INTPTR_MIN, INTPTR_MAX, UINTPTR_MAX, INTMAX_MIN,
21835         INTMAX_MAX, UINTMAX_MAX, PTRDIFF_MIN, PTRDIFF_MAX, SIG_ATOMIC_MIN,
21836         SIG_ATOMIC_MAX, SIZE_MAX, WCHAR_MIN, WCHAR_MAX, WINT_MIN,
21837         WINT_MAX.  Check for C99 conformance more strictly, by detecting
21838         bugs in glibc 2.4, Solaris 10, and OpenBSD 3.9.  On the other hand do
21839         not check for things that C99 does not require, e.g., int8_t.  If
21840         a test isn't needed unless <stdint.h> isn't working, and is
21841         unlikely to be needed for any other reason, then don't do it
21842         unless <stdint.h> isn't working.  Do not check for ptrdiff_t or
21843         size_t, since we assume C89 freestanding at least.  Do not check
21844         for sig_atomic_t, wchar_t, or wint_t, since the code now does
21845         the right thing even if the types are not defined.  Instead use:
21846         (gl_STDINT_TYPE_PROPERTIES): New macro.
21847         (gl_HEADER_STDINT_H, gl_HEADER_INTTYPES_H): Remove.  Don't bother
21848         testing whether <sys/types.h> clashes, as Autoconf does this for
21849         us now.  All uses removed.
21850         (gl_STDINT_CHECK_TYPES, gl_STDINT_MISSING_BOUND):
21851         (gl_STDINT_MISSING_BOUNDS, gl_STDINT_MISSING_BOUNDS2):
21852         (gl_CHECK_TYPE_SAME):
21853         Remove; no longer needed.
21854         (gl_STDINT_BITSIZEOF): Don't bother to check whether the type
21855         exists, since we'll return 0 anyway in that case.
21856         (gl_INTEGER_TYPE_SUFFIX, gl_STDINT_INCLUDES): New macros.
21857
21858 2006-07-01  Paul Eggert  <eggert@cs.ucla.edu>
21859
21860         * lib/stdint_.h (_GL_STDINT_H): Renamed from _STDINT_H, to avoid
21861         possible collision with system files.
21862         (<stdio.h>, <time.h>, <wchar.h>) [defined __cplusplus && ! defined
21863         __STDC_CONSTANT_MACROS)]: Do not include, since we don't need
21864         WCHAR_MIN and WCHAR_MAX in this case.
21865         (<stddef.h>): Do not include; no longer needed.
21866         (<sys/types.h>): Include if @HAVE_SYS_TYPES_H@, not if
21867         (defined(__OpenBSD__) || defined(__bsdi__) || defined(__sgi)).
21868         (<sys/inttypes.h>): Include if @HAVE_SYS_INTTYPES_H@ &&
21869         !@HAVE_INTTYPES_H@, not if (defined(__FreeBSD__)
21870         && (__FreeBSD__ >= 3) && (__FreeBSD__ <= 4)).
21871         (__STDINT_H__) [@HAVE_STDINT_H@ && defined __sgi && ! defined
21872         __c99]: Define, to work around IRIX <stdint.h> incompatibility.
21873         (@FULL_PATH_STDINT_H@) [!(defined(__sgi) && @HAVE_INTTYPES_H@ &&
21874         !defined(__c99))]: Include in this case too, since it's harmless
21875         now.
21876         (<inttypes.h>) [@HAVE_INTTYPES_H@]: Include, since it's no longer
21877         dangerous to do so.
21878         (@FULL_PATH_INTTYPES_H@) [(defined(__hpux) || defined(_AIX)) &&
21879         @HAVE_INTTYPES_H@]: Do not include, since we now include <inttypes.h>.
21880         (_STDINT_MIN, _STDINT_MAX): New macros.
21881         (int8_t, uint8_t, int16_t, uint16_t, int32_t, uint32_t, int64_t):
21882         (uint64_t, int_least8_t, uint_least8_t, int_least16_t):
21883         (uint_least16_t, int_least32_t, uint_least32_t, int_least64_t):
21884         (uint_least64_t, int_fast8_t, uint_fast8_t, int_fast16_t):
21885         (uint_fast16_t, int_fast32_t, uint_fast32_t, int_fast64_t):
21886         (uint_fast64_t, intptr_t, uintptr_t, intmax_t, uintmax_t): Now
21887         macros, not typedefs; this simplifies things quite a bit.
21888         Use long int for all types narrower than int64_t.
21889         (intmax_t, uintmax_t, INTMAX_C, UINTMAX_C):
21890         Define in terms of long long int or int64_t or long int,
21891         not int64_t or int32_t.  This saves some compile-time testing.
21892         (INT8_MIN, INT8_MAX, UINT8_MAX, INT16_MIN, INT16_MAX, UINT16_MAX):
21893         (INT32_MIN, INT32_MAX, UINT32_MAX, INT64_MIN, INT64_MAX):
21894         (UINT64_MAX, INT_LEAST8_MIN, INT_LEAST8_MAX, UINT_LEAST8_MAX):
21895         (INT_LEAST16_MIN, INT_LEAST16_MAX, UINT_LEAST16_MAX):
21896         (INT_LEAST32_MIN, INT_LEAST32_MAX, UINT_LEAST32_MAX):
21897         (INT_LEAST64_MIN, INT_LEAST64_MAX, UINT_LEAST64_MAX, INT_FAST8_MIN):
21898         (INT_FAST8_MAX, UINT_FAST8_MAX, INT_FAST16_MIN, INT_FAST16_MAX):
21899         (UINT_FAST16_MAX, INT_FAST32_MIN, INT_FAST32_MAX, UINT_FAST32_MAX):
21900         (INT_FAST64_MIN, INT_FAST64_MAX, UINT_FAST64_MAX, INTPTR_MIN):
21901         (INTPTR_MAX, UINTPTR_MAX, INTMAX_MIN, INTMAX_MAX, UINTMAX_MAX):
21902         (PTRDIFF_MIN, PTRDIFF_MAX, SIG_ATOMIC_MIN, SIG_ATOMIC_MAX):
21903         (SIZE_MAX, WCHAR_MIN, WCHAR_MAX, WINT_MIN, WINT_MAX):
21904         undef any previous version and define our own version, for
21905         simplicity and consistency with the new macros for types.
21906         (PTRDIFF_MIN, PTRDIFF_MAX, SIG_ATOMIC_MIN, SIG_ATOMIC_MAX):
21907         (SIZE_MAX, WCHAR_MIN, WCHAR_MAX, WINT_MIN, WINT_MAX):
21908         Simplify definitions by using _STDINT_MIN and _STDINT_MAX
21909         where appropriate.  Rely on new symbols @PTRDIFF_T_SUFFIX@,
21910         @SIG_ATOMIC_T_SUFFIX@, @SIZE_T_SUFFIX@, @WCHAR_T_SUFFIX@,
21911         @WINT_T_SUFFIX@ to keep things simple here.
21912         (UINT8_C, UINT16_C, UINT32_C, INT64_C, UINT64_C):
21913         Simplify by assuming typical 8/16/32/64 host, since we're
21914         already doing that elsewhere anyway.
21915         Use (LONG_MAX >> 31 >> 31 == 1) rather than @HAVE_LONG_64BIT@,
21916         and assume long long int is 64 bits if available.  This
21917         speeds up 'configure'.
21918
21919 2006-07-01  Eric Blake  <ebb9@byu.net>
21920
21921         * m4/stdarg.m4 (gl_STDARG_H): Use proper AH_VERBATIM.
21922         Reported by Andreas Buening.
21923
21924 2006-07-01  Eric Blake  <ebb9@byu.net>
21925
21926         * m4/stdarg.m4 (gl_STDARG_H): Properly parenthesize gl_va_copy.
21927
21928 2006-06-30  Jim Hyslop  <jhyslop@dreampossible.ca>  (tiny change)
21929
21930         * lib/getaddrinfo.c: fixed typo
21931
21932 2006-06-29  Jim Meyering  <jim@meyering.net>
21933
21934         * modules/strftime (Maintainer): Add my name, since with the
21935         FPRINTFTIME changes strftime.c has forked from glibc.
21936
21937 2006-06-29  Eric Blake  <ebb9@byu.net>
21938
21939         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): Use AC_C_INLINE.
21940
21941 2006-06-29  Eric Blake  <ebb9@byu.net>
21942
21943         * m4/sys_stat_h.m4 (gl_HEADER_SYS_STAT_H): New file.
21944
21945 2006-06-29  Eric Blake  <ebb9@byu.net>
21946
21947         * lib/stat_.h: New file.
21948
21949 2006-06-29  Eric Blake  <ebb9@byu.net>
21950
21951         * lib/stat_.h (rpl_mkdir): Declare inline, to avoid warnings about
21952         unused static function.
21953
21954 2006-06-29  Eric Blake  <ebb9@byu.net>
21955
21956         * doc/functions.texi (Function Portability): Document missing lstat
21957         on mingw.
21958
21959 2006-06-29  Eric Blake  <ebb9@byu.net>
21960
21961         * MODULES.html.sh: Add sys_stat.
21962         * modules/sys_stat: New module.
21963         * modules/mkstemp (Depends-on): Add sys_stat.
21964
21965 2006-06-29  Derek R. Price  <derek@ximbiot.com>
21966
21967         * m4/strftime.m4: Don't call AC_FUNC_STRFTIME.
21968
21969 2006-06-29  Derek R. Price  <derek@ximbiot.com>
21970
21971         * m4/c-bs-a.m4: Removed.
21972
21973 2006-06-29  Derek R. Price  <derek@ximbiot.com>
21974
21975         * lib/strftime.c: Assume strftime() exists.
21976
21977 2006-06-29  Derek Price  <derek@ximbiot.com>
21978
21979         * modules/c-bs-a: Removed - \a is C89.
21980         * MODULES.html.sh: Remove c-bs-a.
21981
21982 2006-06-29  Bruno Haible  <bruno@clisp.org>
21983
21984         * modules/wcwidth (License): Change to LGPL.
21985
21986 2006-06-28  Simon Josefsson  <jas@extundo.com>
21987
21988         * tests/test-getaddrinfo.c: Test getnameinfo too.  Call WSAStartup
21989         on _WIN32.
21990
21991         * modules/getaddrinfo (Depends-on): Add inet_ntop, needed by
21992         getnameinfo.
21993
21994 2006-06-28  Simon Josefsson  <jas@extundo.com>
21995
21996         * m4/getaddrinfo.m4: Look for getnameinfo prototypes too.
21997
21998 2006-06-28  Simon Josefsson  <jas@extundo.com>
21999
22000         * lib/getaddrinfo.c: Try to load ws2_32.dll on Windows, to find the
22001         functions there.  It will succeed on Windows XP, but on Windows
22002         2000 and (presumably) earlier, it will fail, and use the internal
22003         re-implementation.
22004         (use_win32_p): New function.
22005         (getaddrinfo): Use strtoul on servname, to support numeric ports.
22006         Support AI_NUMERICSERV to disable getservbyname.
22007         (getnameinfo): New function, only supports
22008         NI_NUMERICHOST|NI_NUMERICSERV for now.
22009
22010         * lib/getaddrinfo.h: Test and check for AI_* flags separately, MinGW
22011         only have some of them.  Add AI_NUMERICSERV.  Add prototype for
22012         getnameinfo.
22013
22014 2006-06-28  Eric Blake  <ebb9@byu.net>
22015
22016         * modules/wcwidth: New file.
22017         * modules/mbchar (Depends-on): Add wcwidth.
22018         * modules/mbswidth (Depends-on): Add wcwidth.
22019         * MODULES.html.sh: Add wcwidth.
22020
22021 2006-06-28  Eric Blake  <ebb9@byu.net>
22022
22023         * m4/mbswidth.m4 (gl_MBSDWIDTH): Move wcwidth from here...
22024         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): ...to this new file.
22025
22026 2006-06-28  Eric Blake  <ebb9@byu.net>
22027
22028         * lib/xvasprintf.h: Fix comments.
22029
22030 2006-06-28  Eric Blake  <ebb9@byu.net>
22031
22032         * lib/mbchar.h (wcwidth): Include wcwidth.h.
22033         * lib/mbswidth.c (wcwidth): Move from here...
22034         * lib/wcwidth.h: ...to this new file.
22035
22036 2006-06-28  Derek R. Price  <derek@ximbiot.com>
22037
22038         * m4/savedir.m4: Remove AC_FUNC_CLOSEDIR_VOID requirement.
22039
22040         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Don't require AC_C_CONST, since
22041         it's obsolete.
22042         * m4/strftime.m4 (gl_FUNC_GNU_STRFTIME): Likewise.
22043
22044 2006-06-28  Derek R. Price  <derek@ximbiot.com>
22045
22046         * lib/savedir.c (CLOSEDIR): Remove.  All uses changed to closedir.
22047         Autoconf 2.60 says this stuff was obsolete.
22048
22049 2006-06-28  Bruno Haible  <bruno@clisp.org>
22050
22051         * modules/wcwidth (Files): Add m4/wchar_t.m4.
22052
22053 2006-06-28  Bruno Haible  <bruno@clisp.org>
22054
22055         * m4/wcwidth.m4 (gl_FUNC_WCWIDTH): Also require AC_C_INLINE and
22056         gt_TYPE_WCHAR_T.
22057
22058 2006-06-28  Bruno Haible  <bruno@clisp.org>
22059
22060         * lib/wcwidth.h: Declare nothing if !HAVE_WCHAR_T. Provide a fallback
22061         declaration for wcwidth.
22062         * lib/mbswidth.c: Restore the includes of <wchar.h> and <wctypes.h>.
22063
22064 2006-06-28  Bruno Haible  <bruno@clisp.org>
22065
22066         * lib/mkdtemp.c [MINGW]: Include <io.h>.
22067         (mkdir): Define using _mkdir.
22068
22069 2006-06-28  Bruno Haible  <bruno@clisp.org>
22070
22071         * lib/getaddrinfo.h: Fix POSIX URL.
22072         * lib/getaddrinfo.c (WIN32_NATIVE): New macro. Use it instead of
22073         _WIN32.
22074         (use_win32_p): Make static.
22075         (getaddrinfo): Reject service name if it is empty or does not consist
22076         solely of decimal digits, or if its value is > 65535.
22077         (getnameinfo): Remove useless casts.
22078
22079 2006-06-27  Simon Josefsson  <jas@extundo.com>
22080
22081         * modules/sys_select: New file, suggested by Bruno Haible, Paul
22082         Eggert and Martin Lambers.
22083
22084 2006-06-27  Simon Josefsson  <jas@extundo.com>
22085
22086         * m4/sys_select_h.m4: New file, suggested by Bruno Haible, Paul
22087         Eggert and Martin Lambers.
22088
22089 2006-06-27  Bruno Haible  <bruno@clisp.org>
22090
22091         * m4/stdint.m4 (gl_STDINT_BITSIZEOF): For nonexistent types, set the
22092         result to 0, not to empty.
22093         Reported by Martin Neitzel <neitzel@sco.gaertner.de>.
22094
22095 2006-06-27  Bruno Haible  <bruno@clisp.org>
22096
22097         * lib/stdint_.h (intmax_t, uintmax_t): Undefine before typedef.
22098
22099 2006-06-26  Simon Josefsson  <jas@extundo.com>
22100
22101         * m4/inet_ntop.m4: Don't check for sys/types.h, we assume it is
22102         present.
22103
22104 2006-06-26  Paul Eggert  <eggert@cs.ucla.edu>
22105
22106         * lib/base64.c (B64): Use _ as the formal parameter, not x, to avoid
22107         bug in IBM C V6 for AIX.  Problem reported by Larry Jones in
22108         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00181.html>.
22109
22110 2006-06-26  Mark D. Baushke  <mdb@gnu.org>
22111
22112         * m4/stdint.m4 (gl_STDINT_H): Treat BSD/OS like OpenBSD.
22113
22114 2006-06-26  Bruno Haible  <bruno@clisp.org>
22115
22116         * modules/stdint (Makefile.am): Also substitute HAVE_WCHAR_H.
22117
22118 2006-06-26  Bruno Haible  <bruno@clisp.org>
22119
22120         * m4/stdint.m4 (gl_STDINT_H): Test also for <wchar.h>.
22121
22122 2006-06-26  Bruno Haible  <bruno@clisp.org>
22123
22124         * m4/stdint.m4 (gl_STDINT_H): Don't include <stdint.h> when using the
22125         SGI C compiler in pre-C99 mode.
22126         Suggested by Mark D. Baushke and Larry Jones.
22127
22128 2006-06-26  Bruno Haible  <bruno@clisp.org>
22129
22130         * lib/stdint_.h: Include <wchar.h> if necessary for WCHAR_MIN or
22131         WCHAR_MAX.
22132         Reported by Mark D. Baushke and Larry Jones.
22133
22134 2006-06-26  Bruno Haible  <bruno@clisp.org>
22135
22136         * lib/stdint_.h: Don't include <stdint.h> when using the SGI C compiler
22137         in pre-C99 mode.
22138         Suggested by Mark D. Baushke and Larry Jones.
22139
22140 2006-06-23  Simon Josefsson  <jas@extundo.com>
22141             Bruno Haible  <bruno@clisp.org>
22142
22143         * gnulib-tool (func_emit_lib_Makefile_am): Define MOSTLYCLEANDIRS.
22144         Emit mostlyclean-local rule.
22145         (func_emit_tests_Makefile_am): Likewise.
22146         * modules/sys_socket (Makefile.am): Use MOSTLYCLEANDIRS.
22147
22148 2006-06-23  Mark D. Baushke  <mdb@gnu.org>
22149
22150         * lib/stdint_.h: Treat BSD/OS like OpenBSD.
22151
22152 2006-06-23  Bruno Haible  <bruno@clisp.org>
22153
22154         * tests/test-stdint.c: Update to match ISO C 99 Technical
22155         Corrigendum 1.
22156
22157 2006-06-23  Bruno Haible  <bruno@clisp.org>
22158
22159         * m4/stdint.m4 (gl_STDINT_H): Treat IRIX like OpenBSD.
22160
22161 2006-06-23  Bruno Haible  <bruno@clisp.org>
22162
22163         * lib/stdint_.h: Treat IRIX like OpenBSD.
22164
22165 2006-06-23  Bruno Haible  <bruno@clisp.org>
22166
22167         * lib/stdint_.h (UINT8_C, UINT16_C, UINT32_C): Define according to
22168         ISO C 99 Technical Corrigendum 1.
22169
22170 2006-06-22  Simon Josefsson  <jas@extundo.com>
22171
22172         * m4/sockpfaf.m4: Include winsock2.h too, to make it work under
22173         MinGW.
22174
22175 2006-06-22  Paul Eggert  <eggert@cs.ucla.edu>
22176
22177         * lib/glob.c (collated_compare): Remove 'const' uses that weren't
22178         needed.  Some compiler complained about some of them.  Problem reported
22179         by Larry Jones in
22180         <http://lists.gnu.org/archive/html/bug-gnulib/2006-06/msg00172.html>.
22181
22182 2006-06-21  Simon Josefsson  <jas@extundo.com>
22183
22184         * tests/test-getaddrinfo.c: New file.
22185
22186         * modules/getaddrinfo-tests: New file.
22187
22188         * MODULES.html.sh: Add inet_pton.
22189
22190         * modules/inet_pton: New file.
22191
22192 2006-06-21  Simon Josefsson  <jas@extundo.com>
22193
22194         * m4/getaddrinfo.m4: Don't define WINVER.  Look for gethostbyname in
22195         -lws2_32 too.  Fixes getaddrinfo on Windows 2000, with the price
22196         of using the (limited) gnulib implementation on Windows XP.
22197
22198         * m4/inet_pton.m4: New file.
22199
22200 2006-06-21  Simon Josefsson  <jas@extundo.com>
22201
22202         * lib/getaddrinfo.c (getaddrinfo): Set ai_family in the return
22203         variable.
22204
22205         * lib/socket_.h: Don't define WINVER.
22206
22207         * lib/inet_pton.h, inet_pton.c: New file, taken from glibc but
22208         slightly modified to work in gnulib.
22209
22210 2006-06-21  Simon Josefsson  <jas@extundo.com>
22211
22212         * doc/gnulib.texi (Windows sockets): Add.
22213
22214 2006-06-21  Paul Eggert  <eggert@cs.ucla.edu>
22215
22216         * lib/read-file.c (fread_file): Start with buffer allocation of
22217         0 bytes rather than 1 byte; this simplifies the code.
22218         Don't invoke feof; it's not needed.  Refactor to avoid duplicate
22219         code to free buffer and save/restore errno.
22220         (internal_read_file): Remove unused local.
22221
22222 2006-06-20  Paul Eggert  <eggert@cs.ucla.edu>
22223
22224         * lib/openat.c (openat): Use ?:, not if, to work around GCC bug 4210
22225         <http://gcc.gnu.org/bugzilla/show_bug.cgi?id=4210>.
22226         Problem reported by Denis Excoffier in
22227         <http://lists.gnu.org/archive/html/bug-tar/2006-06/msg00023.html>.
22228
22229 2006-06-19  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
22230
22231         * modules/sys_socket, modules/socklen: Include sys/types since
22232         FreeBSD 4.x's sys/socket.h needs it.
22233
22234 2006-06-19  Simon Josefsson  <jas@extundo.com>
22235
22236         * lib/inet_ntop.c: Always build inet_ntop4, since inet_ntop6 calls it.
22237
22238 2006-06-19  Paul Eggert  <eggert@cs.ucla.edu>
22239
22240         * lib/alloca_.h (alloca) [defined alloca]: Don't define or declare.
22241
22242 2006-06-19  Bruno Haible  <bruno@clisp.org>
22243
22244         * m4/stdint.m4 (gl_STDINT_H): Enclose the values of FULL_PATH_STDINT_H
22245         and FULL_PATH_INTTYPES_H in angle brackets.
22246         Reported by Mark D. Baushke <mdb@gnu.org>.
22247
22248 2006-06-17  Eric Blake  <ebb9@byu.net>
22249
22250         * m4/rmdir-errno.m4 (gl_FUNC_FMDIR_NOTEMPTY): Assume errno.h declares
22251         errno.
22252
22253 2006-06-17  Bruno Haible  <bruno@clisp.org>
22254
22255         * m4/stdint.m4 (gl_STDINT_H) [FreeBSD >= 5]: Don't include
22256         <sys/inttypes.h>.
22257
22258 2006-06-17  Bruno Haible  <bruno@clisp.org>
22259
22260         * m4/setenv.m4 (gl_PREREQ_SETENV, gl_PREREQ_UNSETENV): Remove test
22261         whether errno is declared. Assume <errno.h> declares errno.
22262
22263 2006-06-17  Bruno Haible  <bruno@clisp.org>
22264
22265         * lib/stdint_.h [FreeBSD >= 5]: Don't include <sys/inttypes.h>.
22266
22267 2006-06-17  Bruno Haible  <bruno@clisp.org>
22268
22269         * lib/stdint_.h (_UINT8_T, _UINT32_T, _UINT64_T): New macros. Fixes a
22270         problem on Solaris 2.5.1.
22271
22272 2006-06-16  Eric Blake  <ebb9@byu.net>
22273
22274         * lib/unsetenv.c [!defined errno]: Assume errno.h declares errno.
22275         * lib/unicodeio.c [!defined errno]: Likewise.
22276         * lib/strtol.c [!defined errno]: Likewise.
22277         * lib/strtod.c [!defined errno]: Likewise.
22278
22279 2006-06-15  Eric Blake  <ebb9@byu.net>
22280
22281         * m4/ssize_t.m4 (gt_TYPE_SSIZE_T): Work in spite of -Werror.
22282
22283 2006-06-15  Eric Blake  <ebb9@byu.net>
22284
22285         * config/srclist.txt (ssize_t.m4): Lose sync.
22286
22287 2006-06-15  Bruno Haible  <bruno@clisp.org>
22288
22289         * modules/stdint (Files): Include m4/full-header-path.m4,
22290         m4/size_max.m4, m4/wchar_t.m4.
22291         (Makefile.am): Many more substitutions.
22292         * modules/stdint-tests: New file.
22293         * tests/test-stdint.c: New file.
22294
22295 2006-06-15  Bruno Haible  <bruno@clisp.org>
22296
22297         * m4/stdint.m4 (gl_STDINT_H): Rewritten to produce a complete stdint.h.
22298         (gl_HEADER_STDINT_H, gl_HEADER_INTTYPES_H, gl_STDINT_CHECK_TYPES,
22299         gl_STDINT_MISSING_BOUND, gl_STDINT_MISSING_BOUNDS,
22300         gl_STDINT_MISSING_BOUNDS2, gl_STDINT_BITSIZEOF, gl_CHECK_TYPES_SIGNED,
22301         gl_CHECK_TYPE_SAME): New macros.
22302
22303 2006-06-15  Bruno Haible  <bruno@clisp.org>
22304
22305         * m4/size_max.m4 (gl_SIZE_MAX): Make it work also when cross-compiling.
22306
22307 2006-06-15  Bruno Haible  <bruno@clisp.org>
22308
22309         * lib/stdint_.h: Rewritten to be fully auto-configured.
22310         Fixes bug on HP-UX/IA64.
22311
22312 2006-06-11  Paul Eggert  <eggert@cs.ucla.edu>
22313
22314         * lib/getdate.y (__attribute__): Don't define if already defined.
22315         Problem reported by Larry Jones.
22316         * lib/utimens.c (__attribute__): Likewise.
22317
22318 2006-06-04  Paul Eggert  <eggert@cs.ucla.edu>
22319
22320         * lib/regexec.c (group_nodes_into_DFAstates): Fix a buffer overrun
22321         reported by Andreas Schwab.
22322
22323 2006-05-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
22324             Bruno Haible  <bruno@clisp.org>
22325
22326         * m4/strndup.m4 (gl_FUNC_STRNDUP): Replace the AC_REPLACE_FUNCS with a
22327         check for the declaration of strnlen and a run test that exposes the
22328         AIX 5.1 strnlen bug.  In the failure case, #define strndup to
22329         rpl_strndup.
22330
22331 2006-05-30  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
22332             Bruno Haible  <bruno@clisp.org>
22333
22334         * lib/strndup.c (strndup) [!_LIBC]: Don't undefine macro definition.
22335
22336 2006-05-28  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
22337
22338         * m4/c-strtod.m4 (gl_C99_STRTOLD): Use a link test rather than a
22339         compile test, for Tru64 4.0D.
22340
22341 2006-05-28  Karl Berry  <karl@gnu.org>
22342
22343         * config/srclist.txt (printf-args.c): lose sync.
22344
22345 2006-05-26  Martin Lambers  <marlam@marlam.de>
22346
22347         * lib/getpass.c: Updates the test for the native W32 API, and adds
22348         missing includes, thus fixing compilation warnings.
22349
22350 2006-05-25  Sergey Poznyakoff  <gray@gnu.org.ua>
22351
22352         * lib/exclude.c (exclude_fnmatch): New function.
22353         (excluded_file_name): Call exclude_fnmatch.
22354         * lib/exclude.h (excluded_file_name): New prototype
22355
22356 2006-05-25  Paul Eggert  <eggert@cs.ucla.edu>
22357
22358         * lib/tempname.c (small_open, large_open): New macros.
22359         (__open, __open64) [!_LIBC]: Remove.
22360         (__gen_tempname): Use small_open and large_open instead of __open
22361         and __open64.  This fixes a portability bug on HP-UX 11.11i
22362         reported by Simon Wing-Tang in
22363         <http://lists.gnu.org/archive/html/bug-coreutils/2006-05/msg00114.html>.
22364
22365 2006-05-24  Bruno Haible  <bruno@clisp.org>
22366
22367         * lib/printf-args.c (printf_fetchargs): Turn NULL pointers for
22368         TYPE_STRING and TYPE_WIDE_STRING into a non-NULL replacement.
22369         Reported by Thorsten Maerz <torte@netztorte.de> via
22370         Aaron Stone <aaron@serendipity.cx>.
22371
22372 2006-05-19  Paul Eggert  <eggert@cs.ucla.edu>
22373
22374         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Rename cache variables to use
22375         gl_ rather than jm_.  Link, don't run, so that cross-compiles are
22376         allowed.  Check that resulting type is arithmetic.  Move AC_REQUIRE
22377         and AC_CHECK_HEADERS_ONCE outside of AC_CACHE_CHECK, since they're
22378         not really conditional on the cache.
22379         (gl_PREREQ_NANOSLEEP): Check for sys/select.h.
22380
22381 2006-05-19  Paul Eggert  <eggert@cs.ucla.edu>
22382
22383         * lib/nanosleep.c [HAVE_SYS_SELECT_H]: Include <sys/select.h>.
22384         Use the usual Autoconf way to include <time.h> and/or sys/time.h.
22385         (my_usleep): Don't mishandle maximum value.
22386
22387 2006-05-19  Jim Meyering  <jim@meyering.net>
22388
22389         * lib/getugroups.c: Correct an outdated comment.  From Bruno Haible.
22390
22391 2006-05-17  Bruno Haible  <bruno@clisp.org>
22392
22393         Cygwin portability.
22394         * lib/classpath.c (PATH_SEPARATOR) [CYGWIN]: Define as ':'.
22395
22396 2006-05-17  Bruno Haible  <bruno@clisp.org>
22397
22398         * lib/stdint_.h: Fix recognition of Cygwin.
22399
22400 2006-05-15  Bruno Haible  <bruno@clisp.org>
22401
22402         * build-aux/config.rpath: Improve support for Sun C 5.9 on Linux, based
22403         on libtool patch by Ralf Wildenhues.
22404
22405 2006-05-14  Paul Eggert  <eggert@cs.ucla.edu>
22406
22407         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Fix overly-picky
22408         test for C99 conformance; (bool) 0.5 is an integer constant
22409         expression, but (bool) -0.5 is not.  Problem reported by Fedor
22410         Sergeev in <http://forum.sun.com/jive/thread.jspa?threadID=96202>.
22411
22412 2006-05-11  Simon Josefsson  <jas@extundo.com>
22413
22414         * m4/xvasprintf.m4: Fix obvious typo.
22415
22416 2006-05-11  Jim Meyering  <jim@meyering.net>
22417
22418         * lib/sha1.c (sha1_buffer): Correct comment: s/MD5/SHA1/.  From
22419         James Lemley.
22420
22421 2006-05-10  Simon Josefsson  <jas@extundo.com>
22422
22423         * lib/md4.c: Typo fix, update copyright years.
22424         (K1, K2): Don't use L because it turn computations into 64-bit on
22425         64-bit platforms.
22426
22427 2006-05-10  Paul Eggert  <eggert@cs.ucla.edu>
22428
22429         * lib/crc.c (crc32_update): Remove unnecessary L suffix.
22430         * lib/md4.c (rol): Cast right-shift arg to uint32_t to prevent
22431         unwanted sign propagation, e.g., on hosts with 64-bit int.
22432         There still are some problems with reeelly weird theoretical hosts
22433         (e.g., 33-bit int) but it's not worth worrying about now.
22434         * lib/sha1.c (rol): Likewise.
22435         (K1, K2, K3, K4): Remove unnecessary L suffix.
22436
22437 2006-05-10  Bruno Haible  <bruno@clisp.org>
22438
22439         * lib/des.c: Cast to avoid warnings.
22440
22441 2006-05-09  Bruno Haible  <bruno@clisp.org>
22442
22443         * modules/xvasprintf (Files): Add m4/xvasprintf.m4.
22444         (Depends-on): Depend also on xsize, stdarg.
22445         (configure.ac): Add gl_XVASPRINTF.
22446
22447 2006-05-09  Bruno Haible  <bruno@clisp.org>
22448
22449         * m4/xvasprintf.m4: New file.
22450
22451 2006-05-09  Bruno Haible  <bruno@clisp.org>
22452
22453         * lib/xvasprintf.c: Include limits.h, string.h, xsize.h.
22454         (EOVERFLOW): Define fallback value.
22455         (xstrcat): New function.
22456         (xvasprintf): Recognize the special case of a string concatenation.
22457
22458 2006-05-08  Eric Blake  <ebb9@byu.net>
22459
22460         * gnulib-tool (func_version): Base copyright year on CVS date.
22461         (func_emit_copyright_notice): New function.
22462         (func_emit_lib_Makefile_am): Use it.
22463         (func_emit_tests_Makefile_am): Likewise.
22464         (func_import): Likewise.
22465
22466 2006-05-08  Bruno Haible  <bruno@clisp.org>
22467
22468         * modules/stdarg: New file.
22469         * MODULES.html.sh (func_all_modules): Add section for <stdarg.h>.
22470
22471 2006-05-08  Bruno Haible  <bruno@clisp.org>
22472
22473         * m4/stdarg.m4: New file, from GNU gettext.
22474
22475 2006-05-08  Bruno Haible  <bruno@clisp.org>
22476
22477         * config/srclist.txt (build-aux/config.rpath): different from latest
22478         release.
22479
22480 2006-05-08  Bruno Haible  <bruno@clisp.org>
22481
22482         * build-aux/config.rpath: Add support for Sun C 5.9 on Linux.
22483
22484 2006-05-05  Jim Meyering  <jim@meyering.net>
22485
22486         * m4/warning.m4: New file, derived from bison's file by the same name.
22487
22488 2006-05-03  Bruno Haible  <bruno@clisp.org>
22489
22490         * lib/stdint_.h: Shorter URL.
22491         * lib/inttypes.h: Likewise.
22492
22493 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
22494
22495         * modules/inttypes (Maintainer): Change from Derek Price to 'all'.
22496
22497 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
22498
22499         * lib/verify.h: Document the internals better.  Most of this change
22500         was written by Bruno Haible.
22501
22502 2006-05-02  Paul Eggert  <eggert@cs.ucla.edu>
22503
22504         * doc/verify.texi: New file, partly based on a proposal by
22505         Bruno Haible.
22506
22507 2006-05-02  Bruno Haible  <bruno@clisp.org>
22508
22509         * m4/full-header-path.m4 (gl_FULL_HEADER_PATH): Move the include_next
22510         test from here...
22511         * m4/_inttypes_h.m4 (gl_INTTYPES_H): ... to here.
22512
22513 2006-04-29  Bruno Haible  <bruno@clisp.org>
22514
22515         * lib/gcd.c: Use WORD_T and GCD instead of unsigned long and gcd.
22516         Suggested by Oskar Liljeblad <oskar@osk.mine.nu>.
22517
22518 2006-04-29  Bruno Haible  <bruno@clisp.org>
22519
22520         * gnulib-tool: Make --update option actually work.
22521
22522 2006-04-29  Bruno Haible  <bruno@clisp.org>
22523
22524         * doc/gcd.texi: New file.
22525         * doc/gnulib.texi: Include it.
22526
22527 2006-04-25  Paul Eggert  <eggert@cs.ucla.edu>
22528
22529         * lib/getdate.y (get_date): When adding relative date, start with the
22530         initial time, not with the result of the first mktime call.
22531
22532 2006-04-25  Bruno Haible  <bruno@clisp.org>
22533
22534         * gnulib-tool (func_import): Output the include directives in three
22535         blocks, sorted separately.
22536         Reported by Ben Pfaff <blp@cs.stanford.edu>.
22537
22538 2006-04-24  Paul Eggert  <eggert@cs.ucla.edu>
22539
22540         * m4/unlink-busy.m4 (gl_FUNC_UNLINK_BUSY_TEXT): Use prototype
22541         to define main with arguments, for C++.  Reported by Eric Blake.
22542         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC):
22543         Prefer 'int main ()' to 'int main (void)', for C++.
22544         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Likewise.
22545         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Specify a return type
22546         for 'main', for C99 and C++.
22547
22548 2006-04-24  Paul Eggert  <eggert@cs.ucla.edu>
22549
22550         * m4/fsusage.m4 (gl_FILE_SYSTEM_USAGE): Use return, not exit.
22551         Don't assume that exit status -1 is valid.
22552         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
22553         * m4/putenv.m4 (gl_FUNC_PUTENV): Likewise.
22554         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Likewise.
22555         * m4/readdir.m4 (GL_FUNC_READDIR): Include <stdlib.h>.
22556         * m4/rename.m4 (vb_FUNC_RENAME): Likewise.
22557         * m4/unlink-busy.m4 (gl_FUNC_UNLINK_BUSY_TEXT): Use AC_RUN_IFELSE,
22558         not AC_TRY_RUN.  Use return, not exit.  Don't assume that
22559         functions can be used without declaring them, or that you can
22560         exit with status -1.
22561         * m4/utimes-null.m4 (gl_FUNC_UTIMES_NULL): Likewise.
22562
22563 2006-04-24  Karl Berry  <karl@gnu.org>
22564
22565         * config/srclist.txt (longdouble.m4): sync lost.
22566
22567 2006-04-24  Eric Blake  <ebb9@byu.net>
22568
22569         * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Avoid unused variable warning.
22570
22571 2006-04-24  Bruno Haible  <bruno@clisp.org>
22572
22573         * m4/poll.m4 (gl_FUNC_POLL): When cross-compiling, reject also the
22574         poll() implementation in AIX.
22575         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
22576
22577 2006-04-24  Bruno Haible  <bruno@clisp.org>
22578
22579         * m4/poll.m4 (gl_FUNC_POLL): Rearrange code, so that POLL_H gets
22580         assigned exactly once.
22581
22582 2006-04-23  Claudio Fontana  <claudio@gnu.org>
22583             Bruno Haible  <bruno@clisp.org>
22584
22585         * modules/gettext (Makefile.am): Add a -I flag for <libintl.h>.
22586         * gnulib-tool (func_emit_lib_Makefile_am): Emit empty default value
22587         for AM_CPPFLAGS.
22588
22589 2006-04-23  Bruno Haible  <bruno@clisp.org>
22590
22591         * modules/copy-file: Depend on unistd.
22592         * modules/execute: Likewise.
22593         * modules/fatal-signal: Likewise.
22594         * modules/findprog: Likewise.
22595         * modules/mkdtemp : Likewise.
22596         * modules/pipe: Likewise.
22597         * modules/wait-process: Likewise.
22598
22599 2006-04-23  Bruno Haible  <bruno@clisp.org>
22600
22601         * lib/fwriteerror.c (fwriteerror): Call fclose also when an error
22602         condition was already detected.
22603         Reported by Ben Pfaff <blp@cs.stanford.edu>.
22604
22605 2006-04-23  Bruno Haible  <bruno@clisp.org>
22606
22607         * lib/copy-file.c: Include <unistd.h> unconditionally.
22608         * lib/execute.c: Likewise.
22609         * lib/fatal-signal.c: Likewise.
22610         * lib/findprog.c: Likewise.
22611         * lib/mkdtemp.c: Likewise.
22612         * lib/pipe.h: Likewise.
22613         * lib/pipe.c: Likewise.
22614         * lib/wait-process.h: Likewise.
22615
22616 2006-04-23  Bruno Haible  <bruno@clisp.org>
22617
22618         * gnulib-tool (func_usage): Fix --import description. Document
22619         --update.
22620         (func_import): Create temporary file in a temporary directory, if
22621         --dry-run is specified. Silence errors from 'grep' when there are no
22622         m4 files in $m4dir.
22623         (func_create_testdir): Silence errors from 'grep' when there are no
22624         m4 files in $m4dir.
22625         Reported by Karl Berry <karl@freefriends.org>.
22626
22627 2006-04-20  Bruno Haible  <bruno@clisp.org>
22628
22629         * m4/argp.m4 (gl_ARGP): Don't call AC_CHECK_DECLS_ONCE with more than
22630         one argument, so that the code will be portable to Autoconf 2.60.
22631         * m4/getlogin_r.m4 (gl_PREREQ_GETLOGIN_R): Likewise.
22632         * m4/getpass.m4 (gl_PREREQ_GETPASS): Likewise.
22633         * m4/unlocked-io.m4 (gl_FUNC_GLIBC_UNLOCKED_IO): Likewise.
22634
22635 2006-04-19  Derek Price  <derek@ximbiot.com>
22636             Eric Blake  <ebb9@byu.net>
22637
22638         * m4/full-header-path.m4 (gl_FULL_HEADER_PATH): Use </full/path.h>
22639         rather than "/full/path.h".  Update comment to match.  Shorten &
22640         generalize m4_translit call via AS_TR_CPP.
22641
22642 2006-04-19  Derek Price  <derek@ximbiot.com>
22643             Eric Blake  <ebb9@byu.net>
22644
22645         * lib/inttypes.h: Correct grammar in comment.
22646
22647 2006-04-18  Derek Price  <derek@ximbiot.com>
22648             Paul Eggert  <eggert@cs.ucla.edu>
22649
22650         * modules/inttypes: New file.
22651         * modules/strtoimax, modules/strtoumax: Depend on inttypes.
22652
22653 2006-04-18  Derek Price  <derek@ximbiot.com>
22654             Paul Eggert  <eggert@cs.ucla.edu>
22655
22656         * m4/_inttypes_h.m4, m4/full-header-path.m4, m4/include_next.m4:
22657         New files.
22658
22659 2006-04-18  Derek Price  <derek@ximbiot.com>
22660             Paul Eggert  <eggert@cs.ucla.edu>
22661
22662         * lib/inttypes.h: New file.
22663         * lib/strtoimax.c: Assume <inttypes.h>.
22664
22665 2006-04-15  Paul Eggert  <eggert@cs.ucla.edu>
22666
22667         * lib/utimens.c (futimens): glibc futimesat messes up if /proc
22668         isn't mounted.  Problem reported by Kir Kolyshkin.
22669
22670 2006-04-13  Paul Eggert  <eggert@cs.ucla.edu>
22671
22672         * lib/regcomp.c (init_dfa): Don't use wchar_t or wctype_t if
22673         RE_ENABLE_I18N is not defined.  Problem reported by Mark D. Baushke via
22674         Derek R. Price.
22675         * lib/regex.h (RE_DUP_MAX): Update comment to match current
22676         implementation.
22677
22678 2006-04-12  Eric Blake  <ebb9@byu.net>
22679
22680         * modules/time_r (Makefile.am): Remove lib_SOURCES line, as this
22681         is now done automatically by the corresponding Autoconf macro.
22682
22683 2006-04-11  Paul Eggert  <eggert@cs.ucla.edu>
22684
22685         * m4/time_r.m4 (gl_TIME_R): Add AC_LIBSOURCES for time_r.c and
22686         time_r.h.
22687
22688 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
22689
22690         Merge regex changes from libc, removing some of our
22691         POSIX-conformance changes that were rejected and redoing them in a
22692         less-intrusive way.
22693
22694         * lib/regcomp.c (re_compile_internal, init_dfa):
22695         Length arg is now size_t, not Idx.  All uses changed.
22696         (peek_token): Forward decl now says internal_function.
22697         (__re_error_msgid, __re_error_msgid_idx):
22698         Now static rather than extern with attribute_hidden.
22699         (re_compile_pattern) [!defined _LIBC]: Use K&R-style defn.
22700         For some reason libc prefers K&R style defns for external functions.
22701         (regerror) [!defined _LIBC]: Likewise.
22702         (re_set_syntax, re_compile_fastmap, regcomp, regfree, re_comp):
22703         (seek_collating_symbol_entry, lookup_collation_sequence_value):
22704         (build_range_exp, build_collating_symbol):
22705         Use K&R-style defn.
22706         (re_compile_fastmap): Use '\0' to memset, not 0.
22707         (utf8_sb_map): Make the calculations more obvious.
22708         (init_dfa, parse_bracket_exp, build_charclass_op):
22709         Call calloc and cast result, as glibc does.
22710         (init_word_char, fetch_token, peek_token, peek_token_bracket):
22711         (build_range_exp, build_collating_symbol):
22712         Now internal functions.
22713
22714         * lib/regex.c [!defined _LIBC]: Allow compiling with C++ compilers.
22715
22716         * lib/regex.h (__USE_GNU_REGEX): New macro.  Don't depend on
22717         _REGEX_SOURCE any more; depend on _GNU_SOURCE instead.
22718         Don't depend on VMS; depend on __VMS instead, for POSIX
22719         namespace cleanness.
22720         (regoff_t): Define to ssize_t, not long int.
22721
22722         Remove the REG_ macros named below.  Instead, make the old names
22723         (e.g., RE_BACKSLASH_ESCAPE_IN_LISTS) visible only if
22724         __USE_GNU_REGEX.
22725         (REG_BACKSLASH_ESCAPE_IN_LISTS):
22726         (REG_BK_PLUS_QM, REG_CHAR_CLASSES, REG_CONTEXT_INDEP_ANCHORS):
22727         (REG_CONTEXT_INDEP_OPS, REG_CONTEXT_INVALID_OPS):
22728         (REG_DOT_NEWLINE, REG_DOT_NOT_NULL, REG_HAT_LISTS_NOT_NEWLINE):
22729         (REG_INTERVALS, REG_LIMITED_OPS, REG_NEWLINE_ALT):
22730         (REG_NO_BK_BRACES, REG_NO_BK_PARENS, REG_NO_BK_REFS):
22731         (REG_NO_BK_VBAR, REG_NO_EMPTY_RANGES):
22732         (REG_UNMATCHED_RIGHT_PAREN_ORD, REG_NO_POSIX_BACKTRACKING):
22733         (REG_NO_GNU_OPS, REG_DEBUG, REG_INVALID_INTERVAL_ORD):
22734         (REG_IGNORE_CASE, REG_CARET_ANCHORS_HERE):
22735         (REG_CONTEXT_INVALID_DUP, REG_NO_SUB, REG_SYNTAX_EMACS):
22736         (REG_SYNTAX_AWK, REG_SYNTAX_GNU_AWK, REG_SYNTAX_POSIX_AWK):
22737         (REG_SYNTAX_GREP, REG_SYNTAX_EGREP, REG_SYNTAX_POSIX_EGREP):
22738         (REG_SYNTAX_ED, REG_SYNTAX_SED, _REG_SYNTAX_POSIX_COMMON):
22739         (REG_SYNTAX_POSIX_BASIC, REG_SYNTAX_POSIX_MINIMAL_BASIC):
22740         (REG_SYNTAX_POSIX_EXTENDED, REG_SYNTAX_POSIX_MINIMAL_EXTENDED):
22741         (REG_DUP_MAX, REG_UNALLOCATED, REG_REALLOCATE, REG_FIXED):
22742         (REG_NREGS):
22743         Remove.  All uses replaced by the old RE_* names.
22744         (RE_BACKSLASH_ESCAPE_IN_LISTS):
22745         (RE_BK_PLUS_QM, RE_CHAR_CLASSES, RE_CONTEXT_INDEP_ANCHORS):
22746         (RE_CONTEXT_INDEP_OPS, RE_CONTEXT_INVALID_OPS):
22747         (RE_DOT_NEWLINE, RE_DOT_NOT_NULL, RE_HAT_LISTS_NOT_NEWLINE):
22748         (RE_INTERVALS, RE_LIMITED_OPS, RE_NEWLINE_ALT):
22749         (RE_NO_BK_BRACES, RE_NO_BK_PARENS, RE_NO_BK_REFS):
22750         (RE_NO_BK_VBAR, RE_NO_EMPTY_RANGES):
22751         (RE_UNMATCHED_RIGHT_PAREN_ORD, RE_NO_POSIX_BACKTRACKING):
22752         (RE_NO_GNU_OPS, RE_DEBUG, RE_INVALID_INTERVAL_ORD):
22753         (RE_IGNORE_CASE, RE_CARET_ANCHORS_HERE):
22754         (RE_CONTEXT_INVALID_DUP, RE_NO_SUB):
22755         Don't bother having these macros be independent of each others'
22756         values, since they no longer exist in the POSIX name space.
22757
22758         Rename the following member names back to their old names,
22759         unless !__USE_GNU_REGEX.  All uses changed back.
22760         (buffer): Renamed from re_buffer.
22761         (allocated): Renamed from re_allocated.
22762         (used): Renamed from re_used.
22763         (syntax): Renamed from re_syntax.
22764         (fastmap): Renamed from re_fastmap.
22765         (translate): Renamed from re_translate.
22766         (can_be_null): Renamed from re_can_be_null.
22767         (regs_allocated): Renamed from re_regs_allocated.
22768         (fastmap_accurate): Renamed from re_fastmap_accurate.
22769         (no_sub): Renamed from re_no_sub.
22770         (not_bol): Renamed from re_not_bol.
22771         (not_eol): Renamed from re_not_eol.
22772         (newline_anchor): Renamed from re_newline_anchor.
22773         (num_regs): Renamed from rm_num_regs.
22774         (start): Renamed from rm_start.
22775         (end): Renamed from rm_end.
22776
22777         (free_state): Move up a bit.
22778
22779         * lib/regex_internal.h (inline) [__GNUC__ < 3 && defined _LIBC]:
22780         #define to be empty.
22781         (ASCII_CHARS): New macro, replacing all uses of 0x80 and/or SBC_MAX / 2
22782         when that is what is intended.
22783         (SBC_MAX): Define to UCHAR_MAX + 1, not 256.
22784         (__re_error_msgid, __re_error_msgid_idx): Remove decls; not needed.
22785         (MAX): New macro.
22786         (re_xmalloc, re_calloc, re_xrealloc, re_x2realloc): Remove.
22787         All uses changed back to re_malloc, etc.  It's now the caller's
22788         responsibility to check for overflow; all callers changed.
22789         (re_alloc_oversized, re_x2alloc_oversized, re_xnmalloc, re_xnrealloc):
22790         (re_x2nrealloc): Remove.
22791         (free_state): Remove decl.
22792
22793         * lib/regexc.c (regexec, re_match, re_search, re_match_2, re_search_2):
22794         (re_set_registers, re_exec):
22795         Use K&R-style defn.
22796
22797         2006-01-31  Roland McGrath  <roland@redhat.com>
22798
22799         * lib/regcomp.c (calc_eclosure_iter): Remove dead variables.
22800         Reported by Mike Frysinger <vapier@gentoo.org>.
22801
22802         2006-01-15  Andreas Jaeger  <aj@suse.de>
22803
22804         [BZ #1950]
22805         * lib/regex_internal.c (re_string_reconstruct): Adjust for
22806         build_wcs_upper_buffer change.
22807         (build_wcs_upper_buffer): Change return type.
22808
22809         2005-12-10  Ulrich Drepper  <drepper@redhat.com>
22810
22811         * lib/regex_internal.h: Include <stdint.h> if available.
22812
22813         2005-12-06  Paolo Bonzini  <bonzini@gnu.org>
22814
22815         * lib/regex_internal.h (SIZE_MAX): Provide a default definition.
22816
22817         2005-10-14  Ulrich Drepper  <drepper@redhat.com>
22818
22819         * lib/regcomp.c: Adjust for changed secondary hash function.
22820
22821         2005-09-30  Ulrich Drepper  <drepper@redhat.com>
22822
22823         * lib/regex.h: Pretty printing.
22824         Clean up namespace a bit.
22825
22826         2005-09-30  Jakub Jelinek  <jakub@redhat.com>
22827
22828         * lib/regexec.c (update_cur_sifted_state, check_arrival,
22829         check_arrival_add_next_nodes): Avoid using uninitialized variable.
22830
22831         2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
22832                     Ulrich Drepper  <drepper@redhat.com>
22833
22834         [BZ #1302]
22835         * lib/regex_internal.h (bitset_t): Renamed from bitset.  All uses
22836         changed.
22837         (bitset_word_t): Renamed from bitset_word.  All uses changed.
22838
22839         2005-09-22  Ulrich Drepper  <drepper@redhat.com>
22840
22841         [BZ #281]
22842         * lib/regex.h: Define RE_TRANSLATE_TYPE as unsigned char *.
22843         * lib/regcomp.c: Remove unnecessary uses of
22844         unsigned RE_TRANSLATE_TYPE.
22845         * lib/regex_internal.h: Likewise.
22846         * lib/regex_internal.c: Likewise.
22847         * lib/regexec.c: Likewise.
22848         Based on a patch by Stepan Kasal <kasal@ucw.cz>.
22849
22850         2005-09-07  Ulrich Drepper  <drepper@redhat.com>
22851
22852         * lib/regexec.c (find_recover_state): Remove unnecessary
22853         initialization.
22854         (transit_state_bkref): Make DFA a const pointer.
22855         (get_subexp): Likewise.
22856         (check_arrival): Likewise.
22857         (update_cur_sifted_state): Likewise.
22858         (re_search_internal): Likewise.
22859         (prune_impossible_nodes): Likewise.
22860         (acquire_init_state_context): Likewise.
22861         (proceed_next_node): Likewise.
22862         (set_regs): Likewise.
22863         (free_fail_stack_return): Likewise.
22864         (check_arrival_expand_ecl): Mark DFA parameter as const.
22865         (check_arrival_expand_ecl_sub): Likewise.
22866         (check_subexp_limits): Likewise.
22867         (sub_epsilon_src_nodes):  Likewise.
22868         (add_epsilon_src_nodes):  Likewise.
22869         (merge_state_array): Likewise.
22870         (update_regs): Likewise.
22871         (build_trtable): Likewise.
22872         (sift_states_backward): Mark MCTX parameter as const.
22873         (build_sifted_states): Likewise.
22874         (update_cur_sifted_state): Likewise.
22875         (sift_states_mkref): Likewise.
22876         (check_arrival_expand_ecl): Mark eclosure as const.
22877         (check_dst_limits_calc_pos_1): Likewise.
22878         * lib/regex_internal.h (re_match_context_t): Make dfa a const
22879         pointer.
22880
22881         2005-09-06  Ulrich Drepper  <drepper@redhat.com>
22882
22883         * lib/regexec.c (merge_state_with_log): Define dfa as const pointer.
22884         (transit_state_sb): Likewise.
22885         (transit_state_mb): Likewise.
22886         (sift_states_iter_mb): Likewise.
22887         (check_arrival_add_next_nodes): Likewise.
22888         (check_node_accept_bytes): Change first parameter to pointer-to-const.
22889         [_LIBC] (re_search_2_stub): Use mempcpy.
22890
22891         * lib/regex_internal.c (re_string_reconstruct): Avoid calling
22892         mbrtowc for very simple UTF-8 case.
22893
22894         * lib/regex_internal.c (re_acquire_state): Make DFA pointer arg
22895         a pointer-to-const.
22896         (re_acquire_state_context): Likewise.
22897         * lib/regex_internal.h: Adjust prototypes.
22898
22899         * lib/regex.c: Prevent using C++ compilers.
22900
22901         * lib/regex_internal.c (re_acquire_state): Minor code rearrangement.
22902         (re_acquire_state_context): Likewise.
22903
22904 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
22905
22906         * modules/regex (Depends-on): Add ssize_t.
22907
22908 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
22909
22910         * m4/regex.m4 (gl_REGEX): Check for new glibc interface to
22911         translation table.
22912
22913 2006-04-09  Paul Eggert  <eggert@cs.ucla.edu>
22914
22915         * doc/gnulib-tool.texi (Modified imports): pathname -> file name.
22916
22917 2006-03-29  Mark D. Baushke  <mdb@gnu.org>
22918             Bruno Haible  <bruno@clisp.org>
22919
22920         * lib/stdint_.h: On OpenBSD, don't redefine types already included in
22921         <sys/types.h> and <inttypes.h>.
22922
22923 2006-03-25  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
22924
22925         * m4/argz.m4 (gl_FUNC_ARGZ): If we define `error_t', also define
22926         `__error_t_defined', so argp.h will not typedef the former.
22927
22928 2006-03-25  Paul Eggert  <eggert@cs.ucla.edu>
22929
22930         * m4/regex.m4 (gl_REGEX): Don't insist on REG_SYNTAX_POSIX_EGREP,
22931         REG_SYNTAX_EMACS, and REG_IGNORE_CASE.  Settle for the traditional
22932         glibc names.  Even if glibc is changed to conform to POSIX, the
22933         traditional names will be available anyway, since regex depends on
22934         the extensions module.  Also, fix a longstanding typo in the
22935         implementation of Spencer ERE test #75 from grep 2.3.  Problems
22936         reported by Emanuele Giaquinta.  Also, change sense of cached
22937         variable, so that the message makes sense.
22938
22939 2006-03-24  Simon Josefsson  <jas@extundo.com>
22940
22941         * lib/base64.c: Fix problems reported by Eric Blake <ebb9@byu.net>,
22942         including some doc fixes.
22943         (base64_encode_alloc): Fix +1 bug on allocation failures.
22944
22945 2006-03-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
22946
22947         * lib/base64.c (base64_encode): Do not read past end of array with
22948         unsanitized input on systems with CHAR_BIT > 8.
22949
22950 2006-03-24  Eric Blake  <ebb9@byu.net>
22951
22952         * lib/time_r.c (copy_string_result): Remove, as it is no longer used.
22953
22954 2006-03-22  Karl Berry  <karl@gnu.org>
22955
22956         * config/srclist.txt (*setenv.[ch]): get from coreutils.
22957         * config/srclistvars.sh (COREUTILS): new var.
22958
22959 2006-03-17  Jim Meyering  <jim@meyering.net>
22960
22961         * m4/regex.m4 (gl_REGEX): Fix typo in last change:
22962         s/_REGEX_WIDE_OFFSETS/_REGEX_LARGE_OFFSETS/.
22963
22964 2006-03-16  Paul Eggert  <eggert@cs.ucla.edu>
22965
22966         * m4/regex.m4 (gl_REGEX): Don't check for off_t, since the code
22967         no longer needs it.  Instead, check that regoff_t is as least
22968         as wide as ptrdiff_t.
22969
22970         Don't define _REGEX_WIDE_OFFSETS unless using the included regex,
22971         so that our regex.h stays compatible with the installed regex.
22972         This is helpful for installers who configure --without-included-regex.
22973         Problem reported by Emanuele Giaquinta.
22974
22975 2006-03-16  Paul Eggert  <eggert@cs.ucla.edu>
22976
22977         * lib/regex.h (regoff_t) [defined _REGEX_LARGE_OFFSETS]:
22978         Typedef to long int, not to off_, as POSIX will likely change
22979         in that direction.
22980
22981 2006-03-15  Eric Blake  <ebb9@byu.net>
22982
22983         * m4/dirfd.m4 (gl_FUNC_DIRFD): Use AC_REQUIRE for AC_HEADER_DIRENT.
22984
22985 2006-03-13  Sergey Poznyakoff  <gray@gnu.org.ua>
22986
22987         * lib/argp-help.c (validate_uparams): Fix typo
22988         * lib/argp-parse.c (argp_default_options): Consistently begin help
22989         messages with a lowercase letter.
22990
22991 2006-03-11  Paul Eggert  <eggert@cs.ucla.edu>
22992
22993         * lib/time_r.h (asctime_r, ctime_r): Remove.  These functions can
22994         overrun buffers and shouldn't be used (much as gets shouldn't be
22995         used).
22996         * lib/time_r.c (asctime_r, ctime_r): Likewise.
22997
22998 2006-03-08  Simon Josefsson  <jas@extundo.com>
22999
23000         * m4/gc-random.m4: Permit 'no' as variable values and fix warnings,
23001         suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
23002
23003 2006-03-08  Simon Josefsson  <jas@extundo.com>
23004
23005         * m4/gc-random.m4: Call AC_CANONICAL_HOST and use $host_os instead of
23006         $target, suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
23007
23008 2006-03-08  Simon Josefsson  <jas@extundo.com>
23009
23010         * lib/gc-gnulib.c (randomize): Don't open files called 'no', they
23011         signal that configure disabled the device.
23012
23013 2006-03-08  Simon Josefsson  <jas@extundo.com>
23014
23015         * build-aux/maint.mk: Fix refresh-po, to handle no translated
23016         languages.
23017
23018 2006-03-07  Simon Josefsson  <jas@extundo.com>
23019
23020         * modules/getopt (Depends-on): Add unistd.
23021
23022         * modules/unistd: New file.
23023
23024 2006-03-07  Simon Josefsson  <jas@extundo.com>
23025
23026         * modules/gc-random: New file.
23027
23028 2006-03-07  Simon Josefsson  <jas@extundo.com>
23029
23030         * m4/unistd_h.m4: New file.
23031
23032 2006-03-07  Simon Josefsson  <jas@extundo.com>
23033
23034         * m4/readline.m4 (gl_FUNC_READLINE): Rewrite the cached part of the
23035         test to be side-effect free by storing the result in the cache
23036         variable gl_cv_lib_readline, and moving the assignment of
23037         LIBREADLINE and LTLIBREADLINE outside the COMMANDS-TO-SET-IT.
23038         From Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
23039
23040 2006-03-07  Simon Josefsson  <jas@extundo.com>
23041
23042         * m4/gc-random.m4: New file, mostly from gc.m4.  Warn instead of
23043         error on missing devices (the functions will return an error).
23044
23045         * m4/gc.m4: Move random stuff to gc-random.m4
23046
23047 2006-03-07  Simon Josefsson  <jas@extundo.com>
23048
23049         * lib/unistd_.h: New file.
23050
23051 2006-03-07  Simon Josefsson  <jas@extundo.com>
23052
23053         * lib/gc-libgcrypt.c, gc-gnulib.c: Use GC_USE_RANDOM.
23054
23055 2006-03-07  Paul Eggert  <eggert@cs.ucla.edu>
23056
23057         * m4/unistd_h.m4 (gl_HEADER_UNISTD): Rename, to match modules file.
23058         Problem reported by Juan Manuel Guerrero.
23059
23060 2006-03-07  Paul Eggert  <eggert@cs.ucla.edu>
23061
23062         * lib/c-stack.c: Include unistd.h unconditionally, since we now assume
23063         the unistd module.
23064         * lib/getlogin_r.c: Likewise.
23065         * lib/getlogin_r.h: Likewise.
23066         * lib/glob.c: Likewise.
23067         * lib/pagealign_alloc.c: Likewise.
23068         * lib/unistd_.h: Remove; no longer needed.
23069
23070 2006-03-07  Paul Eggert  <eggert@cs.ucla.edu>
23071
23072         * MODULES.html.sh (Support for systems lacking POSIX:2001):
23073         Add unistd.
23074         * modules/c-stack (Depends-on): Add unistd.
23075         * modules/getlogin_r: Likewise.
23076         * modules/glob: Likewise.
23077         * modules/pagealign_alloc: Likewise.
23078         * modules/unistd (Files): Remove lib/unistd_.h.
23079         (EXTRA_DIST): Remove.
23080         (unistd.h): Create using 'echo' rather than 'cp', so that we don't
23081         need unistd_.h.
23082         (MOSTLYCLEANFILES): Remove unistd.h-t.
23083
23084 2006-03-03  Simon Josefsson  <jas@extundo.com>
23085
23086         * build-aux/maint.mk: Add several syntax checks from CoreUtils.
23087
23088 2006-03-03  Simon Josefsson  <jas@extundo.com>
23089
23090         * build-aux/maint.mk: Add refresh-po rule, based on ideas from
23091         libidn and bison.
23092
23093 2006-03-03  Simon Josefsson  <jas@extundo.com>
23094
23095         * build-aux/maint.mk: Add indent target.
23096
23097 2006-03-03  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de> (tiny change)
23098
23099         * m4/poll.m4 (gl_FUNC_POLL): If we deem poll(2) unacceptable, use
23100         our replacement poll.h in any case, to avoid a differing
23101         declaration from a system header.  Seen on AIX.
23102
23103 2006-03-01  Simon Josefsson  <jas@extundo.com>
23104
23105         * lib/readline.c: Fix typo, tiny patch from Stepan Kasal
23106         <kasal@ucw.cz>.
23107
23108 2006-03-01  Paul Eggert  <eggert@cs.ucla.edu>
23109
23110         * modules/gettime (Depends-on): Add extensions module.
23111         * modules/nanosleep (Depends-on): Likewise.
23112         * modules/settime (Depends-on): Likewise.
23113
23114 2006-03-01  Paul Eggert  <eggert@cs.ucla.edu>
23115
23116         * m4/clock_time.m4 (gl_CLOCK_TIME): Require gl_USE_SYSTEM_EXTENSIONS,
23117         not merely AC_GNU_SOURCE, for the benefit of Solaris 10 when compiled
23118         pedantically.
23119         * m4/nanosleep.m4 (gl_FUNC_NANOSLEEP): Likewise.
23120         * m4/timespec.m4 (gl_TIMESPEC): Likewise.
23121
23122         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Use "=" with "test",
23123         not "==".  Reported by Ralf Wildenhues.
23124
23125 2006-03-01  Karl Berry  <karl@gnu.org>
23126
23127         * doc/Copyright/request-*: new files, synced from gnuorg.
23128
23129 2006-03-01  Karl Berry  <karl@gnu.org>
23130
23131         * config/srclist.txt (Copyright/*): new entries.
23132
23133 2006-02-28  Simon Josefsson  <jas@extundo.com>
23134
23135         * lib/getopt.c: Protect #include of unistd.h, for MSVS.
23136
23137 2006-02-27  Simon Josefsson  <jas@extundo.com>
23138
23139         * lib/base64.h: Indent #define's.  From Jim Meyering
23140         <jim@meyering.net>.
23141
23142 2006-02-27  Jim Meyering  <jim@meyering.net>
23143
23144         Revert the change of 2006-02-24, so these files can continue
23145         to be sync'd from gettext.
23146         * lib/mkdtemp.c, setenv.c, unsetenv.c: *Un*-normalize inclusion
23147         of `config.h'.
23148
23149 2006-02-26  Paul Eggert  <eggert@cs.ucla.edu>
23150
23151         * modules/intprops: New file.
23152         * MODULES.html.sh (Numeric conversion functions <stdlib.h>):
23153         Add intprops.
23154         * modules/getloadavg (Files): Remove lib/intprops.h.
23155         (Depends-on): Add intprops.
23156         * modules/human: Likewise.
23157         * modules/inttostr: Likewise.
23158         * modules/openat: Likewise.
23159         * modules/sig2str: Likewise.
23160         * modules/userspec: Likewise.
23161         * modules/utimecmp: Likewise.
23162         * modules/xnanosleep: Likewise.
23163         * modules/xstrtol: Likewise.
23164
23165 2006-02-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny changes)
23166
23167         * modules/xstrtod: Omit xstrtod.h, xstrtod.c; they're in LIB_SOURCES.
23168         * modules/lock-tests (TESTS): Use $(EXEEXT).
23169         * modules/tls-tests: Likewise.
23170         * modules/argp-tests: Likewise.
23171         (check_PROGRAMS): New var, replacing...
23172         (noinst_PROGRAMS, test_argp_SOURCES): Remove.
23173
23174 2006-02-24  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
23175
23176         * lib/mkdtemp.c, lib/setenv.c, lib/unsetenv.c: Normalize inclusion of
23177         `config.h'.
23178
23179 2006-02-24  Paul Eggert  <eggert@cs.ucla.edu>
23180
23181         * lib/glob.c: Say "invalid" rather than "illegal" in comments.
23182
23183 2006-02-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
23184
23185         Sync from coreutils.
23186         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Require gl_FUNC_LCHMOD and
23187         gl_CHDIR_SAFER.
23188
23189 2006-02-22  Jim Meyering  <jim@meyering.net>
23190
23191         Sync from coreutils.
23192         * m4/chdir-safer.m4: New file.
23193
23194 2006-02-20  Paul Eggert  <eggert@cs.ucla.edu>
23195
23196         * lib/getcwd.c (AT_FDCWD): Work around a bug in Solaris 9 and 10, where
23197         AT_FDCWD exceeds INT_MAX.
23198         * lib/openat.h (AT_FDCWD): Likewise.
23199
23200 2006-02-17  Eric Blake  <address@hidden>
23201
23202         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Fix caching error.
23203
23204 2006-02-16  Simon Josefsson  <jas@extundo.com>
23205
23206         * modules/getaddrinfo (Depends-on): Add sys_socket.
23207
23208 2006-02-15  Simon Josefsson  <jas@extundo.com>
23209
23210         * build-aux/maint.mk: Add dsyntax-check rule.
23211
23212 2006-02-15  Eric Blake  <ebb9@byu.net>
23213
23214         * m4/sys_socket_h.m4 (gl_HEADER_SYS_SOCKET): Don't attempt using
23215         winsock2.h or ws2tcpip.h when sys/socket.h is present. Fixes
23216         'present but cannot compile' warnings on cygwin.
23217         * m4/socklen.m4 (gl_TYPE_SOCKLEN_T): Use gl_HEADER_SYS_SOCKET.  Don't
23218         use ws2tcpip.h if sys/socket.h works.
23219         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Use gl_HEADER_SYS_SOCKET.
23220         (gl_GETADDRINFO): Don't use ws2tcpip.h when sys/socket.h is present.
23221
23222 2006-02-14  Simon Josefsson  <jas@extundo.com>
23223
23224         * modules/maintainer-makefile (Files): Rename.
23225
23226         * build-aux/GNUmakefile: Rename Makefile.maint to maint.mk
23227         and (the local) Makefile.cfg to maint-cfg.mk.
23228
23229         * build-aux/Makefile.maint, build-aux/maint.mk: Renamed the former
23230         to the latter.
23231
23232         * modules/maintainer-makefile: New module.
23233
23234         * build-aux/Makefile.maint: New file, from GNU CoreUtils, although
23235         severaly stripped to make it possible to build it up from scratch
23236         with reliable tests.
23237
23238         * build-aux/GNUmakefile: New file, from GNU CoreUtils with some
23239         fixes to permit overriding the default actions when configure and
23240         makefile are not available.
23241
23242 2006-02-14  Paul Eggert  <eggert@cs.ucla.edu>
23243
23244         Sync from coreutils.
23245         * modules/lstat (Depends-on): Don't depend on xalloc.
23246         (License): Change from GPL to LGPL, since this is now simply a
23247         replacement for a libc function.
23248
23249 2006-02-14  Jim Meyering  <jim@meyering.net>
23250
23251         Sync from coreutils.
23252
23253         Eliminate the unwelcome (albeit unlikely) possibility of xmalloc
23254         failure on deficient systems, and simplify gnulib lgpl dependencies.
23255         * lib/lstat.c (rpl_lstat): Rewrite to use stat() in place of the
23256         xmalloc/lstat combination.  Based on a patch from Bruno Haible.
23257
23258         * lib/xalloc-die.c: Remove unused definition of N_.
23259
23260 2006-02-14  Jim Meyering  <jim@meyering.net>
23261
23262         Sync from coreutils.
23263         * m4/ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): Invoke
23264         AC_CHECK_FUNCS(getmntent) unconditionally so that tests of
23265         $ac_cv_func_getmntent (e.g., in gl_LIST_MOUNTED_FILE_SYSTEMS) need not
23266         double-quote uses of that variable, to accommodate the rare case in
23267         which getmntent is available in none of the libraries checked.  This
23268         happens at least on FreeBSD 5.0.
23269
23270 2006-02-13  Simon Josefsson  <jas@extundo.com>
23271
23272         * gnulib-tool (Usage): Fix --import, from
23273         karl@freefriends.org (Karl Berry).
23274
23275 2006-02-13  Sergey Poznyakoff  <gray@gnu.org.ua>
23276
23277         * lib/argp-fmtstream.c: Restore another bugfix lost on 2005-12-12
23278
23279 2006-02-07  Sergey Poznyakoff  <gray@gnu.org.ua>
23280
23281         * lib/argp-namefrob.h: Restore changes accidentally lost during the
23282         "autoupdate" on 2005-12-12.
23283
23284 2006-02-07  Paul Eggert  <eggert@cs.ucla.edu>
23285
23286         * modules/closeout (Depends-on): Remove atexit.
23287
23288 2006-02-07  Paul Eggert  <eggert@cs.ucla.edu>
23289
23290         * lib/closeout.c (close_stdout): Don't assume 'bool' converts nonzero
23291         ints to 0 or 1, as this isn't true for the stdbool.h substitute.
23292
23293 2006-02-05  Paul Eggert  <eggert@cs.ucla.edu>
23294
23295         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Don't #define
23296         __EXTENSIONS__ if this causes compilation to fail.  Problem
23297         reported by Nelson H. F. Beebe with Solaris 10 and Sun C 5.7
23298         c89 -D_XOPEN_SOURCE -D_XOPEN_SOURCE_EXTENDED.
23299
23300 2006-01-27  Paul Eggert  <eggert@cs.ucla.edu>
23301
23302         * lib/fnmatch.c (L_): Renamed from L, to work around a bug in
23303         Mac OS X 10.3.9 with GCC 3 reported by Claudio Fontana in
23304         <http://lists.gnu.org/archive/html/bug-gnulib/2006-01/msg00074.html>.
23305         All uses changed.
23306
23307 2006-01-26  Simon Josefsson  <jas@extundo.com>
23308
23309         * lib/socket_.h: Set WINVER to 0x0501, to make sure getaddrinfo
23310         prototype is visible on mingw32.
23311
23312         * lib/getaddrinfo.h: Define EAI_ADDRFAMILY and EAI_SYSTEM if not set,
23313         for mingw32.
23314
23315         * lib/gai_strerror.c, getaddrinfo.h: Protect netdb.h #include (for
23316         mingw32).
23317
23318 2006-01-26  Paul Eggert  <eggert@cs.ucla.edu>
23319
23320         * lib/fts.c (diropen): Open with O_NOCTTY | O_NONBLOCK too.  Don't
23321         attempt to open for write; this always fails, at least on POSIX
23322         hosts.  This reinstates the 2006-01-09 change, which was
23323         inadvertently removed.
23324
23325 2006-01-26  Bruno Haible  <bruno@clisp.org>
23326
23327         * gnulib-tool (func_import): Use "trap 'exit $?' instead of "trap :".
23328         Reported by Paul Eggert.
23329
23330 2006-01-26  Bruno Haible  <bruno@clisp.org>
23331             Paul Eggert  <eggert@cs.ucla.edu>
23332
23333         * lib/stdbool_.h (_Bool)
23334         [(! (defined __cplusplus || defined __BEOS__)
23335           && !defined __GNUC__
23336           && !(defined __HP_cc || defined __xlc__
23337                || (defined __SUNPRO_C && (__SUNPRO_C < 0x550 || __STDC__ == 1))
23338                || defined __sgi))]:
23339         #define to signed char in these cases too; this simplifies
23340         the code (so that we don't have to worry about HP-UX, AIX, SunPRO,
23341         etc., separately) and makes it more conservative.
23342
23343 2006-01-25  Simon Josefsson  <jas@extundo.com>
23344
23345         * m4/getaddrinfo.m4: Look for getaddrinfo inside ws2tcip.h and
23346         -lws2_32.  Protect sys/socket.h and netdb.h #include's.  Include
23347         ws2tcpip.h with WINVER=0x0501.  All for mingw32.
23348
23349 2006-01-25  Sergey Poznyakoff  <gray@gnu.org.ua>
23350
23351         * lib/argp-namefrob.h: Bugfix. Remove stray #
23352
23353 2006-01-25  Paul Eggert  <eggert@cs.ucla.edu>
23354
23355         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Check for xlc bug if __GCC__ too,
23356         so that we test the test.
23357         Check for yet another HP-UX cc bug involving *bool |= bool.
23358
23359 2006-01-25  Karl Berry  <karl@gnu.org>
23360
23361         * config/srclist.txt (vasnprintf.c): sync lost.
23362
23363 2006-01-25  Jim Meyering  <jim@meyering.net>
23364
23365         Sync from the stable (b5) branch of coreutils:
23366
23367         * lib/fts.c (fts_children): Don't let close() clobber errno from
23368         failed fchdir().
23369
23370         * lib/fts.c (fts_stat): When following a symlink-to-directory,
23371         don't necessarily interpret stat-fails+lstat-succeeds as indicating
23372         a dangling symlink.  That can also happen at least for ELOOP.
23373         The fix: return FTS_SLNONE only when the stat errno is ENOENT.
23374         FYI, this bug predates the inclusion of fts.c in coreutils.
23375
23376         * lib/fts.c (fts_open): Put new maxarglen declaration and uses
23377         in their own block, so pre-c99 compilers don't object.
23378
23379         Avoid the double-free (first in fts_read, second in fts_close) that
23380         would occur when an `active' directory is made inaccessible (e.g.,
23381         via chmod a-x) during a traversal.
23382         * lib/fts.c (fts_read): After a failed fchdir, update sp->fts_cur
23383         before returning.  Reproduce this failure by
23384         mkdir -p a/b; cd a; chmod a-x . b
23385         Reported by Stavros Passas.
23386
23387 2006-01-25  Jim Meyering  <jim@meyering.net>
23388
23389         * lib/fileblocks.c: Remove more useless parentheses.
23390         * lib/readutmp.h: Likewise.
23391
23392 2006-01-25  Bruno Haible  <bruno@clisp.org>
23393
23394         * lib/stdbool_.h (_Bool) [IRIX cc]: Define as 'signed char', to avoid
23395         warnings.
23396         Reported by Paul Eggert.
23397
23398 2006-01-25  Bruno Haible  <bruno@clisp.org>
23399
23400         * gnulib-tool (func_import): Use "trap :" instead of "trap -" to get
23401         rid of a trap command. For Solaris sh.
23402         Reported by Mark D. Baushke <mdb@gnu.org>.
23403
23404 2006-01-24  Simon Josefsson  <jas@extundo.com>
23405
23406         * lib/socket_.h (SHUT_WR, SHUT_RDWR): Don't hardcode, suggested by
23407         Bruno.
23408
23409 2006-01-24  Karl Berry  <karl@gnu.org>
23410
23411         * config/srclist.txt (argp-namefrob.h): sync lost.
23412
23413 2006-01-24  Jim Meyering  <jim@meyering.net>
23414
23415         * modules/openat (Files): Add lib/intprops.h.
23416         From Mark D. Baushke.
23417
23418 2006-01-24  Jim Meyering  <jim@meyering.net>
23419
23420         * m4/openat.m4 (gl_FUNC_OPENAT): Add AC_LIBSOURCES([intprops.h]).
23421         Reported by Mark D. Baushke.
23422
23423 2006-01-24  Jim Meyering  <jim@meyering.net>
23424
23425         * lib/socket_.h: Remove useless parentheses in uses of cpp `defined'.
23426
23427 2006-01-24  Bruno Haible  <bruno@clisp.org>
23428
23429         * modules/strnlen (Maintainer): Change from glibc to all.
23430
23431 2006-01-24  Bruno Haible  <bruno@clisp.org>
23432
23433         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Check for IBM and HP-UX bugs.
23434         Patch by Paul Eggert.
23435
23436 2006-01-24  Bruno Haible  <bruno@clisp.org>
23437
23438         * lib/stdbool_.h (_Bool) [__cplusplus]: Don't define if the compiler
23439         already has it.
23440         Report and patch by Albert Chin-A-Young  <china@thewrittenword.com> on
23441         2005-11-26.
23442
23443         * lib/stdbool_.h (_Bool) [HP-UX cc, AIX cc,xlc]: Define as
23444         'signed char' to avoid problems with the built-in _Bool type.
23445         Reported by Paul Eggert on 2005-11-26.
23446
23447 2006-01-24  Bruno Haible  <bruno@clisp.org>
23448
23449         * gnulib-tool (func_import): Avoid constructing complicated sed
23450         expressions inside backquote.
23451         Report and solution by Mark D. Baushke <mdb@gnu.org>.
23452
23453 2006-01-23  Ulrich Drepper  <drepper@redhat.com>
23454
23455         These changes imported from libc.
23456         * lib/getopt.c: Use __fxprintf instead of inline stream orientation
23457         test and two separate function calls.
23458         * lib/strndup.c (__strndup): Add libc_hidden_def.
23459
23460 2006-01-23  Simon Josefsson  <jas@extundo.com>
23461
23462         * modules/lock-tests: Use check_PROGRAMS instead of noinst_PROGRAMS.
23463         Remove the test_*_SOURCES variable: automake infers it by default.
23464         * modules/tls-tests: Likewise.
23465
23466 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
23467
23468         Work around porting bugs reported by Dieter in
23469         <http://lists.gnu.org/archive/html/bug-bison/2006-01/msg00049.html>.
23470         * lib/getopt.c (_NOPROTO): Remove; no longer needed.
23471         Include <stdlib.h> and <unistd.h> in all environments; it's safe now.
23472         Include "getopt.h" first, to check interface.
23473         (getenv): Declare only if defined HAVE_DECL_GETENV &&
23474         !HAVE_DECL_GETENV.
23475         * lib/strndup.c [!_LIBC]: Include "strndup.h" to get prototype.
23476         (__strndup): Revert to K&R-style function dfns, the glibc style.
23477         * lib/strnlen.c: Don't claim it's taken from glibc; it's not.
23478         (strnlen, __strnlen): Remove #defines and #undefs; not needed.
23479         Include strnlen.h first, to get prototype properly.
23480         (strnlen): Renamed from __strnlen.
23481         Remove weak alias.
23482
23483 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
23484
23485         * m4/getopt.m4 (gl_PREREQ_GETOPT): Check for getenv decl.
23486
23487 2006-01-23  Paul Eggert  <eggert@cs.ucla.edu>
23488
23489         * config/srclist.txt: Adjust to reflect glibc reorganization.
23490         This affects only comments.
23491
23492 2006-01-22  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
23493
23494          * gnulib-tool, build-aux/csharpcomp.sh.in: Do not pass `-q' to mktemp.
23495          Reported by Bruce Korb <bkorb@gnu.org>.
23496
23497 2006-01-22  Paul Eggert  <eggert@cs.ucla.edu>
23498
23499         * lib/quotearg.c (quotearg_buffer_restyled): Add "default: break;"
23500         to pacify gcc -Wswitch-default.
23501
23502 2006-01-22  Bruno Haible  <bruno@clisp.org>
23503
23504         * lib/vasnprintf.c (VASNPRINTF): In the computation of the size of the
23505         temporary buffer for sprintf, take into account the precision also
23506         for 'd', 'i', 'u', 'o', 'x', 'X'.
23507
23508 2006-01-21  Sergey Poznyakoff  <gray@gnu.org.ua>
23509
23510         * modules/argp-tests: New module
23511         * tests/test-argp.c: New file
23512         * tests/test-argp-2.sh: New file
23513
23514 2006-01-21  Sergey Poznyakoff  <gray@gnu.org.ua>
23515
23516         * lib/argp-help.c (usage_long_opt): Do not print DOC options.
23517         (__argp_base_name): Removed
23518         * lib/argp-namefrob.h (__argp_basename): Removed definition. Was a
23519         typo.
23520         (__argp_base_name): Provide macro definition or extern declaration
23521         depending on the configuration
23522
23523 2006-01-20  Simon Josefsson  <jas@extundo.com>
23524
23525         * modules/inet_ntop (Depends-on): Depend on sys_socket.
23526
23527 2006-01-20  Simon Josefsson  <jas@extundo.com>
23528
23529         * lib/inet_ntop.h: Unconditionally include sys/socket.h.
23530
23531 2006-01-20  Paul Eggert  <eggert@cs.ucla.edu>
23532
23533         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Use -Wl,-z,ignore
23534         rather than -Xlinker -z -Xlinker ignore, as it's more portable.
23535         Suggested by Bruno Haible.
23536
23537 2006-01-20  Karl Berry  <karl@gnu.org>
23538
23539         * config/srclist.txt (argp-fmtstream.h, localcharset.c): comment out
23540         until changes propagate, I guess.
23541
23542 2006-01-19  Simon Josefsson  <jas@extundo.com>
23543
23544         * m4/socklen.m4: Look in ws2tcpip.h too, for mingw32.
23545
23546 2006-01-19  Simon Josefsson  <jas@extundo.com>
23547
23548         * lib/socket_.h: Map SHUT_RD, SHUT_WR, SHUT_RDWR correctly.
23549
23550 2006-01-19  Simon Josefsson  <jas@extundo.com>
23551
23552         * gnulib-tool: Set check_PROGRAMS.
23553
23554         * modules/arcfour-tests, modules/arctwo-tests, modules/crc-tests,
23555         modules/des-tests, modules/gc-arcfour-tests,
23556         modules/gc-arctwo-tests, modules/gc-des-tests,
23557         modules/gc-hmac-md5-tests, modules/gc-hmac-sha1-tests,
23558         modules/gc-md2-tests, modules/gc-md4-tests, modules/gc-md5-tests,
23559         modules/gc-pbkdf2-sha1-tests, modules/gc-rijndael-tests,
23560         modules/gc-sha1-tests, modules/gc-tests, modules/hmac-md5-tests,
23561         modules/hmac-sha1-tests, modules/md2-tests, modules/md4-tests,
23562         modules/md5-tests, modules/readline, modules/rijndael-tests: Use
23563         check_PROGRAMS instead of noinst_PROGRAMS to be able to remove
23564         test_*_SOURCES.
23565
23566 2006-01-18  Simon Josefsson  <jas@extundo.com>
23567
23568         * modules/socklen (Depends-on): Depend on sys_socket.
23569
23570 2006-01-18  Simon Josefsson  <jas@extundo.com>
23571
23572         * modules/arcfour-tests, modules/arctwo-tests, modules/crc-tests,
23573         modules/des-tests, modules/gc-arcfour-tests,
23574         modules/gc-arctwo-tests, modules/gc-des-tests,
23575         modules/gc-hmac-md5-tests, modules/gc-hmac-sha1-tests,
23576         modules/gc-md2-tests, modules/gc-md4-tests, modules/gc-md5-tests,
23577         modules/gc-pbkdf2-sha1-tests, modules/gc-rijndael-tests,
23578         modules/gc-sha1-tests, modules/gc-tests, modules/hmac-md5-tests,
23579         modules/hmac-sha1-tests, modules/md2-tests, modules/md4-tests,
23580         modules/md5-tests, modules/readline, modules/rijndael-tests: Add
23581         $(EXEEXT) to automake TESTS variable, for mingw32.
23582
23583 2006-01-17  Simon Josefsson  <jas@extundo.com>
23584
23585         * modules/socklen (Include): Need sys/socket.h.
23586
23587 2006-01-17  Bruno Haible  <bruno@clisp.org>
23588
23589         * modules/ssize_t (Include): Add <sys/types.h>.
23590
23591 2006-01-16  Paul Eggert  <eggert@cs.ucla.edu>
23592
23593         * m4/lib-ignore.m4 (gl_IGNORE_UNUSED_LIBRARIES): Don't use ldd, as
23594         it's not portable and it doesn't work with cross-compiles.
23595         Problem reported by Bruno Haible.  Fix missing-$ typo in
23596         'test "gl_cv_ignore_unused_libraries" ...' that prevented
23597         -zignore from being used with Sun's C compiler.
23598
23599 2006-01-12  Simon Josefsson  <jas@extundo.com>
23600
23601         * lib/base64.c: Fix warning, reported by Bruno Haible
23602         <bruno@clisp.org> and patch by Paul Eggert <eggert@CS.UCLA.EDU>.
23603
23604 2006-01-12  Bruno Haible  <bruno@clisp.org>
23605
23606         * modules/ldd: New file.
23607         * build-aux/ldd.sh.in: New file.
23608         * MODULES.html.sh (Support for building libraries and executables): Add
23609         ldd.
23610
23611 2006-01-12  Bruno Haible  <bruno@clisp.org>
23612
23613         * m4/ldd.m4: New file.
23614
23615 2006-01-12  Bruno Haible  <bruno@clisp.org>
23616
23617         * gnulib-tool (func_import, func_create_testdir): Don't go into an
23618         endless loop while replacing $auxdir with build-aux.
23619
23620 2006-01-11  Simon Josefsson  <jas@extundo.com>
23621
23622         * lib/stdint_.h (SIZE_MAX): Add missing (.
23623
23624 2006-01-11  Paul Eggert  <eggert@cs.ucla.edu>
23625
23626         Sync from coreutils.
23627         * lib/md5.c: Fix commentary typos.
23628         (alignof, UNALIGNED_P): No need for a GCC-specific version.
23629         * lib/md5.h (__attribute__): Remove; unused.
23630         * lib/sha1.c: Fix commentary to match md5 better.
23631         * lib/sha1.h (struct sha1_ctx): Use a word buffer, not a byte buffer,
23632         so that we don't need to worry about alignment.  All uses changed.
23633         This merges the 2005-10-28 md5 change into sha1.
23634
23635 2006-01-11  Jim Meyering  <jim@meyering.net>
23636
23637         Sync from coreutils.
23638         * lib/md5.c (OP): Fix spacing.
23639
23640 2006-01-11  Bruno Haible  <bruno@clisp.org>
23641
23642         Ensure automatic ordering between gl_LOCK and gl_ARGP.
23643         * m4/lock.m4 (gl_LOCK_BODY): Renamed from gl_LOCK.
23644         (gl_LOCK): New macro, requiring gl_LOCK_BODY.
23645
23646 2006-01-11  Bruno Haible  <bruno@clisp.org>
23647
23648         Ensure automatic ordering between gl_LOCK and gl_ARGP.
23649         * gnulib-tool (func_import, func_create_testdir): Put gl_LOCK into
23650         the "early" section as well.
23651
23652 2006-01-11  Bruno Haible  <bruno@clisp.org>
23653
23654         Avoid "ar: no archive members specified" error on MacOS X.
23655         * gnulib-tool (func_modules_add_dummy): New function.
23656         (func_import, func_create_testdir): Invoke it.
23657
23658 2006-01-11  Bruno Haible  <bruno@clisp.org>
23659
23660         * gnulib-tool (func_import, func_create_testdir): Replace build-aux
23661         with $auxdir in AC_CONFIG_FILES statements.
23662
23663 2006-01-11  Bruno Haible  <bruno@clisp.org>
23664
23665         * gnulib-tool (func_emit_lib_Makefile_am, func_emit_tests_Makefile_am):
23666         Initialize also noinst_HEADERS to empty.
23667
23668 2006-01-11  Bruno Haible  <bruno@clisp.org>
23669
23670         * gnulib-tool (AUTOMAKEPATH, AUTOCONF, ACLOCAL, AUTOMAKE): New
23671         variables.
23672         (func_create_megatestdir): Call aclocal, autoconf, automake here, not
23673         autoreconf.
23674
23675 2006-01-11  Bruno Haible  <bruno@clisp.org>
23676
23677         * gnulib-tool (AUTOCONF, ACLOCAL, AUTOMAKE, AUTORECONF): Make
23678         overridable by the user.
23679         Reported by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
23680
23681 2006-01-10  Simon Josefsson  <jas@extundo.com>
23682
23683         * modules/sys_socket: New file.
23684
23685 2006-01-10  Simon Josefsson  <jas@extundo.com>
23686
23687         * m4/sys_socket_h.m4: New file.
23688
23689 2006-01-10  Simon Josefsson  <jas@extundo.com>
23690
23691         * lib/socket_.h: New file.
23692
23693 2006-01-10  Paul Eggert  <eggert@cs.ucla.edu>
23694
23695         * modules/readutmp (Maintainer): Add myself.
23696
23697 2006-01-10  Paul Eggert  <eggert@cs.ucla.edu>
23698
23699         * m4/memcoll.m4 (gl_MEMCOLL): Don't require AC_FUNC_MEMCMP, undoing
23700         the 2002-12-31 change.  Problem and fix reported by Bruno Haible.
23701         People who are still concerned with buggy memcmp implementations
23702         can invoke gl_FUNC_MEMCMP themselves.
23703
23704 2006-01-10  Paul Eggert  <eggert@cs.ucla.edu>
23705
23706         * lib/regex_internal.h (BITSET_WORD_BITS):
23707         Work around a bug in 64-bit PGC (before version 6.1-2), where the
23708         preprocessor mishandles large unsigned values as if they were signed.
23709         Problem reported by Claudio Fontana in
23710         <http://lists.gnu.org/archive/html/bug-gnulib/2005-12/msg00061.html>.
23711
23712 2006-01-10  Jim Meyering  <jim@meyering.net>
23713
23714         Avoid the double-free (first in fts_read, second in fts_close) that
23715         would occur when an `active' directory is made inaccessible (e.g.,
23716         via chmod a-x) during a traversal.
23717         * lib/fts.c (fts_read): After a failed fchdir, update sp->fts_cur
23718         before returning.  Reproduce this failure by
23719         mkdir -p a/b; cd a; chmod a-x . b
23720         Reported by Stavros Passas.
23721
23722         Sync from coreutils.
23723         * lib/sha1.c: Tweak grammar in a comment.
23724
23725 2006-01-10  Jim Meyering  <jim@meyering.net>
23726
23727         * m4/fpending.m4: Also include <stdio.h>, for Dragonfly.
23728         Patch by Joerg Sonnenberger.
23729
23730 2006-01-10  Bruno Haible  <bruno@clisp.org>
23731
23732         * modules/readutmp: Depend on module free.
23733         * modules/strtok_r: Depend on module restrict.
23734
23735 2006-01-10  Bruno Haible  <bruno@clisp.org>
23736
23737         * modules/gettext (configure.ac): Add an invocation of
23738         AM_GNU_GETTEXT_VERSION. Needed since autoreconf is used by gnulib-tool.
23739
23740 2006-01-10  Bruno Haible  <bruno@clisp.org>
23741
23742         * m4/localcharset.m4 (gl_LOCALCHARSET): Also test for getc_unlocked.
23743         Reported by Werner Lemberg <wl@gnu.org>.
23744
23745 2006-01-10  Bruno Haible  <bruno@clisp.org>
23746
23747         * lib/localcharset.c: Update from GNU gettext.
23748
23749 2006-01-10  Bruno Haible  <bruno@clisp.org>
23750
23751         * lib/argp.h (__const): Remove macro. Use const instead.
23752         * lib/argp-fmtstream.h (__const): Likewise.
23753         * lib/glob_.h (__const): Remove macro.
23754         * lib/glob-libc.h: Use const instead of __const.
23755
23756 2006-01-10  Bruno Haible  <bruno@clisp.org>
23757
23758         * gnulib-tool (func_emit_tests_Makefile_am): Emit an empty SUBDIR
23759         variable.
23760         Needed to avoid an automake error regarding the 'gettext' module.
23761
23762 2006-01-09  Simon Josefsson  <jas@extundo.com>
23763
23764         * modules/inet_ntop (Depends-on): Add restrict.
23765
23766 2006-01-09  Simon Josefsson  <jas@extundo.com>
23767
23768         * modules/gc-rijndael-tests (License): Put under LGPL.
23769
23770         * modules/gc-des-tests (License): Likewise.
23771
23772         * modules/gc-arcfour-tests (License): Likewise.
23773
23774         * modules/gc-arctwo-tests (License): Likewise.
23775
23776         * modules/gc-pbkdf2-sha1-tests (License): Likewise.
23777
23778         * modules/gc-hmac-sha1-tests (Files): Likewise.
23779
23780         * modules/gc-hmac-md5-tests (License): Likewise.
23781
23782         * modules/gc-sha1-tests (License): Likewise.
23783
23784         * modules/gc-md5-tests (License): Likewise.
23785
23786         * modules/gc-md4-tests (License): Likewise.
23787
23788         * modules/gc-md2-tests (License): Likewise.
23789
23790         * modules/gc-tests (License): Likewise.
23791
23792         * modules/des-tests (License): Likewise.
23793
23794         * modules/md4-tests (License): Likewise.
23795
23796         * modules/md2-tests (License): Likewise.
23797
23798 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
23799
23800         Sync from coreutils:
23801
23802         * MODULES.html.sh (build_lib): New section, with new lib-ignore module.
23803         * modules/lib-ignore: New file.
23804         * modules/mkdir-p (Files): Add chdir-safer.c, chdir-safer.h, lchmod.h,
23805         chdir-safer.m4, lchmod.m4.
23806         * modules/openat: Add mkdirat.c, openat-priv.h.
23807
23808 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
23809
23810         Sync from coreutils.
23811         * m4/lib-ignore.m4: New file.
23812         * m4/lchmod.m4: New file.
23813
23814 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
23815
23816         Sync from coreutils.
23817         * lib/chdir-long.c (cdb_free): Don't bother trying to open directory
23818         for write access: POSIX says that must fail.
23819         * lib/fts.c (diropen): Likewise.
23820         * lib/save-cwd.c (save_cwd): Likewise.
23821         * lib/chdir-long.c (cdb_free): Open with O_NOCTTY | O_NONBLOCK as
23822         well, for minor improvements on hosts that lack O_DIRECTORY.
23823         * lib/chown.c (rpl_chown) [CHOWN_MODIFIES_SYMLINK]:
23824         Don't try O_WRONLY unless O_RDONLY failed wth EACCES.
23825         Fall back on chown if open failed with EACCES.
23826
23827         * lib/gettime.c (gettime) [!defined OK_TO_USE_1S_CLOCK]:
23828         Report an error at compile-time if only a 1-second nominal clock
23829         resolution is found.
23830
23831         * lib/lchmod.h: New file.
23832         * lib/mkdir-p.c: Include lchmod.h, lchown.h.
23833         (make_dir_parents): Use lchown rather than chown, and
23834         lchmod rather than chmod.
23835
23836         * lib/mountlist.c (ME_DUMMY): "none" and "proc" file systems are
23837         dummies too.  Problem with "none" reported by Bob Proulx.  Problem with
23838         "proc" reported by n0dalus.
23839
23840         * lib/mountlist.c: Include <limits.h>.
23841         (dev_from_mount_options)
23842         [defined MOUNTED_GETMNTENT1 || defined MOUNTED_GETMNTENT2]:
23843         New function.  It no longer assumes "dev=" has the System V meaning
23844         on Linux (since it doesn't).  It also parses "dev=" more carefully.
23845         (read_file_system_list)
23846         [defined MOUNTED_GETMNTENT1 || defined MOUNTED_GETMNTENT2]: Use it.
23847         MOUNTED_GETMNTENT2 is new here; the code didn't used to look for
23848         dev= in that case.
23849
23850         * lib/posixtm.h (PDS_PRE_2000): New macro.
23851         * lib/posixtm.c (year): Arg is now syntax_bits rather than
23852         allow_century.  All usages changed.  Reject dates outside the range
23853         1969-1999 if PDS_PRE_2000 is used.
23854
23855 2006-01-09  Paul Eggert  <eggert@cs.ucla.edu>
23856
23857         Sync from coreutils.
23858         * doc/getdate.texi (General date syntax): Invalid dates are rejected.
23859         (Time of day items): Mention the possibility of leap seconds.
23860         Problem reported by Dr. David Alan Gilbert.
23861
23862 2006-01-09  Jim Meyering  <jim@meyering.net>
23863
23864         Sync from coreutils.
23865
23866         * lib/version-etc.c (COPYRIGHT_YEAR): Update to 2006.
23867
23868         * lib/chdir-safer.h, lib/chdir-safer.c: New files.
23869
23870         * lib/modechange.c (mode_compile): Reject an invalid mode string
23871         that starts with an octal digit.  From Andreas Gruenbacher.
23872
23873         * lib/openat.c: Include "fcntl--.h" and "unistd--.h", to map open
23874         and dup to open_safer and dup_safer, respectively.
23875         (openat_permissive): Fix typo in comment.
23876
23877         * lib/openat.c: Don't include <stdlib.h>, <unistd.h>, <fcntl.h>,
23878         "gettext.h"; either no longer needed or are guaranteed by openat.h.
23879         (_): Remove; no longer needed.
23880         (openat): Renamed from rpl_openat; no need for rpl_openat
23881         since openat.h renames openat for us.
23882         Replace most of the body with a call to openat_permissive,
23883         to avoid duplicate code.
23884         Port to (probably hypothetical) environments were mode_t is
23885         wider than int.
23886         (openat_permissive): Require mode arg, so that we can check
23887         types better.  Put it just after flags.  Change cwd failure
23888         indicator from pointer-to-bool to pointer-to-errno-value.
23889         All callers changed.
23890         Invoke openat_save_fail and/or openat_restore_fail if
23891         cwd_errno is null, so that openat can call us.
23892         (openat_permissive, fdopendir, fstatat, unlinkat):
23893         Simplify errno handling to avoid some duplicate code,
23894         as it's OK to set errno on success.
23895         * lib/openat.h: Revamp code so that function macros depend on
23896         __OPENAT_PREFIX only, not also on AT_FDCWD.
23897         (openat_ro): Remove.  Caller changed to use openat_permissive.
23898         (openat_permissive): Now a macro, if not a function.
23899         (openat_restore_fail, openat_save_fail): Now always functions,
23900         since mkdirat needs them even if __OPENAT_PREFIX is defined.
23901
23902         * lib/openat-priv.h: New file, defining macros used by mkdirat.c
23903         and openat.c.
23904         * lib/mkdirat.c: Include openat-priv.h.
23905         Remove definitions of macros defined therein.
23906         * lib/openat.c: Likewise.
23907
23908         * lib/mkdirat.c (mkdirat): New file and function.
23909         * lib/openat.h (mkdirat): Declare.
23910
23911         * lib/openat.c (fdopendir): Don't change errno when returning non-NULL.
23912
23913         * lib/openat.h (openat_permissive): Declare.
23914         (openat_ro): Define.
23915
23916         * lib/openat.c (EXPECTED_ERRNO): New macro.
23917         (openat_permissive): New function -- used in remove.c rewrite.
23918         (all functions): Set errno just before returning, only if there
23919         was an actual failure.
23920         Use EXPECTED_ERRNO rather than comparing against only ENOTDIR.
23921
23922         Emulate openat-family functions using Linux's procfs, if possible.
23923         Idea and some code based on Ulrich Drepper's glibc changes.
23924
23925         * lib/openat.c: (BUILD_PROC_NAME): New macro.
23926         Include <stdio.h>, <string.h>, "alloca.h" and "intprops.h".
23927         (rpl_openat): Emulate by trying to open /proc/self/fd/%d/%s,
23928         before falling back on save_cwd and restore_cwd.
23929         (fdopendir, fstatat, unlinkat): Likewise.
23930
23931         * lib/openat.c (fstatat, unlinkat): Perform the syscall directly,
23932         skipping the save_cwd...restore_cwd overhead, if FILE is absolute.
23933
23934         * lib/openat.c (rpl_openat): Use the promoted type (int), not mode_t,
23935         as second argument to va_arg.  Otherwise, some versions of gcc
23936         warn that `if this code is reached, the program will abort'.
23937
23938 2006-01-09  Jim Meyering  <jim@meyering.net>
23939
23940         Sync from coreutils.
23941         * m4/openat.m4 (gl_FUNC_OPENAT): Require and compile mkdirat.c.
23942         Require openat-priv.h.
23943
23944 2006-01-09  Bruno Haible  <bruno@clisp.org>
23945
23946         * modules/strnlen (Include): Use strnlen.h.
23947
23948 2006-01-09  Bruno Haible  <bruno@clisp.org>
23949
23950         * m4/stdint.m4 (gl_STDINT_H): Also test for <sys/bitypes.h>.
23951
23952 2006-01-09  Bruno Haible  <bruno@clisp.org>
23953
23954         * lib/sysexit_.h (EX_OK): New macro.
23955         Suggested by Martin Lambers <marlam@marlam.de>.
23956
23957 2006-01-09  Bruno Haible  <bruno@clisp.org>
23958
23959         * lib/stdint_.h: On Linux libc4 and libc5, include <sys/bitypes.h> and
23960         don't define _STDINT_H_NEED_SIGNED_INT_TYPES.
23961
23962 2006-01-09  Bruno Haible  <bruno@clisp.org>
23963
23964         * lib/stdint_.h (SIZE_MAX): Write the value without involving negative
23965         numbers.
23966
23967 2006-01-09  Bruno Haible  <bruno@clisp.org>
23968
23969         * lib/javacomp.sh.in: Move to ../build-aux/javacomp.sh.in.
23970         * lib/javaexec.sh.in: Move to ../build-aux/javaexec.sh.in.
23971         * lib/csharpcomp.sh.in: Move to ../build-aux/csharpcomp.sh.in.
23972         * lib/csharpexec.sh.in: Move to ../build-aux/csharpexec.sh.in.
23973
23974 2006-01-09  Bruno Haible  <bruno@clisp.org>
23975
23976         * build-aux/javacomp.sh.in: New file, moved from lib/.
23977         * modules/javacomp-script (Files): Update.
23978         (configure.ac): Add AC_CONFIG_FILES invocation.
23979         (EXTRA_DIST): Remove variable.
23980
23981         * build-aux/javaexec.sh.in: New file, moved from lib/.
23982         * modules/javaexec (Files): Update.
23983         (configure.ac): Add AC_CONFIG_FILES invocation.
23984         (EXTRA_DIST): Remove javaexec.sh.in.
23985
23986         * build-aux/csharpcomp.sh.in: New file, moved from lib/.
23987         * modules/csharpcomp-script (Files): Update.
23988         (configure.ac): Add AC_CONFIG_FILES invocation.
23989         (EXTRA_DIST): Remove variable.
23990
23991         * build-aux/csharpexec.sh.in: New file, moved from lib/.
23992         * modules/csharpexec (Files): Update.
23993         (configure.ac): Add AC_CONFIG_FILES invocation.
23994         (EXTRA_DIST): Remove csharpexec.sh.in.
23995
23996 2006-01-09  Andreas Gruenbacher  <agruen@suse.de>
23997
23998         Sync from coreutils.
23999
24000         Add POSIX ACL support
24001         * lib/acl.h (copy_acl, set_acl): Add declarations.
24002         * lib/acl.c (acl_entries): Add fallback implementation for POSIX ACL
24003         systems other than Linux.
24004         (chmod_or_fchmod): New function: use fchmod when possible,
24005         and chmod otherwise.
24006         (file_has_acl): Add a POSIX ACL implementation, with a
24007         Linux-specific subcase.
24008         (copy_acl): Add: copy an acl and S_ISUID, S_ISGID, and
24009         S_ISVTX from one file to another.  Fall back to fchmod/chmod when
24010         acls are unsupported.
24011         (set_acl): Add: set a file's acl and S_ISUID, S_ISGID, and
24012         S_ISVTX to a defined value.  Fall back to fchmod/chmod when acls
24013         are unsupported.
24014
24015 2006-01-09  Andreas Gruenbacher  <agruen@suse.de>
24016
24017         Sync from coreutils.
24018         * m4/acl.m4 (AC_FUNC_ACL): Add POSIX ACL and Linux-specific acl tests.
24019
24020 2006-01-07  Bruno Haible  <bruno@clisp.org>
24021
24022         * gnulib-tool (func_import): Add an AC_PROG_RANLIB dependency to
24023         gl_EARLY.
24024
24025 2006-01-04  Paul Eggert  <eggert@cs.ucla.edu>
24026
24027         * lib/strftime.c (tzname): Don't declare if it is already #defined.
24028         Problem reported for Mingw by Mark Junker.
24029
24030 2006-01-04  Paul Eggert  <eggert@cs.ucla.edu>
24031
24032         * README: Gnulib normally doesn't generate a tarball.
24033
24034 2006-01-03  Paul Eggert  <eggert@cs.ucla.edu>
24035
24036         * lib/xtime.h (xtime_make, xtime_nonnegative_nsec, xtime_nsec): Use
24037         long int, not int, for nanosecond counts, so that people who are
24038         used to POSIX struct timespec won't be surprised.  Reported by Jim
24039         Meyering.
24040
24041 2005-12-28  Bruno Haible  <bruno@clisp.org>
24042
24043         * build-aux/config.rpath: Update from GNU gettext.
24044
24045 2005-12-16  Jim Meyering  <jim@meyering.net>
24046
24047         * modules/fprintftime: New module.
24048         * MODULES.html.sh (Date and time <time.h>): Add fprintftime.
24049
24050 2005-12-16  Jim Meyering  <jim@meyering.net>
24051
24052         * m4/fprintftime.m4: New file.
24053
24054 2005-12-16  Jim Meyering  <jim@meyering.net>
24055
24056         * lib/fprintftime.c, lib/fprintftime.h: New files.
24057
24058 2005-12-15  Simon Josefsson  <jas@extundo.com>
24059
24060         * modules/socklen (configure.ac): Fix M4 macro name, to align with
24061         new m4/socklen.m4.
24062
24063 2005-12-10  Sergey Poznyakoff  <gray@gnu.org.ua>
24064
24065         * m4/argp.m4: Define HAVE_DECL_PROGRAM_INVOCATION_NAME and
24066         HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME
24067
24068 2005-12-10  Sergey Poznyakoff  <gray@gnu.org.ua>
24069
24070         * lib/argp-fmtstream.c (__argp_fmtstream_update): Fix coredump
24071         * lib/argp-help.c (fill_in_uparams): Check if the constructed
24072         struct uparams is valid. Fall back to the default values if it is
24073         not.
24074
24075 2005-12-09  Sergey Poznyakoff  <gray@gnu.org.ua>
24076
24077         * modules/argp (Files): Add argp-pin.c
24078         (Depends-on): dirname
24079         (lib_SOURCES): Add argp-pin.c
24080
24081 2005-12-09  Sergey Poznyakoff  <gray@gnu.org.ua>
24082
24083         * m4/argp.m4:  Check if program_invocation_name and
24084         program_invocation_short_name are declared and define appropriate
24085         macros if they are not.
24086
24087 2005-12-09  Sergey Poznyakoff  <gray@gnu.org.ua>
24088
24089         * lib/argp-help.c (__argp_base_name): New function
24090         (__argp_short_program_name): Rewrite using __argp_base_name
24091         * lib/argp-namefrob.h: Define program_invocation_name and
24092         program_invocation_short_name if requested
24093         (__argp_base_name): Add prototype
24094         * lib/argp-parse.c (argp_def): Use gettext wrappers
24095         (argp_default_parser): Use __argp_base_name
24096         * lib/argp-pin.c: New file. Defines program_invocation_name and
24097         program_invocation_short_name on systems that lack them.
24098
24099 2005-12-07  Paul Eggert  <eggert@cs.ucla.edu>
24100
24101         * m4/stat-time.m4 (gl_STAT_TIME): Add check for
24102         TYPEOF_STRUCT_STAT_ST_ATIM_IS_STRUCT_TIMESPEC, to fix IRIX 5.3
24103         porting problem reported by Georg Schwarz in
24104         <http://lists.gnu.org/archive/html/bug-coreutils/2005-12/msg00083.html>.
24105
24106 2005-12-07  Paul Eggert  <eggert@cs.ucla.edu>
24107
24108         * lib/stat-time.h (STATE_TIMESPEC, STAT_TIMESPEC_NS): Add check for
24109         TYPEOF_STRUCT_STAT_ST_ATIM_IS_STRUCT_TIMESPEC, to fix IRIX 5.3
24110         porting problem reported by Georg Schwarz in
24111         <http://lists.gnu.org/archive/html/bug-coreutils/2005-12/msg00083.html>.
24112
24113 2005-12-05  Bruno Haible  <bruno@clisp.org>
24114
24115         * lib/csharpcomp.sh.in (options_csc): For -l option, add a .dll suffix.
24116         * lib/csharpcomp.c (compile_csharp_using_sscli): Likewise.
24117         Reported by Mark Junker <mjscod@gmx.de>.
24118
24119 2005-12-02  Paul Eggert  <eggert@cs.ucla.edu>
24120
24121         * m4/socklen.m4 (gl_TYPE_SOCKLEN_T): Renamed from gl_SOCKLEN_T.
24122         Use implementation from Albert Chin, with some
24123         comments/corrections by Stepan Kasal and myself.
24124
24125 2005-12-02  Bruno Haible  <bruno@clisp.org>
24126
24127         * gnulib-tool (func_import): Accept GPLed build tool modules when
24128         --lgpl is given.
24129         * modules/csharpcomp-script: New file.
24130         * modules/csharpcomp: Depend on it.
24131         * modules/javacomp-script: New file.
24132         * modules/javacomp: Depend on it.
24133         Suggested by Simon Josefsson.
24134
24135 2005-12-01  Paul Eggert  <eggert@cs.ucla.edu>
24136
24137         * m4/regex.m4 (gl_REGEX): Check whether off_t can be used in a switch
24138         statement, to work around an HP-UX 10.20 compiler bug reported by
24139         Peter O'Gorman.
24140
24141 2005-11-29  Paul Eggert  <eggert@cs.ucla.edu>
24142
24143         * modules/savedir (Depends-on): Add openat.
24144
24145 2005-11-29  Paul Eggert  <eggert@cs.ucla.edu>
24146
24147         * lib/stdint_.h (intmax_t) [defined intmax_t]: Do not declare.
24148         (uintmax_t) [defined uintmax_t]: Do not declare.
24149         (SIZE_MAX) [defined SIZE_MAX]: Do not define.
24150         This works around a problem if intmax_t.m4 and/or uintmax_t.m4
24151         and/or size_max.m4 are also used.  Problem reported by Mark D. Baushke.
24152         (SIZE_MAX): Define to ((size_t) -1), not (~(size_t)0), for the
24153         sake of portability to weird hosts that C allows (though we don't
24154         know of any practical examples).
24155
24156         * lib/savedir.h (fdsavedir): New decl.
24157         * lib/savedir.c (fdsavedir, savedirstream): New functions; the latter
24158         contains most of the former guts of savedir.
24159         (savedir): Use savedirstream.
24160         Include "openat.h".
24161
24162 2005-11-25  Paul Eggert  <eggert@cs.ucla.edu>
24163
24164         * modules/obstack (Files): Add m4/ulonglong.m4.
24165         Problem reported by Davide Angelocola.
24166
24167 2005-11-15  Paul Eggert  <eggert@cs.ucla.edu>
24168
24169         * lib/xstrtod.c: Don't bother with #pragma STDC FENV_ACCESS ON, as
24170         coreutils no longer futzes with rounding modes.
24171
24172 2005-11-14  Jim Meyering  <jim@meyering.net>
24173
24174         * lib/mkstemp-safer.c: Include <config.h>, required for possible
24175         replacement of mkstemp.
24176
24177 2005-11-10  Simon Josefsson  <jas@extundo.com>
24178
24179         * lib/readline.c: Remove EOL.
24180
24181 2005-11-10  Paul Eggert  <eggert@cs.ucla.edu>
24182
24183         * modules/gethrxtime (Depends-on): Add gettime.
24184
24185 2005-11-10  Paul Eggert  <eggert@cs.ucla.edu>
24186
24187         * m4/gethrxtime.m4 (gl_PREREQ_GETHRXTIME): Don't require AC_HEADER_TIME
24188         or gettimeofday; no longer needed.
24189
24190 2005-11-10  Paul Eggert  <eggert@cs.ucla.edu>
24191
24192         * lib/gethrxtime.c: Include "timespec.h" rather than the sys/time /
24193         time business.
24194         (gethrxtime) [! (HAVE_NANOUPTIME
24195         || (defined CLOCK_MONOTONIC && HAVE_CLOCK_GETTIME)
24196         || HAVE_MICROUPTIME)]: Fall back on gettime rather than rolling
24197         our own approximation.
24198
24199 2005-11-08  Eric Blake  <ebb9@byu.net>
24200
24201         * lib/inet_ntop.h: Use #if !, not #ifndef, for AC_CHECK_DECLS.
24202
24203 2005-11-08  Eric Blake  <ebb9@byu.net>
24204
24205         * lib/getaddrinfo.h: Use #if !, not #ifndef, for AC_CHECK_DECLS.
24206
24207 2005-11-04  Bruno Haible  <bruno@clisp.org>
24208
24209         * gnulib-tool: Implement --update mode.
24210
24211 2005-10-30  Paul Eggert  <eggert@cs.ucla.edu>
24212
24213         Fix porting problem reported by Theodoros V. Kalamatianos.
24214         * lib/utimens.c (futimens) [HAVE_WORKING_UTIMES && HAVE_FUTIMES]:
24215         Don't assume that futimes failing means we must fail.
24216
24217 2005-10-30  Paul Eggert  <eggert@cs.ucla.edu>
24218
24219         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Revamp wording and local
24220         variables to suggest the intended function of the PATH_MAX check.
24221
24222 2005-10-30  Kean Johnston  <jkj@sco.com>
24223
24224         Trivial changes to support SCO systems.
24225         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Check for MAXPATHLEN as well
24226         as PATH_MAX.
24227         * m4/fpending.m4 (gl_FUNC_FPENDING): Correct check for SCO systems,
24228         where __ptr is null when no I/O is pending.
24229
24230 2005-10-29  Paul Eggert  <eggert@cs.ucla.edu>
24231
24232         * lib/getcwd.c (__getcwd): Don't assume that system calls after readdir
24233         leave errno alone.  Problem reported by Dmitry V. Levin.
24234
24235 2005-10-28  Simon Josefsson  <jas@extundo.com>
24236
24237         * tests/test-gc-md4.c, tests/test-gc-md5.c, tests/test-gc-sha1.c:
24238         Test more.
24239
24240         * tests/test-gc-md2.c, tests/test-md2.c: New files.
24241
24242         * modules/md2, modules/md2-tests: New files.
24243
24244 2005-10-28  Simon Josefsson  <jas@extundo.com>
24245
24246         * m4/inet_ntop.m4: More tests.
24247
24248         * m4/gc-md2.m4, md2.m4: New file.
24249
24250 2005-10-28  Simon Josefsson  <jas@extundo.com>
24251
24252         * lib/inet_ntop.h, inet_ntop.c: Make it work under mingw32: Add
24253         "restrict" keywords, as per POSIX.  Protect the function
24254         declaration around HAVE_DECL_INET_NTOP rather than HAVE_INET_NTOP.
24255         Don't use K&R prototypes.  Check the sprintf return values.
24256         Re-define EAFNOSUPPORT if not present.  Indent.
24257
24258         * lib/md5.h, md5.c: Simplify buffer handling visavi alignment,
24259         suggested by Bruno Haible <bruno@clisp.org>.
24260
24261         * lib/gc-gnulib.c, gc-libgcrypt.c: Check calloc return value.
24262
24263         * lib/gc.h: Add MD2 and RMD160 length defines.  Add prototypes.
24264
24265         * lib/gc-libgcrypt.c: Add MD2 (which is not available through
24266         libgcrypt).
24267
24268         * lib/gc-gnulib.c: Add MD2.  Implement gc_hash_* API.
24269
24270         * lib/md2.h, lib/md2.c: New files.
24271
24272 2005-10-28  Paul Eggert  <eggert@cs.ucla.edu>
24273
24274         * lib/savedir.c (savedir): Don't assume that xrealloc etc. leave
24275         errno alone.  Problem reported by Frederic Jolliton.
24276
24277 2005-10-27  Paul Eggert  <eggert@cs.ucla.edu>
24278
24279         * modules/verify (License): Change from GPL to LGPL.  This is a
24280         tiny module and there are apparently near-equivalents that are
24281         under the BSD license.
24282
24283 2005-10-24  Simon Josefsson  <jas@extundo.com>
24284
24285         * modules/sha1: Relicense to LGPL.
24286
24287 2005-10-24  Simon Josefsson  <jas@extundo.com>
24288
24289         * lib/md4.h: Shrink buffer size, now that we changed the type.
24290
24291 2005-10-23  Simon Josefsson  <jas@extundo.com>
24292
24293         * gnulib-tool (func_import): Fix --tests-base.
24294
24295 2005-10-22  Simon Josefsson  <jas@extundo.com>
24296
24297         * modules/arcfour (Depends-on): Need stdint.
24298
24299 2005-10-22  Simon Josefsson  <jas@extundo.com>
24300
24301         * m4/gc.m4: Don't be fooled by --disable-*random-device parameters,
24302         suggested by Bruno Haible <bruno@clisp.org>.  Fix error messages.
24303
24304 2005-10-22  Simon Josefsson  <jas@extundo.com>
24305
24306         * lib/md4.h, md4.c: Simplify buffer handling visavi alignment,
24307         suggested by Bruno Haible <bruno@clisp.org>.
24308
24309 2005-10-22  Simon Josefsson  <jas@extundo.com>
24310
24311         * lib/crc.h: Include stddef.h, for size_t.
24312
24313 2005-10-22  Simon Josefsson  <jas@extundo.com>
24314
24315         * lib/arcfour.h, arcfour.c: Use fixed size indices in the
24316         arcfour_context struct (simplify test vector testing in GNU
24317         Shishi).
24318
24319 2005-10-21  Simon Josefsson  <jas@extundo.com>
24320
24321         * modules/des, modules/des-tests: New files.
24322
24323         * modules/gc-des, modules/gc-des-tests: New files.
24324
24325         * tests/test-des.c, tests/test-gc-des.c: New file.
24326
24327 2005-10-21  Simon Josefsson  <jas@extundo.com>
24328
24329         * modules/arctwo, modules/arctwo-tests: New files.
24330
24331         * tests/test-arctwo.c: New file.
24332
24333         * modules/gc-arctwo, modules/gc-arctwo-tests: New files.
24334
24335         * tests/test-gc-arctwo.c: New file.
24336
24337 2005-10-21  Simon Josefsson  <jas@extundo.com>
24338
24339         * m4/gc.m4: Don't use libgcrypt if gcrypt.h isn't found, suggested by
24340         Bruno Haible <bruno@clisp.org>.
24341
24342         * m4/gc-des.m4: New file.
24343
24344 2005-10-21  Simon Josefsson  <jas@extundo.com>
24345
24346         * m4/arctwo.m4: New file.
24347
24348         * m4/gc-arctwo.m4: New file.
24349
24350 2005-10-21  Simon Josefsson  <jas@extundo.com>
24351
24352         * lib/rijndael-api-fst.c: Fix bugs in CBC mode for more than one
24353         block.
24354
24355 2005-10-21  Simon Josefsson  <jas@extundo.com>
24356
24357         * lib/hmac-md5.c (hmac_md5): Add comments, suggested by Bruno Haible
24358         <bruno@clisp.org>.
24359
24360         * lib/hmac-sha1.c (hmac_sha1): Likewise.
24361
24362         * lib/crc.c (crc32_update): Actually use crc parameter, suggested by
24363         Bruno Haible <bruno@clisp.org>.
24364
24365         * lib/crc.h: Include stdint.h directly, suggested by Bruno Haible
24366         <bruno@clisp.org>.
24367
24368 2005-10-21  Simon Josefsson  <jas@extundo.com>
24369
24370         * lib/gc-libgcrypt.c (gc_cipher_open): Handle ECB.
24371
24372 2005-10-21  Simon Josefsson  <jas@extundo.com>
24373
24374         * lib/gc-gnulib.c: Support ARCTWO in CBC mode.
24375
24376 2005-10-21  Simon Josefsson  <jas@extundo.com>
24377
24378         * lib/des.h, lib/des.c: New files.
24379
24380         * lib/gc-gnulib.c: Support DES.c
24381
24382 2005-10-21  Simon Josefsson  <jas@extundo.com>
24383
24384         * lib/arctwo.h, lib/arctwo.c: New files.
24385
24386         * lib/gc-gnulib.c: Support ARCTWO.
24387
24388 2005-10-21  Simon Josefsson  <jas@extundo.com>
24389
24390         * lib/arctwo.h (arctwo_setkey): Protect variable in CPP macro,
24391         suggested by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
24392
24393 2005-10-21  Simon Josefsson  <jas@extundo.com>
24394
24395         * gnulib-tool (func_import, func_create_testdir): Define automake
24396         conditional GL_COND_LIBTOOL if libtool is used (to be used by modules
24397         Makefile.am snippet),
24398         suggested by Bruno Haible <bruno@clisp.org>.
24399
24400         * modules/gc (Makefile.am): Use it.
24401
24402 2005-10-21  Bruno Haible  <bruno@clisp.org>
24403
24404         * gnulib-tool (func_import, func_create_testdir): Add quoting to last
24405         patch.
24406
24407 2005-10-19  Simon Josefsson  <jas@extundo.com>
24408
24409         * tests/test-gc-rijndael.c: New file.
24410
24411         * modules/gc-rijndael, modules/gc-rijndael-test: New files.
24412
24413 2005-10-19  Simon Josefsson  <jas@extundo.com>
24414
24415         * tests/test-gc-md4.c, tests/test-gc-md5.c: Test gc_hash_buffer
24416         interface too.
24417
24418 2005-10-19  Simon Josefsson  <jas@extundo.com>
24419
24420         * tests/test-gc-arcfour.c: New file.
24421
24422         * modules/gc-arcfour, modules/gc-arcfour-tests: New files.
24423
24424 2005-10-19  Simon Josefsson  <jas@extundo.com>
24425
24426         * modules/gc-md4, modules/gc-md4-tests: New file.
24427
24428         * tests/test-gc-md4.c: New file.
24429
24430 2005-10-19  Simon Josefsson  <jas@extundo.com>
24431
24432         * m4/gc-md4.m4: New file.
24433
24434 2005-10-19  Simon Josefsson  <jas@extundo.com>
24435
24436         * m4/gc-hmac-md5.m4, gc-hmac-sha1.m4, gc-md4.m4,
24437         gc-md5.m4, gc-sha1.m4: Fix typo, suggested by Stepan Kasal
24438         <kasal@ucw.cz>.
24439
24440 2005-10-19  Simon Josefsson  <jas@extundo.com>
24441
24442         * m4/gc-arcfour.m4: New file.
24443
24444         * m4/gc-rijndael.m4: New file.
24445
24446 2005-10-19  Simon Josefsson  <jas@extundo.com>
24447
24448         * lib/gc.h, gc-gnulib.c, gc-libgcrypt.c: Support MD4.
24449
24450 2005-10-19  Simon Josefsson  <jas@extundo.com>
24451
24452         * lib/gc-gnulib.c: Support ARCFOUR.
24453
24454 2005-10-19  Simon Josefsson  <jas@extundo.com>
24455
24456         * lib/gc-gnulib.c: Implement gc_cipher_* API, currently only with AES
24457         support.
24458
24459         * lib/gc.h: Add ECB enum type.
24460
24461         * lib/hmac-md5.c, hmac-sha1.c: Include memxor.h.
24462
24463 2005-10-18  Simon Josefsson  <jas@extundo.com>
24464
24465         * tests/test-md5.c: New file.
24466
24467         * modules/md5-tests: New file.
24468
24469 2005-10-18  Simon Josefsson  <jas@extundo.com>
24470
24471         * tests/test-md4.c: New file.
24472
24473         * modules/md4, modules/md4-tests: New files.
24474
24475 2005-10-18  Simon Josefsson  <jas@extundo.com>
24476
24477         * m4/md4.m4: New file.
24478
24479 2005-10-18  Simon Josefsson  <jas@extundo.com>
24480
24481         * lib/md4.h, lib/md4.c: New files, based on md5.?.
24482
24483 2005-10-17  Stepan Kasal  <kasal@ucw.cz>
24484
24485         * gnulib-tool (func_create_testdir): Omit the second check whether
24486         BUILT_SOURCES in nonempty.
24487
24488 2005-10-17  Simon Josefsson  <jas@extundo.com>
24489
24490         * tests/test-rijndael.c: New file.
24491
24492 2005-10-17  Simon Josefsson  <jas@extundo.com>
24493
24494         * modules/sha1: Depend on stdint instead of md5.
24495
24496         * modules/md5: Depend on stdint, remove uint32_t.
24497
24498 2005-10-17  Simon Josefsson  <jas@extundo.com>
24499
24500         * modules/gc-sha1-tests: New file.
24501
24502         * tests/test-gc-sha1.c: New file.
24503
24504 2005-10-17  Simon Josefsson  <jas@extundo.com>
24505
24506         * m4/md5.m4: Remove call to uint32_t.m4.
24507
24508 2005-10-17  Simon Josefsson  <jas@extundo.com>
24509
24510         * lib/sha1.c: Use uint32_t instead of md5_uint32.t
24511
24512         * lib/sha1.h: Use stdint.h and uint32_t instead of md5_uint32 from
24513         md5.h.
24514
24515         * lib/md5.c: Use uin32_t.  Fix non-gcc UNALIGNED_P macro.
24516
24517         * lib/md5.h: Use stdint.h and uint32_t.  Doc fix.
24518
24519 2005-10-17  Simon Josefsson  <jas@extundo.com>
24520
24521         * lib/gc.h, gc-libgcrypt.c: Add more hash types/functions.
24522
24523 2005-10-17  Simon Josefsson  <jas@extundo.com>
24524
24525         * lib/gc.h, gc-libgcrypt.c: Add ciphers.
24526
24527 2005-10-17  Simon Josefsson  <jas@extundo.com>
24528
24529         * lib/gc-libgcrypt.c (gc_hmac_sha1): Fix assert.
24530
24531         * lib/gc.h (gc_nonce, gc_pseudo_random, gc_random): Add prototypes.
24532
24533 2005-10-17  Bruno Haible  <bruno@clisp.org>
24534
24535         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Change the return statement so
24536         that it can also be used in a test.
24537
24538 2005-10-16  Bruno Haible  <bruno@clisp.org>
24539
24540         * gnulib-tool (func_emit_tests_Makefile_am): Also define
24541         TESTS_ENVIRONMENT, so that individual tests can augment it.
24542
24543         * gnulib-tool (func_create_testdir): Use an intermediate target for
24544         building $(BUILT_SOURCES). Needed because BUILT_SOURCES can contain
24545         macros, like $(ALLOCA_H), which cannot be passed through the command
24546         line.
24547
24548 2005-10-15  Simon Josefsson  <jas@extundo.com>
24549
24550         * modules/rijndael-tests: New file.
24551
24552         * modules/rijndael: New file.
24553
24554 2005-10-15  Simon Josefsson  <jas@extundo.com>
24555
24556         * m4/rijndael.m4: New file.
24557
24558 2005-10-15  Simon Josefsson  <jas@extundo.com>
24559
24560         * lib/rijndael-api-fst.h, lib/rijndael-api-fst.c: New files.
24561
24562         * lib/rijndael-alg-fst.h, lib/rijndael-alg-fst.c: New files.
24563
24564 2005-10-14  Simon Josefsson  <jas@extundo.com>
24565
24566         * tests/test-arcfour.c: New file.
24567
24568         * modules/arcfour, modules/arcfour-tests: New files.
24569
24570 2005-10-14  Simon Josefsson  <jas@extundo.com>
24571
24572         * m4/arcfour.m4: New file.
24573
24574 2005-10-14  Simon Josefsson  <jas@extundo.com>
24575
24576         * lib/arcfour.h, lib/arcfour.c: New files.
24577
24578 2005-10-14  Roland McGrath  <roland@redhat.com>
24579
24580         Import from libc.  [BZ #1331]
24581         * lib/obstack.h [!__STDC__] (obstack_int_grow_fast): Fix misnamed
24582         macro argument.
24583         Reported by Matej Vela <vela@debian.org>.
24584
24585 2005-10-14  Paul Eggert  <eggert@cs.ucla.edu>
24586
24587         * lib/obstack.c [defined _LIBC && defined USE_IN_LIBIO]: Don't
24588         include <wchar.h>; no longer needed.
24589
24590 2005-10-14  Paul Eggert  <eggert@cs.ucla.edu>
24591
24592         * config/srclist.txt: Add glibc bug 321 for obstack.c, obstack.h.
24593
24594 2005-10-14  Jakub Jelinek  <jakub@redhat.com>
24595         and  Ulrich Drepper  <drepper@redhat.com>
24596
24597         Import from libc.
24598         * lib/obstack.c (print_and_abort) [defined _LIBC]: Use __fxprintf
24599         instead of inline stream orientation test and two separate
24600         function calls.  Pay no attention to USE_IN_LIBIO.
24601
24602 2005-10-13  Simon Josefsson  <jas@extundo.com>
24603
24604         * modules/gc-hmac-md5-tests: New file.
24605
24606         * tests/test-gc-hmac-sha1.c: New file.
24607
24608         * tests/test-gc.c (main): Remove MD5 and HMAC-MD5 tests.
24609
24610         * modules/gc-hmac-md5-tests: New file.
24611
24612         * tests/test-gc-md5.c: New file.
24613
24614         * modules/gc-md5-tests: New file.
24615
24616 2005-10-13  Simon Josefsson  <jas@extundo.com>
24617
24618         * lib/gc-pbkdf2-sha1.c (gc_pbkdf2_sha1): Optimize CEIL computation.
24619         Move memory allocation outside of loop.
24620
24621 2005-10-13  Paul Eggert  <eggert@cs.ucla.edu>
24622
24623         * lib/mkdir-p.c (make_dir_parents): Don't report an error if an
24624         intermediate directory is in a read-only file system.  Problem
24625         reported by Eric Blake.
24626
24627 2005-10-13  Oskar Liljeblad  <oskar@osk.mine.nu>
24628
24629         * modules/human (Depends-on): Depend on xstrtoumax, not xstrtol.
24630
24631 2005-10-12  Simon Josefsson  <jas@extundo.com>
24632
24633         * tests/test-hmac-sha1.c: New file.
24634
24635         * modules/hmac-sha1-tests: New file.
24636
24637         * modules/hmac-sha1: New file.
24638
24639 2005-10-12  Simon Josefsson  <jas@extundo.com>
24640
24641         * modules/gc-sha1: New file.
24642
24643 2005-10-12  Simon Josefsson  <jas@extundo.com>
24644
24645         * modules/gc-pbkdf2-sha1, modules/gc-pbkdf2-sha1-tests: New files.
24646
24647         * tests/test-gc-pbkdf2-sha1.c: New file.
24648
24649 2005-10-12  Simon Josefsson  <jas@extundo.com>
24650
24651         * modules/gc-md5, modules/gc-hmac-md5: New files.
24652
24653         * modules/gc (Files): Remove md5, memxor and hmac files.
24654
24655 2005-10-12  Simon Josefsson  <jas@extundo.com>
24656
24657         * m4/gc-pbkdf2-sha1.m4: New file.
24658
24659         * m4/gc-hmac-sha1.m4: New file.
24660
24661         * m4/gc-sha1: New file.
24662
24663         * m4/hmac-sha1.m4: New file.
24664
24665 2005-10-12  Simon Josefsson  <jas@extundo.com>
24666
24667         * m4/gc-md5.m4, m4/gc-hmac-md5.m4: New files.
24668
24669         * m4/gc.m4: Don't call gl_MD5, gl_MEMXOR or gl_HMAC_MD5.
24670
24671 2005-10-12  Simon Josefsson  <jas@extundo.com>
24672
24673         * lib/gc.h, gc-gnulib.c, gc-libgcrypt.c: Use Gc_rc for return types,
24674         suggested by Bruno Haible <bruno@clisp.org>.
24675
24676 2005-10-12  Simon Josefsson  <jas@extundo.com>
24677
24678         * lib/gc.h, gc-gnulib.c, gc-libgcrypt.c: Support SHA-1.
24679
24680 2005-10-12  Simon Josefsson  <jas@extundo.com>
24681
24682         * lib/gc-pbkdf2-sha1.c: New file.
24683
24684         * lib/gc.h: Add gc_pbkdf2_sha1 prototype.
24685
24686 2005-10-12  Simon Josefsson  <jas@extundo.com>
24687
24688         * lib/gc-libgcrypt.c (gc_hmac_sha1): New function.
24689
24690         * lib/gc-gnulib.c (gc_hmac_sha1): New function.
24691
24692 2005-10-12  Simon Josefsson  <jas@extundo.com>
24693
24694         * lib/gc-gnulib.c: Condition MD5 and HMAC-MD5 use on GC_USE_MD5 and
24695         GC_USE_HMAC_MD5, respectively.
24696
24697         * lib/gc-libgcrypt.c (gc_md5): Fix assert call.
24698         (gc_md5): Fix typo.
24699
24700         * lib/gc.h (gc_hash_buffer): Use gc_hash in prototype.
24701
24702         * lib/gc-libgcrypt.c (gc_hash_buffer): Ditto.
24703
24704         * lib/gc-gnulib.c (gc_hash_buffer): Ditto.
24705
24706 2005-10-12  Bruno Haible  <bruno@clisp.org>
24707
24708         * m4/stdbool.m4 (gl_STDBOOL_H): Define as an alias of AM_STDBOOL_H.
24709         Reported by Stepan Kasal <kasal@ucw.cz>.
24710
24711 2005-10-11  Simon Josefsson  <jas@extundo.com>
24712
24713         * tests/test-crc.c: New file.
24714
24715         * modules/crc, modules/crc-tests: New files.
24716
24717 2005-10-11  Simon Josefsson  <jas@extundo.com>
24718
24719         * m4/crc.m4: New file.
24720
24721 2005-10-11  Simon Josefsson  <jas@extundo.com>
24722
24723         * lib/gc.h: Add gc_hash and gc_hash_buffer.
24724
24725         * lib/gc-gnulib.c (gc_hash_buffer): Add.  Reorder #include's.
24726
24727         * lib/gc-libgcrypt.c (gc_hash_buffer): Add.
24728
24729 2005-10-11  Simon Josefsson  <jas@extundo.com>
24730
24731         * lib/crc.h, lib/crc.c: New files.
24732
24733         * lib/gc.h (gc_hash_buffer): Add doc.
24734
24735 2005-10-11  Bruno Haible  <bruno@clisp.org>
24736
24737         * modules/c-strcasestr: New file.
24738         * MODULES.html.sh (String handling <string.h>): Add c-strcasestr.
24739
24740 2005-10-11  Bruno Haible  <bruno@clisp.org>
24741
24742         * modules/c-strcase: New file.
24743         * MODULES.html.sh (String handling <string.h>): Add c-strcase.
24744
24745 2005-10-11  Bruno Haible  <bruno@clisp.org>
24746
24747         * lib/strcasecmp.c: Include limits.h.
24748         (strcasecmp): Avoid integer overflow on exotic platforms.
24749         * lib/strncasecmp.c: Include limits.h.
24750         (strncasecmp): Avoid integer overflow on exotic platforms.
24751         Reported by Paul Eggert.
24752
24753 2005-10-11  Bruno Haible  <bruno@clisp.org>
24754
24755         * lib/c-strcasestr.h: New file, from GNU gettext.
24756         * lib/c-strcasestr.c: New file, from GNU gettext.
24757
24758 2005-10-11  Bruno Haible  <bruno@clisp.org>
24759
24760         * lib/c-strcase.h: New file, from GNU gettext.
24761         * lib/c-strcasecmp.c: New file, from GNU gettext.
24762         * lib/c-strncasecmp.c: New file, from GNU gettext.
24763
24764 2005-10-10  Paul Eggert  <eggert@cs.ucla.edu>
24765
24766         * modules/mempcpy (License): GPL -> LGPL.
24767         * modules/strchrnul (License): Likewise.
24768         * modules/sysexits (License): Likewise.
24769
24770 2005-10-08  Simon Josefsson  <jas@extundo.com>
24771
24772         * config/srclist.txt: Bug 1423 is closed, but 1439 remains.
24773
24774 2005-10-07  Simon Josefsson  <jas@extundo.com>
24775
24776         * m4/memxor.m4: Remove gl_C_RESTRICT call.
24777
24778 2005-10-06  Simon Josefsson  <jas@extundo.com>
24779
24780         * tests/test-hmac-md5.c: New file.
24781
24782         * modules/hmac-md5-tests: New file.
24783
24784         * modules/hmac-md5: New file.
24785
24786 2005-10-06  Simon Josefsson  <jas@extundo.com>
24787
24788         * m4/hmac-md5.m4: New file.
24789
24790         * m4/memxor.m4: Require gl_C_RESTRICT.
24791
24792 2005-10-06  Simon Josefsson  <jas@extundo.com>
24793
24794         * lib/memxor.c (memxor): Avoid casts and warnings.
24795
24796 2005-10-06  Simon Josefsson  <jas@extundo.com>
24797
24798         * lib/hmac-md5.c: New file.
24799
24800         * lib/hmac.h: New file.
24801
24802 2005-10-06  Paul Eggert  <eggert@cs.ucla.edu>
24803
24804         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Check that bool
24805         promotes to int, not unsigned int, to catch the AIX 5.3
24806         compiler bug.
24807
24808 2005-10-05  Simon Josefsson  <jas@extundo.com>
24809
24810         * modules/memxor: New file.
24811
24812         * modules/iconv (Files): Move config.rpath to havelib, it is used
24813         there.
24814
24815         * modules/havelib (Files): Add config.rpath.
24816
24817 2005-10-05  Simon Josefsson  <jas@extundo.com>
24818
24819         * m4/memxor.m4: New file.
24820
24821 2005-10-05  Simon Josefsson  <jas@extundo.com>
24822
24823         * lib/memxor.c (memxor): Fix compiler error.
24824
24825         * lib/md5.h (MD5_DIGEST_SIZE, MD5_BLOCK_SIZE): Add, see also
24826         <http://sourceware.org/bugzilla/show_bug.cgi?id=1423>.
24827
24828         * lib/memxor.h, lib/memxor.c: New files.
24829
24830         * lib/getaddrinfo.h: Don't protect sys/types.h with HAVE_SYS_TYPES_H,
24831         we assume all systems have it, suggested by Jim Meyering
24832         <jim@meyering.net>.  Remove HAVE_SYS_SOCKET_H test too, to see if
24833         any systems lack sys/socket.h; mingw32 is known to lack it, but we
24834         don't support it yet anyway.  Also remove HAVE_NETDB_H test, for
24835         same reasons.
24836
24837 2005-10-05  Simon Josefsson  <jas@extundo.com>
24838
24839         * config/srclist.txt: Add glibc bug 1423 for md5.h.
24840
24841 2005-10-05  Paul Eggert  <eggert@cs.ucla.edu>
24842
24843         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Don't check for
24844         sys/socket.h, netdb.h, sys/types.h; the checks areno longer
24845         needed, since the source code now assumes these .h files.
24846
24847 2005-10-05  Derek Price  <derek@ximbiot.com>
24848
24849         * lib/getdelim.c (SIZE_MAX): New macro, if not already defined.
24850
24851 2005-10-05  Bruno Haible  <bruno@clisp.org>
24852
24853         * modules/stdint (License): Change to LGPL.
24854
24855 2005-10-04  Simon Josefsson  <jas@extundo.com>
24856
24857         * lib/getaddrinfo.h: Move sys/types.h include first, reported by "Mark
24858         D. Baushke" <mdb@gnu.org>.
24859
24860 2005-10-04  Bruno Haible  <bruno@clisp.org>
24861
24862         * lib/verify.h (verify_true): Provide alternative definition for C++.
24863
24864 2005-10-03  Paul Eggert  <eggert@cs.ucla.edu>
24865
24866         * lib/getdelim.c: Include getdelim.h first.  Include <limits.h>.
24867         (SSIZE_MAX): New macro, if not already defined.
24868         (getdelim): Fix buffer overrun on 64-bit hosts with lines longer
24869         than 2 GiB.
24870
24871 2005-10-02  Paul Eggert  <eggert@cs.ucla.edu>
24872
24873         Sync from coreutils.
24874         * m4/openat.m4 (gl_FUNC_OPENAT): Check for fdopendir.
24875         * m4/ullong_max.m4 (gl_ULLONG_MAX): Simplify so that it merely
24876         defines ULONG_MAX_LT_ULLONG_MAX.  Thomas M.Ott reports that
24877         ULLONG_MAX doesn't work with 2.7.2.1.
24878
24879 2005-10-02  Paul Eggert  <eggert@cs.ucla.edu>
24880
24881         * modules/xreadlink (Makefile.am): Remove lib_SOURCES.
24882         From Ben Pfaff.
24883
24884         * modules/exclude (Depends-on): Depend on verify.
24885         * modules/strtoimax (Depends-on): Likewise.
24886         * modules/utimecmp (Depends-on): Likewise.
24887
24888 2005-10-02  Paul Eggert  <eggert@cs.ucla.edu>
24889
24890         * lib/exclude.c: Include verify.h.
24891         (verify): Remove.  All callers changed to use verify.h's version.
24892         * lib/strtoimax.c: Likewise.
24893         * lib/utimecmp.c: Likewis.e
24894
24895         Sync from coreutils.
24896         * lib/.cppi-disable: Add getaddrinfo.h, getdelim.h, getline.h,
24897         getpass.c, mbchar.h, mbuiter.h, strcase.h, strnlen.h, strnlen1.h.
24898         * lib/.cvsignore: Add fts.h, search.h, t-fpending.
24899         * lib/settime.c (settime): Fix { typo in previous patch.  Also, don't
24900         bother returning ENOSYS if settimeofday or stime fails; just let
24901         them return whatever errno they want to return.
24902         * lib/utimens.c: Include unistd.h, for dup2.
24903         (futimens): Fix typo: HAVE_FUTIMESAT was misspelled in an #if.
24904         (futimens) [! HAVE_FUTIMESAT]: If !file, set errno before returning -1.
24905
24906 2005-10-02  Jim Meyering  <jim@meyering.net>
24907
24908         Sync from coreutils.
24909         * m4/utimes.m4 (gl_FUNC_UTIMES): Detect the version of utimes
24910         from glibc-2.2.5 that fails for read-only files.
24911
24912 2005-10-02  Jim Meyering  <jim@meyering.net>
24913
24914         Sync from coreutils.
24915         * lib/fts-cycle.c [HAVE_CONFIG_H]: Include <config.h>.
24916         * lib/openat-die.c: Use `#ifdef HAVE_CONFIG_H', not
24917         `#if HAVE_CONFIG_H'.
24918         * lib/openat.c (fdopendir): Do not define if HAVE_FDOPENDIR.
24919         Remove AT_FDCWD test.
24920         Do not consume the fd unless successful.
24921         * lib/openat.h (fdopendir): Do not define if HAVE_FDOPENDIR.
24922         * lib/settime.c (settime): Move the HAVE_STIME block `up' into an #elif
24923         block, so that we don't even try to compile it if settimeofday is
24924         available.  This works around a compilation failure on OSF1 V5.1,
24925         due to stime requiring a `long int*' while tv_sec is `int'.
24926
24927 2005-10-02  Alfred M. Szmidt  <ams@gnu.org>
24928
24929         Sync from coreutils.
24930         * m4/chdir-long.m4 (gl_FUNC_CHDIR_LONG): Compare $gl_have_path...
24931         against `yes', rather than just testing for nonempty.
24932
24933 2005-10-01  Simon Josefsson  <jas@extundo.com>
24934
24935         * m4/getaddrinfo.m4: Include sys/types.h for sys/socket.h, on FreeBSD
24936         and Darwin.
24937
24938         * m4/getaddrinfo.m4: Use AC_GNU_SOURCE, GNU only declare getaddrinfo
24939         as an (POSIX) extension.  Check for sys/types.h, sys/socket.h, and
24940         netdb.h too, needed by getaddrinfo.h.  Check if getaddrinfo,
24941         freeaddrinfo and gai_strerror are declared by the POSIX headers.
24942         Check if struct addrinfo is declared.
24943
24944 2005-10-01  Simon Josefsson  <jas@extundo.com>
24945
24946         * lib/getaddrinfo.h: Protect #include's of sys/socket.h and netdb.h.
24947         Only define struct addrinfo if !HAVE_STRUCT_ADDRINFO.  Protect
24948         AI_* and EAI_* definitions.  Protect function declarations.
24949
24950 2005-10-01  Jim Meyering  <jim@meyering.net>
24951
24952         Sync from coreutils.
24953
24954         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Look for getservbyname in these
24955         libraries [inet nsl socket xnet].  Nelson Beebe reported that with
24956         native cc on Solaris 7, getaddrinfo.c requires -lsocket.
24957         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Check for gethostbyname
24958         in the inet and nsl libraries.  Required on Solaris 5.7.
24959
24960 2005-10-01  Jim Meyering  <jim@meyering.net>
24961
24962         Sync from coreutils.
24963         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Check for gethostbyname
24964         in the inet and nsl libraries.  Required on Solaris 5.7.
24965
24966 2005-10-01  Eric Blake  <ebb9@byu.net>  (tiny change)
24967
24968         * lib/getdelim.c (getdelim): Remove unused variables.
24969
24970 2005-09-29  Paul Eggert  <eggert@cs.ucla.edu>
24971
24972         * lib/xtime.h (XTIME_PRECISION): Now of type int, not long long int,
24973         so that the code works even with ancient cpp.  Portability problem
24974         with GCC 2.7.2.1 reported by Thomas M.Ott.
24975
24976 2005-09-27  Paul Eggert  <eggert@cs.ucla.edu>
24977
24978         * modules/regex (Depends-on): Add strcase.
24979
24980         * modules/gethostname (Licence): Change from GPL to LGPL, since
24981         gethostname.c is a trivial implementation of a standard library
24982         function.
24983         * modules/poll (License): Change from GPL to LGPL, since it's
24984         derived from LGPL code.
24985
24986 2005-09-27  Jim Meyering  <jim@meyering.net>
24987
24988         * lib/getcwd.c: Change #ifdef<TAB>HAVE_CONFIG_H to #ifdef
24989         HAVE_CONFIG_H.
24990
24991         * lib/intprops.h (signed_type_or_expr__): Define.
24992         (INT_STRLEN_BOUND) [__GNUC__]: Use a slightly tighter bound
24993         for unsigned types.
24994
24995 2005-09-26  Paul Eggert  <eggert@cs.ucla.edu>
24996
24997         * lib/verify.h (verify_expr): Remove, replacing with:
24998         (verify_true): New macro that returns true instead of void.
24999         (verify_type__): Remove.
25000         (verify): Use verify_true rather than verify_type__.
25001
25002 2005-09-26  Bruno Haible  <bruno@clisp.org>
25003
25004         * modules/mbchar (Include): Mention that HAVE_WCHAR_H && HAVE_WCTYPE_H
25005         is necessary.
25006         (lib_SOURCES): Remove mbchar.c.
25007         * modules/mbfile (Include): Mention that HAVE_MBRTOWC is necessary.
25008         (Files): Add m4/mbrtowc.m4.
25009         * modules/mbiter: Likewise.
25010         * modules/mbuiter: Likewise.
25011
25012 2005-09-26  Bruno Haible  <bruno@clisp.org>
25013
25014         * m4/mbchar.m4 (gl_MBCHAR): Check for wchar.h and wctype.h. Don't
25015         compile mbchar.c if they are not both present.
25016         * m4/mbfile.m4 (gl_MBFILE): Require gl_FUNC_MBRTOWC.
25017         * m4/mbiter.m4 (gl_MBITER): Likewise.
25018         * m4/strstr.m4 (gl_PREREQ_STRSTR): Use AC_REQUIRE.
25019         * m4/strcasestr.m4 (gl_PREREQ_STRCASESTR): Likewise.
25020         * m4/strcase.m4 (gl_PREREQ_STRCASECMP): Likewise.
25021
25022 2005-09-25  Jim Meyering  <jim@meyering.net>
25023
25024         * modules/inet_ntop (Depends-on): Add socklen, since inet_ntop.c
25025         also uses socklen_t.
25026
25027 2005-09-24  Paul Eggert  <eggert@cs.ucla.edu>
25028
25029         * lib/utimens.c (ENOSYS): Define if not already defined.
25030         (futimens): Support having a null PATH if the file descriptor
25031         is nonnegative.
25032
25033         * lib/regex_internal.h (__GNUC_PREREQ, always_inline, inline, pure):
25034         Remove.
25035         (__attribute): Define to empty unless GCC 3.1 or later.
25036         This works around a core dump on OpenBSD 3.4, which has GCC
25037         2.95.3, which dumps core when given __attribute__(()).  It also
25038         simplifies other tests, since we really don't want to bother with
25039         worrying about which ancient version of GCC supported what.
25040         Original problem reported by Yoann Vandoorselaere, with part of
25041         the fix suggested by Derek Price.
25042
25043 2005-09-24  Jim Meyering  <jim@meyering.net>
25044
25045         * lib/verify.h (verify_type__): Use `unsigned int' as the bitfield type
25046         so we can once again use a positive bitfield width of 1 -- now we
25047         don't have to explain why we were using a bitfield width of 2.
25048
25049 2005-09-23  Paul Eggert  <eggert@cs.ucla.edu>
25050
25051         * m4/regex.m4 (gl_REGEX): If replacing, define regcomp to rpl_regcomp,
25052         and similarly for the other external symbols.  Problem reported
25053         by James Gallager.
25054
25055         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Catch Sun Studio 10u1 on Linux
25056         bug reported by Jim Meyering.
25057
25058         * m4/utimens.m4 (gl_UTIMENS): Check for futimesat.
25059         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Undo previous change;
25060         not needed, since socklen is a prerequisite module.
25061
25062 2005-09-23  Paul Eggert  <eggert@cs.ucla.edu>
25063
25064         * lib/getaddrinfo.c [HAVE_NETINET_IN_H]: Include <netinet/in.h>.
25065         Problem reported by Eric Blake.
25066         (getaddrinfo): Initialize se so that it's not garbage.
25067         Redo internal storage allocation so that it doesn't make unportable
25068         assumptions about alignment.
25069         Fix a memory leak.
25070
25071         * lib/utimens.c (futimens): Use futimesat if available.
25072         Prefer it to futimes since it doesn't have the futimes bug.
25073
25074         * lib/verify.h (GL_CONCAT0, GL_CONCAT): Remove.
25075         (verify): Don't use the __LINE__ trick, as it doesn't work in general.
25076         Instead, declare a function that returns a pointer to an array,
25077         and use verify_type__ to declare the size of the array.
25078         Problem and germ of a solution reported by Bruno Haible.
25079         (verify_type__): Use 2, not 1, for bitfield size, to avoid
25080         a warning with Irix 6.5 cc.  Problem reported by Bruno Haible.
25081
25082 2005-09-23  Jim Meyering  <jim@meyering.net>
25083
25084         Sync from coreutils.
25085         Correct build failure (socklen_t not defined) on at least
25086         mips-sgi-irix6.5 and alphaev67-dec-osf5.1.
25087         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Require gl_SOCKLEN_T.
25088
25089 2005-09-23  Jim Meyering  <jim@meyering.net>
25090
25091         * modules/getaddrinfo (Depends-on): Add socklen.
25092
25093 2005-09-23  Bruno Haible  <bruno@clisp.org>
25094
25095         * tests/test-verify.c: New file.
25096
25097 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
25098
25099         Sync from coreutils.
25100
25101         * modules/argmatch (Depends-on): Add verify.
25102         * modules/getloadavg (Depends-on): Depend on fcntl-safer, not
25103         unistd-safer.
25104         * modules/save-cwd (Depends-on): Likewise.
25105
25106         * modules/openat (Files): Add lib/openat-die.c.
25107         (Depends-on): Remove error, exitfail.
25108         Add dirname.
25109
25110         * modules/verify: New file.
25111         * MODULES.html.sh (Diagnostics <assert.h>): New section,
25112         with "verify" module.
25113
25114 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
25115
25116         Sync from coreutils.
25117
25118         * m4/backupfile.m4, calloc.m4, chown.m4, cloexec.m4, dup2.m4:
25119         * m4/fileblocks.m4, free.m4, ftruncate.m4, getcwd.m4, getpagesize.m4:
25120         * m4/getugroups.m4, group-member.m4, idcache.m4, link-follow.m4:
25121         * m4/mkstemp.m4, mktime.m4, mountlist.m4, nanosleep.m4, pathmax.m4:
25122         * m4/physmem.m4, posixver.m4, putenv.m4, safe-read.m4, same.m4:
25123         * m4/save-cwd.m4, stdio-safer.m4, unistd-safer.m4, unlinkdir.m4:
25124         * m4/userspec.m4, xgetcwd.m4, xreadlink.m4:
25125         Don't bother checking for string.h, stdlib.h, unistd.h.
25126         * m4/fts.m4 (gl_FUNC_FTS_CORE): Don't require
25127         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK; that's now the lstat
25128         module's job.
25129         * m4/jm-macros.m4 (gl_MACROS): Likewise.
25130         * m4/prereq.m4 (gl_PREREQ): Add gl_FUNC_LSTAT.
25131
25132         * m4/getdate.m4 (gl_C_COMPOUND_LITERALS): New macro.
25133         (gl_GETDATE): Use it.
25134
25135         * m4/mkdir-p.m4 (gl_MKDIR_PARENTS): Don't bother checking for unistd.h.
25136
25137 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
25138
25139         Sync from coreutils.
25140
25141         * lib/.cppi-disable: Add regcomp.c, regex_internal.c, regex_internal.h,
25142         stat-time.h.
25143         * lib/argmatch.h: Include verify.h
25144         (ARGMATCH_VERIFY): Use verify rather than rolling our own.
25145         (ARGMATCH_ASSERT): Remove; unused.
25146         * lib/canonicalize.c: Assume STDC_HEADERS.
25147         * lib/exclude.c: Include "strcase.h".
25148         * lib/regex_internal.h [!defined _LIBC]: Likewise.
25149         * lib/getusershell.c: Include stdio--.h rather than stdio.h
25150         and stdio-safer.h.
25151         (getusershell): Call fopen, not fopen_safer.
25152         * lib/save-cwd.c: Include fcntl--.h rather than fcntl.h.
25153         Do not include unistd-safer.h.
25154         (save_cwd): Don't call fd_safer; no longer needed
25155         now that we include fcntl--.h.
25156
25157         * lib/getdate.y (relative_time): New type.
25158         (RELATIVE_TIME_0): New constant.
25159         (parser_control): Use relative_time instead of doing it ourselves.
25160         (%union): Add new relative_time rel member.
25161         (tYEAR_UNIT, tMONTH_UNIT, tHOUR_UNIT, tMINUTE_UNIT, tSEC_UNIT):
25162         Now typeless.
25163         (relunit, relunit_snumber): Now of type rel.
25164         (zone, rel, relunit, get_date): Adjust to above changes.
25165
25166         * lib/getloadavg.c: Include fcntl--.h rather than fcntl.h.
25167         Do not include unistd-safer.h.
25168         (getloadavg): Don't call fd_safer; no longer needed
25169         now that we include fcntl--.h.
25170
25171         * lib/mkdir-p.c (ENOSYS): Define to EEXIST if not defined.
25172         (make_dir_parents): Treat ENOSYS like EEXIST.
25173
25174         Improve quality of diagnostics on restore_cwd failure.
25175         * lib/mkdir-p.h (make_dir): Remove.  All uses replaced by mkdir.
25176         (make_dir_parents): Last arg is now int * (for errno), not bool *.
25177         * lib/mkdir-p.c (make_dir, make_dir_parents): Likewise.
25178         Rewrite "mkdir -p" algorithm to avoid the need for "stat"
25179         each time through the loop.  Do not diagnose restore_cwd failure;
25180         that is the caller's job (and perhaps the caller does not care).
25181
25182         * lib/mkdir-p.c (CLEANUP_CWD, CLEANUP): Remove.
25183         (make_dir_parents): Revamp to avoid need for CLEANUP_CWD, CLEANUP.
25184         If the file already exists but is not a directory, don't bother
25185         to try to make its parents.
25186         Close potential file descriptor leak if we can't chdir("/") (!).
25187         Don't always return true if chdir($PWD) fails; return true only
25188         if the requested action was done successfully (except for the
25189         chdir($PWD)).
25190         Don't log final directory unless we actually made it.
25191         Refactor to avoid duplicate code to fix up permissions.
25192         Don't attempt to fix up parent permissions if chdir($PWD) fails.
25193
25194         * lib/strftime.c (my_strftime): Rewrite the previous change slightly,
25195         to make it a bit faster and (I hope) clearer.
25196         * lib/strftime.c (my_strftime): Add support for %:z, %::z, %:::z.
25197         Fix bug in formats like %2N.
25198
25199         * lib/verify.h: New file.
25200
25201 2005-09-22  Paul Eggert  <eggert@cs.ucla.edu>
25202
25203         Sync from coreutils.
25204         * m4/getaddrinfo.m4 (gl_PREREQ_GETADDRINFO): Check for netinet/in.h.
25205
25206 2005-09-22  Jim Meyering  <jim@meyering.net>
25207
25208         Sync from coreutils.
25209
25210         * m4/lstat.m4 (gl_FUNC_LSTAT):
25211         Use AC_LIBSOURCES to require lstat.c and lstat.h.
25212         Remove obsolete comment.
25213         * m4/xreadlink.m4: Use AC_LIBSOURCES and AC_LIBOBJ.
25214         * m4/xstrtod.m4: Likewise.
25215
25216         * m4/openat.m4 (gl_FUNC_OPENAT): Add openat-die.c.
25217
25218 2005-09-22  Jim Meyering  <jim@meyering.net>
25219
25220         Sync from coreutils.
25221
25222         * lib/backupfile.c: Use ARGMATCH_VERIFY, just in case.
25223
25224         * lib/posixtm.c (posixtime) [lint]: Initialize *all* of tm0, not just
25225         the .tm_year member, since otherwise gcc-4.0 would now warn about
25226         tm_zone, tm_gmtoff, tm_isdst, tm_yday, tm_wday.
25227
25228         * lib/quotearg.c (quotearg_n_options): Change code to be suboptimal, in
25229         order to avoid an unsuppressible warning from gcc on 64-bit systems.
25230
25231         * lib/getdate.y (get_date): Undo part of the 2005-04-04 change, so that
25232         the command "date -d'2005-03-27 +1 day'" succeeds once again, even
25233         when run in a time zone for which daylight savings time is in effect
25234         for the starting date.
25235
25236         * lib/mkdir-p.c (make_dir_parents): Don't let a failed chdir($PWD)
25237         stop us from restricting permissions of just-created absolute-named
25238         directories.
25239         * lib/mkdir-p.c (CLEANUP_CWD): Return *true*, not false when failing
25240         to restore initial working directory.
25241         * lib/mkdir-p.c (make_dir_parents): New parameter:
25242         different_working_dir, to tell caller if/when we change the working
25243         directory and are unable to return to the initial one.
25244         * lib/mkdir-p.h (make_dir_parents): Update prototype.
25245         * lib/mkdir-p.c (CLEANUP_CWD): Change one more `return 1' to
25246         `return false'.  This fixes a bug introduced on 2004-07-30.
25247
25248         * lib/openat.c (fdopendir): Be sure to close the supplied
25249         file descriptor before returning.  This makes our replacement
25250         implementation a little closer to Solaris's, where fdopendir
25251         ties the file descriptor to the returned DIR* pointer.
25252         * lib/openat.c (unlinkat): New function.
25253         * lib/openat.h (unlinkat): Add prototype.
25254         * lib/openat-die.c (openat_save_fail): Rename from openat_save_die.
25255         (openat_restore_fail): Rename from openat_restore_die.
25256         * lib/openat.c, openat.h: Reflect s/_die/_fail/ renaming.
25257
25258         Provide an alternative to exiting immediately upon save_cwd or
25259         restore_cwd failure.  Now, an application can arrange e.g.,
25260         to perform a longjump in that case.
25261         * lib/openat.c: Include dirname.h.
25262         Use IS_ABSOLUTE_FILE_NAME rather than testing for leading slash.
25263         (rpl_openat, fdopendir, fstatat): Call openat_save_die
25264         and openat_restore_die rather than calling error directly.
25265         Don't include "error.h" or "exitfail.h"; they're no longer needed.
25266
25267         * lib/openat-die.c (openat_save_die, openat_restore_die): New file.
25268         * lib/openat.h (openat_save_die, openat_restore_die): Declare and
25269         define.
25270
25271         * lib/strftime.c [FPRINTFTIME] (fprintftime): Provide a new interface:
25272         size_t fprintftime (FILE *fp, char const *fmt, struct tm const *tm,
25273                             int utc, int nanoseconds);
25274         Background:
25275         date should not have to allocate a megabyte of virtual memory to
25276         handle a format argument like +%1048575T.  When implemented with
25277         strftime, it must allocate such a buffer, use strftime to fill it
25278         in, print it, then free it.
25279         With fprintftime, it simply prints everything and exits.
25280         With no need for memory allocation, that's one fewer way to fail.
25281         * lib/strftime.c (my_strftime): Parse the colons of %:::z *after* the
25282         optional field width, not before, so we accept %9:z, not %:9z.
25283         (my_strftime): Be sure to use L_('x') for literals.
25284
25285         * lib/backupfile.c, lib/canon-host.c, lib/canonicalize.c, lib/chown.c:
25286         * lib/cloexec.c, lib/dup-safer.c, lib/dup2.c, lib/euidaccess.c:
25287         * lib/fd-safer.c, lib/fileblocks.c, lib/fopen-safer.c, lib/fsusage.c:
25288         * lib/ftruncate.c, lib/getcwd.c, lib/getcwd.h, lib/getloadavg.c:
25289         * lib/getopt_.h, lib/getpagesize.h, lib/getugroups.c:
25290         * lib/group-member.c, lib/human.h, lib/idcache.c, lib/mkdir-p.c:
25291         * lib/mountlist.c, lib/nanosleep.c, lib/pathmax.h, lib/physmem.c:
25292         * lib/posixver.c, lib/putenv.c, lib/raise.c, lib/safe-read.c:
25293         * lib/same.c, lib/save-cwd.c, lib/setenv.c, lib/settime.c:
25294         * lib/tempname.c, lib/unlinkdir.c, lib/unsetenv.c, lib/userspec.c:
25295         * lib/xgethostname.c, lib/xreadlink.c:
25296         Assume HAVE_UNISTD_H, i.e., include <unistd.h> unconditionally.
25297
25298         * lib/chown.c, lib/cloexec.c, lib/dup-safer.c, lib/dup2.c:
25299         * lib/fsusage.c, lib/getcwd.c, lib/getloadavg.c, lib/mountlist.c:
25300         * lib/openat.h, lib/save-cwd.c, lib/tempname.c:
25301         Assume HAVE_FCNTL_H (i.e., include <fcntl.h> unconditionally,
25302         and don't include <sys/file.h>).
25303
25304 2005-09-22  Eric Blake  <ebb9@byu.net>  (tiny change)
25305
25306         Sync from coreutils.
25307
25308         * lib/getloadavg.c (getloadavg) [__CYGWIN__]: Port to cygwin.
25309         [__linux__]: Allocate a big enough buffer for /proc/loadavg.
25310         [!LDAV_DONE]: Avoid unused variable warning.
25311
25312 2005-09-21  Bruno Haible  <bruno@clisp.org>
25313
25314         * lib/unicodeio.h (unicode_to_mb): New declaration.
25315
25316 2005-09-20  Derek Price  <derek@ximbiot.com>
25317
25318         * lib/getaddrinfo.c: Don't include <netdb.h> included from
25319         getaddrinfo.h.
25320
25321 2005-09-20  Bruno Haible  <bruno@clisp.org>
25322
25323         * gnulib-tool: Remove trailing slashes from the values specified for
25324         --source-base, --m4-base, --tests-base, --aux-dir.
25325         Suggested by Simon Josefsson <jas@extundo.com>.
25326
25327 2005-09-20  Bruno Haible  <bruno@clisp.org>
25328
25329         * gnulib-tool (func_all_modules, func_modules_transitive_closure,
25330         func_modules_to_filelist, func_import, func_create_testdir): Make all
25331         sorting results locale-independent, so that gnulib-cache.m4 doesn't
25332         change when gnulib-tool is invoked in a different locale.
25333
25334 2005-09-19  Simon Josefsson  <jas@extundo.com>
25335
25336         * m4/socklen.m4: Fix typo.
25337
25338 2005-09-19  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
25339
25340         Use a consistent style for including <config.h>.
25341         * lib/__fpending.c, lib/acl.c, lib/argmatch.c, lib/argp-help.c,
25342         lib/argp-parse.c, lib/argp-pvh.c, lib/backupfile.c, lib/basename.c,
25343         lib/c-stack.c, lib/calloc.c, lib/check-version.c, lib/cloexec.c,
25344         lib/closeout.c, lib/copy-file.c, lib/creat-safer.c, lib/cycle-check.c,
25345         lib/dirfd.c, lib/dirname.c, lib/dup-safer.c, lib/dup2.c,
25346         lib/euidaccess.c, lib/exclude.c, lib/exitfail.c, lib/fatal-signal.c,
25347         lib/fd-safer.c, lib/file-type.c, lib/fileblocks.c, lib/filemode.c,
25348         lib/filenamecat.c, lib/findprog.c, lib/fnmatch.c, lib/fopen-safer.c,
25349         lib/free.c, lib/fsusage.c, lib/ftruncate.c, lib/full-write.c,
25350         lib/fwriteerror.c, lib/getaddrinfo.c, lib/getcwd.c, lib/getdelim.c,
25351         lib/getline.c, lib/getlogin_r.c, lib/getndelim2.c, lib/getnline.c,
25352         lib/getopt1.c, lib/getpass.c, lib/group-member.c, lib/hard-locale.c,
25353         lib/hash-pjw.c, lib/hash.c, lib/human.c, lib/idcache.c,
25354         lib/inet_ntop.c, lib/isdir.c, lib/long-options.c, lib/malloc.c,
25355         lib/memcasecmp.c, lib/memcmp.c, lib/memcoll.c, lib/memcpy.c,
25356         lib/memmove.c, lib/mkdir-p.c, lib/modechange.c, lib/mountlist.c,
25357         lib/open-safer.c, lib/physmem.c, lib/pipe-safer.c, lib/pipe.c,
25358         lib/poll.c, lib/posixver.c, lib/progname.c, lib/progreloc.c,
25359         lib/putenv.c, lib/quote.c, lib/quotearg.c, lib/readline.c,
25360         lib/readlink.c, lib/realloc.c, lib/regex.c, lib/rename.c, lib/rmdir.c,
25361         lib/rpmatch.c, lib/safe-read.c, lib/same.c, lib/save-cwd.c,
25362         lib/savedir.c, lib/sig2str.c, lib/strcspn.c, lib/strerror.c,
25363         lib/stripslash.c, lib/strncasecmp.c, lib/strndup.c, lib/strnlen.c,
25364         lib/strnlen1.c, lib/strsep.c, lib/strstr.c, lib/strtod.c,
25365         lib/strtoimax.c, lib/strtol.c, lib/strverscmp.c, lib/tempname.c,
25366         lib/time_r.c, lib/userspec.c, lib/utimecmp.c, lib/version-etc-fsf.c,
25367         lib/version-etc.c, lib/wait-process.c, lib/xalloc-die.c, lib/xgetcwd.c,
25368         lib/xmalloc.c, lib/xmemcoll.c, lib/xnanosleep.c, lib/xreadlink.c,
25369         lib/xsetenv.c, lib/xstrndup.c, lib/xstrtoimax.c, lib/xstrtol.c,
25370         lib/xstrtoumax.c, lib/yesno.c:
25371         Standardize inclusion of config.h.
25372         * lib/__fpending.h, lib/dirfd.h, lib/getdate.h, lib/human.h,
25373         lib/inttostr.h:  Removed inclusion of config.h from header files.
25374         * lib/inttostr.c:  Adjusted in-tree users.
25375         * lib/timespec.h: Remove superfluous warning to include config.h.
25376         * lib/atexit.c, lib/chdir-long.c, lib/chown.c, lib/fchown-stub.c,
25377         lib/getgroups.c, lib/gettimeofday.c, lib/lchown.c, lib/lstat.c,
25378         lib/mkdir.c, lib/mkstemp.c, lib/nanosleep.c, lib/openat.c, lib/raise.c,
25379         lib/readtokens0.c, lib/readutmp.c, lib/unlinkdir.c: Guard inclusion of
25380         config.h with HAVE_CONFIG_H.
25381
25382 2005-09-19  Jim Meyering  <jim@meyering.net>
25383
25384         * modules/pathmax (License): Change to LGPL.
25385
25386 2005-09-19  Derek Price  <derek@ximbiot.com>
25387
25388         * config/srclist.txt: glibc's glob.h is now in lib/glob-libc.h.
25389
25390 2005-09-19  Bruno Haible  <bruno@clisp.org>
25391
25392         * gnulib-tool (import): Provide default for --tests-base.
25393
25394 2005-09-19  Bruno Haible  <bruno@clisp.org>
25395
25396         * doc/quote.texi: New file, extracted from gnulib.texi.
25397         * doc/ctime.texi: New file, extracted from gnulib.texi.
25398         * doc/inet_ntoa.texi: New file, extracted from gnulib.texi.
25399         * doc/gnulib-tool.texi: New file, extracted from gnulib.texi.
25400         * doc/gnulib.texi: Include them.
25401
25402 2005-09-18  Bruno Haible  <bruno@clisp.org>
25403
25404         Portability fix.
25405         * gnulib-tool (func_readlink): New function.
25406         (func_ln_if_changed): Use it.
25407
25408 2005-09-18  Bruno Haible  <bruno@clisp.org>
25409
25410         * gnulib-tool: Support --with-tests also with --import.
25411         (func_emit_tests_Makefile_am): Use variables $m4base and $testsbase.
25412         (func_import): Use variables $testsbase and $inctests. Emit a
25413         gl_TESTS_BASE form into gnulib-cache.m4. Create $testsbase/Makefile.am.
25414         Remind the user to add AC_CONFIG_FILES($testsdir/Makefile) and
25415         SUBDIRS += $testsdir.
25416         (func_create_testdir): Update.
25417
25418 2005-09-18  Bruno Haible  <bruno@clisp.org>
25419
25420         * gnulib-tool: Revise --dry-run implementation. Use variable $doit
25421         instead of $dry_run.
25422         (func_cp_if_changed, func_mv_if_changed): Remove functions.
25423         (func_ln_if_changed): Don't handle dry-run here.
25424         (func_import): In dry-run mode, detect more precisely which actions
25425         would be performed, and don't use "...ing" verbs.
25426
25427 2005-09-18  Bruno Haible  <bruno@clisp.org>
25428
25429         * gnulib-tool (func_tmpdir): New function, taken from GNU gettextize.
25430         (func_import): Use join on two temporary files instead of three nested
25431         loops, in order to determine which files are new or old.
25432
25433 2005-09-18  Bruno Haible  <bruno@clisp.org>
25434
25435         * gnulib-tool (func_import): Comment out code that spits out the
25436         new files with --dry-run.
25437
25438 2005-09-18  Bruno Haible  <bruno@clisp.org>
25439
25440         * doc/gnulib.texi (Invoking gnulib-tool): 50% rewritten.
25441
25442 2005-09-16  Paul Eggert  <eggert@cs.ucla.edu>
25443
25444         * lib/stat-time.h: New file.
25445         * lib/timespec.h (ST_TIME_CMP_NS, ST_TIME_CMP, ATIME_CMP, CTIME_CMP):
25446         (MTIME_CMP, TIMESPEC_NS): Remove.  Now done by stat-time.h,
25447         in a different way.
25448         (timespec_cmp): New function.
25449         * lib/utimecmp.c: Include stat-time.h.
25450         (SYSCALL_RESOLUTION): Depend on whether various struct stat
25451         members exist, not on the obsolescent ST_MTIM_NSEC.
25452         (utimecmp): Use the new stat-time functions rater than TIMESPEC_NS.
25453
25454 2005-09-16  Paul Eggert  <eggert@cs.ucla.edu>
25455
25456         * config/srclist.txt: Remove glibc bug 1033 and uncomment mktime.c.
25457
25458 2005-09-16  Paul Eggert  <eggert@cs.ucla.edu>
25459
25460         * MODULES.html.sh (File system functions): Add stat-time.
25461         * modules/stat-time: New file.
25462         * modules/timespec (Files): Remove m4/st_mtim.m4; this
25463         is now done in a different way, by the stat-time module.
25464         * modules/utimecmp (Depends-on): Add stat-time.
25465
25466 2005-09-15  Paul Eggert  <eggert@cs.ucla.edu>
25467
25468         * m4/st_mtim.m4: Remove.  Superseded by...
25469         * m4/stat-time.m4: New file.
25470         * m4/timespec.m4 (gl_TIMESPEC): Require AC_C_INLINE.
25471         Do not invoke AC_STRUCT_ST_MTIM_NSEC; no longer needed.
25472
25473 2005-09-15  Derek Price  <derek@ximbiot.com>
25474
25475         * m4/strstr.m4 (gl_FUNC_STRSTR): Don't define strstr here.
25476
25477 2005-09-15  Derek Price  <derek@ximbiot.com>
25478
25479         * lib/regex_internal.h: Blank `pure' for GNUC < 3.
25480         * lib/regex_internal.c: Ditto, using this...
25481         (__GNUC_PREREQ): ...new macro.
25482         * lib/regcomp.c, regexec.c: Blank `always_inline' for GNUC < 3.1
25483         using...
25484         (__GNUC_PREREQ): ...this new macro.
25485
25486         * lib/strstr.h: Include string.h. Define strstr as a macro here.
25487
25488 2005-09-15  Derek Price  <derek@ximbiot.com>
25489             Paul Eggert  <eggert@cs.ucla.edu>
25490
25491         * lib/regcomp.c, regexec.c, regex_internal.c: Back out previous
25492         changes, consolidating in...
25493         * lib/regex_internal.h: ...this file.
25494
25495 2005-09-13  Jim Meyering  <jim@meyering.net>
25496
25497         * lib/canon-host.c: Filter through gnu indent and reword comments
25498         slightly.
25499         * lib/canon-host.h (ch_strerror_r): Tweak cpp indentation and spacing.
25500
25501 2005-09-13  Derek Price  <derek@ximbiot.com>
25502
25503         * lib/canon-host.c (canon_host_r): Set *cherror on memory allocation
25504         failure.
25505         Reported by Jim Meyering  <jim@meyering.net>.
25506
25507 2005-09-12  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
25508
25509         * lib/base64.c: Typo.
25510         (base64_encode): Put b64str in initialized data section.
25511
25512 2005-09-12  Paul Eggert  <eggert@cs.ucla.edu>
25513
25514         Merge glibc and coreutils changes into gnulib, plus a few
25515         extra fixes.
25516         * lib/md5.c: Use #error rather than a string.
25517         (CYCLIC): New macro, from glibc source.  Use it instead of rol.
25518         * lib/md5.h (__GNUC_PREREQ, __THROW): Define if not defined already.
25519         (__attribute__): Define to empty for non recent-GCC.
25520         (__md5_buffer, __md5_finish_ctx, __md5_init_ctx, __md5_process_block):
25521         (__md5_process_bytes, __md5_read_ctx, __md5_stream):
25522         Renamed from their non-__ counterparts, with new macros replacing
25523         them if not _LIBC.  Add __THROW attribute.
25524         (rol): Remove.
25525         (struct md5_ctx): Align buffer if using GCC.
25526         * lib/sha1.h (struct sha1_ctx): Likewise.
25527         * lib/sha1.c (SWAP): Renamed from the NOTSWAP.  All uses changed.
25528         The old name was backwards.
25529         (NOTSWAP): Remove; not used.
25530         (rol): New macro, moved here from md5.h.
25531         (sha1_process_block): Remove a FIXME that doesn't make sense.
25532
25533 2005-09-12  Derek Price  <derek@ximbiot.com>
25534
25535         Return usable errors from canon-host.
25536         * lib/canon-host.h: New file.
25537         * lib/canon-host.c (canon_host): Wrap...
25538         (canon_host_r): ...this new function, which now relies exclusively on
25539         getaddrinfo.
25540         (ch_strerror): New function.
25541         (last_cherror): New global.
25542         * lib/getaddrinfo.c: Move include of getaddrinfo.h first to test
25543         interface.
25544         (getaddrinfo): Add AI_CANONNAME functionality.  Don't do arithmetic on
25545         void *.
25546         (freeaddrinfo): Free ai->ai_canonname when set.
25547
25548 2005-09-12  Derek Price  <derek@ximbiot.com>
25549
25550         Make canon-host require getaddrinfo.
25551         * m4/canon-host.m4 (gl_CANON_HOST): Remove most dependencies.
25552         AC_LIBSOURCE canon-host.h.  Call...
25553         (gl_PREREQ_CANON_HOST): ...this new function, which requires
25554         gl_GETADDRINFO.
25555         * m4/getaddrinfo.m4 (gl_GETADDRINFO): Compile gai_strerror when needed.
25556
25557 2005-09-12  Derek Price  <derek@ximbiot.com>
25558
25559         * modules/canon-host: Add canon-host.h.  Depend on getaddrinfo.  Make
25560         LGPL.
25561         * modules/getaddrinfo: Add link to opengroup spec.  Depend on strdup.
25562
25563 2005-09-12  Derek Price  <derek@ximbiot.com>
25564
25565         * lib/gai_strerror.c: Include config.h when available.  Include
25566         getaddrinfo.h before other headers to test interface.
25567         Reported by Larry Jones <lawrence.jones@ugs.com>.
25568
25569 2005-09-12  Derek Price  <derek@ximbiot.com>
25570             Paul Eggert  <eggert@cs.ucla.edu>
25571
25572         * modules/glob (Files): Add glob-libc.h.
25573
25574 2005-09-12  Derek Price  <derek@ximbiot.com>
25575             Paul Eggert  <eggert@cs.ucla.edu>
25576
25577         * m4/glob.m4 (gl_GLOB_SUBSTITUTE): AC_LIBSOURCES for glob.c,
25578         glob_.h, glob-libc.h.
25579         (gl_PREREQ_GLOB): Remove _SYS_CDEFS_H hack; no longer needed.
25580
25581 2005-09-12  Derek Price  <derek@ximbiot.com>
25582             Paul Eggert  <eggert@cs.ucla.edu>
25583
25584         * lib/glob-libc.h: Renamed from glob_.h.  The new version is
25585         taken from libc's glob.h, except with '#ifdef __GLOB_GNULIB'
25586         protecting things that should be done only in gnulib contexts.
25587         * lib/glob_.h: New file, containing only the glob things needed for
25588         gnulib.
25589         (GLOB_PREFIX): Remove.  All uses changed to look for __GLOB_GNULIB.
25590         (__GLOB_CONCAT, __GLOB_XCONCAT, __GLOB_ID): Remove; no longer needed.
25591         (glob, globfree, glob_pattern_p): Now defined simply in terms of
25592         rpl_glob, rpl_globfree, rpl_glob_pattern_p.
25593         (__GLOB_GNULIB): New macro, to keep the glob.h changes clearer
25594         and to respect the namespace rules better.
25595
25596 2005-09-08  Simon Josefsson  <jas@extundo.com>
25597
25598         * modules/socklen: New file.
25599
25600 2005-09-08  Simon Josefsson  <jas@extundo.com>
25601
25602         * m4/socklen.m4: New file.
25603
25604 2005-09-08  Paul Eggert  <eggert@cs.ucla.edu>
25605
25606         * modules/utimens (Files): Add m4/utimbuf.m4, since
25607         m4/utimens.m4 requires gl_CHECK_TYPE_STRUCT_UTIMBUF.
25608         Reported by Sergey Poznyakoff.
25609
25610 2005-09-08  Paul Eggert  <eggert@cs.ucla.edu>
25611
25612         * lib/glob.c (glob, globfree, __glob_pattern_p): Use old-style function
25613         definitions, since that's the preferred style in glibc.
25614         Fix a minor spacing issue, and update copyright notice to match
25615         glibc's.
25616
25617 2005-09-08  Paul Eggert  <eggert@cs.ucla.edu>
25618
25619         * config/srclist.txt: Remove glibc bug 1061; it's been fixed.
25620
25621 2005-09-06  Simon Josefsson  <jas@extundo.com>
25622
25623         * lib/getpass.c (getpass): Fix typo, test for HAVE_TCSETATTR and not
25624         TCSETATTR.  Reported by Derek Price <derek@ximbiot.com>.
25625
25626 2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
25627
25628         * lib/regex_internal.h (bitset_not): Add parens to avoid gcc -Wall
25629         warning.
25630
25631 2005-09-06  Paul Eggert  <eggert@cs.ucla.edu>
25632
25633         * config/srclist.txt: Add glibc bug 1302.
25634
25635 2005-09-05  Paul Eggert  <eggert@cs.ucla.edu>
25636
25637         Change bitset word type from unsigned int to unsigned long int,
25638         as this has better performance on typical 64-bit hosts.
25639         Port bitset code to hosts with unusual word sizes.
25640         * lib/regcomp.c (build_equiv_class, build_charclass, build_range_exp):
25641         (build_collating_symbol):
25642         Prefer bitset to re_bitset_ptr_t in prototypes, when the actual
25643         argument is a bitset.  This is merely a style issue, but it makes
25644         it clearer that an entire array is expected.
25645         (re_compile_fastmap_iter, init_dfa, init_word_char, optimize_subexps):
25646         * lib/regcomp.c (lower_subexp, parse_bracket_exp, built_charclass_op):
25647         Port to the case where bitset_word is not the same as unsigned int.
25648         * lib/regex_internal.h (bitset_set, bitset_clear, bitset_contain):
25649         (bitset_not, bitset_merge, bitset_set_all, bitset_mask):
25650         Likewise.
25651         * lib/regexec.c (check_dst_limits_calc_pos_1,
25652         check_subexp_matching_top):
25653         (build_trtable, group_nodes_into_DFAstates):
25654         Likewise.
25655         * lib/regcomp.c (re_compile_fastmap_iter, utf8_sb_map, optimize_utf8):
25656         Don't assume that SBC_MAX is a multiple of BITSET_WORD_BITS.
25657         * lib/regex_internal.h (bitset_set_all, bitset_not): Likewise.
25658         * lib/regexec.c (group_nodes_into_DFAstates): Likewise.
25659         * lib/regcomp.c (utf8_sb_map): Don't assume UINT_MAX == 0xffffffff.
25660         * lib/regcomp.c (optimize_subexps, lower_subexp):
25661         Work even if bitset_word has holes in its bitwise representation.
25662         * lib/regex_internal.h (BITSET_WORD_BITS): Likewise.
25663         * lib/regexec.c (check_dst_limits_calc_pos_1,
25664         check_subexp_matching_top):
25665         Likewise.
25666         * lib/regex_internal.c (re_string_reconstruct):
25667         Don't assume UCHAR_MAX == 255.
25668         * lib/regex_internal.h (bitset_set_all): Likewise.
25669         * lib/regex_internal.h (BITSET_WORD_BITS): Renamed from UINT_BITS.
25670         All uses changed.
25671         (BITSET_WORDS): Renamed from BITSET_UINTS.  All uses changed.
25672         (bitset_word): New type, replacing 'unsigned int' for bitset uses.
25673         All uses changed.
25674         (BITSET_WORD_MAX): New macro.
25675         (bitset_set, bitset_clear, bitset_contain, bitset_empty):
25676         (bitset_set_all, bitset_copy):  Now inline functions, not macros.
25677         (bitset_empty, bitset_copy):
25678         Prefer sizeof (bitset) to multiplying it out ourselves.
25679         (bitset_not_merge): Remove; unused.
25680         (bitset_contain): Return bool, not unsigned int with one bit on.
25681         All callers changed.
25682         * lib/regexec.c (build_trtable): Don't assume bitset has no stricter
25683         alignment than re_node_set; do this by defining a new internal
25684         type struct dests_alloc and using it to allocate memory.
25685
25686 2005-09-05  Bruno Haible  <bruno@clisp.org>
25687
25688         * gnulib-tool (func_import): Fix comparison in handling of symbolic
25689         links.
25690
25691 2005-09-04  Martin Lambers  <marlam@marlam.de>  (tiny change)
25692
25693         * modules/size_max (Makefile.am): Add size_max.h
25694
25695 2005-09-04  Derek Price  <derek@ximbiot.com>
25696
25697         * gnulib-tool (func_import): Fix reversed $symbolic logic.
25698
25699 2005-09-03  Simon Josefsson  <jas@extundo.com>
25700
25701         * gnulib-tool: Fix typo.
25702
25703 2005-09-03  Simon Josefsson  <jas@extundo.com>
25704
25705         * config/srclist.txt: Add glibc bug 1293.
25706
25707 2005-09-03  Derek Price  <derek@ximbiot.com>
25708
25709         * m4/getlogin_r (gl_GETLOGIN_R): Fix cut & paste error.
25710         From Larry Jones <lawrence.jones@ugs.com>.
25711
25712 2005-09-02  Simon Josefsson  <jas@extundo.com>
25713
25714         * modules/socklen: New file.
25715
25716 2005-09-02  Simon Josefsson  <jas@extundo.com>
25717
25718         * modules/havelib: New module.
25719
25720         * modules/gettext, modules/iconv, modules/lock, modules/readline:
25721         Use havelib.
25722
25723 2005-09-02  Paul Eggert  <eggert@cs.ucla.edu>
25724
25725         Check for arithmetic overflow when calculating sizes, to prevent
25726         some buffer-overflow issues.  These patches are conservative, in the
25727         sense that when I couldn't determine whether an overflow was possible,
25728         I inserted a run-time check.
25729         * lib/regex_internal.h (re_xmalloc, re_xrealloc, re_x2realloc): New
25730         macros.
25731         (SIZE_MAX) [!defined SIZE_MAX]: New macro.
25732         (re_alloc_oversized, re_x2alloc_oversized, re_xnmalloc):
25733         (re_xnrealloc, re_x2nrealloc): New inline functions.
25734         * lib/regcomp.c (init_dfa, analyze, build_range_exp,
25735         parse_bracket_exp):
25736         (build_equiv_class, build_charclass): Check for arithmetic overflow
25737         in size expression calculations.
25738         * lib/regex_internal.c (re_string_realloc_buffers):
25739         (build_wcs_upper_buffer, re_node_set_add_intersect):
25740         (re_node_set_init_union, re_node_set_insert, re_node_set_insert_last):
25741         (re_dfa_add_node, register_state): Likewise.
25742         * lib/regexec.c (re_search_stub, re_copy_regs, re_search_internal):
25743         (prune_impossible_nodes, push_fail_stack, set_regs, check_arrival):
25744         (build_trtable, extend_buffers, match_ctx_init, match_ctx_add_entry):
25745         (match_ctx_add_subtop, match_ctx_add_sublast): Likewise.
25746
25747 2005-09-02  Paul Eggert  <eggert@cs.ucla.edu>
25748
25749         * modules/inttostr (Files): Add m4/inttypes_h.m4, m4/stdint_h.m4,
25750         m4/ulonglong.m4.  Problem reported by Martin Lambers.
25751
25752 2005-09-02  Bruno Haible  <bruno@clisp.org>
25753
25754         Support for lib vs. lib64 distinction on biarch platforms.
25755         * m4/lib-prefix.m4 (AC_LIB_PREPARE_MULTILIB): New macro.
25756         (AC_LIB_PREFIX): Require it. Use $acl_libdirstem instead of 'lib'.
25757         * m4/lib-link.m4 (AC_LIB_LINKFLAGS_BODY): Likewise.
25758
25759 2005-09-02  Bruno Haible  <bruno@clisp.org>
25760
25761         * gnulib-tool (import): In the other first-use case, provide defaults
25762         as well.
25763
25764 2005-09-02  Bruno Haible  <bruno@clisp.org>
25765
25766         * config/srclist.txt: lib-link.m4 and lib-prefix.m4 currently have
25767         patches not yet found in the latest gettext release.
25768
25769 2005-09-01  Paul Eggert  <eggert@cs.ucla.edu>
25770
25771         * lib/glob.c (GET_LOGIN_NAME_MAX): Renamed from LOGIN_NAME_MAX,
25772         to avoid a collision with bits/local_lim.h in glibc.
25773         All uses changed.  Problem reported by Dmitry V. Levin in
25774         <http://sources.redhat.com/bugzilla/show_bug.cgi?id=1060>.
25775
25776         * lib/regex_internal.c (build_wcs_upper_buffer): Fix portability
25777         bugs in int versus size_t comparisons.
25778         (re_string_context_at): Fix bug where the code assumed that
25779         Idx is signed.
25780
25781         Use bool where appropriate.
25782         * lib/regcomp.c (re_set_fastmap): ICASE arg is bool, not int.
25783         All callers changed.
25784         (calc_eclosure_iter): Likewise, for ROOT arg.
25785         (parse_bracket_element): Likewise, for ACCEPT_HYPHEN arg.
25786         (build_charclass_op): Likewise, for NON_MATCH arg.
25787         * lib/regex_internal.c (re_string_allocate, re_string_construct):
25788         (re_string_construct_common): Likewise, for ICASE arg.
25789         * lib/regexec.c (re_search_2_stub, re_search_stub):
25790         Likewise, for RET_LEN arg.
25791         (check_matching): Likewise, for FL_LONGEST_MATCH arg.
25792         (set_regs): Likewise, for FL_BACKTRACK arg.
25793         * lib/regcomp.c (re_compile_fastmap_iter, optimize_utf8):
25794         (duplicate_node_closure, calc_inveclosure, calc_eclosure):
25795         (calc_eclosure_iter, parse_bracket_exp):
25796         Use bool for internal variables that are booleans.
25797         * lib/regexec.c (re_search_internal, check_matching,
25798         proceed_next_node):
25799         (set_regs, build_sifted_states, sift_states_bkref):
25800         (check_arrival_add_next_nodes, check_arrival_expand_ecl_sub):
25801         (expand_bkref_cache, build_trtable, group_nodes_into_DFAstates):
25802         (find_collation_sequence_value):
25803         Likewise.
25804         * lib/regex_internal.c (re_node_set_insert, re_node_set_insert_last):
25805         (re_node_set_compare):
25806         Return bool, not int. All callers changed.
25807         * lib/regexec.c (check_halt_node_context, check_dst_limits):
25808         (build_trtable, check_node_accept): Likewise.
25809         * lib/regex_internal.h: Include stdbool.h.
25810
25811         Fix bugs uncovered when converting to bool.
25812         * lib/regcomp.c (calc_eclosure_iter): Check for storage allocation
25813         failure instead of charging ahead blindly.
25814         * lib/regex_internal.c (register_state): Likewise.
25815         * lib/regexec.c (re_search_2_stub): Use simpler method than boolean
25816         for freeing internal storage.
25817         (group_nodes_into_DFA_states): Use unsigned int, not int, for
25818         bitset pieces used as boolean, to avoid undefined behavior
25819         on hosts that do int overflow checking.
25820
25821 2005-09-01  Paul Eggert  <eggert@cs.ucla.edu>
25822
25823         * config/srclist.txt: Add glibc bugs 1285-1287.
25824
25825 2005-09-01  Jim Meyering  <jim@meyering.net>
25826
25827         * m4/lchown.m4: Require gl_FUNC_CHOWN, for the definition of
25828         CHOWN_MODIFIES_SYMLINK, which is used by lchown.c.
25829         Require gl_STAT_MACROS, too.
25830
25831 2005-09-01  Bruno Haible  <bruno@clisp.org>
25832
25833         * gnulib-tool (import): In the first-use case, provide defaults.
25834
25835 2005-09-01  Bruno Haible  <bruno@clisp.org>
25836
25837         * gnulib-tool (func_import): Remove the .tmp files.
25838
25839 2005-09-01  Bruno Haible  <bruno@clisp.org>
25840
25841         * gnulib-tool (func_import): Fix handling of symbolic links.
25842
25843 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
25844
25845         On 64-bit hosts (where size_t is 64 bits and int is 32 bits), the
25846         old glibc regex code mishandles strings longer than 2**31 bytes.
25847         This patch fixes this when the regex code is used in gnulib
25848         (i.e., outside glibc).
25849
25850         This patch should not affect the use of the regex code inside
25851         glibc.  No doubt this problem also needs to be handled for glibc
25852         as well, but the result will be an incompatible change to the
25853         glibc ABI, and the old ABI will have to be supported too.  That
25854         can be the the subject for another patch.
25855
25856         * lib/regex.h (_REGEX_LARGE_OFFSETS): New feature-test macro,
25857         governing whether the rest of this patch is active.  By default,
25858         the macro is disabled and the patch has no effect.
25859         (regoff_t) [defined _REGEX_LARGE_OFFSETS]: Define to off_t, not int.
25860         (__re_idx_t, __re_size_t, __re_long_size_t): New types.
25861         (struct re_pattern_buffer, re_search, re_search_2, re_match):
25862         (re_match_2, re_set_registers): Use the new types.
25863         * lib/regex_internal.h (Idx, re_hashval_t): New types.
25864         (REG_MISSING, REG_ERROR, REG_VALID_INDEX, REG_VALID_NONZERO_INDEX):
25865         New macros.
25866         (re_node_set, re_charset_t, re_token_t, re_string_realloc_buffers):
25867         (re_string_context_at, bin_tree_t, re_dfastate_t):
25868         (struct re_state_table_entry, state_array_t, re_sub_match_last_t):
25869         (re_sub_match_top_t, re_match_context_t, re_sift_context_t):
25870         (struct re_fail_stack_ent_t, struct re_fail_stack_t, struct re_dfa_t):
25871         (re_string_char_size_at, re_string_wchar_at):
25872         (re_string_elem_size_at):
25873         Use the new types and macros to port to 64-bit hosts.
25874         Use unsigned types for internal values, so that the code
25875         mostly works even for arrays larger than SSIZE_MAX.
25876         * lib/regcomp.c (re_compile_internal, init_dfa, duplicate_node):
25877         (search_duplicated_node, calc_eclosure_iter, fetch_number):
25878         (parse_reg_exp, parse_branch, parse_expression, parse_sub_exp):
25879         (build_equiv_class, build_charclass, re_compile_fastmap_iter):
25880         (free_dfa_content, create_initial_state, optimize_utf8, analyze):
25881         (optimize_subexps, calc_first, link_nfa_nodes, duplicate_node_closure):
25882         (calc_inveclosure, parse_dup_op, build_range_exp):
25883         (build_collating_symbol, parse_bracket_exp, build_charclass_op):
25884         (fetch_number, create_token_tree, mark_opt_subexp):
25885         Likewise.
25886         * lib/regex_internal.c (re_string_construct_common,
25887         create_ci_newstate):
25888         (create_cd_newstate, re_string_allocate, re_string_construct):
25889         (re_string_realloc_buffers, build_wcs_upper_buffer):
25890         (re_string_skip_chars, build_upper_buffer, re_string_translate_buffer):
25891         (re_string_reconstruct, re_string_peek_byte_case):
25892         (re_string_fetch_byte_case, re_string_context_at):
25893         (re_node_set_alloc, re_node_set_init_1, re_node_set_init_2):
25894         (re_node_set_init_copy, re_node_set_add_intersect):
25895         (re_node_set_init_union, re_node_set_merge, re_node_set_insert):
25896         (re_node_set_insert_last, re_node_set_compare, re_node_set_contains):
25897         (re_node_set_remove_at, re_dfa_add_node, calc_state_hash):
25898         (re_acquire_state, re_acquire_state_context, register_state):
25899         Likewise.
25900         * lib/regex.c (match_ctx_init, match_ctx_add_entry,
25901         search_cur_bkref_entry):
25902         (match_ctx_add_subtop, match_ctx_add_sublast, sift_ctx_init):
25903         (re_search_internal, re_search_2_stub, re_search_stub)
25904         (re_copy_regs, check_matching, check_halt_state_context, update_regs):
25905         (push_fail_stack, sift_states_iter_mb, build_sifted_states):
25906         (update_cur_sifted_state, check_dst_limits):
25907         (check_dst_limits_calc_pos_1, check_dst_limits_calc_pos):
25908         (check_subexp_limits, sift_states_bkref, merge_state_array):
25909         (check_subexp_matching_top, get_subexp, get_subexp_sub):
25910         (find_subexp_node, check_arrival, check_arrival_add_next_nodes):
25911         (check_arrival_expand_ecl, check_arrival_expand_ecl_sub):
25912         (expand_bkref_cache, check_node_accept_bytes):
25913         (group_nodes_into_DFAstates, check_node_accept, regexec, re_match):
25914         (re_search, re_match_2, re_search_2, prune_impossible_nodes):
25915         (acquire_init_state_context, check_halt_node_context):
25916         (proceed_next_node, pop_fail_stack, set_regs, free_fail_stack_return):
25917         (sift_states_backward, clean_state_log_if_needed):
25918         (sub_epsilon_src_nodes, add_epsilone_src_nodes, merge_state_with_log):
25919         (find_recover_state, transit_state_sb, transit_state_mb):
25920         (transit_state_bkref, build_trtable, match_ctx_clean):
25921         Likewise.
25922         * lib/regcomp.c (parse_dup_op): Add an extra test if Idx is unsigned,
25923         to work around an assumption that REG_MISSING is negative.
25924
25925         * lib/regcomp.c (re_comp) [defined _REGEX_RE_COMP || defined _LIBC]:
25926         (seek_collating_symbol_entry) [defined _LIBC]:
25927         (lookup_collation_sequence_value) [defined _LIBC]:
25928         (build_range_exp, build_collating_symbol) [defined _LIBC]:
25929         Use prototypes rather than old-style function definitions.
25930         * lib/regexec.c (re_exec) [defined _REGEX_RE_COMP || defined _LIBC]:
25931         (transit_state_sb) [0]:
25932         (find_collation_sequence_value) [defined _LIBC]: Likewise.
25933
25934         * lib/regexec.c (re_search_internal): Simplify update of rm_so and
25935         rm_eo.
25936
25937         * lib/regcomp.c (re_compile_fastmap_iter, init_dfa, init_word_char):
25938         (optimize_subexps, lower_subexp):
25939         Don't assume 1<<31 has defined behavior on hosts with 32-bit int,
25940         since the signed shift might overflow.  Use 1u<<31 instead.
25941         * lib/regex_internal.h (bitset_set, bitset_clear, bitset_contain):
25942         Likewise.
25943         * lib/regexec.c (check_dst_limits_calc_pos_1,
25944         check_subexp_matching_top): Likewise.
25945
25946         * lib/regcomp.c (optimize_subexps, lower_subexp):
25947         Use CHAR_BIT rather than 8, for clarity.
25948         * lib/regexec.c (check_dst_limits_calc_pos_1):
25949         (check_subexp_matching_top): Likewise.
25950         * lib/regcomp.c (init_dfa): Make table_size unsigned, so that we don't
25951         have to worry about portability issues when shifting it left.
25952         Remove no-longer-needed test for table_size > 0.
25953         * lib/regcomp.c (parse_sub_exp): Do not shift more bits than there are
25954         in a word, as the resulting behavior is undefined.
25955         * lib/regexec.c (check_dst_limits_calc_pos_1): Likewise;
25956         in one case, a <= should have been an <, and in another case the
25957         whole test was missing.
25958         * lib/regex_internal.h (BYTE_BITS): Remove.  All uses changed to
25959         the standard name CHAR_BIT.
25960         * lib/regexec.c (match_ctx_add_entry): Don't assume that ~0 == -1;
25961         this is not true on one's complement and signed-magnitude hosts.
25962
25963         * lib/regex_internal.h (re_sub_match_top_t): Remove unused member
25964         next_last_offset.
25965         (struct re_dfa_t): Remove unused member states_alloc.
25966         * lib/regcomp.c (init_dfa): Don't initialize unused members.
25967
25968 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
25969
25970         * m4/regex.m4 (gl_REGEX): Require AC_SYS_LARGEFILE, Define
25971         _REGEX_LARGE_OFFSETS).  Test for regoff_t/off_t bug in 64-bit
25972         and large-file glibc and in 32-bit large-file Solaris.
25973
25974 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
25975
25976         * lib/regex_internal.c (re_string_reconstruct): Don't assume buffer
25977         lengths fit in regoff_t; this isn't true if regoff_t is the same
25978         width as size_t.
25979         * lib/regex.c (re_search_internal): 5th arg is LAST_START
25980         (= START + RANGE) instead of RANGE.  This avoids overflow
25981         problems when regoff_t is the same width as size_t.
25982         All callers changed.
25983         (re_search_2_stub): Check for overflow when adding the
25984         sizes of the two strings.
25985         (re_search_stub): Check for overflow when adding START
25986         to RANGE; if it occurs, substitute the extreme value.
25987
25988 2005-08-31  Paul Eggert  <eggert@cs.ucla.edu>
25989
25990         * config/srclist.txt: Add glibc bugs 1273, 1278-1282, 1284.
25991
25992 2005-08-31  Jim Meyering  <jim@meyering.net>
25993
25994         * lib/regcomp.c (search_duplicated_node): Make first pointer arg
25995         a pointer-to-const.
25996         * lib/regex_internal.c (create_ci_newstate, create_cd_newstate):
25997         (register_state): Likewise.
25998         * lib/regexec.c (search_cur_bkref_entry, check_dst_limits):
25999         (check_dst_limits_calc_pos_1, check_dst_limits_calc_pos):
26000         (group_nodes_into_DFAstates): Likewise.
26001
26002 2005-08-31  Jim Meyering  <jim@meyering.net>
26003
26004         * check-module: Add a FIXME comment.
26005
26006 2005-08-31  Eric Blake  <ebb9@byu.net>
26007
26008         * modules/unistd-safer (Files): Add unistd--.h.
26009         * modules/stdio-safer (Files): Add stdio--.h.
26010
26011 2005-08-31  Derek Price  <derek@ximbiot.com>
26012
26013         * lib/getdelim.c (getdelim): Return EOF on EOF.
26014         Reported by Larry Jones <lawrence.jones@ugs.com>.
26015
26016 2005-08-31  Bruno Haible  <bruno@clisp.org>
26017
26018         Avoid unnecessary diffs in the generated lib/Makefile.am.
26019         * gnulib-tool (func_emit_lib_Makefile_am): Don't write the cmd into
26020         the generated files.
26021         (func_import): Don't set cmd.
26022
26023 2005-08-31  Bruno Haible  <bruno@clisp.org>
26024
26025         * lib/strstr.c: Include <stddef.h>, for NULL.
26026         * lib/strcasestr.c: Likewise.
26027         Reported by Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
26028
26029 2005-08-31  Bruno Haible  <bruno@clisp.org>
26030
26031         * gnulib-tool: New option --macro-prefix.
26032         (func_import): Use macro_prefix.
26033         (import): Handle option --macro-prefix.
26034
26035 2005-08-31  Bruno Haible  <bruno@clisp.org>
26036
26037         * gnulib-tool (import): Rename most ac_* variables to cached_*.
26038         Also use new variables cached_lgpl, cached_libtool.
26039
26040 2005-08-31  Bruno Haible  <bruno@clisp.org>
26041
26042         * gnulib-tool (func_import): Require AC_GNU_SOURCE etc. instead of
26043         always instantiating them.
26044
26045 2005-08-31  Bruno Haible  <bruno@clisp.org>
26046
26047         * gnulib-tool (func_import): Read the previous cached settings
26048         from gnulib-cache.m4 and gnulib-comp.m4. Remove files that were
26049         earlier added by gnulib but are now dropped. Warn when a gnulib file
26050         overwrites a non-gnulib file.
26051
26052 2005-08-31  Bruno Haible  <bruno@clisp.org>
26053
26054         * gnulib-tool (func_import): Generate two files gnulib-cache.m4 and
26055         gnulib-comp.m4 instead of a single gnulib.m4, to make it easy for
26056         projects that don't keep autogenerated files in CVS. Put into
26057         actioncmd only the specified modules, not the transitive closure.
26058
26059 2005-08-31  Bruno Haible  <bruno@clisp.org>
26060
26061         * gnulib-tool (func_import): Fix defaulting of $libname and $libtool.
26062         Create directories that shall be filled.
26063         (import): Don't look for gl_* macros in configure.ac. Recurse across
26064         all directories containing a gnulib-cache.m4 files, if meaningful.
26065
26066 2005-08-31  Bruno Haible  <bruno@clisp.org>
26067
26068         * gnulib-tool (func_import): Emit also a stub for gl_LIBTOOL.
26069         (import): Set seen_libtool when we see gl_LIBTOOL.
26070
26071 2005-08-31  Bruno Haible  <bruno@clisp.org>
26072
26073         * gnulib-tool (func_import): Also copy m4/gnulib-tool.m4. Omit
26074         declaration macro definitions from generated gnulib.m4.
26075
26076 2005-08-30  Oskar Liljeblad  <oskar@osk.mine.nu>
26077
26078         * lib/iconvme.h: Add prototype for iconv_alloc.
26079
26080 2005-08-29  Simon Josefsson  <jas@extundo.com>
26081
26082         * lib/iconvme.c: Fix errno.
26083
26084 2005-08-29  Bruno Haible  <bruno@clisp.org>
26085
26086         * gnulib-tool: Enclose all occurrences of $destdir in "...", so
26087         that it works when the directory contains spaces.
26088
26089 2005-08-29  Bruno Haible  <bruno@clisp.org>
26090
26091         * gnulib-tool (import): Avoid unnecessary spaces in $avoidlist.
26092
26093 2005-08-29  Bruno Haible  <bruno@clisp.org>
26094
26095         * gnulib-tool (func_import): Emit more comments into gnulib.m4.
26096         Emit more advice.
26097
26098 2005-08-29  Bruno Haible  <bruno@clisp.org>
26099         and Stepan Kasal  <kasal@ucw.cz>
26100
26101         * check-module: If more parameters are given, check each of them
26102         separately; add more exceptions, as noted by Jim Meyering.
26103         (check_module): New procedure.
26104         (%exempt_header): Now contains all exceptions.
26105
26106 2005-08-29  Ben Pfaff  <blp@cs.stanford.edu>
26107
26108         * modules/byteswap (Makefile.am): Fix rule to not assume GNU make.
26109
26110 2005-08-29  Oskar Liljeblad  <oskar@osk.mine.nu>
26111
26112         * lib/iconvme.c: Split iconv_string into iconv_alloc.
26113
26114 2005-08-28  Bruno Haible  <bruno@clisp.org>
26115
26116         * m4/gnulib-tool.m4: New file.
26117
26118 2005-08-27  Jim Meyering  <jim@meyering.net>
26119
26120         * modules/unistd-safer (Files): Add pipe-safer.c.
26121         * modules/fcntl-safer (Files): Add creat-safer.c.
26122
26123 2005-08-27  Jim Meyering  <jim@meyering.net>
26124
26125         * m4/stdlib-safer.m4: New file.  From coreutils.
26126         * m4/stdio-safer.m4 (gl_STDIO_SAFER): Add stdio--.h.
26127         * m4/fcntl-safer.m4 (gl_FCNTL_SAFER): Add creat-safer.c to the
26128         AC_LIBSOURCES list and arrange to compile it via AC_LIBOBJ.
26129         * m4/unistd-safer.m4 (gl_UNISTD_SAFER): Likewise, add pipe-safer.c.
26130         Add pipe-safer.c and unistd--.h to the AC_LIBSOURCES list.
26131
26132 2005-08-27  Jim Meyering  <jim@meyering.net>
26133
26134         * lib/fopen-safer.c: Merge minor changes from coreutils.
26135         * lib/dup-safer.c: Likewise.
26136         * lib/fd-safer.c: Likewise.
26137
26138         Merge from coreutils.
26139         * lib/stdio--.h: New file.
26140         * lib/stdlib--.h: New file.
26141         * lib/mkstemp-safer.c: New file.
26142
26143         GNU tar needs these.
26144         * lib/pipe-safer.c: New file.
26145         * lib/creat-safer.c: New file.
26146         * lib/fcntl--.h (creat): Define to creat_safer.
26147         * lib/fcntl-safer.h: Include <sys/types.h> and declare creat_safer.
26148         * lib/unistd--.h (pipe): Define to pipe_safer.
26149         * lib/unistd-safer.h: Declare pipe_safer.
26150
26151 2005-08-26  Simon Josefsson  <jas@extundo.com>
26152
26153         * lib/getpass.c: Use _WIN32 instead of WIN32, suggested by Bruno
26154         Haible <bruno@clisp.org>.
26155
26156 2005-08-26  Paul Eggert  <eggert@cs.ucla.edu>
26157
26158         * lib/regex_internal.h: Remove all references to
26159         RE_NO_INTERNAL_PROTOTYPES; no longer neeeded now that we assume C89
26160         or better.
26161         (bitset_not, bitset_merge, bitset_not_merge):
26162         (bitset_mask, re_string_allocate, re_string_construct):
26163         (re_string_reconstruct, re_string_destruct, re_string_elem_size_at):
26164         (re_string_char_size_at, re_string_wchar_at, re_string_peek_byte_case):
26165         (re_string_fetch_byte_case, re_node_set_alloc, re_node_set_init_1):
26166         (re_node_set_init_2, re_node_set_init_copy, re_node_set_add_intersect):
26167         (re_node_set_init_union, re_node_set_merge, re_node_set_insert):
26168         (re_node_set_insert_last, re_node_set_compare, re_node_set_contains):
26169         (re_node_set_remove_at, re_dfa_add_node, re_acquire_state):
26170         (re_acquire_state_context):
26171         Remove unnecessary forward decls.
26172         (re_string_char_size_at, re_string_wchar_at, re_string_elem_size_at):
26173         Put __attribute at function definition,
26174         now that the function decl has been removed.
26175         * lib/regex_internal.c (re_string_peek_byte_case):
26176         (re_string_fetch_byte_case, re_node_set_compare, re_node_set_contains):
26177         Likewise.
26178
26179 2005-08-25  Stepan Kasal  <kasal@ucw.cz>
26180
26181         * m4/regex.m4: Add AC_PREREQ(2.50).
26182         (gl_REGEX): If --with-included-regex was given, skip the autodetection.
26183
26184 2005-08-25  Simon Josefsson  <jas@extundo.com>
26185
26186         * m4/getpass.m4: Check for termios.h, tcgetattr, tcsetattr, and
26187         __fsetlocking.
26188
26189 2005-08-25  Simon Josefsson  <jas@extundo.com>
26190
26191         * lib/getpass.c: Add WIN32 implementation.  Conditionalize use of
26192         termios.h, tcgetattr, tcsetattr and __fsetlocking.  Remove some
26193         GLIBC specific code.
26194
26195 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
26196
26197         Make regex safe for g++.  This fixes one real bug (an "err"
26198         that should have been "*err").  g++ problem reported by
26199         Sam Steingold.
26200         * lib/regex_internal.h (re_calloc): New macro, consistent with
26201         re_malloc etc.  All callers of calloc changed to use re_calloc.
26202         * lib/regex_internal.c (build_wcs_upper_buffer): Return reg_errcode_t,
26203         not int.  All callers changed.
26204         * lib/regcomp.c (re_compile_fastmap_iter): Don't use
26205         alloca (mb_cur_max); just use an array of size MB_LEN_MAX.
26206         * lib/regexec.c (push_fail_stack): Use re_realloc, not realloc.
26207         (find_recover_state): Change "err" to "*err"; this fixes what
26208         appears to be a real bug.
26209         (check_arrival_expand_ecl_sub): Be consistent about reg_errcode_t
26210         versus int.
26211
26212 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
26213
26214         * modules/regex (Depends-on): Add malloc, since the code
26215         assumes that !malloc(0) means failure.
26216
26217 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
26218
26219         * lib/regexec.c (set_regs): Don't alloca with an unbounded size.
26220
26221         alloca modernization/simplification for regex.
26222         * lib/regex.c: Remove portability cruft for alloca.  This no longer
26223         needs to be at the start of the file, and can be moved into
26224         regex_internal.h and simplified.
26225         * lib/regex_internal.h: Include <alloca.h>.
26226         (__libc_use_alloca) [!defined _LIBC]: New macro.
26227         * lib/regexec.c (build_trtable): Remove "#ifdef _LIBC", since the code
26228         now works outside glibc.
26229
26230 2005-08-25  Paul Eggert  <eggert@cs.ucla.edu>
26231
26232         * config/srclist.txt: Add glibc bugs 1241, 1245.
26233
26234 2005-08-25  Jim Meyering  <jim@meyering.net>
26235
26236         * lib/open-safer.c: Include <config.h>.
26237         Otherwise, we'd lose LARGEFILE support in any file using
26238         e.g. "fcntl--.h"
26239
26240 2005-08-25  Bruno Haible  <bruno@clisp.org>
26241
26242         * m4/minmax.m4: Require autoconf 2.52.
26243         (gl_MINMAX_IN_HEADER): Add comments. Use m4_pushdef/m4_popdef instead
26244         of define/undefine. Use AS_TR_SH and AS_TR_CPP as more robust
26245         alternatives of translit over the alphabet.
26246         Based on a patch from Stepan Kasal <kasal@ucw.cz>.
26247
26248 2005-08-24  Simon Josefsson  <jas@extundo.com>
26249
26250         * tests/test-getpass.c: New file.
26251
26252 2005-08-24  Paul Eggert  <eggert@cs.ucla.edu>
26253
26254         * m4/regex.m4 (gl_REGEX): Use POSIX-compliant spellings when testing
26255         for GNU regex features.
26256
26257 2005-08-24  Paul Eggert  <eggert@cs.ucla.edu>
26258
26259         * lib/regcomp.c (regerror): 2nd arg is 'restrict', as per POSIX.
26260         * lib/regex.h (regerror): Likewise.
26261
26262         * lib/regex.c: Do not include <sys/types.h>, as POSIX no longer
26263         requires this.  (The code never needed it.)
26264
26265         * lib/regcomp.c, regex_internal.c, regex_internal.h, regexec.c:
26266         All uses of recently-renamed identifiers changed to use the new,
26267         POSIX-compliant names.  The code will build and run just fine
26268         without these changes, but it's better to eat our own dog food
26269         and use the standard-conforming names.
26270
26271         * lib/regex.h: Fix a multitude of POSIX name space violations.
26272         These changes have an effect only for programs that define
26273         _POSIX_C_SOURCE, _POSIX_SOURCE, or _XOPEN_SOURCE; they
26274         do not change anything for programs compiled in the normal way.
26275         Also, there is no effect on the ABI.
26276
26277         (_REGEX_SOURCE): New macro.
26278         Do not include <stddef.h> if _XOPEN_SOURCE and VMS are both
26279         defined and _GNU_SOURCE is not; this fixes a name space violation.
26280
26281         Rename the following macros to obey POSIX requirements.
26282         The old names are still visible as macros if _REGEX_SOURCE is defined.
26283         (REG_BACKSLASH_ESCAPE_IN_LISTS): renamed from
26284         RE_BACKSLASH_ESCAPE_IN_LISTS.
26285         (REG_BK_PLUS_QM): renamed from RE_BK_PLUS_QM.
26286         (REG_CHAR_CLASSES): renamed from RE_CHAR_CLASSES.
26287         (REG_CONTEXT_INDEP_ANCHORS): renamed from RE_CONTEXT_INDEP_ANCHORS.
26288         (REG_CONTEXT_INDEP_OPS): renamed from RE_CONTEXT_INDEP_OPS.
26289         (REG_CONTEXT_INVALID_OPS): renamed from RE_CONTEXT_INVALID_OPS.
26290         (REG_DOT_NEWLINE): renamed from RE_DOT_NEWLINE.
26291         (REG_DOT_NOT_NULL): renamed from RE_DOT_NOT_NULL.
26292         (REG_HAT_LISTS_NOT_NEWLINE): renamed from RE_HAT_LISTS_NOT_NEWLINE.
26293         (REG_INTERVALS): renamed from RE_INTERVALS.
26294         (REG_LIMITED_OPS): renamed from RE_LIMITED_OPS.
26295         (REG_NEWLINE_ALT): renamed from RE_NEWLINE_ALT.
26296         (REG_NO_BK_BRACES): renamed from RE_NO_BK_BRACES.
26297         (REG_NO_BK_PARENS): renamed from RE_NO_BK_PARENS.
26298         (REG_NO_BK_REFS): renamed from RE_NO_BK_REFS.
26299         (REG_NO_BK_VBAR): renamed from RE_NO_BK_VBAR.
26300         (REG_NO_EMPTY_RANGES): renamed from RE_NO_EMPTY_RANGES.
26301         (REG_UNMATCHED_RIGHT_PAREN_ORD): renamed from
26302         RE_UNMATCHED_RIGHT_PAREN_ORD.
26303         (REG_NO_POSIX_BACKTRACKING): renamed from RE_NO_POSIX_BACKTRACKING.
26304         (REG_NO_GNU_OPS): renamed from RE_NO_GNU_OPS.
26305         (REG_DEBUG): renamed from RE_DEBUG.
26306         (REG_INVALID_INTERVAL_ORD): renamed from RE_INVALID_INTERVAL_ORD.
26307         (REG_IGNORE_CASE): renamed from RE_ICASE.  This renaming is a bit
26308         unusual, since we can't clash with the POSIX REG_ICASE.
26309         (REG_CARET_ANCHORS_HERE): renamed from RE_CARET_ANCHORS_HERE.
26310         (REG_CONTEXT_INVALID_DUP): renamed from RE_CONTEXT_INVALID_DUP.
26311         (REG_NO_SUB): renamed from RE_NO_SUB.
26312         (REG_SYNTAX_EMACS): renamed from RE_SYNTAX_EMACS.
26313         (REG_SYNTAX_AWK): renamed from RE_SYNTAX_AWK.
26314         (REG_SYNTAX_GNU_AWK): renamed from RE_SYNTAX_GNU_AWK.
26315         (REG_SYNTAX_POSIX_AWK): renamed from RE_SYNTAX_POSIX_AWK.
26316         (REG_SYNTAX_GREP): renamed from RE_SYNTAX_GREP.
26317         (REG_SYNTAX_EGREP): renamed from RE_SYNTAX_EGREP.
26318         (REG_SYNTAX_POSIX_EGREP): renamed from RE_SYNTAX_POSIX_EGREP.
26319         (REG_SYNTAX_ED): renamed from RE_SYNTAX_ED.
26320         (REG_SYNTAX_SED): renamed from RE_SYNTAX_SED.
26321         (_REG_SYNTAX_POSIX_COMMON): renamed from _RE_SYNTAX_POSIX_COMMON.
26322         (REG_SYNTAX_POSIX_BASIC): renamed from RE_SYNTAX_POSIX_BASIC.
26323         (REG_SYNTAX_POSIX_MINIMAL_BASIC): renamed from
26324         RE_SYNTAX_POSIX_MINIMAL_BASIC.
26325         (REG_SYNTAX_POSIX_EXTENDED): renamed from RE_SYNTAX_POSIX_EXTENDED.
26326         (REG_SYNTAX_POSIX_MINIMAL_EXTENDED): renamed from
26327         RE_SYNTAX_POSIX_MINIMAL_EXTENDED.
26328         (REG_DUP_MAX): renamed from RE_DUP_MAX.  No need to undef it.
26329         (REG_UNALLOCATED): Renamed from REGS_UNALLOCATED.
26330         (REG_REALLOCATE): Renamed from REGS_REALLOCATE.
26331         (REG_FIXED): Renamed from REGS_FIXED.
26332         (REG_NREGS): Renamed from RE_NREGS.
26333
26334         (REG_ICASE, REG_NEWLINE, REG_NOSUB): Do not depend on the values
26335         of other REG_* macros, since POSIX says the user is allowed to
26336         #undef these macros selectively.
26337
26338         (reg_errcode_t): Update comment stating what other tables need
26339         to be consistent.
26340
26341         Rename the following enum values to obey POSIX requirements.
26342         The old names are still visible as macros.
26343         (_REG_ENOSYS): Renamed from REG_ENOSYS.  Define even if _XOPEN_SOURCE
26344         is not defined, since GNU is supposed to be a superset of POSIX as
26345         much as possible, and since we want reg_errcode_t to be a signed
26346         type for implementation consistency.
26347         (_REG_NOERROR): Renamed from REG_NOERROR.
26348         (_REG_NOMATCH): Renamed from REG_NOMATCH.
26349         (_REG_BADPAT): Renamed from REG_BADPAT.
26350         (_REG_ECOLLATE): Renamed from REG_ECOLLATE.
26351         (_REG_ECTYPE): Renamed from REG_ECTYPE.
26352         (_REG_EESCAPE): Renamed from REG_EESCAPE.
26353         (_REG_ESUBREG): Renamed from REG_ESUBREG.
26354         (_REG_EBRACK): Renamed from REG_EBRACK.
26355         (_REG_EPAREN): Renamed from REG_EPAREN.
26356         (_REG_EBRACE): Renamed from REG_EBRACE.
26357         (_REG_BADBR): Renamed from REG_BADBR.
26358         (_REG_ERANGE): Renamed from REG_ERANGE.
26359         (_REG_ESPACE): Renamed from REG_ESPACE.
26360         (_REG_BADRPT): Renamed from REG_BADRPT.
26361         (_REG_EEND): Renamed from REG_EEND.
26362         (_REG_ESIZE): Renamed from REG_ESIZE.
26363         (_REG_ERPAREN): Renamed from REG_ERPAREN.
26364         (REG_ENOSYS, REG_NOERROR, REG_NOMATCH, REG_BADPAT, REG_ECOLLATE):
26365         (REG_ECTYPE, REG_EESCAPE, REG_ESUBREG, REG_EBRACK, REG_EPAREN):
26366         (REG_EBRACE, REG_BADBR, REG_ERANGE, REG_ESPACE, REG_BADRPT, REG_EEND):
26367         (REG_ESIZE, REG_ERPAREN): Now macros, not enum constants.
26368
26369         (_REG_RE_NAME, _REG_RM_NAME): New macros.
26370         (REG_TRANSLATE_TYPE): Renamed from RE_TRANSLATE_TYPE.  All uses
26371         changed.  But support the old name if the new one is not defined
26372         and if _REGEX_SOURCE.
26373
26374         Change the following member names in struct re_pattern_buffer.
26375         The old names are still supported if !_REGEX_SOURCE.
26376         The new names are always supported, regardless of _REGEX_SOURCE.
26377         (re_buffer): Renamed from buffer.
26378         (re_allocated): Renamed from allocated.
26379         (re_used): Renamed from used.
26380         (re_syntax): Renamed from syntax.
26381         (re_fastmap): Renamed from fastmap.
26382         (re_translate): Renamed from translate.
26383         (re_can_be_null): Renamed from can_be_null.
26384         (re_regs_allocated): Renamed from regs_allocated.
26385         (re_fastmap_accurate): Renamed from fastmap_accurate.
26386         (re_no_sub): Renamed from no_sub.
26387         (re_not_bol): Renamed from not_bol.
26388         (re_not_eol): Renamed from not_eol.
26389         (re_newline_anchor): Renamed from newline_anchor.
26390
26391         Change the following member names in struct re_registers.
26392         The old names are still supported if !_REGEX_SOURCE.
26393         The new names are always supported, regardless of _REGEX_SOURCE.
26394         (rm_num_regs): Renamed from num_regs.
26395         (rm_start): Renamed from start.
26396         (rm_end): Renamed from end.
26397
26398         (re_set_syntax, re_compile_pattern, re_compile_fastmap):
26399         (re_search, re_search_2, re_match, re_match_2, re_set_registers):
26400         Prepend __ to parameter names.
26401
26402         Undo yesterday's changes.
26403
26404 2005-08-24  Paul Eggert  <eggert@cs.ucla.edu>
26405
26406         * config/srclist.txt: Remove glibc bug 1233 and add 1236, which
26407         supersedes it. Add glibc bugs 1237, 1238, 1240.  Comment out
26408         lib/regex.c.
26409
26410 2005-08-24  Jim Meyering  <jim@meyering.net>
26411
26412         Sync from coreutils.
26413         * m4/fcntl-safer.m4: New file.
26414
26415         * m4/xgetcwd.m4: Use AC_LIBSOURCES and AC_LIBOBJ to indicate source
26416         and object files for this module.
26417
26418 2005-08-24  Jim Meyering  <jim@meyering.net>
26419
26420         Sync from coreutils.
26421         * lib/fcntl--.h, lib/fcntl-safer.h, lib/open-safer.c: New files.
26422
26423 2005-08-24  Jim Meyering  <jim@meyering.net>
26424
26425         * modules/xgetcwd (Makefile.am): Remove `lib_SOURCES += ...' line,
26426         now that xgetcwd.m4 requires xgetcwd.c and xgetcwd.h.
26427
26428 2005-08-24  Jim Meyering  <jim@meyering.net>
26429
26430         * modules/fcntl-safer: New module.
26431         * modules/fts (Depends-on): Add fcntl-safer.
26432         * MODULES.html.sh (File descriptor based Input/Output):
26433         Add fcntl-safer.
26434
26435 2005-08-24  Bruno Haible  <bruno@clisp.org>
26436
26437         Support for unit test modules.
26438         * modules/README: Mention tests modules.
26439         * modules/TEMPLATE-TESTS: New file.
26440         * gnulib-tool: New options --extract-tests-module, --with-tests and
26441         --tests-base (unused for the moment).
26442         (testsbase, inctests): New variables.
26443         (func_all_modules): Exclude TEMPLATE-TESTS and *-tests.
26444         (func_verify_module): Exclude TEMPLATE-TESTS.
26445         (func_verify_nontests_module, func_verify_tests_module): New functions.
26446         (func_get_dependencies): Add implicit dependency for tests modules.
26447         (func_get_tests_module): New function.
26448         (func_modules_transitive_closure): When --with-tests was specified,
26449         include the unit tests as well, unless explicitly avoided.
26450         (func_emit_lib_Makefile_am): Ignore the tests modules here.
26451         (func_emit_tests_Makefile_am): New function.
26452         (func_create_testdir): When --with-tests was specified, emit a
26453         tests/ directory.
26454         * MODULES.html.sh (Future developments): Update.
26455
26456 2005-08-24  Bruno Haible  <bruno@clisp.org>
26457
26458         * modules/tls-tests: New file.
26459         * tests/test-tls.c: New file, from GNU gettext.
26460
26461 2005-08-24  Bruno Haible  <bruno@clisp.org>
26462
26463         * modules/lock-tests: New file.
26464         * tests/test-lock.c: New file, from GNU gettext.
26465
26466 2005-08-24  Bruno Haible  <bruno@clisp.org>
26467
26468         * lib/lock.h: Add multiple inclusion guard.
26469         * lib/tls.h: Add multiple inclusion guard.
26470
26471 2005-08-24  Bruno Haible  <bruno@clisp.org>
26472
26473         * gnulib-tool: Add support for the --aux-dir option to
26474         --create-testdir, --create-megatestdir, --test, --megatest.
26475         (func_create_testdir, func_create_megatestdir): Optionally emit a
26476         AC_CONFIG_AUX_DIR directive.
26477         (create-testdir, create-megatestdir, test, megatest): Provide a
26478         default value for $auxdir.
26479
26480 2005-08-24  Bruno Haible  <bruno@clisp.org>
26481
26482         * gnulib-tool (import): Use compound statement instead of subshell
26483         where possible.
26484
26485 2005-08-24  Bruno Haible  <bruno@clisp.org>
26486
26487         * gnulib-tool (import): Change --aux-dir default to "build-aux".
26488
26489 2005-08-24  Bruno Haible  <bruno@clisp.org>
26490
26491         * gnulib-tool (func_version): Update.
26492
26493 2005-08-24  Bruno Haible  <bruno@clisp.org>
26494
26495         * gnulib-tool (func_import, func_create_testdir,
26496         func_create_megatestdir): Quote all autoconf macro arguments.
26497
26498 2005-08-24  Bruno Haible  <bruno@clisp.org>
26499
26500         * gnulib-tool (func_create_megatestdir): Call autoreconf without the
26501         option --force, because --force causes the aclocal.m4 of each
26502         subdirectory to be newer than the corresponding config.h.in.
26503
26504 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
26505
26506         * m4/regex.m4 (gl_INCLUDED_REGEX): Remove; no longer used.
26507         All contents moved to gl_REGEX.
26508         (gl_REGEX): Don't bother checking whether lib/regex.c exists;
26509         assume that it does.
26510
26511 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
26512
26513         * lib/regex.h (REG_NOSYS)
26514         [!defined _XOPEN_SOURCE && 200112L <= _POSIX_C_SOURCE]:
26515         Define, since POSIX requires it as of 2001.
26516         (_REG_ENOSYS)
26517         [! (defined _XOPEN_SOURCE || 200112L <= _POSIX_C_SOURCE)]:
26518         New private symbol, used to keep the enum signed in all cases.
26519         * lib/regex.h (RE_NO_EMPTY_RANGES): Fix doc bug reported by James
26520         Youngman in
26521         <http://lists.gnu.org/archive/html/bug-gnulib/2005-07/msg00132.html>.
26522
26523         * lib/regex_internal.c (re_string_skip_chars, register_state):
26524         (calc_state_hash):
26525         Remove forward decls; no longer needed now that we use prototypes.
26526         * lib/regexec.c (acquire_init_state_context, check_halt_node_context):
26527         (proceed_next_node, pop_fail_stack, sub_epsilon_src_nodes):
26528         (clean_state_log_if_needed): Likewise.
26529
26530 2005-08-23  Paul Eggert  <eggert@cs.ucla.edu>
26531
26532         * config/srclist.txt: Add glibc bugs 1231-1233.
26533
26534 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
26535
26536         Fix problems reported by Sam Steingold in
26537         <http://lists.gnu.org/archive/html/bug-gnulib/2005-08/msg00007.html>.
26538         * lib/regexec.c (sift_states_bkref): Fix portability bug: the code
26539         assumed that reg_errcode_t is a signed type, which is not
26540         necessarily true if _XOPEN_SOURCE is not defined.
26541         * lib/regex_internal.c (calc_state_hash): Put 'inline' before type,
26542         since some compilers warn about it otherwise.
26543
26544 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
26545
26546         * lib/regcomp.c (create_initial_state): Remove duplicate decl.
26547         (init_word_char, create_initial_state, duplicate_node_closure):
26548         (fetch_token, peek_token_bracket, build_range_exp):
26549         (build_collating_symbol): Remove forward decls; no longer needed
26550         now that we use prototypes.
26551
26552         * lib/regcomp.c:
26553         (re_compile_pattern, re_set_syntax, re_compile_fastmap):
26554         (re_compile_fastmap_iter, regcomp, regerror, regfree):
26555         (re_compile_internal, init_dfa, init_word_char, free_workarea_compile):
26556         (create_initial_state, optimize_utf8, analyze, postorder, preorder):
26557         (optimize_subexps, lower_subexps, lower_subexp, calc_first, calc_next):
26558         (link_nfa_nodes, duplicate_node_closure, search_duplicated_node):
26559         (duplicate_node, calc_inveclosure, calc_eclosure, calc_eclosure_iter):
26560         (fetch_token, peek_token, peek_token_bracket, parse, parse_reg_exp):
26561         (parse_branch, parse_expression, parse_sub_exp, parse_dup_op):
26562         (build_range_exp, build_collating_symbol, parse_bracket_exp):
26563         (parse_bracket_element, parse_bracket_symbol, build_equiv_class):
26564         (build_charclass, build_charclass_op, fetch_number, create_tree):
26565         (create_token_tree, mark_opt_subexp, duplicate_tree):
26566         Use prototypes rather than old-style definitions.
26567
26568         * lib/regex_internal.c:
26569         (re_string_allocate, re_string_construct, re_string_realloc_buffers):
26570         (re_string_construct_common, build_wcs_buffer, build_wcs_upper_buffer):
26571         (re_string_skip_chars, build_upper_buffer, re_string_translate_buffer):
26572         (re_string_reconstruct, re_string_peek_byte_case):
26573         (re_string_fetch_byte_case, re_string_destruct, re_string_context_at):
26574         (re_node_set_alloc, re_node_set_init_1, re_node_set_init_2):
26575         (re_node_set_init_copy, re_node_set_add_intersect):
26576         (re_node_set_init_union, re_node_set_merge, re_node_set_insert):
26577         (re_node_set_insert_last, re_node_set_compare, re_node_set_contains):
26578         (re_node_set_remove_at, re_dfa_add_node, calc_state_hash):
26579         (re_acquire_state, re_acquire_state_context, register_state):
26580         (create_ci_newstate, create_cd_newstate, free_state):
26581         Likewise.
26582         * lib/regexec.c (regexec, re_match, re_search, re_match_2,
26583         re_search_2):
26584         (re_search_2_stub, re_search_stub, re_copy_regs, re_set_registers):
26585         (re_search_internal, prune_impossible_nodes):
26586         (acquire_init_state_context, check_matching, static):
26587         (check_halt_node_context, check_halt_state_context, proceed_next_node):
26588         (push_fail_stack, pop_fail_stack, set_regs, free_fail_stack_return):
26589         (update_regs, sift_states_backward, build_sifted_states):
26590         (clean_state_log_if_needed, merge_state_array):
26591         (update_cur_sifted_state, add_epsilon_src_nodes):
26592         (sub_epsilon_src_nodes, check_dst_limits, check_dst_limits_calc_pos_1):
26593         (check_dst_limits_calc_pos, check_subexp_limits, sift_states_bkref):
26594         (sift_states_iter_mb, transit_state, merge_state_with_log, static):
26595         (find_recover_state, check_subexp_matching_top, transit_state_mb):
26596         (transit_state_bkref, get_subexp, get_subexp_sub, find_subexp_node):
26597         (check_arrival, check_arrival_add_next_nodes):
26598         (check_arrival_expand_ecl, check_arrival_expand_ecl_sub):
26599         (expand_bkref_cache, build_trtable, group_nodes_into_DFAstates):
26600         (check_node_accept_bytes, check_node_accept, extend_buffers):
26601         (match_ctx_init, match_ctx_clean, match_ctx_free, match_ctx_add_entry):
26602         (search_cur_bkref_entry, match_ctx_add_subtop, match_ctx_add_sublast):
26603         (sift_ctx_init):
26604         Likewise.
26605
26606         * lib/regex_internal.h:
26607         (re_string_allocate, re_string_construct, re_string_reconstruct):
26608         (re_string_realloc_buffers, build_wcs_buffer, build_wcs_upper_buffer):
26609         (build_upper_buffer, re_string_translate_buffer, re_string_destruct):
26610         (re_string_elem_size_at, re_string_char_size_at, re_string_wchar_at):
26611         (re_string_context_at, re_string_peek_byte_case):
26612         (re_string_fetch_byte_case): Declare even if RE_NO_INTERNAL_PROTOTYPES
26613         is defined, since we now use prototypes always.
26614
26615         * lib/regex.h (_RE_ARGS): Remove.  No longer needed, since we assume
26616         C89 or better.  All uses removed.
26617
26618 2005-08-20  Paul Eggert  <eggert@cs.ucla.edu>
26619
26620         * config/srclist.txt: Add glibc bugs 1220-1227.
26621
26622 2005-08-20  Jim Meyering  <jim@meyering.net>
26623
26624         * lib/regexec.c (regexec, re_search_stub) [!_LIBC]: Omit declaration
26625         of unused local, dfa.
26626
26627 2005-08-20  Bruno Haible  <bruno@clisp.org>
26628
26629         * m4/regex.m4 (gl_PREREQ_REGEX): Require AC_GNU_SOURCE.
26630
26631 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
26632
26633         * lib/regex_internal.c (re_string_realloc_buffers, re_node_set_insert):
26634         (re_node_set_insert_last, re_dfa_add_node):
26635         Rename local variables to avoid GCC shadowing warnings.
26636
26637 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
26638
26639         * lib/regex_internal.c (re_acquire_state, re_acquire_state_context)
26640         [defined lint]: Suppress bogus uninitialized-variable warnings.
26641
26642         * lib/regcomp.c (duplicate_node): Return new index, not an error code,
26643         and let the caller return REG_ESPACE if out of space.  This
26644         removes an uninitialied-variable warning with GCC 4.0.1, and also
26645         avoids taking the address of a local variable.  All callers
26646         changed.
26647
26648 2005-08-19  Paul Eggert  <eggert@cs.ucla.edu>
26649
26650         * config/srclist.txt: Comment out $LIBCSRC/posix/regex_internal.c,
26651         $LIBCSRC/posix/regexec.c.
26652         Add glibc bug 1217 for regcomp.c.
26653
26654 2005-08-19  Jim Meyering  <jim@meyering.net>
26655
26656         * lib/regexec.c (proceed_next_node): Redo local variables to
26657         avoid GCC shadowing warnings.
26658
26659 2005-08-18  Bruno Haible  <bruno@clisp.org>
26660
26661         * lib/strstr.c (strstr): Fix return value in multibyte case.
26662         * lib/strcasestr.c (strcasestr): Likewise.
26663
26664 2005-08-17  Paul Eggert  <eggert@cs.ucla.edu>
26665
26666         * lib/regex.h: Remove useless space-before-tab.  From coreutils.
26667
26668 2005-08-17  Jim Meyering  <jim@meyering.net>
26669
26670         Make the %s format (seconds since the epoch) work for a negative
26671         number and when used with a zero-padded field width, e.g. %015s.
26672
26673         * lib/strftime.c (my_strftime): Move the `do_number_sign_and_padding'
26674         label so that it precedes the code to set `digits'.  Otherwise,
26675         %0Ns wouldn't work.  Before this change, `date -d @-22 +%05s' would
26676         print `00-22'.  Now, it prints `-0022', as it should.
26677
26678 2005-08-17  Bruno Haible  <bruno@clisp.org>
26679
26680         * modules/strstr (Files): Add m4/mbrtowc.m4.
26681         (Depends-on): Add mbuiter.
26682
26683 2005-08-17  Bruno Haible  <bruno@clisp.org>
26684
26685         * modules/strcasestr: New file.
26686         * MODULES.html.sh (String handling, based on ANSI C 89): Add
26687         strcasestr.
26688
26689 2005-08-17  Bruno Haible  <bruno@clisp.org>
26690
26691         * modules/strcase (Depends-on): Add mbuiter. Remove strnlen1, mbchar.
26692
26693 2005-08-17  Bruno Haible  <bruno@clisp.org>
26694
26695         * modules/mbuiter: New file.
26696         * MODULES.html.sh (Extended multibyte and wide character utilities):
26697         Add mbuiter.
26698
26699 2005-08-17  Bruno Haible  <bruno@clisp.org>
26700
26701         * m4/strstr.m4 (gl_FUNC_STRSTR): Use the replacement function always.
26702         (gl_PREREQ_STRSTR): Use gl_FUNC_MBRTOWC.
26703
26704 2005-08-17  Bruno Haible  <bruno@clisp.org>
26705
26706         * m4/strcasestr.m4: New file.
26707
26708 2005-08-17  Bruno Haible  <bruno@clisp.org>
26709
26710         * lib/strstr.h: Ignore HAVE_STRSTR, always declare the gnulib function.
26711         * lib/strstr.c: Completely rewritten, with multibyte locale support.
26712
26713 2005-08-17  Bruno Haible  <bruno@clisp.org>
26714
26715         * lib/strcasestr.h: New file.
26716         * lib/strcasestr.c: New file.
26717
26718 2005-08-17  Bruno Haible  <bruno@clisp.org>
26719
26720         * lib/strcasecmp.c: Use mbuiter.h.
26721
26722 2005-08-17  Bruno Haible  <bruno@clisp.org>
26723
26724         * lib/mbuiter.h: New file.
26725
26726 2005-08-16  Paul Eggert  <eggert@cs.ucla.edu>
26727
26728         * m4/getopt.m4 (gl_GETOPT_CHECK_HEADERS): Do not override the results
26729         of gl_GETOPT_SUBSTITUTE.  That way, if both gl_GETOPT_SUBSTITUTE
26730         and gl_GETOPT are both invoked via different paths (as happens
26731         with GNU tar CVS because it uses both argp and getopt), the former
26732         wins.
26733
26734 2005-08-16  Bruno Haible  <bruno@clisp.org>
26735
26736         * modules/tls: New file.
26737         * MODULES.html.sh (Multithreading): Add tls.
26738
26739 2005-08-16  Bruno Haible  <bruno@clisp.org>
26740
26741         * modules/strnlen1: New file.
26742         * MODULES.html.sh (String handling): Add strnlen1.
26743
26744 2005-08-16  Bruno Haible  <bruno@clisp.org>
26745
26746         * modules/strcase (Files): Add m4/mbrtowc.m4.
26747         (Depends-on): Add strnlen1, mbchar.
26748
26749 2005-08-16  Bruno Haible  <bruno@clisp.org>
26750
26751         * modules/mbiter: New file.
26752         * MODULES.html.sh (Extended multibyte and wide character utilities):
26753         Add mbiter.
26754
26755 2005-08-16  Bruno Haible  <bruno@clisp.org>
26756
26757         * modules/mbfile: New file.
26758         * MODULES.html.sh (Extended multibyte and wide character utilities):
26759         Add mbfile.
26760
26761 2005-08-16  Bruno Haible  <bruno@clisp.org>
26762
26763         * modules/mbchar: New file.
26764         * MODULES.html.sh (Extended multibyte and wide character utilities):
26765         New section.
26766
26767 2005-08-16  Bruno Haible  <bruno@clisp.org>
26768
26769         * m4/tls.m4: New file, from GNU gettext.
26770
26771 2005-08-16  Bruno Haible  <bruno@clisp.org>
26772
26773         * m4/strcase.m4 (gl_FUNC_STRCASECMP): Use the replacement function
26774         always.
26775         (gl_PREREQ_STRCASECMP): Use gl_FUNC_MBRTOWC.
26776
26777 2005-08-16  Bruno Haible  <bruno@clisp.org>
26778
26779         * m4/mbiter.m4: New file.
26780
26781 2005-08-16  Bruno Haible  <bruno@clisp.org>
26782
26783         * m4/mbfile.m4: New file.
26784
26785 2005-08-16  Bruno Haible  <bruno@clisp.org>
26786
26787         * m4/mbchar.m4: New file.
26788
26789 2005-08-16  Bruno Haible  <bruno@clisp.org>
26790
26791         * lib/tls.h: New file, from GNU gettext.
26792         * lib/tls.c: New file, from GNU gettext.
26793
26794 2005-08-16  Bruno Haible  <bruno@clisp.org>
26795
26796         * lib/strnlen1.h: New file.
26797         * lib/strnlen1.c: New file.
26798
26799 2005-08-16  Bruno Haible  <bruno@clisp.org>
26800
26801         * lib/strcasecmp.c (struct mbiter_multi): Remove at_end field.
26802         (mbi_init): Update.
26803         (mbi_avail, mbi_advance): Let the iteration end before the terminating
26804         NUL byte, not after it.
26805
26806 2005-08-16  Bruno Haible  <bruno@clisp.org>
26807
26808         * lib/strcase.h (strcasecmp): Add note in comments.
26809         * lib/strncasecmp.c: Use code from strcasecmp.c.
26810         * lib/strcasecmp.c: Use mbchar module. Define private mbiter variant.
26811         (strcasecmp): Work correctly in multibyte locales.
26812
26813 2005-08-16  Bruno Haible  <bruno@clisp.org>
26814
26815         * lib/mbiter.h: New file.
26816
26817 2005-08-16  Bruno Haible  <bruno@clisp.org>
26818
26819         * lib/mbfile.h: New file.
26820
26821 2005-08-16  Bruno Haible  <bruno@clisp.org>
26822
26823         * lib/mbchar.h: New file.
26824         * lib/mbchar.c: New file.
26825
26826 2005-08-16  Bruno Haible  <bruno@clisp.org>
26827
26828         * lib/mbchar.h (mb_cmp, mb_casecmp): Order the invalid characters after
26829         the valid ones. Makes the comparison operations transitive:
26830         cmp (a, b) < 0 && cmp (b, c) < 0 ==> cmp (a, c) < 0.
26831         * lib/strcasecmp.c (strcasecmp): Use mb_casecmp.
26832
26833 2005-08-15  Simon Josefsson  <jas@extundo.com>
26834
26835         * modules/ssize_t (License): Change to 'unlimited'.
26836
26837         * gnulib-tool (sed_extract_prog): Recognize 'unlimited' license.
26838
26839 2005-08-15  Paul Eggert  <eggert@cs.ucla.edu>
26840
26841         * config/srclist.txt: Comment out $LIBCSRC/posix/regex.h.
26842         Add comments for each pending glibc patch.
26843
26844 2005-08-15  Bruno Haible  <bruno@clisp.org>
26845
26846         * lib/regex.h (__restrict_arr): Don't define to __restrict if
26847         __cplusplus is defined.
26848
26849 2005-08-14  Jim Meyering  <jim@meyering.net>
26850
26851         Sync from coreutils.
26852
26853         * lib/fts-cycle.c (setup_dir, enter_dir, leave_dir, free_dir):
26854         Use the hash-table-based cycle-detection code not just when
26855         FTS_TIGHT_CYCLE_CHECK if specified, but also with FTS_LOGICAL.
26856         Reported by James Youngman in
26857         <http://lists.gnu.org/archive/html/bug-gnulib/2005-08/msg00011.html>.
26858         * lib/fts_.h: Mention that with FTS_LOGICAL, we use
26859         FTS_TIGHT_CYCLE_CHECK.
26860         * lib/fts.c (fts_cross_check) [FTS_DEBUG]:
26861         s/active_dir_ht/fts_cycle.ht/. This lets us compile with -DFTS_DEBUG,
26862         once again.
26863         * lib/fts.c [! _LIBC]: Include "lstat.h" rather than rolling our own.
26864         * lib/fts.c (fd_safer): Remove decl.
26865         Include fcntl--.h rather than unistd-safer.h
26866         (fts_safe_changedir): Don't call fd_safer; no longer needed
26867         now that we include fcntl--.h.
26868
26869 2005-08-12  Simon Josefsson  <jas@extundo.com>
26870
26871         * modules/getndelim2: Use ssize_t module.
26872         * modules/getnline: Likewise.
26873         * modules/safe-read: Likewise.
26874         * modules/xreadlink: Likewise.
26875
26876         * modules/ssize_t: New file.
26877
26878 2005-08-12  Simon Josefsson  <jas@extundo.com>
26879
26880         * m4/readline.m4: Look for termcap, curses or ncurses if required.
26881
26882 2005-08-12  Simon Josefsson  <jas@extundo.com>
26883
26884         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
26885         ssize_t.
26886
26887 2005-08-12  Simon Josefsson  <jas@extundo.com>
26888
26889         * MODULES.html.sh (Extra functions based on ANSI C 89: Misc): Add
26890         readline, getdelim and check_version.
26891         (Support for systems lacking ISO C 99: Sizes of integer types):
26892         Add size_max.
26893
26894 2005-08-12  Bruno Haible  <bruno@clisp.org>
26895
26896         * m4/readline.m4 (gl_FUNC_READLINE): Look for ncurses first.
26897
26898 2005-08-11  Simon Josefsson  <jas@extundo.com>
26899
26900         * modules/readline: New file.
26901
26902         * modules/strnlen (Files): Add strnlen.h.
26903
26904 2005-08-11  Simon Josefsson  <jas@extundo.com>
26905
26906         * m4/readline.m4: New file.
26907
26908 2005-08-11  Simon Josefsson  <jas@extundo.com>
26909
26910         * lib/readline.h, readline.c: New file.
26911
26912 2005-08-11  Simon Josefsson  <jas@extundo.com>
26913
26914         * doc/gnulib.texi (Initial import, Finishing touches): Mention
26915         gl_AVOID.
26916
26917 2005-08-11  Bruno Haible  <bruno@clisp.org>
26918
26919         * lib/strnlen.h (strnlen): Change parameter name to match comment.
26920
26921 2005-08-10  Stepan Kasal  <kasal@ucw.cz>
26922
26923         * m4/onceonly_2_57.m4: Really require Autoconf 2.57.
26924
26925 2005-08-10  Simon Josefsson  <jas@extundo.com>
26926
26927         * tests/test-iconvme.c: New file.
26928
26929 2005-08-10  Simon Josefsson  <jas@extundo.com>
26930
26931         * m4/strnlen.m4: New file.
26932
26933         * m4/strndup.m4: Don't check for strnlen declaration, done in
26934         strnlen.m4.
26935
26936 2005-08-10  Simon Josefsson  <jas@extundo.com>
26937
26938         * lib/strndup.c: Use strnlen.h.
26939
26940         * lib/strnlen.h: New file.
26941
26942 2005-08-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>  (tiny change)
26943
26944         * README: Typos.
26945
26946 2005-08-02  Simon Josefsson  <jas@extundo.com>
26947
26948         * modules/readline: New file.
26949
26950 2005-08-02  Simon Josefsson  <jas@extundo.com>
26951
26952         * modules/getdelim: New file.
26953
26954         * modules/getline: Rewrite, don't use getndelim2.
26955
26956 2005-08-02  Simon Josefsson  <jas@extundo.com>
26957
26958         * m4/getline.m4: Separate out getdelim stuff into separate module.
26959
26960         * m4/getdelim.m4: New file.
26961
26962 2005-08-02  Simon Josefsson  <jas@extundo.com>
26963
26964         * lib/getline.h, getline.c: Rewrite.
26965
26966         * lib/getdelim.h, lib/getdelim.c: New files, ported from glibc.
26967
26968 2005-07-31  Bruno Haible  <bruno@clisp.org>
26969
26970         * lib/lock.h (gl_lock_initializer): New macro.
26971         (gl_lock_define_initialized): Use it.
26972         (gl_rwlock_initializer): New macro.
26973         (gl_rwlock_define_initialized): Use it.
26974         (gl_recursive_lock_initializer): New macro.
26975         (gl_recursive_lock_define_initialized): Use it.
26976
26977 2005-07-30  Karl Berry  <karl@gnu.org>
26978
26979         * doc/gnulib.texi (Initial import): mention -I$(top_builddir)/lib.
26980         Report from Ben Pfaff, regarding getopt.
26981
26982 2005-07-26  Paul Eggert  <eggert@cs.ucla.edu>
26983
26984         Add support to getopt for Emacs, which doesn't use LIBOBJS in the
26985         normal way.
26986         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE_HEADER): New macro.
26987         (gl_GETOPT_SUBSTITUTE): Use it.  Invoke gl_PREREQ_GETOPT.
26988         (gl_GETOPT_IFELSE, gl_GETOPT_CHECK_HEADERS): New macros.
26989         (gl_GETOPT): Use the new macros.  Most of the implementation
26990         is moved to the new macros.  This is for programs like Emacs
26991         that don't want all the functionality of gl_GETOPT.
26992
26993 2005-07-26  Bruno Haible  <bruno@clisp.org>
26994
26995         * m4/lock.m4: Update from GNU gettext.
26996
26997 2005-07-26  Bruno Haible  <bruno@clisp.org>
26998
26999         * lib/lock.h: Update from GNU gettext.
27000         * lib/lock.c: Update from GNU gettext.
27001
27002 2005-07-25  Paul Eggert  <eggert@cs.ucla.edu>
27003
27004         * m4/regex.m4 (gl_INCLUDED_REGEX): Use AC_RUN_IFELSE instead of the
27005         obsolescent AC_TRY_RUN.  Include the default includes files, for
27006         'exit'.
27007
27008 2005-07-24  Bruno Haible  <bruno@clisp.org>
27009
27010         * modules/visibility: New file.
27011         * MODULES.html.sh (Misc): Add visibility.
27012
27013 2005-07-24  Bruno Haible  <bruno@clisp.org>
27014
27015         * m4/visibility.m4: New file.
27016
27017 2005-07-24  Bruno Haible  <bruno@clisp.org>
27018
27019         * doc/visibility.texi: New file.
27020
27021 2005-07-22  Bruno Haible  <bruno@clisp.org>
27022
27023         * modules/alloca-opt (Makefile.am): Remove explicit dependency on
27024         $(ALLOCA_H), redundant through BUILT_SOURCES.
27025         * modules/argz (Makefile.am): Remove explicit dependency on $(ARGZ_H),
27026         redundant through BUILT_SOURCES.
27027         * modules/byteswap (Makefile.am): Remove explicit dependency on
27028         $(BYTESWAP_H), redundant through BUILT_SOURCES.
27029         * modules/fnmatch (Makefile.am): Remove explicit dependency on
27030         $(FNMATCH_H), redundant through BUILT_SOURCES.
27031         * modules/getopt (Makefile.am): Remove explicit dependency on
27032         $(GETOPT_H), redundant through BUILT_SOURCES.
27033         * modules/glob (Makefile.am): Remove explicit dependency on $(GLOB_H),
27034         redundant through BUILT_SOURCES.
27035         * modules/poll (Makefile.am): Remove explicit dependency on $(POLL_H),
27036         redundant through BUILT_SOURCES.
27037         * modules/stdbool (Makefile.am): Remove explicit dependency on
27038         $(STDBOOL_H), redundant through BUILT_SOURCES.
27039         * modules/stdint (Makefile.am): Remove explicit dependency on
27040         $(STDINT_H), redundant through BUILT_SOURCES.
27041         * modules/sysexits (Makefile.am): Add $(SYSEXITS_H) to BUILT_SOURCES.
27042         Remove explicit dependency on $(SYSEXITS_H).
27043         Reported by Alexandre Duret-Lutz <adl@src.lip6.fr>.
27044
27045 2005-07-18  Simon Josefsson  <jas@extundo.com>
27046
27047         * lib/check-version.c (check_version): Accept identical versions too.
27048
27049 2005-07-18  Bruno Haible  <bruno@clisp.org>
27050
27051         * modules/lock: New file.
27052         * MODULES.html.sh (Multithreading): New section.
27053
27054 2005-07-18  Bruno Haible  <bruno@clisp.org>
27055
27056         * m4/lock.m4: New file, from GNU gettext.
27057
27058 2005-07-18  Bruno Haible  <bruno@clisp.org>
27059
27060         * lib/lock.h: New file, from GNU gettext.
27061         * lib/lock.c: New file, from GNU gettext.
27062
27063 2005-07-18  Bruno Haible  <bruno@clisp.org>
27064
27065         * lib/lock.h (gl_once_t): New type.
27066         (gl_once_define, gl_once): New macros.
27067         * lib/lock.c (fresh_once): New variable.
27068         (glthread_once, glthread_once_call, glthread_once_singlethreaded): New
27069         functions.
27070
27071 2005-07-16  Simon Josefsson  <jas@extundo.com>
27072
27073         * doc/gnulib.texi (Library version handling): Add ELF symbol collision
27074         workaround, suggested by Bruno.
27075
27076 2005-07-15  Paul Eggert  <eggert@cs.ucla.edu>
27077
27078         * modules/xalloc (Depends-on): Add xalloc-die.
27079         * modules/xvasprintf (Depends-on): Add xalloc-die.
27080
27081 2005-07-15  Paul Eggert  <eggert@cs.ucla.edu>
27082
27083         * lib/quotearg.c: Add translator comment suggested by Bruno Haible,
27084         with a minor change.
27085
27086 2005-07-15  Bruno Haible  <bruno@clisp.org>
27087
27088         * m4/poll.m4 (gl_FUNC_POLL): Check against MacOS X 10.4 poll() bug.
27089         When using lib/poll.c, define poll as rpl_poll.
27090
27091 2005-07-14  Paul Eggert  <eggert@cs.ucla.edu>
27092
27093         * modules/argp (Depends-on): Remove unlocked-io.
27094
27095 2005-07-14  Derek Price  <derek@ximbiot.com>
27096
27097         * m4/glob.m4 (gl_GLOB): Cache glob interface check result.  Add check
27098         for glob symlink bug.
27099
27100 2005-07-14  Bruno Haible  <bruno@clisp.org>
27101
27102         * m4/argp.m4 (gl_ARGP): Remove invocation of gl_FUNC_GLIBC_UNLOCKED_IO.
27103         Instead, test for *_unlocked function declarations directly.
27104
27105 2005-07-11  Simon Josefsson  <jas@extundo.com>
27106
27107         * modules/size_max: New file.
27108
27109         * modules/xsize: Depend on size_max module for size_max.m4.
27110
27111 2005-07-11  Simon Josefsson  <jas@extundo.com>
27112
27113         * lib/size_max.h: New file.
27114
27115 2005-07-11  Paul Eggert  <eggert@cs.ucla.edu>
27116
27117         * lib/version-etc-fsf.c (version_etc_copyright): Parameterize the
27118         copyright symbol and the year.
27119         * lib/version-etc.c (COPYRIGHT_YEAR): New constant.
27120         (version_etc_va): Use parameterized copyright notice.
27121         Reword to conform to the current GNU coding standards.
27122
27123 2005-07-11  Karl Berry  <karl@gnu.org>
27124
27125         * doc/gnulib.texi (Quoting): new node.
27126         (Initial import): more info, from Patrice.
27127
27128 2005-07-11  Bruno Haible  <bruno@clisp.org>
27129
27130         * gnulib-tool (func_usage): Document option --avoid.
27131         (Command line options): Handle --avoid.
27132         (func_acceptable): New function.
27133         (func_modules_transitive_closure): Use it.
27134
27135 2005-07-11  Bruno Haible  <bruno@clisp.org>
27136
27137         * MODULES.html.sh: Use shortcut URLs to the www.opengroup.org site.
27138         Reported by Jim Meyering.
27139
27140 2005-07-10  Bruno Haible  <bruno@clisp.org>
27141
27142         * m4/size_max.m4 (gl_SIZE_MAX): Cast ~(size_t)0 back to size_t.
27143         Needed when size_t is smaller than 'unsigned int'.
27144         Reported by Paul Eggert.
27145
27146 2005-07-09  Sergey Poznyakoff  <gray@gnu.org.ua>
27147
27148         * modules/argp (Depends-on): Add unlocked-io
27149
27150 2005-07-09  Sergey Poznyakoff  <gray@gnu.org.ua>
27151
27152         * lib/argp-namefrob.h: Include unlocked-io.h. Removed unnecessary
27153         block of defines.
27154
27155 2005-07-08  Paul Eggert  <eggert@cs.ucla.edu>
27156
27157         * config/srclist.txt: Comment out regcomp.c, since we have a porting
27158         fix now.
27159
27160 2005-07-08  Eric Blake  <ebb9@byu.net>  (tiny change)
27161         and Paul Eggert  <eggert@cs.ucla.edu>
27162
27163         * lib/regcomp.c (init_dfa, build_range_exp): Store __btowc value
27164         in wint_t, not wchar_t.  Remove now-unnecessary cast.
27165
27166 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
27167
27168         * modules/regex (Files): Add lib/regex_internal.c,
27169         lib/regex_internal.h, lib/regexec.c, lib/regcomp.c, m4/codeset.m4.
27170         (Depends-on): Add extensions.
27171         (Makefile.am): Remove lib_SOURCES; now done by m4 code.
27172
27173 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
27174
27175         * m4/backupfile.m4 (gl_BACKUPFILE): Use AC_CHECK_FUNCS_ONCE on
27176         pathconf.
27177         * m4/same.m4 (gl_SAME): Likewise.
27178         Require AC_SYS_LONG_FILE_NAMES; bug reported by Gerrit P. Haase.
27179
27180         * m4/regex.m4: Adjust to new libc regex implementation.
27181         (gl_INCLUDED_REGEX): Add AC_LIBSOURCES for
27182         all the .c and .h parts of (the new) regex.
27183         Quote the m4 stuff better.
27184         Check for RE_ICASE bug of old gnulib.
27185         Check for REG_STARTEND of recent libc.
27186         Rename local variables from jm_* to gl_*.
27187         Quote operand of "test -f".
27188         Say "recent enough" version of libc, not "version 2".
27189         (gl_PREREQ_REGEX): Remove AC_FUNC_ALLOCA, since alloca is a
27190         prerequisite module.  Remove AC_HEADER_STDC; no longer needed.
27191         Check for locale.h, isblank, mbrtowc, wcrtomb, wcscoll.
27192         Remove check for btowc, isascii.
27193         Require AM_LANGINFO_CODESET.
27194
27195 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
27196
27197         * lib/regex.c, regex.h: Sync from libc.
27198         * lib/regcomp.c, lib/regexec_internal.c, lib/regex_internal.h:
27199         * lib/regexec.c:
27200         New files, synced from libc, except that regex_internal.h
27201         currently has a small porting fix.
27202
27203 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
27204
27205         * config/srclist.txt: Add regcomp.c, regex.c, regex.h,
27206         regex_internal.c, regexec.c.
27207         Add regex_internal.h too, but as a comment, since the libc version
27208         is currently broken in gnulib mode.
27209
27210 2005-07-06  Paul Eggert  <eggert@cs.ucla.edu>
27211
27212         Support programs like Emacs that use gnulib but not gettext.
27213         * MODULES.html.sh (Internationalization functions): Add gettext-h.
27214         * modules/gettext-h: New file.
27215         * modules/gettext (Files): Remove lib/gettext.h.
27216         (Depends-on): Add gettext-h.
27217         (Makefile.am): Remove lib_SOURCES.
27218         * modules/argmatch, modules/c-stack, modules/closeout:
27219         * modules/copy-file, modules/csharpcomp, modules/csharpexec:
27220         * modules/execute, modules/file-type, modules/getaddrinfo:
27221         * modules/getopt, modules/human, modules/javacomp:
27222         * modules/javaexec, modules/mkdir-p, modules/obstack:
27223         * modules/openat, modules/pagealign_alloc, modules/pipe:
27224         * modules/quotearg, modules/regex, modules/rpmatch:
27225         * modules/unicodeio, modules/userspec, modules/version-etc:
27226         * modules/wait-process, modules/xalloc-die, modules/xmemcoll:
27227         * modules/xsetenv:
27228         Depend on gettext-h, not gettext.
27229
27230 2005-07-05  Paul Eggert  <eggert@cs.ucla.edu>
27231
27232         * gnulib-tool (func_import): Add support for 'public domain' license.
27233         * modules/alloca, modules/atexit, modules/memmove:
27234         Now public domain, not GPL.
27235         * modules/dup2, modules/getpagesize, modules/malloc, modules/memset:
27236         * modules/realloc, modules/strerror, modules/strtod:
27237         Now LGPL, not GPL.
27238
27239 2005-07-05  Bruno Haible  <bruno@clisp.org>
27240
27241         * m4/mbrtowc.m4 (gl_FUNC_MBRTOWC): Upgrade to version from current
27242         autoconf CVS. Needed for mingw.
27243
27244 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
27245
27246         Remove the dependency of the strftime module on the tzset module.
27247         * modules/strftime (Depends-on): Remove dependency on tzset.
27248
27249 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
27250
27251         Remove the dependency of the strftime module on the tzset module.
27252         * m4/strftime.m4 (gl_FUNC_STRFTIME): Don't require
27253         gl_FUNC_TZSET_CLOBBER.
27254
27255 2005-07-03  Paul Eggert  <eggert@cs.ucla.edu>
27256
27257         Remove the dependency of the strftime module on the tzset module.
27258         * lib/strftime.c (my_strftime)
27259         [! defined _LIBC && ! HAVE_RUN_TZSET_TEST]:
27260         Copy the input structure, to work around some of the bug with
27261         Solaris 2.5.1 and Solaris 2.6.  If you still care about these old
27262         Solaris releases, you should also use the tzset module, but we won't
27263         require it as a dependency any more since we don't want LGPLed code
27264         to depend on GPLed code.
27265
27266 2005-07-02  Jim Meyering  <jim@meyering.net>
27267
27268         * m4/chown.m4, cloexec.m4, dup2.m4, fsusage.m4:
27269         * m4/getcwd-path-max.m4, getcwd.m4, mkstemp.m4, mountlist.m4:
27270         * m4/pagealign_alloc.m4, save-cwd.m4, unistd-safer.m4:
27271         Don't check for fcntl.h, and don't test for HAVE_FCNTL_H.
27272
27273 2005-07-02  Jim Meyering  <jim@meyering.net>
27274
27275         * lib/backupfile.c (backup_args): Change a `0' to NULL.
27276
27277 2005-07-01  Paul Eggert  <eggert@cs.ucla.edu>
27278
27279         * lib/xnanosleep.c: Include timespec.h, since OpenBSD 3.4 <time.h>
27280         declares only 'struct timespec;' (!).
27281
27282 2005-07-01  Jim Meyering  <jim@meyering.net>
27283
27284         * lib/chown.c, cloexec.c, dup-safer.c, dup2.c, fsusage.c, getcwd.c:
27285         * lib/getloadavg.c, mountlist.c, openat.h, pagealign_alloc.c:
27286         * lib/save-cwd.c, tempname.c:
27287         Assume HAVE_FCNTL_H (i.e., include <fcntl.h> unconditionally,
27288         and don't include <sys/file.h>).
27289
27290 2005-06-29  Jim Meyering  <jim@meyering.net>
27291
27292         * lib/mkdir-p.c (make_dir_parents): Don't apply sizeof to a hard-coded
27293         type name.  Use the variable name instead.
27294         * lib/idcache.c (getuser, getuidbyname, getgroup, getgidbyname):
27295         Likewise.
27296
27297 2005-06-28  Simon Josefsson  <jas@extundo.com>
27298
27299         * modules/check-version (Files): Add check-version.m4.
27300
27301 2005-06-28  Simon Josefsson  <jas@extundo.com>
27302
27303         * m4/check-version.m4: New file, suggested by Jim Meyering
27304         <jim@meyering.net>.
27305
27306 2005-06-28  Simon Josefsson  <jas@extundo.com>
27307
27308         * lib/check-version.h, lib/check-version.c: New files.
27309
27310 2005-06-28  Simon Josefsson  <jas@extundo.com>
27311
27312         * lib/base64.c (base64_encode): Indent.  Rename 'b64' to avoid
27313         collision with global variable.  Better indentation.  Don't
27314         increment buffer pointer beyond buffer end.  Based on comments
27315         from Paul Eggert <eggert@cs.ucla.edu>.
27316
27317         * lib/base64.h: Indent.
27318
27319 2005-06-28  Simon Josefsson  <jas@extundo.com>
27320
27321         * doc/gnulib.texi (Library version handling): New section.
27322
27323 2005-06-28  Jim Meyering  <jim@meyering.net>
27324
27325         * check-module (find_included_lib_files): Hard-code another
27326         pair of exceptions: fts.c includes fts-cycle.c and unistd-safer.h
27327         but modules/fts-lgpl (correctly) does not list those files.
27328
27329         * modules/canonicalize (Files): Add lib/pathmax.h.
27330
27331 2005-06-25  Simon Josefsson  <jas@extundo.com>
27332
27333         * modules/check-version: New file.
27334
27335 2005-06-24  Paul Eggert  <eggert@cs.ucla.edu>
27336
27337         * lib/canon-host.c (canon-host): Append trailing "," to 0 in
27338         initializer of struct addrinfo, as an indication that we don't
27339         care how many members the structure has.
27340
27341 2005-06-24  Derek Price  <derek@ximbiot.com>
27342         and Bruno Haible  <bruno@clisp.org>
27343
27344         Remove stat module & update lstat.
27345         * m4/lstat.m4 (gl_FUNC_LSTAT): Drop AC_FUNC_LSTAT in favor of
27346         AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
27347         * m4/stat.m4: Remove this file.
27348
27349 2005-06-24  Derek Price  <derek@ximbiot.com>
27350         and Bruno Haible  <bruno@clisp.org>
27351
27352         Remove stat module & update lstat.
27353         * lib/stat.c: Remove this file...
27354         (slash_aware_lstat): ...moving this content and its support...
27355         * lib/lstat.c (rpl_lstat): ...into here.
27356         * lib/lstat.h: New file.
27357
27358 2005-06-24  Derek Price  <derek@ximbiot.com>
27359         and Bruno Haible  <bruno@clisp.org>
27360
27361         Remove stat module & update lstat.
27362         * config/srclist.txt (libc sources): Remove stat.
27363
27364 2005-06-24  Derek Price  <derek@ximbiot.com>
27365         and Bruno Haible  <bruno@clisp.org>
27366
27367         Remove stat module & update lstat.
27368         * MODULES.html.sh (stat): Remove.
27369         * MODULES.html: Regenerated.
27370         * modules/lstat (Description): Correct function name.
27371         (Files): Add "lstat.h".
27372         (Depends-on): Remove stat, add xalloc, stat-macros.
27373         * modules/stat: Remove this file.
27374         (Include): Add "lstat.h", remove <sys/stat.h>.
27375
27376 2005-06-23  Paul Eggert  <eggert@cs.ucla.edu>
27377
27378         * lib/mktime.c: Include <string.h> even if !DEBUG.  (From glibc.)
27379         (ranged_convert): Don't save conversion in a temporary struct.
27380         This causes a warning with GCC 4.0.0, and anyway in the typical
27381         case it's not worth the extra 100 bytes or so of code.
27382         (ranged_convert, __mktime_internal): When calling a function via a
27383         pointer P, use P () rather than (*P) (), as we now assume C89 or
27384         better.
27385
27386 2005-06-22  Paul Eggert  <eggert@cs.ucla.edu>
27387
27388         * lib/readutmp.c (desirable_utmp_entry): Fix bug where "who -b" and
27389         "who -r" failed to give output.  Problem reported by Tim Waugh.
27390
27391         * lib/xmalloc.c (HAVE_GNU_CALLOC): New constant.
27392         (xcalloc): Use it to avoid needless tests.
27393         Problem reported by Jim Meyering.
27394
27395 2005-06-20  Derek Price  <derek@ximbiot.com>
27396
27397         * m4/bison.m4: Note that precious decls of YACC & YFLAGS will be
27398         unnecessary for Autoconfs > 2.59c.
27399
27400 2005-06-16  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
27401
27402         * lib/argp.h (__option_is_short): Check upper limit of
27403         __key. Isprint() requires its argument to have the value
27404         of an unsigned char or EOF.
27405
27406 2005-06-16  Jim Meyering  <jim@meyering.net>
27407
27408         * lib/calloc.c (rpl_calloc): Allocate a 1-byte buffer (not 1xS or Nx1)
27409         when either N or S is zero.
27410
27411 2005-06-16  Derek Price  <derek@ximbiot.com>
27412
27413         * m4/bison.m4: Declare YACC & YFLAGS precious.
27414
27415 2005-06-10  Paul Eggert  <eggert@cs.ucla.edu>
27416
27417         * lib/fnmatch.c (fnmatch): If there is an encoding error in a
27418         multibyte string or pattern, fall back on unibyte matching.
27419         Problem reported by James Youngman.
27420
27421 2005-06-08  Bruno Haible  <bruno@clisp.org>
27422
27423         * modules/csharpcomp: New file.
27424         * MODULES.html.sh (C#): Add csharpcomp.
27425
27426 2005-06-08  Bruno Haible  <bruno@clisp.org>
27427
27428         * m4/csharpcomp.m4: New file, from GNU gettext.
27429
27430 2005-06-08  Bruno Haible  <bruno@clisp.org>
27431
27432         * lib/csharpcomp.h: New file, from GNU gettext.
27433         * lib/csharpcomp.c: New file, from GNU gettext.
27434         * lib/csharpcomp.sh.in: New file, from GNU gettext.
27435
27436 2005-06-08  Bruno Haible  <bruno@clisp.org>
27437
27438         * lib/binary-io.h (fileno): Undefine before defining it. Avoids a gcc
27439         warning on mingw.
27440
27441 2005-06-07  Derek Price  <derek@ximbiot.com>
27442
27443         Sync from CVS.
27444         * lib/glob_.h: Indent nested #ifdef.
27445
27446 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
27447
27448         Sync from coreutils.
27449         Use "file name" when talking about file names, instead of "filename"
27450         or "path", as per the GNU coding standards.
27451         * lib/mkdir-p.c: Renamed from makepath.c.
27452         (make_dir_parents): Renamed from make_path.  All callers changed.
27453         * lib/mkdir-p.h: Likewise.  All includers changed.
27454         * lib/filenamecat.c: Renamed from path-concat.c.
27455         (file_name_concat): Renamed from path_concat.  All callers changed.
27456         [TEST_FILE_NAME_CONCAT]: Renamed from TEST_PATH_CONCAT.
27457         * lib/filenamecat.h: Likewise.  All includers changed.
27458         * lib/acl.c: Don't use "path" or "filename" to mean "file name"
27459         in comments or local variable names.
27460         * lib/basename.c: Likewise.
27461         * lib/canonicalize.c, canonicalize.h: Likewise.
27462         * lib/dirname.c, dirname.h: Likewise.
27463         * lib/euidaccess.c: Likewise.
27464         * lib/exclude.c: Likewise
27465         * lib/fnmatch_.h, fnmatch_loop.c: Likewise.
27466         * lib/fsusage.c, fsuage.h: Likewise.
27467         * lib/fts.c, fts_.h: Likewise.
27468         * lib/getcwd.c: Likewise.
27469         * lib/getloadavg.c: Likewise.
27470         * lib/mkstemp.c: Likewise.
27471         * lib/mountlist.c, mountlist.h: Likewise.
27472         * lib/openat.c, openat.h: Likewise.
27473         * lib/readlink-stub.c: Likewise.
27474         * lib/readutmp.c, readutmp.h: Likewise.
27475         * lib/rename.c: Likewise.
27476         * lib/rmdir.c: Likewise.
27477         * lib/same.c: Likewise.
27478         * lib/savedir.c: Likewise.
27479         * lib/stripslash.c: Likewise.
27480         * lib/tempname.c: Likewise.
27481         * lib/xreadlink.c: Likewise.
27482         * lib/exclude.c (excluded_file_name): Renamed from excluded_filename.
27483         All uses changed.
27484         * lib/exclude.h: Likewise.
27485
27486         * lib/euidaccess.c (getuid, getgid, getuid, getegid)
27487         [!defined _POSIX_VERSION]: Remove decls; not needed these days.
27488         * lib/idcache.c (getpwuid, getpwnam, getgrgid, getgrnam)
27489         [!defined _POSIX_VERSION]: Remove decls; not needed these days.
27490         * lib/pathmax.h: Include <limits.h> unconditionally, since other
27491         files have been getting away with it for years (MORE/BSD 4.3
27492         is extinct now).
27493         * lib/userspec.c (getpwnam, getgrnam, getgrgid)
27494         [!defined _POSIX_VERSION]: Remove decls; not needed these days.
27495
27496         * lib/pathmax.h (_POSIX_PATH_MAX) [!defined _POSIX_PATH_MAX]:
27497         Define to 256, not 255, as per modern POSIX.
27498
27499 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
27500
27501         Sync from coreutils.
27502         Use "file name" when talking about file names, instead of "filename"
27503         or "path", as per the GNU coding standards.
27504         * MODULES.html.sh: mkdir-p renamed from makepath.
27505         filenamecat renamed from path-concat.
27506         * modules/filenamecat: Renamed from modules/path-concat.
27507         (Files): filenamecat.h and filenamecat.c renamed from
27508         path-concat.h and path-concat.c.
27509         (configure.ac): gl_FILE_NAME_CONCAT, not gl_PATH_CONCAT.
27510         (Include): filenamecat.h, not path-concat.h.
27511         * modules/mkdir-p: Renamed from modules/makepath.
27512         (Files): mkdir-p.h and mkdir-p.c renamed from makepath.h and
27513         makepath.c.
27514         (configure.ac): gl_MKDIR_PARENTS, not gl_MAKEPATH.
27515         (Include): mkdir-p.h, not makepath.h.
27516
27517 2005-06-02  Paul Eggert  <eggert@cs.ucla.edu>
27518
27519         Sync from coreutils.
27520         * m4/mkdir-p.m4: Renamed from makepath.m4.
27521         (gl_MKDIR_PARENTS): Renamed from gl_MAKEPATH.  All uses changed.
27522         Rename files from makepath.c to mkdir-p.c, and from
27523         makepath.h to mkdir-p.h.
27524         * m4/filenamecat.m4: Renamed from path-concat.m4.
27525         (gl_FILE_NAME_CONCAT): Renamed from gl_PATH_CONCAT.  All uses changed.
27526         Rename files from path-concat.c to filenamecat.c,
27527         and from path-concat.h to filenamecat.h.
27528         * m4/getcwd-path-max.m4: Don't use "path" or "filename" to mean
27529         "file name" in local variables or comments.
27530         * m4/rename.m4: Likewise.
27531
27532 2005-06-01  Bruno Haible  <bruno@clisp.org>
27533
27534         * modules/csharpexec: New file.
27535         * MODULES.html.sh (C#): New section.
27536
27537 2005-06-01  Bruno Haible  <bruno@clisp.org>
27538
27539         * m4/csharp.m4: New file, from GNU gettext.
27540         * m4/csharpexec.m4: New file, from GNU gettext.
27541
27542 2005-06-01  Bruno Haible  <bruno@clisp.org>
27543
27544         * lib/csharpexec.h: New file, from GNU gettext.
27545         * lib/csharpexec.c: New file, from GNU gettext.
27546         * lib/csharpexec.sh.in: New file, from GNU gettext.
27547
27548 2005-05-31  Derek Price  <derek@ximbiot.com>
27549             Paul Eggert  <eggert@cs.ucla.edu>
27550
27551         Sync from cvs.
27552         * m4/glob.m4: s/MISSING_SYS_CDEFS_H/_SYS_CDEFS_H/ and comment.
27553
27554 2005-05-31  Derek Price  <derek@ximbiot.com>
27555             Paul Eggert  <eggert@cs.ucla.edu>
27556
27557         Sync from cvs.
27558         * lib/glob_.h: s/MISSING_SYS_CDEFS_H/_SYS_CDEFS_H/ and comment.
27559
27560 2005-05-29  Derek Price  <derek@ximbiot.com>
27561
27562         * config/srclist.txt (glob_.h, glob.c): Add these files.
27563
27564 2005-05-29  Derek Price  <derek@ximbiot.com>
27565
27566         * MODULES.html.sh: Add glob to Enhanced POSIX.2001 section.
27567         * modules/glob: New file.
27568         * modules/getlogin_r: Add link to POSIX spec in description.
27569
27570 2005-05-29  Derek Price  <derek@ximbiot.com>
27571             Paul Eggert  <eggert@cs.ucla.edu>
27572
27573         * m4/glob.m4: New file.
27574
27575 2005-05-29  Derek Price  <derek@ximbiot.com>
27576             Paul Eggert  <eggert@cs.ucla.edu>
27577
27578         * lib/glob_.h, lib/glob.c: New files.
27579
27580 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
27581
27582         * modules/fts (Files): Remove m4/inttypes-pri.m4.
27583         * modules/fts-lgpl (Depends-on): Remove gettext.
27584
27585 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
27586
27587         * m4/fts.m4 (gl_FUNC_FTS_CORE): Don't check for inttypes.h or stdint.h,
27588         and don't require gt_INTTYPES_PRI.
27589
27590 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
27591
27592         * lib/getlogin_r.c (getlogin_r): Don't set errno to 0 on return.
27593
27594         * lib/fts.c: Don't worry about debugging on pre-C99-compatible hosts;
27595         the configuration hassle isn't worth it.
27596         Include inttypes.h and stdint.h unconditionally if FTS_DEBUG.
27597         (LONGEST_MODIFIER, PRIuMAX): Remove.
27598
27599 2005-05-27  Bruno Haible  <bruno@clisp.org>
27600
27601         * lib/getlogin_r.h: Remove second include of <stddef.h>.
27602
27603 2005-05-26  Paul Eggert  <eggert@cs.ucla.edu>
27604
27605         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Define
27606         _POSIX_PTHREAD_SEMANTICS for Solaris.
27607
27608 2005-05-25  Derek Price  <derek@ximbiot.com>
27609
27610         * MODULES.html.sh: Add getlogin_r to POSIX.2001 support section.
27611
27612 2005-05-25  Derek Price  <derek@ximbiot.com>
27613             Paul Eggert  <eggert@cs.ucla.edu>
27614
27615         * modules/getlogin_r, m4/getlogin_r.m4: New files.
27616         * lib/getlogin_r.c, getlogin_r.h: New files.
27617
27618 2005-05-25  Bruno Haible  <bruno@clisp.org>
27619             Derek Price  <derek@ximbiot.com>
27620
27621         * lib/getlogin_r.h: Simplify API documentation.
27622
27623 2005-05-23  Derek Price  <derek@ximbiot.com>
27624
27625         * modules/minmax (Files): Add m4/minmax.m4.
27626         (configure.ac): Add gl_MINMAX.
27627
27628 2005-05-22  Paul Eggert  <eggert@cs.ucla.edu>
27629
27630         * lib/fts.c (fd_safer) [_LGPL_PACKAGE]: New static function,
27631         so that unistd-safer.h (GPL'ed code) need not be included.
27632
27633 2005-05-22  Bruno Haible  <bruno@clisp.org>
27634
27635         * m4/minmax.m4: New file.
27636         Based on a patch by Derek Price <derek@ximbiot.com>.
27637
27638 2005-05-22  Bruno Haible  <bruno@clisp.org>
27639
27640         * lib/stdint_.h (_STDINT_H_HAVE_INT64): New macro. Use it in #ifdefs.
27641         (INT64_MIN): Fix definition.
27642         Suggested by Paul Eggert <eggert@cs.ucla.edu>.
27643
27644         * lib/stdint_.h (_STDINT_H_NEED_SIGNED_INT_TYPES): Renamed from
27645         NEED_SIGNED_INT_TYPES.
27646
27647         * lib/stdint_.h (_STDINT_H_HAVE_SYSTEM_INTTYPES): Renamed from
27648         HAVE_SYSTEM_INTTYPES.
27649
27650 2005-05-22  Bruno Haible  <bruno@clisp.org>
27651
27652         * lib/minmax.h: Include <limits.h> only when it defines MIN, MAX.
27653         Also include <sys/param.h> if it defines MIN, MAX.
27654         Based on a patch by Derek Price <derek@ximbiot.com>.
27655
27656 2005-05-21  Jim Meyering  <jim@meyering.net>
27657
27658         * modules/fts (Files): Add m4/inttypes-pri.m4.
27659         (Depends-on): Add lstat and remove gettext.  Alphabetize.
27660
27661 2005-05-20  Paul Eggert  <eggert@cs.ucla.edu>
27662
27663         New fts module.
27664         * lib/fts.c: Don't include "cycle-check.h" or "hash.h".
27665         (setup_dir, free_dir): New functions.
27666         (enter_dir, leave_dir): Define trivial
27667         alternatives of _LGPL_PACKAGE.  Move to fts-cycle.c if !_LGPL_PACKAGE.
27668         (HT_INITIAL_SIZE, ENTER_DIR): Remove.  All uses removed.
27669         (LEAVE_DIR): Fix typo: pass Fts and Ent to leave_dir.
27670         (struct Active_dir, AD_compare, AD_hash, enter_dir, leave_dir):
27671         Move to fts-cycle.c.
27672         (fts_open): Use setup_dir.
27673         (fts_close): Use free_dir.
27674         (fts_read): Have just one copy of the ENTER_DIR code rather than three.
27675         This adds a label and some gotos, but the alternatives were messier.
27676         Check for memory allocation failure when entering a dir.
27677         (fts_stat) [_LGPL_PACKAGE]: Bring back glibc cycle detection code.
27678         * lib/fts_.h (_LGPL_PACKAGE) [defined _LIBC]: New macro.
27679         (FTS): New member fts_cycle, that is a union that contains the
27680         old active_dir_ht and cycle_state.  All uses changed to mention
27681         fts_cycle.ht and fts_cycle.state.
27682         * lib/fts-cycle.c: New file, containing GPL'ed code migrated out of
27683         fts.c, with the following changes:
27684         (setup_dir, free_dir): New functions.
27685         (enter_dir): Now returns bool.  Return true if successful, false
27686         if memory exhausted.  All callers changed.
27687         Do not bother partly cleaning up on
27688         memory allocation failure; that is free_dir's job.
27689         However, free ad if hash_insert fails, to avoid memory leak.
27690         (enter_dir, leave_dir): Accommodate change to FTS by inspecting
27691         fts->fts_options to see which union member to use.
27692
27693 2005-05-20  Paul Eggert  <eggert@cs.ucla.edu>
27694
27695         * m4/fts.m4 (gl_FUNC_FTS_CORE): Renamed from gl_FUNC_FTS.
27696         (gl_FUNC_FTS, gl_FUNC_FTS_LGPL): New macros.
27697
27698 2005-05-20  Paul Eggert  <eggert@cs.ucla.edu>
27699
27700         * MODULES.html.sh (File system functions): Add fts, fts-lgpl.
27701
27702 2005-05-20  Jim Meyering  <jim@meyering.net>
27703
27704         * lib/unlinkdir.h (cannot_unlink_dir) [UNLINK_CANNOT_UNLINK_DIR]:
27705         Now a macro, to pacify GCC.
27706
27707 2005-05-20  Eric Blake  <ebb9@byu.net>  (tiny change)
27708
27709         * m4/chown.m4 (gl_FUNC_CHOWN): Correct sense of test for honoring IDs
27710         of -1.
27711
27712 2005-05-20  Eric Blake  <ebb9@byu.net>  (tiny change)
27713
27714         * lib/chown.c (rpl_chown): Return -1 on failure.
27715
27716 2005-05-18  Paul Eggert  <eggert@cs.ucla.edu>
27717
27718         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME]):
27719         Don't check for stddef.h.
27720         * m4/fts.m4 (gl_FUNC_FTS): Don't require AC_HEADER_STDC, as we
27721         don't use its results.
27722         Don't check for fcntl.h, stddef.h, stdlib.h, string.h, unistd.h,
27723         since we include them unconditionally.  Don't require
27724         AM_STDBOOL_H, since stdbool is a prerequisite.
27725         Don't require AC_C_CONST, AC_TYPE_SIZE_T or check for ptrdiff_t
27726         since we assume C89 or better.
27727         Don't require AC_FUNC_CLOSEDIR_VOID, AC_FUNC_LSTAT, or AC_FUNC_STAT,
27728         as we don't use their results.
27729         Don't check for fchdir, memmove, memset, strrchr, as we use
27730         them unconditionally.
27731         * m4/gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER): Don't define
27732         GETTIMEOFDAY_CLOBBERS_LOCALTIME_BUFFER, since nobody uses it.
27733
27734 2005-05-18  Paul Eggert  <eggert@cs.ucla.edu>
27735
27736         * lib/canonicalize.c: Include canonicalize.h first, to test interface.
27737         Include <stddef.h> unconditionally, since we assume C89 now.
27738         All uses of PTR_INT_TYPE replaced by ptrdiff_t.
27739         * lib/fts.c: Include fts_.h first, to check interface.
27740         Do not include intprops.h; no longer needed.
27741         Include cycle-check.h and hash.h, since fts_.h no longer does.
27742         Remove unnecessary casts of closedir to void.
27743         (fts_build): Use a simpler method (not involving TYPE_SIGNED) to
27744         decide whether to decrement nlinks.
27745         * lib/fts_.h: Do not include hash.h or cycle-check.h; no longer needed.
27746         (FTS): Use struct hash_table * instead of Hash_table, so that
27747         we no longer need to include hash.h here.
27748
27749 2005-05-18  Jim Meyering  <jim@meyering.net>
27750
27751         * modules/dirfd (License): Change to LGPL.  Most of the code
27752         is already in the public domain.
27753
27754 2005-05-18  Jim Meyering  <jim@meyering.net>
27755
27756         * m4/fts.m4 (AC_LIBSOURCES): Add intprops.h to the list.
27757         Reported by Yoann Vandoorselaere.
27758
27759 2005-05-17  Jim Meyering  <jim@meyering.net>
27760
27761         * m4/fts.m4: New file, from coreutils.
27762
27763 2005-05-17  Jim Meyering  <jim@meyering.net>
27764
27765         * lib/fts.c, lib/fts_.h: New files, from coreutils.
27766
27767 2005-05-14  Paul Eggert  <eggert@cs.ucla.edu>
27768
27769         Sync from coreutils.
27770         * m4/unlinkdir.m4: New file.
27771
27772 2005-05-14  Paul Eggert  <eggert@cs.ucla.edu>
27773
27774         Sync from coreutils.
27775         * lib/unlinkdir.c, lib/unlinkdir.h: New files.
27776         * lib/gethrxtime.c, lib/gethrxtime.h, lib/getpass.h, lib/mountlist.h,
27777         lib/path-concat.c, lib/regex.h, lib/unlocked-io.h, lib/xtime.h:
27778         White space changes only.
27779         * lib/makepath.c (make_path): Port to hosts where leading "//" is
27780         special.
27781         * lib/yesno.c: Include getline.h, not ctype.h.
27782         (yesno): Don't remove leading white space; POSIX doesn't allow it.
27783         Use getline to remove arbitrary restriction on response length.
27784
27785 2005-05-14  Paul Eggert  <eggert@cs.ucla.edu>
27786
27787         * config/srclist-update: Spell out "Street" in FSF postal
27788         mail address; this is the style the FSF seems to prefer.
27789
27790         * build-aux/depcomp, build-aux/install-sh, build-aux/mdate-sh,
27791         build-aux/missing, build-aux/mkinstalldirs: Sync from Automake;
27792         this updates FSF postal mail address.
27793
27794         Sync from coreutils.
27795         * modules/unlinkdir: New file.
27796         * modules/yesno (Depends-on): Add getline.
27797         * MODULES.html.sh (File system functions): Add unlinkdir.
27798
27799 2005-05-13  Paul Eggert  <eggert@cs.ucla.edu>
27800
27801         * lib/byteswap_.h, lib/getsubopt.h, lib/iconvme.h, lib/strsep.c,
27802         lib/strsep.h:
27803         Change the initial comment to refer to GPL, not LGPL.
27804         gnulib-tool will change it to LGPL as needed.
27805
27806         * lib/__fpending.c, lib/acl.c, lib/acl.h, lib/alloca_.h, lib/allocsa.c,
27807         lib/allocsa.h, lib/argmatch.c, lib/argmatch.h, lib/argp-ba.c,
27808         lib/argp-eexst.c, lib/argp-fmtstream.c, lib/argp-fmtstream.h,
27809         lib/argp-fs-xinl.c, lib/argp-help.c, lib/argp-namefrob.h,
27810         lib/argp-parse.c, lib/argp-pv.c, lib/argp-pvh.c, lib/argp-xinl.c,
27811         lib/argp.h, lib/argz.c, lib/argz_.h, lib/asnprintf.c, lib/asprintf.c,
27812         lib/atanl.c, lib/backupfile.c, lib/backupfile.h, lib/base64.c,
27813         lib/base64.h, lib/basename.c, lib/binary-io.h, lib/byteswap_.h,
27814         lib/c-ctype.c, lib/c-ctype.h, lib/c-stack.c, lib/c-stack.h,
27815         lib/c-strtod.c, lib/calloc.c, lib/canon-host.c, lib/canonicalize.c,
27816         lib/canonicalize.h, lib/ceill.c, lib/chdir-long.c, lib/chdir-long.h,
27817         lib/chown.c, lib/classpath.c, lib/classpath.h, lib/cloexec.c,
27818         lib/closeout.c, lib/closeout.h, lib/concatpath.c, lib/config.charset,
27819         lib/copy-file.c, lib/copy-file.h, lib/cycle-check.c, lib/cycle-check.h,
27820         lib/diacrit.c, lib/diacrit.h, lib/dirfd.c, lib/dirfd.h, lib/dirname.c,
27821         lib/dirname.h, lib/dummy.c, lib/dup-safer.c, lib/dup2.c, lib/eealloc.h,
27822         lib/error.c, lib/error.h, lib/euidaccess.c, lib/exclude.c,
27823         lib/exclude.h, lib/execute.c, lib/execute.h, lib/exit.h,
27824         lib/exitfail.c, lib/exitfail.h, lib/expl.c, lib/fatal-signal.c,
27825         lib/fatal-signal.h, lib/fd-safer.c, lib/file-type.c, lib/file-type.h,
27826         lib/fileblocks.c, lib/filemode.c, lib/filemode.h, lib/findprog.c,
27827         lib/findprog.h, lib/floorl.c, lib/fnmatch.c, lib/fnmatch_.h,
27828         lib/fnmatch_loop.c, lib/fopen-safer.c, lib/free.c, lib/frexpl.c,
27829         lib/fsusage.c, lib/fsusage.h, lib/full-read.c, lib/full-read.h,
27830         lib/full-write.c, lib/full-write.h, lib/fwriteerror.c,
27831         lib/fwriteerror.h, lib/gai_strerror.c, lib/gcd.c, lib/gcd.h,
27832         lib/getaddrinfo.c, lib/getaddrinfo.h, lib/getcwd.c, lib/getcwd.h,
27833         lib/getdate.h, lib/getdate.y, lib/getdomainname.c, lib/getdomainname.h,
27834         lib/getgroups.c, lib/gethostname.c, lib/gethrxtime.c, lib/gethrxtime.h,
27835         lib/getline.c, lib/getline.h, lib/getloadavg.c, lib/getndelim2.c,
27836         lib/getndelim2.h, lib/getnline.c, lib/getnline.h, lib/getopt.c,
27837         lib/getopt1.c, lib/getopt_.h, lib/getopt_int.h, lib/getpagesize.h,
27838         lib/getpass.c, lib/getpass.h, lib/getsubopt.c, lib/getsubopt.h,
27839         lib/gettext.h, lib/gettime.c, lib/gettimeofday.c, lib/getugroups.c,
27840         lib/getusershell.c, lib/group-member.c, lib/group-member.h,
27841         lib/hard-locale.c, lib/hard-locale.h, lib/hash-pjw.c, lib/hash-pjw.h,
27842         lib/hash.c, lib/hash.h, lib/human.c, lib/human.h, lib/iconvme.c,
27843         lib/iconvme.h, lib/idcache.c, lib/inet_ntop.h, lib/intprops.h,
27844         lib/inttostr.c, lib/inttostr.h, lib/isdir.c, lib/javacomp.c,
27845         lib/javacomp.h, lib/javacomp.sh.in, lib/javaexec.c, lib/javaexec.h,
27846         lib/javaexec.sh.in, lib/lbrkprop.h, lib/lchown.c, lib/ldexpl.c,
27847         lib/linebreak.c, lib/linebreak.h, lib/linebuffer.c, lib/linebuffer.h,
27848         lib/localcharset.c, lib/localcharset.h, lib/logl.c, lib/long-options.c,
27849         lib/long-options.h, lib/lstat.c, lib/makepath.c, lib/makepath.h,
27850         lib/malloc.c, lib/mathl.h, lib/mbswidth.c, lib/mbswidth.h, lib/md5.c,
27851         lib/md5.h, lib/memcasecmp.c, lib/memcasecmp.h, lib/memchr.c,
27852         lib/memcmp.c, lib/memcoll.c, lib/memcoll.h, lib/memcpy.c, lib/memmem.c,
27853         lib/memmem.h, lib/mempcpy.c, lib/mempcpy.h, lib/memrchr.c,
27854         lib/memrchr.h, lib/memset.c, lib/minmax.h, lib/mkdir.c, lib/mkdtemp.c,
27855         lib/mkdtemp.h, lib/mkstemp.c, lib/mktime.c, lib/modechange.c,
27856         lib/modechange.h, lib/mountlist.c, lib/mountlist.h, lib/nanosleep.c,
27857         lib/obstack.c, lib/obstack.h, lib/openat.c, lib/openat.h,
27858         lib/pagealign_alloc.c, lib/pagealign_alloc.h, lib/path-concat.c,
27859         lib/path-concat.h, lib/pathmax.h, lib/pathname.h, lib/physmem.c,
27860         lib/physmem.h, lib/pipe.c, lib/pipe.h, lib/poll.c, lib/poll_.h,
27861         lib/posixtm.c, lib/posixtm.h, lib/posixver.c, lib/printf-args.c,
27862         lib/printf-args.h, lib/printf-parse.c, lib/printf-parse.h,
27863         lib/progname.c, lib/progname.h, lib/progreloc.c, lib/putenv.c,
27864         lib/quote.c, lib/quote.h, lib/quotearg.c, lib/quotearg.h, lib/raise.c,
27865         lib/readlink.c, lib/readtokens.c, lib/readtokens.h, lib/readtokens0.c,
27866         lib/readtokens0.h, lib/readutmp.c, lib/readutmp.h, lib/realloc.c,
27867         lib/ref-add.sin, lib/ref-del.sin, lib/regex.c, lib/regex.h,
27868         lib/rename.c, lib/rmdir.c, lib/rpmatch.c, lib/safe-read.c,
27869         lib/safe-read.h, lib/safe-write.c, lib/safe-write.h, lib/same.c,
27870         lib/same.h, lib/save-cwd.c, lib/save-cwd.h, lib/savedir.c,
27871         lib/savedir.h, lib/setenv.c, lib/setenv.h, lib/settime.c,
27872         lib/sh-quote.c, lib/sh-quote.h, lib/sha1.c, lib/sha1.h, lib/sig2str.c,
27873         lib/sig2str.h, lib/sincosl.c, lib/snprintf.c, lib/snprintf.h,
27874         lib/sqrtl.c, lib/stat-macros.h, lib/stat.c, lib/stdbool_.h,
27875         lib/stdint_.h, lib/stdio-safer.h, lib/stpcpy.c, lib/stpcpy.h,
27876         lib/stpncpy.c, lib/stpncpy.h, lib/strcase.h, lib/strcasecmp.c,
27877         lib/strchrnul.c, lib/strchrnul.h, lib/strcspn.c, lib/strdup.c,
27878         lib/strdup.h, lib/strerror.c, lib/strftime.c, lib/strftime.h,
27879         lib/stripslash.c, lib/strndup.c, lib/strndup.h, lib/strnlen.c,
27880         lib/strpbrk.c, lib/strpbrk.h, lib/strsep.c, lib/strsep.h, lib/strstr.c,
27881         lib/strstr.h, lib/strtod.c, lib/strtoimax.c, lib/strtok_r.c,
27882         lib/strtok_r.h, lib/strtol.c, lib/strtoll.c, lib/strtoul.c,
27883         lib/strtoull.c, lib/strverscmp.c, lib/strverscmp.h, lib/sysexit_.h,
27884         lib/tempname.c, lib/time_r.c, lib/time_r.h, lib/timegm.c, lib/timegm.h,
27885         lib/timespec.h, lib/trigl.c, lib/trigl.h, lib/ucs4-utf16.h,
27886         lib/ucs4-utf8.h, lib/unicodeio.c, lib/unicodeio.h, lib/unistd-safer.h,
27887         lib/unlocked-io.h, lib/unsetenv.c, lib/userspec.c, lib/utf16-ucs4.h,
27888         lib/utf8-ucs4.h, lib/utime.c, lib/utimecmp.c, lib/utimecmp.h,
27889         lib/utimens.c, lib/vasnprintf.c, lib/vasnprintf.h, lib/vasprintf.c,
27890         lib/vasprintf.h, lib/version-etc-fsf.c, lib/version-etc.c,
27891         lib/version-etc.h, lib/vsnprintf.c, lib/vsnprintf.h, lib/w32spawn.h,
27892         lib/wait-process.c, lib/wait-process.h, lib/xalloc-die.c, lib/xalloc.h,
27893         lib/xallocsa.c, lib/xallocsa.h, lib/xasprintf.c, lib/xgetcwd.c,
27894         lib/xgetcwd.h, lib/xgetdomainname.c, lib/xgetdomainname.h,
27895         lib/xgethostname.c, lib/xmalloc.c, lib/xmemcoll.c, lib/xnanosleep.c,
27896         lib/xreadlink.c, lib/xreadlink.h, lib/xsetenv.c, lib/xsetenv.h,
27897         lib/xsize.h, lib/xstrndup.c, lib/xstrndup.h, lib/xstrtod.c,
27898         lib/xstrtod.h, lib/xstrtoimax.c, lib/xstrtol.c, lib/xstrtol.h,
27899         lib/xstrtoumax.c, lib/xtime.h, lib/xvasprintf.c, lib/xvasprintf.h,
27900         lib/yesno.c, lib/yesno.h:
27901         Update FSF postal mail address.
27902
27903 2005-05-13  Paul Eggert  <eggert@cs.ucla.edu>
27904
27905         * MODULES.html.sh, README, gnulib-tool, tests/test-base64.c,
27906         tests/test-memmem.c, tests/test-stpncpy.c:
27907         Update FSF postal mail address.
27908
27909 2005-05-13  Bruno Haible  <bruno@clisp.org>
27910
27911         * lib/stdint_.h (int64_t, uint64_t, int_least64_t, uint_least64_t,
27912         int_fast64_t, uint_fast64_t, intmax_t, uintmax_t, INT64_MIN, INT64_MAX,
27913         UINT64_MAX, INT_LEAST64_MIN, INT_LEAST64_MAX, UINT_LEAST64_MAX,
27914         INT_FAST64_MIN, INT_FAST64_MAX, UINT_FAST64_MAX, INTMAX_MIN,
27915         INTMAX_MAX, UINTMAX_MAX, INT64_C, UINT64_C, INTMAX_C, UINTMAX_C):
27916         Add support for 64-bit integers in the MSVC compiler.
27917
27918 2005-05-12  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
27919
27920         * modules/getdate (Makefile.am): Add getdate.c to EXTRA_DIST
27921
27922 2005-05-12  Eric Blake  <ebb9@byu.net>  (tiny change)
27923
27924         * gnulib-tool (func_import): Sort and uniquify recommended includes.
27925
27926 2005-05-11  Paul Eggert  <eggert@cs.ucla.edu>
27927
27928         * doc/getdate.texi (General date syntax): Don't say that date
27929         date --iso-8601=ns generates acceptable dates; it doesn't yet.
27930         Problem reported by Nic Ferrier.
27931
27932 2005-05-10  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
27933
27934         * lib/getaddrinfo.c: Don't fail when SOCK_STREAM or SOCK_DGRAM are
27935         specified in ai_socktype. Fix invalid ai_protocol
27936         check. ai_protocol is usually set to 0 or depending on
27937         ai_family/ai_socktype to IPPROTO_TCP / IPPROTO_UDP.  Checking for
27938         SOCK_STREAM / SOCK_DGRAM in ai_protocol was invalid.  Set
27939         ai_socktype / ai_protocol in the returned addrinfo structure.
27940
27941 2005-05-10  Simon Josefsson  <jas@extundo.com>
27942
27943         * m4/getaddrinfo.m4: Look in libnsl/libsocket for getaddrinfo, from
27944         Yoann Vandoorselaere <yoann.v@prelude-ids.com>.
27945
27946 2005-05-10  Karl Berry  <karl@gnu.org>
27947
27948         * doc/fdl.texi, gpl.texi, lgpl.texi, COPYING: update FSF address
27949         (from http://www.gnu.org/licenses).
27950         * doc/COPYING.LIB: also rename to COPYING.LESSER.
27951         * doc/COPYING.DOC: remove; per rms, only needed in doc files, so
27952         fdl.texi suffices.
27953
27954 2005-05-10  Karl Berry  <karl@gnu.org>
27955
27956         * config/srclist.txt (COPYING.LESSER): rename from COPYING.LIB.
27957         (COPYING.DOC): remove.
27958
27959         * config/srclist-update: new FSF address.
27960
27961 2005-05-10  Derek Price  <derek@ximbiot.com>
27962
27963         * m4/getopt.m4 (gl_GETOPT): Check for Solaris 10 bug, not decl, when
27964         possible.
27965
27966 2005-05-09  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
27967             Bruno Haible  <bruno@clisp.org>
27968
27969         * modules/inet_ntop: New file.
27970         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
27971         inet_ntop.
27972
27973 2005-05-09  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
27974             Bruno Haible  <bruno@clisp.org>
27975
27976         * m4/inet_ntop.m4: New file.
27977
27978 2005-05-09  Yoann Vandoorselaere  <yoann.v@prelude-ids.com>
27979             Bruno Haible  <bruno@clisp.org>
27980
27981         * lib/inet_ntop.h: New file.
27982         * lib/inet_ntop.c: New file, from glibc with modifications.
27983
27984 2005-05-09  Paul Eggert  <eggert@cs.ucla.edu>
27985
27986         * modules/time_r (License): Change to LGPL.
27987         * modules/extensions (License): Change to LGPL.  Actually,
27988         the license is more permissive than that, but currently gnulib-tool
27989         doesn't know how to handle more-permissive licenses.
27990
27991         * modules/stat-macros (Depends-on): Don't depend on stat-macros (!).
27992         Problem reported by Dave Love.
27993
27994 2005-05-08  Jim Meyering  <jim@meyering.net>
27995
27996         * lib/classpath.c (PATH_SEPARATOR): Remove insignificant trailing
27997         blank.
27998
27999 2005-05-06  Paul Eggert  <eggert@cs.ucla.edu>
28000
28001         * modules/argmatch (Depends-on): Add stdbool.
28002         * modules/backupfile (Depends-on): Likewise.
28003         * modules/chdir-long (Depends-on): Likewise.
28004         * modules/closeout (Depends-on): Likewise.
28005         * modules/cycle-check (Depends-on): Likewise.
28006         * modules/dirname (Depends-on): Likewise.
28007         * modules/fnmatch (Depends-on): Likewise.
28008         * modules/fsusage (Depends-on): Likewise.
28009         * modules/fwriteerror (Depends-on): Likewise.
28010         * modules/getcwd (Depends-on): Likewise.
28011         * modules/getloadavg (Depends-on): Likewise.
28012         * modules/hard-locale (Depends-on): Likewise.
28013         * modules/makepath (Depends-on): Likewise.
28014         * modules/mountlist (Depends-on): Likewise.
28015         * modules/nanosleep (Depends-on): Likewise.
28016         * modules/posixtm (Depends-on): Likewise.
28017         * modules/quotearg (Depends-on): Likewise.
28018         * modules/readtokens (Depends-on): Likewise.
28019         * modules/readtokens0 (Depends-on): Likewise.
28020         * modules/readutmp (Depends-on): Likewise.
28021         * modules/save-cwd (Depends-on): Likewise.
28022         * modules/strftime (Depends-on): Likewise.
28023         * modules/userspec (Depends-on): Likewise.
28024         * modules/utimecmp (Depends-on): Likewise.
28025         * modules/xgetcwd (Depends-on): Likewise.
28026         * modules/xnanosleep (Depends-on): Likewise.
28027         * modules/xstrtod (Depends-on): Likewise.
28028         * modules/yesno (Depends-on): Likewise.
28029
28030 2005-05-05  Paul Eggert  <eggert@cs.ucla.edu>
28031
28032         * m4/getopt.m4 (gl_GETOPT): Check for Solaris 10 getopt, and avoid
28033         needless checks.
28034
28035 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
28036
28037         Merge from coreutils.  Among other things,
28038         add bulletproofing for cases where stdin, stdout, or stderr are closed.
28039         * lib/fd-safer.c: New file.
28040         * lib/fcntl-safer.h, open-safer.c: Remove.
28041         * lib/chdir-long.c: Fix comment "fetish" -> "coreutils".
28042         * lib/dup-safer.c: Include unistd-safer.h first.
28043         Don't include errno.h.
28044         (dup_safer) [!defined F_DUPFD]: Let fd_safer do the real work.
28045         * lib/file-type.h: Don't assume invoker included sys/stat.h first.
28046         * lib/file-type.c: Rely on file-type.h change.
28047         * lib/getloadavg.c: Include unistd-safer.h.
28048         (getloadavg): Use safer open.
28049         * lib/getusershell.c: Include "stdio-safer.h".
28050         (getusershell): Use safer fopen.
28051         * lib/long-options.c (long_options): Use NULL rather than 0.
28052         * lib/modechange.h (mode_free): Remove; all callers changed to invoke
28053         'free'.
28054         * lib/modechange.c: Likewise.
28055         xstrtol.h, stdbool.h, stddef.h: Don't include; no longer needed.
28056         (MODE_DONE): New constant.
28057         (struct mode_change): Remove 'next' member.
28058         (make_node_op_equals): New function; like the old one of the
28059         same name, except it allocates an array.
28060         (mode_compile, mode_create_from_ref): Use it.
28061         (mode_compile): Allocate result as an array, not a linked list.
28062         Parse octal string ourself, so that we catch mistakes like "+0".
28063         (mode_adjust): Arg is an array, not a linked list.
28064         * lib/modechange.c: Include stat-macros.h, xalloc.h.
28065         (S_ISDIR, S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IWUSR, S_IXUSR):
28066         (S_IRGRP, S_IWGRP, S_IXGRP, S_IROTH, S_IWOTH, S_IXOTH, S_IRXWU):
28067         (S_IRWXG, S_IRWXO, CHMOD_MODE_BITS):
28068         Remove.  This is now stat-macros.h's job.
28069         (talloc): Remove.  All callers replaced by xalloc, so that
28070         our invokers don't have to worry about reporting memory failures.
28071         (make_node_op_equals): Remove.
28072         (MODE_ORDINARY_CHAGE, MODE_X_IF_ANY_X, MODE_COPY_EXISTING):
28073         New constants.
28074         (struct mode_change): Moved here from modechange.h.
28075         (mode_append_entry): Remove.
28076         (mode_compile): Remove MASKED_OPS arg, since it encouraged
28077         apps to have incorrect behavior.  Use simpler algorithm for head
28078         and tail.  Don't futz with umask; that's now the job of mode_adjust.
28079         Detect more invalid usages rather than having somewhat-random behavior.
28080         Don't insert an "a=" action, as that leads to incorrect behavior.
28081         (mode_compile, mode_create_from_ref): Return NULL on error instead
28082         of an enum, since now there's only one way to have an error.  All
28083         callers changed.
28084         (mode_adjust): Accept new arg UMASK_VALUE, and interpret it
28085         at the correct time.  Simplify calculation of "+u" and its ilk.
28086         Don't mishandle "+X".
28087         (mode_free): Remove "register" and localize decls.
28088         * lib/modechange.h (MODE_X_IF_ANY_X, MODE_COPY_EXISTING):
28089         (struct mode_change): Move to modechange.c; callers don't
28090         need to see this stuff.
28091         (MODE_MASK_EQUALS, MODE_MASK_PLUS, MODE_MASK_MINUS, MODE_MASK_ALL):
28092         (MODE_INVALID, MODE_MEMORY_EXHAUSTED, MODE_BAD_REFERENCE): Remove.
28093         (mode_change, mode_adjust): Reflect the new signatures noted above.
28094         * lib/nanosleep.c (rpl_nanosleep): Include "timespec.h" before macros
28095         that might redefine system include files.
28096         (siginterrupt) [!HAVE_SIGINTERRUPT]: New macro.
28097         (my_usleep): Use NULL rather than (void *) 0.
28098         (rpl_nanosleep) [!defined SA_NOCLDSTOP]:
28099         Use siginterrupt to specify that system calls should be interrupted.
28100         (rpl_nanosleep): Move initialization of suspended closer to call of
28101         my_usleep.
28102         * lib/readutmp.h (read_utmp): New arg OPTIONS.  All uses changed.
28103         * lib/readutmp.c: Likewise.  Include signal.h, stdbool.h.
28104         (desirable_utmp_entry): New function.
28105         (read_utmp) [defined UTMP_NAME_FUNCTION]: Redo memory allocation
28106         using x2nrealloc, to simplify logic.
28107         (read_utmp) [!defined UTMP_NAME_FUNCTION]: Check for overflow in
28108         size calculation.  Do not assume utmp file is a regular file.
28109         * lib/readutmp.h (UT_PID): Moved here from ../src/who.c.
28110         (READ_UTMP_CHECK_PIDS): New constant.
28111         * lib/save-cwd.c: Include unistd-safer.h.
28112         (save_cwd): Use fd_safer.
28113         * lib/tempname.c (S_ISDIR, S_IRUSR, S_IRUSR, S_IWUSR, S_IXUSR): Remove.
28114         [!_LIBC] Include "stat-macros.h" instead.
28115         * lib/unistd-safer.h (fd_safer): New decl.
28116
28117 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
28118
28119         * modules/getloadavg (Depends-on): Add unistd-safer.
28120         * modules/getusershell (Depends-on): Add stdio-safer.
28121         * modules/lstat (Depends-on): Remove xalloc.
28122         * modules/mkstemp (Depends-on): Add stat-macros.
28123         * modules/modechange (Depends-on): Remove xstrtol.
28124         Add stat-macros, xalloc.
28125         * modules/save-cwd (Depends-on): Add unistd-safer.
28126         * modules/stdio-safer (Makefile.am): Remove lib_SOURCES.
28127         * modules/unistd-safer (Files): Add lib/fd-safer.c
28128         (Makefile.am): Remove lib_SOURCES.
28129
28130         * MODULES.html.sh (Enhancements for POSIX:2001 functions):
28131         Remove fcntl-safer; unistd-safer supersedes it.
28132
28133 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
28134
28135         * m4/euidaccess.m4 (gl_PREREQ_EUIDACCESS): Don't require
28136         AC_HEADER_STAT.
28137         * m4/lchown.m4 (gl_FUNC_CHOWN): Likewise.
28138         (gl_PREREQ_CHOWN): Remove.
28139         * m4/lstat.m4 (gl_FUNC_LSTAT): Require AC_FUNC_LSTAT instead of calling
28140         it.  Don't require AC_HEADER_STAT.
28141         (gl_PREREQ_LSTAT): Remove.
28142         * m4/mkstemp.m4 (gl_PREREQ_TEMPNAME): Check stdint.h only once.
28143         Don't require AC_HEADER_STAT.
28144         * m4/rmdir.m4 (gl_FUNC_RMDIR): Don't require AC_HEADER_STAT.
28145         (gl_PREREQ_RMDIR): Remove.
28146         * m4/canonicalize.m4 (AC_FUNC_CANONICALIZE_FILE_NAME): Don't
28147         mention stat-macros.h or AC_HEADER_STAT, since we'll make
28148         the stat-macros module a prerequisite.
28149         * m4/file-type.m4 (gl_FILE_TYPE): Likewise.
28150         * m4/filemode.m4 (gl_FILEMODE): Likewise.
28151         * m4/makepath.m4 (gl_MAKEPATH): Likewise.
28152         * m4/modechange.m4 (gl_MODECHANGE): Likewise.
28153         * m4/clock_time.m4 (gl_CLOCK_TIME): Use gl_ rather than fetish_ for
28154         variable names.
28155         * m4/rmdir-errno.m4 (gl_FUNC_RMDIR_NOTEMPTY): Renamed from
28156         fetish_FUNC_RMDIR_NOTEMPTY.  All uses changed.  Use gl_ for
28157         variable prefixes.
28158         * m4/fcntl-safer.m4: Remove.
28159         * m4/stdio-safer.m4 (gl_STDIO_SAFER): Use AC_LIBSOURCES and AC_LIBOBJ.
28160         * m4/unistd-safer.m4 (gl_UNISTD_SAFER): Likewise.
28161         Invoke gl_PREREQ_FD_SAFER.
28162         (gl_PREREQ_FD_SAFER): New macro.
28163         * m4/nanosleep.m4 (gl_PREREQ_NANOSLEEP): Check for siginterrupt.
28164         * m4/readutmp.m4 (gl_READUTMP): Require AC_C_INLINE.
28165         Use AC_CHECK_HEADERS_ONCE and AC_CHECK_FUNCS_ONCE when possible.
28166         Remove duplicate call to AC_LIBOBJ(readutmp).
28167         (gl_PREREQ_READUTMP): Remove.  All uses inlined.
28168
28169         * m4/mmap-anon.m4 (gl_FUNC_MMAP_ANON): Check for message, not for
28170         MAP_ANON.  Problem reported by Moriyoshi Koizumi to bug-cvs.
28171
28172 2005-05-01  Paul Eggert  <eggert@cs.ucla.edu>
28173
28174         * MODULES.html.sh (Misc): Add byteswap.
28175
28176 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
28177
28178         * modules/getcwd (Depends-on): Add extensions.
28179         * modules/openat (Depends-on): Likewise.
28180
28181 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
28182
28183         * modules/byteswap: New file.
28184
28185 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
28186
28187         * m4/byteswap.m4: New file.
28188
28189 2005-05-01  Oskar Liljeblad  <oskar@osk.mine.nu>
28190
28191         * lib/byteswap_.h: New file.
28192
28193 2005-04-25  Karl Berry  <karl@gnu.org>
28194
28195         * m4/gettext.m4: Update from GNU gettext 0.14.4.
28196
28197 2005-04-25  Albert Chin  <china@thewrittenword.com>
28198
28199         * lib/regex.c: Include <stdio.h>, as a workaround to a Compaq Desktop
28200         Toolkit C bug.
28201
28202 2005-04-21  Oskar Liljeblad  <oskar@osk.mine.nu>
28203
28204         * gnulib-tool (Options): Add -s for --symlink/--symbolic.
28205         (func_ln_if_changed) Remove forcibly for no error message
28206         in case file does not exist.
28207
28208 2005-04-19  Simon Josefsson  <jas@extundo.com>
28209
28210         * gnulib-tool (Options): Make --symlink mean --symbolic.
28211
28212 2005-04-18  Oskar Liljeblad  <oskar@osk.mine.nu>
28213
28214         * doc/gnulib.texi (Initial import): Fix.  Mention --aux-dir.
28215
28216 2005-04-16  Simon Josefsson  <jas@extundo.com>
28217
28218         * modules/getpass-gnu (Makefile.am): Don't mention getpass.h.
28219
28220 2005-04-15  Simon Josefsson  <jas@extundo.com>
28221
28222         * m4/getpass.m4 (gl_FUNC_GETPASS): Use AC_LIBSOURCES.
28223
28224 2005-04-15  Simon Josefsson  <jas@extundo.com>
28225
28226         * gnulib-tool: Rename --symlink to --symbolic.
28227
28228 2005-04-15  Oskar Liljeblad  <oskar@osk.mine.nu>
28229
28230         * gnulib-tool: Add -s, --symlink option to gnulib-tool to make
28231         symbolic links to files instead of copying/moving.  Add --aux-dir,
28232         specifying directory relative --dir where auxiliary build tools
28233         are placed.
28234
28235 2005-04-14  Bruno Haible  <bruno@clisp.org>
28236
28237         * modules/allocsa (License): Change to LGPL.
28238         Requested by Yoann Vandoorselaere <yoann@prelude-ids.org>.
28239
28240 2005-04-13  Paul Eggert  <eggert@cs.ucla.edu>
28241
28242         * lib/getdate.y (zone): Allow relunit_snumber after tZONE, so
28243         that "UTC +1 second" continues to work.  Problem reported
28244         by Dmitry V. Levin.
28245         (relunit_snumber): New rule.
28246         (relunit): Use it.
28247
28248 2005-04-12  Paul Eggert  <eggert@cs.ucla.edu>
28249
28250         * lib/getdate.y (universal_time_zone_table): New constant.
28251         (time_zone_table): Remove GMT, UT, UTC entries; they're now in
28252         universal_time_zone_table.
28253         (lookup_zone): Prefer universal_time_zone_table to
28254         local_time_zone_table, so that "GMT" time stamps are allowed in
28255         London during the summer.  Problem reported by Ian Abbott.
28256
28257 2005-04-12  Jim Meyering  <jim@meyering.net>
28258
28259         * lib/human.c (humblock): Set *options even when returning due to
28260         xstrtoumax conversion failure.  Thanks to a used-uninitialized
28261         warning from gcc-4.
28262
28263 2005-04-09  Jim Meyering  <jim@meyering.net>
28264
28265         * lib/posixtm.c (posixtime) [lint]: Avoid spurious warning from gcc-4's
28266         -Wuninitialized: initialize tm0.tm_year.
28267
28268 2005-04-04  Paul Eggert  <eggert@cs.ucla.edu>
28269
28270         * lib/getdate.y (parser_control): rels_seen is now a boolean, not a
28271         count, since there's no maximum.  All uses changed.
28272         Add member dsts_seen.
28273         (local_zone): Accumulate dsts_seen rather than relying on tm_isdst
28274         not being INT_MAX.
28275         (get_date): Initialize dsts_seen, and check that it doesn't go over 1.
28276         Use pc_rels_seen to decide whther a date is absolute.
28277
28278         * lib/getdate.y (number): Don't overwrite year.
28279         (get_date): Initialize pc.year.digits to 0, not 4, to enable above
28280         check.
28281
28282 2005-04-02  Simon Josefsson  <jas@extundo.com>
28283
28284         * lib/getaddrinfo.h: Fix OpenBSD compilation failure, inspired by tiny
28285         patch from Yoann Vandoorselaere <yoann@prelude-ids.org>.
28286
28287 2005-03-28  Eric Blake  <ebb9@byu.net>  (tiny change)
28288
28289         * m4/getcwd-path-max.m4: Return success on systems such as Cygwin
28290         where no absolute path name can be longer than PATH_MAX.
28291
28292 2005-03-27  Jim Meyering  <jim@meyering.net>
28293
28294         * lib/argmatch.c: Clarify comment: null-terminated -> NULL-terminated.
28295
28296 2005-03-26  Paul Eggert  <eggert@cs.ucla.edu>
28297
28298         * lib/intprops.h (INT_STRLEN_BOUND, INT_BUFSIZE_BOUND):
28299         "one's complement" -> "ones' complement" in comment, as per Knuth.
28300         "value of type" -> "type or expression" in comment.
28301         * lib/mktime.c, strftime.c: Propagate intprops.h comment nits.
28302
28303 2005-03-26  Jim Meyering  <jim@meyering.net>
28304
28305         Comment nits.
28306         * lib/intprops.h: Add the apostrophe in `(one|two)'s complement'.
28307         Correct typos: s/or/of/.
28308
28309 2005-03-26  Jim Meyering  <jim@meyering.net>
28310
28311         * modules/check-include-files: Move to ../ and rename to...
28312         * check-module: ...this.
28313
28314 2005-03-25  Jim Meyering  <jim@meyering.net>
28315
28316         * modules/xvasprintf (Files): Add xalloc.h.
28317
28318 2005-03-23  Paul Eggert  <eggert@cs.ucla.edu>
28319
28320         * modules/gettext (Files): config/config.rpath ->
28321         build-aux/config.rpath
28322         * modules/iconv (Files): Likewise.
28323         Problem reported by Oskar Liljeblad.
28324
28325 2005-03-23  Jim Meyering  <jim@meyering.net>
28326
28327         * modules/check-include-files: New script to check for
28328         missing dependencies, multiple includes, etc.
28329
28330         * modules/c-strtold (Depends-on): Add xalloc.
28331         * modules/c-strtod (Depends-on): Add xalloc.
28332         * modules/hash (Depends-on): Add xalloc.
28333         (Files): Remove lib/xalloc.h.
28334
28335         * modules/gethrxtime (Files): Add lib/gethrxtime.h.
28336         * modules/userspec (Files): Add lib/inttostr.h.
28337
28338 2005-03-23  Jim Meyering  <jim@meyering.net>
28339
28340         * lib/canonicalize.c: Remove duplicate `#include "stat-macros.h"'.
28341
28342 2005-03-22  Jim Meyering  <jim@meyering.net>
28343
28344         * modules/stat-macros: New module.
28345         * modules/canonicalize, modules/euidaccess, modules/file-type,
28346         * modules/filemode, modules/lchown, modules/makepath,
28347         * modules/rmdir, modules/stat: Depend on new stat-macros module
28348         rather than listing lib/stat-macros.h manually.
28349         Don't add stat-macros.h to lib_SOURCES or list it in Files: section.
28350
28351 2005-03-22  Jim Meyering  <jim@meyering.net>
28352
28353         * m4/stat-macros.m4 (gl_STAT_MACROS): New file/macro.
28354
28355 2005-03-22  Bruno Haible  <bruno@clisp.org>
28356
28357         * config/srclist.txt: Replace target directory 'config' with
28358         'build-aux'.
28359         * config/config.guess, config.sub, config.rpath, depcomp, install-sh:
28360         * config/mdate-sh, missing, mkinstalldirs, texinfo.tex: Move to
28361         ../build-aux/.
28362
28363 2005-03-21  Paul Eggert  <eggert@cs.ucla.edu>
28364
28365         * modules/chdir-long (Depends-on): Add mempcpy.
28366
28367         * modules/acl, modules/backupfile, modules/c-strtod,
28368         modules/c-strtold, modules/canon-host, modules/canonicalize,
28369         modules/cloexec, modules/closeout, modules/dirfd, modules/dirname,
28370         modules/exclude, modules/exitfail, modules/file-type,
28371         modules/filemode, modules/fpending, modules/fsusage, modules/getcwd,
28372         modules/getdate, modules/getline, modules/getpagesize,
28373         modules/getpass, modules/getugroups, modules/group-member,
28374         modules/hard-locale, modules/hash, modules/human, modules/idcache,
28375         modules/inttostr, modules/long-options, modules/makepath,
28376         modules/md5, modules/memcasecmp, modules/memcoll,
28377         modules/modechange, modules/mountlist, modules/path-concat,
28378         modules/pathmax, modules/physmem, modules/posixtm, modules/posixver,
28379         modules/quote, modules/quotearg, modules/readtokens, modules/readutmp,
28380         modules/safe-read, modules/safe-write, modules/same, modules/savedir,
28381         modules/settime, modules/sha1, modules/sig2str, modules/strdup,
28382         modules/strftime, modules/strndup, modules/strverscmp,
28383         modules/timespec, modules/unlocked-io, modules/userspec,
28384         modules/utimecmp, modules/utimens, modules/xalloc, modules/xstrtol,
28385         modules/yesno:
28386         Remove lib_SOURCES line from Makefile.am section, as this is now
28387         done automatically by the corresponding Autoconf macro.
28388
28389 2005-03-21  Jim Meyering  <jim@meyering.net>
28390
28391         Changes imported from coreutils.
28392
28393         * lib/cycle-check.c: Don't include xalloc.h.
28394
28395         * lib/path-concat.c: Don't include assert.h.
28396         (path_concat): Remove assertion that would have triggered
28397         for ABASE starting with more than one slash.
28398         Reported by Andreas Schwab.
28399
28400         * lib/path-concat.c (path_concat): Set *BASE_IN_RESULT
28401         properly when ABASE is an absolute file name.
28402         Correct the description of this function.
28403         Include <assert.h>.
28404         Add an assertion and a test driver.
28405         This fixes a bug introduced on 2004-07-02.
28406         Andreas Schwab reported the resulting failure of cp --parents:
28407         http://lists.gnu.org/archive/html/bug-coreutils/2005-01/msg00130.html
28408
28409 2005-03-21  Jim Meyering  <jim@meyering.net>
28410
28411         * m4/chdir-long.m4 (gl_PREREQ_CHDIR_LONG): Invoke gl_FUNC_MEMRCHR.
28412         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Check for memrchr decl.
28413
28414 2005-03-21  Jim Meyering  <jim@meyering.net>
28415         and  Paul Eggert  <eggert@cs.ucla.edu>
28416
28417         * m4/acl.m4, m4/backupfile.m4, m4/c-strtod.m4, m4/canon-host.m4,
28418         m4/canonicalize.m4, m4/cloexec.m4, m4/closeout.m4, m4/dirfd.m4,
28419         m4/dirname.m4, m4/exclude.m4, m4/exitfail.m4, m4/file-type.m4,
28420         m4/filemode.m4, m4/fpending.m4, m4/fsusage.m4, m4/getcwd.m4,
28421         m4/getdate.m4, m4/getline.m4, m4/getpagesize.m4, m4/getpass.m4,
28422         m4/getugroups.m4, m4/group-member.m4, m4/hard-locale.m4, m4/hash.m4,
28423         m4/human.m4, m4/idcache.m4, m4/inttostr.m4, m4/long-options.m4,
28424         m4/makepath.m4, m4/md5.m4, m4/memcasecmp.m4, m4/memcoll.m4,
28425         m4/modechange.m4, m4/mountlist.m4, m4/nanosleep.m4, m4/path-concat.m4,
28426         m4/pathmax.m4, m4/physmem.m4, m4/posixtm.m4, m4/posixver.m4,
28427         m4/quote.m4, m4/quotearg.m4, m4/readtokens.m4, m4/readutmp.m4,
28428         m4/safe-read.m4, m4/safe-write.m4, m4/same.m4, m4/savedir.m4,
28429         m4/settime.m4, m4/sha1.m4, m4/sig2str.m4, m4/strdup.m4, m4/strftime.m4,
28430         m4/strndup.m4, m4/strverscmp.m4, m4/timespec.m4, m4/unlocked-io.m4,
28431         m4/userspec.m4, m4/utimecmp.m4, m4/utimens.m4, m4/xalloc.m4,
28432         m4/xnanosleep.m4, m4/xstrtol.m4, m4/yesno.m4:
28433         Use AC_LIBSOURCES and AC_LIBOBJ to indicate source and object files
28434         for these modules.
28435
28436 2005-03-18  Paul Eggert  <eggert@cs.ucla.edu>
28437
28438         * lib/strftime.c (my_strftime): If the underlying strftime returns 0
28439         (which shouldn't happen), generate nothing instead of returning 0
28440         immediately, so that nstrftime (NULL, ...) doesn't return 0.
28441
28442 2005-03-16  Bruno Haible  <bruno@clisp.org>
28443
28444         * modules/stdint (Makefile.am): Use HAVE_LONG_LONG_64BIT instead of
28445         HAVE_LONGLONG_64BIT.
28446
28447 2005-03-16  Bruno Haible  <bruno@clisp.org>
28448
28449         * m4/stdint.m4 (gl_STDINT_H): Define HAVE_LONG_LONG_64BIT instead of
28450         HAVE_LONGLONG_64BIT.
28451
28452 2005-03-16  Bruno Haible  <bruno@clisp.org>
28453
28454         * lib/stdint_.h: Use HAVE_LONG_LONG_64BIT instead of
28455         HAVE_LONGLONG_64BIT.
28456
28457 2005-03-15  Paul Eggert  <eggert@cs.ucla.edu>
28458
28459         * lib/strftime.c (my_strftime): Prepend space to format so that we can
28460         reliably distinguish strftime failure from empty output on POSIX
28461         hosts.
28462
28463 2005-03-15  Paul Eggert  <eggert@cs.ucla.edu>
28464
28465         * lib/iconvme.c (SIZE_MAX): New macro, if not already defined.
28466         (iconv_string): Don't guess a size-zero buffer, as that might cause
28467         buffer overrun.  Instead, avoid multiplying by MB_LEN_MAX if the
28468         result would be 'too large', where 'too large' is (heuristically)
28469         the square root of SIZE_MAX, divided by MB_LEN_MAX to allay
28470         overflow concerns.  This will prevent some unwanted malloc failures
28471         when the inputs are very large.
28472
28473 2005-03-15  Karl Berry  <karl@gnu.org>
28474
28475         * config/srclist.txt (config.rpath): from gettext.
28476         * config/config.rpath: update.
28477
28478 2005-03-15  Bruno Haible  <bruno@clisp.org>
28479
28480         * lib/regex.c (byte_re_match_2_internal): Rename local variable 'not'
28481         to 'negate'.
28482
28483         * lib/regex.c (byte_re_match_2_internal): Reduce scope of same_str_p
28484         variable.
28485
28486         * lib/regex.c (EXTEND_BUFFER, regcomp): Cast the realloc/malloc
28487         results.
28488
28489 2005-03-14  Simon Josefsson  <jas@extundo.com>
28490
28491         * lib/timegm.h: Use proper prototype CPP guards, reported by Dave Love
28492         <fx@gnu.org>.
28493
28494 2005-03-14  Paul Eggert  <eggert@cs.ucla.edu>
28495
28496         * lib/mktime.c (TYPE_TWOS_COMPLEMENT, TYPE_ONES_COMPLEMENT,
28497         TYPE_SIGNED_MAGNITUDE, TYPE_MINIMUM, TYPE_MAXIMUM): Sync from
28498         intprops.h.
28499         * lib/strtol.c: Likewise.
28500
28501 2005-03-14  Jim Meyering  <jim@meyering.net>
28502
28503         * lib/strftime.c (my_strftime) [HAVE_STRFTIME && ! (_NL_CURRENT
28504         && HAVE_STRUCT_ERA_ENTRY)]: Initialize the first byte of ubuf[]
28505         to be nonzero so that we (and caller) can detect the difference
28506         between a valid zero-length expansion and an error return, even
28507         when the underlying strftime fails before writing anything into
28508         that location.
28509
28510 2005-03-14  Bruno Haible  <bruno@clisp.org>
28511
28512         * m4/lib-link.m4, gettext.m4, nls.m4, po.m4:
28513         Update from GNU gettext 0.14.3.
28514
28515 2005-03-10  Jim Meyering  <jim@meyering.net>
28516
28517         * m4/save-cwd.m4 (gl_SAVE_CWD): Check for fchdir.
28518
28519 2005-03-10  Jim Meyering  <jim@meyering.net>
28520
28521         * lib/save-cwd.c [!HAVE_FCHDIR]: Define open, fchdir, and chdir_long
28522         so that this module works on systems without fchdir.
28523
28524 2005-03-09  Paul Eggert  <eggert@cs.ucla.edu>
28525
28526         Factor int-properties macros into a single file, except for
28527         glibc-related files.
28528         * lib/intprops.h: New file.
28529         * lib/getloadavg.c: Include it instead of limits.h.
28530         (INT_STRLEN_BOUND): Remove.
28531         * lib/human.c: Include intprops.h.
28532         (group_number): Use INT_STRLEN_BOUND instead of rolling it ourself.
28533         * lib/human.h (LONGEST_HUMAN_READABLE): Use 146/485 rather than
28534         302/1000.
28535         * lib/inttostr.h: Include intprops.h instead of limits.h.
28536         (INT_STRLEN_BOUND, INT_BUFSIZE_BOUND): Remove.
28537         * lib/mktime.c (TYPE_IS_INTEGER, TYPE_TWOS_COMPLEMENT): New macros,
28538         for consistency with intprops.h.
28539         (time_t_is_integer, twos_complement_arithmetic): Use them.
28540         * lib/sig2str.h: Include <signal.h>, intprops.h.
28541         (INT_STRLEN_BOUND): Remove.
28542         * lib/strftime.c (TYPE_SIGNED): Remove.
28543         (INT_STRLEN_BOUND): Switch to same implementation as intprops.h.
28544         * lib/strtol.c: Adjust comments to match intprops.h.
28545         * lib/userspec.c: Include intprops.h.
28546         (TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Remove.
28547         * lib/utimecmp.c, xnanosleep.c, xstrtol.c: Likewise.
28548         * lib/utimecmp.c (utimecmp): Use TYPE_IS_INTEGER, TYPE_TWOS_COMPLEMENT
28549         instead of rolling our own expressions.
28550         * lib/xstrtol.c: Include xstrtol.h first, to test interface.
28551
28552         * lib/strftime.c: Include <stdbool.h>.  Use bool where appropriate,
28553         instead of int.
28554         (my_strftime): Do not mishandle years close to INT_MAX, by doing
28555         the right thing even if adding 1900 would overflow.  Similarly
28556         for tm_mon + 1 and tm_yday + 1.
28557         Make %Y always equivalent to %C%y, and similarly for %G and %g.
28558         (DO_NUMBER, DO_NUMBER_SPACEPAD): Set digits to d, not a conditional.
28559         (DO_SIGNED_NUMBER): New macro.
28560         (my_strftime) [HAVE_TZNAME]: Don't dump core if tp->tm_dst > 1.
28561
28562 2005-03-07  Bruno Haible  <bruno@clisp.org>
28563
28564         * m4/mmap-anon.m4 (MAP_FILE, MAP_FAILED): Remove definitions.
28565
28566 2005-03-07  Bruno Haible  <bruno@clisp.org>
28567
28568         * lib/pagealign_alloc.c (MAP_FILE, MAP_FAILED): Define fallbacks.
28569
28570 2005-03-04  Derek R. Price  <derek@ximbiot.com>
28571
28572         * gnulib-tool (func_cp_if_changed, func_mv_if_changed): New functions.
28573         (func_import): Only replace files via --import when they have actually
28574         changed.
28575
28576 2005-03-03  Derek R. Price  <derek@ximbiot.com>
28577
28578         * m4/mmap-anon.m4: New file.
28579         * m4/pagealign_alloc.m4: New file.
28580
28581 2005-03-03  Derek R. Price  <derek@ximbiot.com>
28582             Bruno Haible  <bruno@clisp.org>
28583
28584         * modules/pagealign_alloc: New file.
28585         * MODULES.html.sh (Memory management functions): Add pagealign_alloc.
28586
28587 2005-03-03  Derek R. Price  <derek@ximbiot.com>
28588             Bruno Haible  <bruno@clisp.org>
28589
28590         * lib/pagealign_alloc.h: New file.
28591         * lib/pagealign_alloc.c: New file.
28592
28593 2005-03-03  Bruno Haible  <bruno@clisp.org>
28594
28595         * m4/inttypes.m4, isc-posix.m4, once-only.m4:
28596         Use an all-permissive copyright notice, recommended by RMS.
28597
28598 2005-03-02  Bruno Haible  <bruno@clisp.org>
28599
28600         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Undo the replacement here. Because
28601         of AIX, the replacement has to be done only after <string.h> is
28602         included, therefore not in config.h. stpncpy.h does the replacement,
28603         and stpncpy.c uses it.
28604
28605 2005-03-02  Bruno Haible  <bruno@clisp.org>
28606
28607         * lib/stpncpy.h (stpncpy): Define as a macro without arguments, so that
28608         stpncpy.c uses it.
28609
28610 2005-03-01  Paul Eggert  <eggert@cs.ucla.edu>
28611
28612         Remove workaround for bug in Linux kernel 2.6.8 or thereabouts.
28613         The workaround isn't strictly needed for POSIX conformance, and
28614         it's too much of a pain to configure and maintain.  We'll ask
28615         people to fix their kernels instead.
28616         * lib/xnanosleep.c: Don't include gethrxtime.h or xtime.h.
28617         (NANOSLEEP_BUG_WORKAROUND): Remove.
28618         (xnanosleep): Remove the workaround.
28619
28620 2005-03-01  Paul Eggert  <eggert@cs.ucla.edu>
28621
28622         * modules/gettime (Makefile.am): Remove lib_SOURCES line.
28623         Reported by Derek Price.
28624         (Include): Add "timespec.h".
28625
28626         * modules/xnanosleep (Depends-on): Remove gethrxtime.
28627
28628 2005-03-01  Paul Eggert  <eggert@cs.ucla.edu>
28629
28630         * m4/xnanosleep.m4 (gl_XNANOSLEEP): Remove configuration attempting
28631         to detect nanosleep bug.
28632
28633 2005-03-01  Bruno Haible  <bruno@clisp.org>
28634
28635         * lib/vasnprintf.c (EOVERFLOW): Define to a fallback if needed.
28636
28637 2005-02-26  Paul Eggert  <eggert@cs.ucla.edu>
28638
28639         * modules/gethrxtime: New file.
28640         * modules/xnanosleep (Files): Add m4/xnanosleep.m4.
28641         (Depends-on): Add gethrxtime.
28642         (configure.ac): Add gl_XNANOSLEEP.
28643         (Makefile.am): Remove lib_SOURCES line.
28644
28645 2005-02-25  Paul Eggert  <eggert@cs.ucla.edu>
28646
28647         * m4/gethrxtime.m4, m4/xnanosleep.m4: New files.
28648         * m4/gettime.m4 (gl_GETTIME): Check for nanotime.
28649
28650 2005-02-25  Paul Eggert  <eggert@cs.ucla.edu>
28651
28652         * lib/gethrxtime.h, lib/gethrxtime.c, lib/xtime.h: New files.
28653         * lib/timespec.h (gettime): Return void, since it always
28654         succeeds now.  All uses changed.
28655         * lib/gettime.c (gettime) Likewise.
28656         [HAVE_NANOTIME]: Prefer nanotime.
28657         Assume gettimeofday succeeds, as POSIX requires.
28658         Assime time () succeeds, since other code already does.
28659         * lib/xnanosleep.c: Include xtime.h and gethrxtime.h, not xalloc.h.
28660         (timespec_subtract): Remove.
28661         (NANOSLEEP_BUG_WORKAROUND): New constant.
28662         (xnanosleep): Use gethrxtime rather than gettime; this simplifies
28663         things considerably.  Use it only on GNU/Linux hosts, since the
28664         workaround shouldn't be needed elsewhere.
28665
28666 2005-02-24  Bruno Haible  <bruno@clisp.org>
28667
28668         * modules/gettext (Files): Add m4/glibc2.m4.
28669
28670 2005-02-24  Bruno Haible  <bruno@clisp.org>
28671
28672         * m4/gettext.m4, intdiv0.m4, intmax.m4, inttypes-pri.m4, lcmessage.m4:
28673         * m4/lib-link.m4, lib-prefix.m4, nls.m4, po.m4, printf-posix.m4:
28674         * m4/progtest.m4:
28675         Update from GNU gettext 0.14.2.
28676         * m4/glibc2.m4: New file, from GNU gettext 0.14.2.
28677
28678 2005-02-24  Bruno Haible  <bruno@clisp.org>
28679
28680         * lib/localcharset.c: Update from GNU gettext 0.14.2.
28681         * lib/config.charset: Update from GNU gettext 0.14.2.
28682
28683 2005-02-24  Bruno Haible  <bruno@clisp.org>
28684
28685         * lib/gettext.h: Update from GNU gettext 0.14.2.
28686
28687 2005-02-23  Simon Josefsson  <jas@extundo.com>
28688
28689         * m4/iconvme.m4: New file.
28690
28691 2005-02-23  Jim Meyering  <jim@meyering.net>
28692
28693         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Revert yesteday's
28694         change.
28695         Thanks to Bruno Haible for catching it.
28696
28697 2005-02-22  Simon Josefsson  <jas@extundo.com>
28698
28699         * modules/iconvme: New file.
28700
28701         * MODULES.html.sh: Add iconvme.
28702
28703 2005-02-22  Simon Josefsson  <jas@extundo.com>
28704
28705         * lib/iconvme.h, lib/iconvme.c: New files, from libc.
28706
28707 2005-02-22  Simon Josefsson  <jas@extundo.com>
28708
28709         * config/srclist.txt: Sync iconvme.h, iconvme.c from libc.
28710
28711 2005-02-22  Jim Meyering  <jim@meyering.net>
28712
28713         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Fix typo:
28714         s/ifndef/ifdef/.
28715
28716 2005-02-20  Neil Conway  <neilc@samurai.com>
28717
28718         * lib/xgethostname.c (xgethostname): Check for ENOMEM, which is
28719         returned by OSX/Darwin if the specified buffer is not large
28720         enough for the hostname.
28721
28722 2005-02-03  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
28723
28724         * lib/argp-help.c (__argp_help): Create a fake struct argp_state and
28725         pass it to _help, otherwise the latter coredumps trying to
28726         dereference state.root_argp.
28727
28728 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
28729
28730         * modules/chdir-long (Depends-on): Add memrchr.
28731         * modules/memrchr (Files): Add lib/memrchr.h.
28732         (Include): "memrchr.h".
28733
28734 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
28735
28736         * m4/memrchr.m4 (gl_FUNC_MEMRCHR): Add AC_LIBSOURCES, for memrchr.h.
28737
28738 2005-02-03  Paul Eggert  <eggert@cs.ucla.edu>
28739
28740         * lib/memrchr.h: New file.
28741         * lib/chdir-long.c: Include it.
28742         * lib/memrchr.c [!defined _LIBC]: Include it rather than <string.h>
28743         Don't bother including stddef.h.
28744
28745 2005-02-01  Paul Eggert  <eggert@cs.ucla.edu>
28746
28747         * lib/mountlist.h (MOUNTLIST_H_): New macro, to protect against double
28748         inclusion.
28749         Include <sys/types.h>, for dev_t.
28750         (ME_DUMMY, ME_REMOTE): Move from here....
28751         * lib/mountlist.c (ME_DUMMY, ME_REMOTE): To here.
28752         (ME_DUMMY): Count "subfs" as a dummy.  Problem reported by
28753         Dmitry V. Levin.
28754         Include mountlist.h first, to test the interface.
28755
28756 2005-01-29  Bruno Haible  <bruno@clisp.org>
28757
28758         * lib/progname.c (program_name): Initialize.
28759         Needed when linking statically on MacOS X.
28760
28761 2005-01-28  Paul Eggert  <eggert@cs.ucla.edu>
28762
28763         Sync from coreutils.
28764         * modules/getloadavg (Files): Remove m4/getloadavg.m4.
28765         (Depends-on): Add c-strtod.
28766         (configure.ac): Replace gl_FUNC_GETLOADAVG with AC_FUNC_GETLOADAVG.
28767
28768 2005-01-28  Paul Eggert  <eggert@cs.ucla.edu>
28769
28770         Sync from coreutils.
28771         * m4/getloadavg.m4, glibc.m4, search-libs.m4: Remove.
28772
28773         Remove files that are specific to coreutils.
28774         * m4/check-decl.m4, jm-macros.m4, lib-check.m4, prereq.m4: Remove.
28775
28776 2005-01-28  Bruno Haible  <bruno@clisp.org>
28777
28778         * modules/javacomp: New file.
28779         * MODULES.html.sh (Java): Add javacomp.
28780
28781 2005-01-28  Bruno Haible  <bruno@clisp.org>
28782
28783         * m4/javacomp.m4: New file, from GNU gettext.
28784
28785 2005-01-28  Bruno Haible  <bruno@clisp.org>
28786
28787         * lib/javacomp.sh.in: New file, from GNU gettext.
28788         * lib/javacomp.h: New file, from GNU gettext.
28789         * lib/javacomp.c: New file, from GNU gettext.
28790
28791 2005-01-26  Simon Josefsson  <jas@extundo.com>
28792
28793         * lib/gai_strerror.c: Use GPL in header.
28794
28795 2005-01-26  Bruno Haible  <bruno@clisp.org>
28796
28797         * modules/javaexec: New file.
28798         * MODULES.html.sh (Java): Add javaexec.
28799
28800 2005-01-26  Bruno Haible  <bruno@clisp.org>
28801
28802         * m4/javaexec.m4: New file, from GNU gettext.
28803
28804 2005-01-26  Bruno Haible  <bruno@clisp.org>
28805
28806         * lib/javaexec.sh.in: New file, from GNU gettext.
28807         * lib/javaexec.h: New file, from GNU gettext.
28808         * lib/javaexec.c: New file, from GNU gettext.
28809
28810 2005-01-24  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
28811
28812         * modules/lchown (Depends-on): Remove lchown.h
28813
28814 2005-01-24  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
28815
28816         * m4/sysexits.m4 (gl_SYSEXITS): Reverted logic. SYSEXITS_H
28817         must be defined if the header file was not found, in order
28818         to provide a replacement. Reported by Todd Vierling <tv@duh.org>
28819
28820 2005-01-24  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
28821
28822         * lib/argp-help.c (hol_entry_help): Avoid using non-constant
28823         initializers for struct pentry_state.
28824         (__argp_error): Check return value of __asprintf
28825         (__argp_failure): Translate error message
28826
28827         * lib/argp-parse.c: Removed braces around the expansion of N_()
28828
28829 2005-01-23  Paul Eggert  <eggert@cs.ucla.edu>
28830
28831         * m4/acl.m4, afs.m4, alloca.m4, argp.m4, assert.m4, atexit.m4,
28832         backupfile.m4, base64.m4, bison.m4, c-bs-a.m4, c-stack.m4,
28833         c-strtod.m4, calloc.m4, canon-host.m4, canonicalize.m4,
28834         clock_time.m4, cloexec.m4, closeout.m4, d-ino.m4, d-type.m4,
28835         dirfd.m4, dirname.m4, dos.m4, dup2.m4, error.m4, euidaccess.m4,
28836         exclude.m4, exitfail.m4, extensions.m4, fcntl-safer.m4,
28837         file-type.m4, fileblocks.m4, filemode.m4, fnmatch.m4, fpending.m4,
28838         free.m4, fstypename.m4, fsusage.m4, ftruncate.m4, getaddrinfo.m4,
28839         getcwd-path-max.m4, getcwd.m4, getdate.m4, getdomainname.m4,
28840         getgroups.m4, gethostname.m4, getline.m4, getndelim2.m4,
28841         getnline.m4, getopt.m4, getpagesize.m4, getpass.m4, getsubopt.m4,
28842         gettime.m4, gettimeofday.m4, getugroups.m4, getusershell.m4,
28843         group-member.m4, hard-locale.m4, hash.m4, host-os.m4, human.m4,
28844         idcache.m4, inttostr.m4, isdir.m4, jm-winsz1.m4, jm-winsz2.m4,
28845         link-follow.m4, long-options.m4, ls-mntd-fs.m4, lstat.m4,
28846         makepath.m4, mathl.m4, md5.m4, memcasecmp.m4, memchr.m4,
28847         memcmp.m4, memcoll.m4, memcpy.m4, memmem.m4, memmove.m4,
28848         memrchr.m4, memset.m4, mkdir-slash.m4, mkstemp.m4, mktime.m4,
28849         modechange.m4, mountlist.m4, nanosleep.m4, obstack.m4,
28850         path-concat.m4, pathmax.m4, perl.m4, physmem.m4, poll.m4,
28851         posixtm.m4, posixver.m4, putenv.m4, quote.m4, quotearg.m4,
28852         readdir.m4, readtokens.m4, readutmp.m4, regex.m4, rename.m4,
28853         restrict.m4, rmdir-errno.m4, rmdir.m4, rpmatch.m4, same.m4,
28854         savedir.m4, settime.m4, sha1.m4, sig2str.m4, snprintf.m4,
28855         sockpfaf.m4, st_dm_mode.m4, st_mtim.m4, stat.m4, stdint.m4,
28856         stdio-safer.m4, strchrnul.m4, strdup.m4, strerror.m4,
28857         strerror_r.m4, strftime.m4, strndup.m4, strnlen.m4, strsep.m4,
28858         strtod.m4, strtoimax.m4, strtok_r.m4, strtol.m4, strtoll.m4,
28859         strtoul.m4, strtoull.m4, strtoumax.m4, strverscmp.m4, sysexits.m4,
28860         time_r.m4, timegm.m4, timespec.m4, tm_gmtoff.m4, tzset.m4,
28861         uint32_t.m4, uintptr_t.m4, unistd-safer.m4, unlink-busy.m4,
28862         unlocked-io.m4, uptime.m4, userspec.m4, utimbuf.m4, utime.m4,
28863         utimecmp.m4, utimens.m4, utimes-null.m4, vsnprintf.m4, xalloc.m4,
28864         xgetcwd.m4, xreadlink.m4, xstrndup.m4, xstrtod.m4, xstrtoimax.m4,
28865         xstrtol.m4, xstrtoumax.m4, yesno.m4:
28866         Use an all-permissive copyright notice, recommended by RMS.
28867
28868 2005-01-21  Paul Eggert  <eggert@cs.ucla.edu>
28869
28870         * modules/chdir-long (Depends-on): Remove mempcpy.
28871
28872 2005-01-21  Jim Meyering  <jim@meyering.net>
28873
28874         * lib/openat.h (AT_SYMLINK_NOFOLLOW): Define to 4096, so it's the
28875         same value as for Solaris 9.
28876
28877         * lib/chdir-long.c (chdir_long): Rewrite to remove limitation on
28878         component length.  This included changing the parameter to be
28879         of type `char *' rather than `char const *'.
28880         * lib/chdir-long.h (chdir_long): Update prototype.
28881
28882         * lib/openat.c (fdopendir, fstatat): New functions.
28883         * lib/openat.h: Include headers required for use of DIR and struct
28884         stat.
28885         [AT_SYMLINK_NOFOLLOW]: Define.
28886         (fdopendir, fstatat): Add prototypes.
28887
28888 2005-01-21  Bruno Haible  <bruno@clisp.org>
28889
28890         * modules/classpath: New file.
28891         * MODULES.html.sh (Java): Add classpath.
28892
28893 2005-01-21  Bruno Haible  <bruno@clisp.org>
28894
28895         * lib/classpath.h: New file, from GNU gettext.
28896         * lib/classpath.c: New file, from GNU gettext.
28897
28898 2005-01-20  Simon Josefsson  <jas@extundo.com>
28899
28900         * modules/version-etc-fsf: New file.
28901
28902 2005-01-20  Simon Josefsson  <jas@extundo.com>
28903
28904         * lib/version-etc-fsf.c: New file, with version_etc_copyright.
28905         * lib/version-etc.c: Remove version_etc_copyright.
28906         * lib/version-etc.h (version_etc_copyright): Use [] instead of * in
28907         prototype, suggested by Paul Eggert <eggert@CS.UCLA.EDU>.
28908
28909 2005-01-20  Simon Josefsson  <jas@extundo.com>
28910
28911         * lib/base64.h (isbase64): Add.
28912
28913         * lib/base64.c (isb64): Rename to isbase64, use to_uchar instead of
28914         using a unsigned prototype, don't inline.
28915         (base64_decode): Use it.
28916
28917 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
28918
28919         * m4/save-cwd.m4 (gl_SAVE_CWD): Remove check for fcntl; we now assume
28920         it.
28921
28922 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
28923
28924         * lib/save-cwd.c (save_cwd): Remove code to support the case
28925         where fchdir is missing or flaky.
28926
28927 2005-01-20  Paul Eggert  <eggert@cs.ucla.edu>
28928
28929         * MODULES.html.sh (Command-line arguments): Add version-etc-fsf.
28930
28931 2005-01-19  Paul Eggert  <eggert@cs.ucla.edu>
28932
28933         * modules/mempcpy (Makefile.am): Remove mention of mempcpy.h;
28934         AC_LIBSOURCES now does this.
28935         * MODULES.html.sh (Sizes of integer types <limits.h>): New element,
28936         with new ullong_max module.
28937
28938 2005-01-19  Bruno Haible  <bruno@clisp.org>
28939
28940         * modules/sh-quote: New file.
28941         * MODULES.html.sh (Executing programs): Add sh-quote.
28942
28943 2005-01-19  Bruno Haible  <bruno@clisp.org>
28944
28945         * lib/sh-quote.h: New file, from GNU gettext.
28946         * lib/sh-quote.c: New file, from GNU gettext.
28947
28948 2005-01-18  Paul Eggert  <eggert@cs.ucla.edu>
28949
28950         Merge from coreutils.
28951         * m4/ullong_max.m4: New file.
28952         * m4/jm-macros.m4 (gl_MACROS): Require gl_ULLONG_MAX.
28953         (gl_MACROS): Assume localeconv exists.
28954
28955 2005-01-18  Paul Eggert  <eggert@cs.ucla.edu>
28956
28957         Merge changes from coreutils, as described below in several
28958         changelogs dated today.
28959
28960         * lib/save-cwd.c: Include "save-cwd.h" before other include files.
28961         (O_DIRECTORY): Remove; not needed here, since "." must be
28962         a directory.  All uses removed.
28963         (save_cwd): Use __sgi || __sun, not sun || __sun.  __sun is
28964         universal on Suns, and we also need to test for IRIX.
28965         Revamp code to use 'if' rather than '#if'.
28966         Avoid unnecessary comparison of cwd->desc to 0.
28967
28968         * lib/utimens.c (futimens): Robustify the previous patch, by checking
28969         for known valid error numbers rather than observed invalid ones.
28970
28971 2005-01-18  Paul Eggert  <eggert@cs.ucla.edu>
28972
28973         * modules/ullong_max: New file.
28974
28975         * modules/chdir-long, modules/openat: New files.
28976         * modules/save-cwd (Depends-on): Depend on chdir-long.
28977         (Makefile.am): Remove lib_SOURCES; now handled by AC_LIBSOURCES.
28978
28979 2005-01-18  Jim Meyering  <jim@meyering.net>
28980
28981         Merge from coreutils.
28982         * m4/chdir-long.m4, m4/openat.m4: New files.
28983         * m4/save-cwd.m4 (gl_SAVE_CWD): Add AC_LIBSOURCES for save-cwd.c,
28984         save-cwd.h.  Add AC_LIBOBJ for save-cwd.
28985         * m4/chown.m4 (gl_FUNC_CHOWN): When cross-compiling, assume that chown
28986         is sane and DOES follow symlinks.  Besides, testing 20 different
28987         systems found no broken chown implementations.
28988         Prompted by a change in rsync's copy of this macro.
28989         * m4/jm-macros.m4 (gl_MACROS): Require gl_FUNC_CHDIR_LONG.
28990
28991         * m4/lchown.m4 (gl_FUNC_LCHOWN): Use AC_LIBSOURCES.
28992
28993         * m4/utimes.m4: Work around tests/touch/empty-file failure on a system
28994         (sparc64, Linux-2.4.28, glibc-2.3.3) that didn't honor utimes'
28995         NULL-means-set-to-current-time semantics.
28996         Remove temporary file immediately, rather than waiting
28997         for configure's at-exit trap code to do it.
28998
28999 2005-01-18  Jim Meyering  <jim@meyering.net>
29000
29001         * lib/version-etc.c (version_etc_copyright): Update copyright date.
29002
29003         * lib/utimens.c (futimens): Account for the fact that futimes
29004         can also fail with errno == ENOSYS or errno == ENOENT.
29005         Patch from Dmitry V. Levin.
29006
29007         Change the name of the robust chdir function from chdir to chdir_long.
29008         * lib/save-cwd.c: Include chdir-long.h rather than chdir.h.
29009         (restore_cwd): Use chdir_long, not chdir.
29010         * lib/chdir-long.c: Renamed from chdir.c.
29011         * lib/chdir-long.h: Renamed from chdir.h.
29012         [!defined PATH_MAX]: Define chdir_long to chdir on systems like the
29013         Hurd.
29014
29015 2005-01-18  Bruno Haible  <bruno@clisp.org>
29016
29017         * m4/allocsa.m4, m4/codeset.m4, m4/copy-file.m4, m4/eaccess.m4:
29018         * m4/eealloc.m4, m4/eoverflow.m4, m4/execute.m4, m4/fatal-signal.m4:
29019         * m4/findprog.m4, m4/glibc21.m4, m4/iconv.m4, m4/intmax_t.m4:
29020         * m4/inttypes_h.m4, m4/lib-ld.m4, m4/lib-link.m4, m4/lib-prefix.m4:
29021         * m4/linebreak.m4, m4/localcharset.m4, m4/longdouble.m4:
29022         * m4/longlong.m4, m4/mbrtowc.m4, m4/mbstate_t.m4, m4/mbswidth.m4:
29023         * m4/mkdtemp.m4, m4/pipe.m4, m4/readlink.m4, m4/safe-read.m4:
29024         * m4/safe-write.m4, m4/setenv.m4, m4/sig_atomic_t.m4:
29025         * m4/signalblocking.m4, m4/signed.m4, m4/size_max.m4, m4/ssize_t.m4:
29026         * m4/stdbool.m4, m4/stdint_h.m4, m4/stpcpy.m4, m4/stpncpy.m4:
29027         * m4/strcase.m4, m4/strcspn.m4, m4/strpbrk.m4, m4/strstr.m4:
29028         * m4/ucs4-utf.m4, m4/uintmax_t.m4, m4/ulonglong.m4, m4/unicodeio.m4:
29029         * m4/utf-ucs4.m4, m4/vasnprintf.m4, m4/vasprintf.m4:
29030         * m4/wait-process.m4, m4/wchar_t.m4, m4/wint_t.m4, m4/xsize.m4:
29031         Use an all-permissive copyright notice, recommended by RMS.
29032
29033 2005-01-18  Bob Proulx  <bob@proulx.com>
29034
29035         * lib/obstack.c [DEFAULT_ALIGNMENT]: Use an intermediate type to
29036         simplify offsetof() macro construct to avoid compile failure with
29037         native HP-UX 11.0 ANSI C compiler.
29038
29039 2005-01-17  Bruno Haible  <bruno@clisp.org>
29040
29041         * lib/stpncpy.c: Remove HAVE_STPNCPY and gnu_stpncpy renaming,
29042         redundant because stpncpy.m4 takes care of it.
29043
29044 2005-01-17  Bruno Haible  <bruno@clisp.org>
29045
29046         * lib/progreloc.c: Include xalloc.h instead of xmalloc.h.
29047
29048 2005-01-17  Bruno Haible  <bruno@clisp.org>
29049
29050         * lib/progreloc.c (xstrdup): Define as strdup if no xmalloc should be
29051         used.
29052
29053 2005-01-17  Bruno Haible  <bruno@clisp.org>
29054
29055         * lib/fwriteerror.h (fwriteerror): Change specification to include
29056         fclose.
29057         * lib/fwriteerror.c: Include <stdbool.h>.
29058         (fwriteerror): At the end, close the file stream. Record whether
29059         stdout was already closed.
29060
29061 2005-01-17  Bruno Haible  <bruno@clisp.org>
29062
29063         * lib/execute.c (environ): Declare if needed.
29064         * lib/pipe.c (environ): Likewise.
29065         Reported by Michael Schloh von Bennewitz <michael.schloh@cw.com>.
29066
29067 2005-01-11  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
29068
29069         * modules/argp: Depend on vsnprintf
29070
29071 2005-01-10  Jim Meyering  <jim@meyering.net>
29072
29073         * modules/closeout (Depends-on): Add atexit.
29074
29075 2005-01-06  Bruno Haible  <bruno@clisp.org>
29076
29077         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Rename stpncpy to gnu_stpncpy here.
29078
29079 2005-01-04  Paul Eggert  <eggert@cs.ucla.edu>
29080
29081         * lib/human.c (SIZE_MAX, UINTMAX_MAX): Move these conditional
29082         definitions to be after all include files, to avoid collisions.
29083         Problem reported by Bob Proulx.
29084
29085 2005-01-04  Jim Meyering  <jim@meyering.net>
29086
29087         Changes imported from coreutils.
29088         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Rather than using "conftestXXXXXX"
29089         as the mkstemp template, use a temporary directory and an
29090         8.3-friendly template to avoid trouble on systems like DJGPP.
29091         Reported by Juan M. Guerrero via Stepan Kasal.
29092         * m4/(gl_FUNC_MKSTEMP): Include <unistd.h> for the declaration of
29093         close. Remove the temporary directory right away, rather than waiting
29094         for configure's at-exit trap code to do it.
29095         Suggestion from Stepan Kasal.
29096
29097 2005-01-01  Simon Josefsson  <jas@extundo.com>
29098
29099         * gnulib-tool: Print #include directives when --import'ing.
29100
29101 2004-12-28  Simon Josefsson  <jas@extundo.com>
29102
29103         * tests/test-base64.c: Include required header files.  Remove
29104         unused variables.
29105
29106 2004-12-28  Paul Eggert  <eggert@cs.ucla.edu>
29107
29108         * modules/error (Depends-on): Remove gettext.
29109
29110 2004-12-28  Paul Eggert  <eggert@cs.ucla.edu>
29111
29112         * lib/error.c [!_LIBC && !ENABLE_NLS]: Do not include "gettext.h";
29113         not needed.  This removes a dependency on the gettext module.
29114         [defined _LIBC]: Do not include <libintl.h>; not needed.
29115
29116 2004-12-24  Paul Eggert  <eggert@cs.ucla.edu>
29117
29118         * m4/c-strtod.m4 (gl_C99_STRTOLD): New macro.
29119         (gl_C_STRTOD): Use it instead of AC_CHECK_DECLS_ONCE(strtold).
29120
29121 2004-12-24  Paul Eggert  <eggert@cs.ucla.edu>
29122
29123         * lib/c-strtod.c (STRTOD): Depend on HAVE_C99_STRTOLD, not
29124         HAVE_DECL_STRTOLD.
29125
29126 2004-12-23  Paul Eggert  <eggert@cs.ucla.edu>
29127
29128         * modules/getdate (Depends-on): Remove alloca-opt.
29129
29130 2004-12-23  Paul Eggert  <eggert@cs.ucla.edu>
29131
29132         * m4/getdate.m4 (gl_GETDATE): Remove AC_FUNC_ALLOCA.
29133
29134 2004-12-23  Paul Eggert  <eggert@cs.ucla.edu>
29135
29136         * lib/argp-parse.c: Include <stddef.h>.
29137         (alignof, alignto): New macros.
29138         (parser_init): Don't assume that void * is aligned sufficiently
29139         for struct option.
29140
29141         * lib/getdate.y (YYSTACK_USE_ALLOCA): Define to 0, since there's no
29142         need to extend the stack.
29143         (YYINITDEPTH): New macro, so that the initial stack isn't overly
29144         large.
29145
29146 2004-12-22  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
29147
29148         * lib/argp-parse.c (parser_init): Avoid arithmetics on void pointers.
29149
29150 2004-12-19  Paul Eggert  <eggert@cs.ucla.edu>
29151
29152         * modules/regex (lib_SOURCES): Remove regex.c, undoing previous
29153         (2004-10-24) change.  Apparently this was a false alarm.
29154
29155         * modules/getdate: Depend on alloca-opt, not alloca.
29156
29157 2004-12-19  Paul Eggert  <eggert@cs.ucla.edu>
29158
29159         * lib/alloca_.h: Conditionalize on _GNULIB_ALLOCA_H, not _ALLOCA_H.
29160         Remove now-obsolete comment about AIX.
29161         * lib/getdate.y: Include <alloca.h> only if HAVE_ALLOCA.
29162         (YYSTACK_USE_ALLOCA): Define to 0 if !HAVE_ALLOCA.
29163         (YYMAXDEPTH): New macro.
29164
29165 2004-12-18  Simon Josefsson  <jas@extundo.com>
29166
29167         * modules/alloca: Depend on alloca-opt, instead of duplicating it.
29168
29169 2004-12-18  Bruno Haible  <bruno@clisp.org>
29170
29171         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Also test for sigaction.
29172
29173 2004-12-18  Bruno Haible  <bruno@clisp.org>
29174
29175         * lib/fatal-signal.c (fatal_signals): Make non-const.
29176         (init_fatal_signals): New function.
29177         (uninstall_handlers, install_handlers): Ignore signals that were set to
29178         SIG_IGN.
29179         (at_fatal_signal): Call init_fatal_signals.
29180         (init_fatal_signal_set): Likewise. Ignore signals that were set to
29181         SIG_IGN.
29182         Reported by Paul Eggert.
29183
29184 2004-12-18  Bruno Haible  <bruno@clisp.org>
29185
29186         * doc/alloca.texi: New file.
29187         * doc/alloca-opt.texi: New file.
29188
29189 2004-12-17  Jim Meyering  <jim@meyering.net>
29190
29191         * config/install-sh: Use `(exit N); exit N', not `(exit N); exit'.
29192         Otherwise, install-sh could exit with improper exit status when
29193         exiting via a trapped interrupt.  Thanks to a report from Bob Proulx.
29194
29195 2004-12-16  Simon Josefsson  <jas@extundo.com>
29196
29197         * tests/test-base64.c: Add license.
29198
29199 2004-12-15  Stepan Kasal  <address@hidden>
29200
29201         * gnulib-tool (func_emit_lib_Makefile_am): Shorten a long sed command.
29202
29203 2004-12-12  Paul Eggert  <eggert@cs.ucla.edu>
29204
29205         * modules/getcwd (Files): Add m4/d-ino.m4.
29206         Suggested by Mark D. Baushke.
29207
29208 2004-12-08  Paul Eggert  <eggert@cs.ucla.edu>
29209
29210         * lib/getdate.y (textint): New member "negative".
29211         (time_zone_hhmm): New function.
29212         Expect 14 shift-reduce conflicts, not 13.
29213         (o_colon_minutes): New rule.
29214         (time, zone): Use it to add support for +HH:MM, UTC+HH:MM.
29215         (yylex): Set the "negative" member of signed numbers.
29216
29217 2004-12-08  Paul Eggert  <eggert@cs.ucla.edu>
29218
29219         * doc/getdate.texi (Time of day items, Time zone items):
29220         Describe new formats +00:00, UTC+00:00.
29221
29222 2004-12-07  Paul Eggert  <eggert@cs.ucla.edu>
29223
29224         * m4/ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): Fix typo in previous change:
29225         spurious "-l"s.  Problem reported by Stepan Kasal.
29226
29227 2004-12-06  Paul Eggert  <eggert@cs.ucla.edu>
29228
29229         * m4/ls-mntd-fs.m4 (AC_FUNC_GETMNTENT): New macro, to work around bug
29230         in Autoconf 2.59.  Problem reported by Mark D. Baushke.
29231
29232 2004-12-04  Simon Josefsson  <jas@extundo.com>
29233
29234         * modules/getaddrinfo (License): Add LGPL, reported by Yoann
29235         Vandoorselaere <yoann@prelude-ids.org>.
29236
29237 2004-12-04  Paul Eggert  <eggert@cs.ucla.edu>
29238
29239         Changes imported from coreutils.
29240         * m4/hard-locale.m4 (gl_HARD_LOCALE): Assume locale.h and setlocale
29241         exist.
29242         * m4/human.m4 (gl_HUMAN): Assume locale.h and localeconv exist.
29243
29244 2004-12-04  Paul Eggert  <eggert@cs.ucla.edu>
29245
29246         Changes imported from coreutils.
29247         * lib/hard-locale.c: Assume <locale.h> exists.
29248         Include "strdup.h".
29249         (GLIBC_VERSION): New macro.
29250         (hard_locale): Assume setlocale exists.
29251         Rewrite to avoid #ifdef.
29252         Use strdup rather than malloc + strcpy.
29253         * lib/human.c: Assume <locale.h> exists.
29254         (human_readable): Assume localeconv exists.
29255
29256 2004-12-04  Paul Eggert  <eggert@cs.ucla.edu>
29257
29258         * modules/hard-locale (Depends-on): Add strdup.
29259
29260 2004-12-01  Jakub Jelinek  <jakub@redhat.com>
29261
29262         * lib/mktime.c (__mktime_internal): If SEC_REQUESTED != SEC,
29263         convert T2, not T.  (Imported from libc.)
29264
29265 2004-11-30  Simon Josefsson  <jas@extundo.com>
29266
29267         * modules/restrict (License): Change to LGPL.
29268
29269 2004-11-30  Simon Josefsson  <jas@extundo.com>
29270
29271         * m4/restrict.m4: Add copyright and copying conditions.
29272
29273 2004-11-30  Simon Josefsson  <jas@extundo.com>
29274
29275         * m4/base64.m4: New file.
29276
29277 2004-11-30  Simon Josefsson  <jas@extundo.com>
29278
29279         * MODULES.html.sh (Extra functions based on ANSI C 89): Add
29280         base64.
29281
29282         * tests/test-base64.c: New file.
29283
29284         * modules/base64: New file.
29285
29286 2004-11-30  Paul Eggert  <eggert@cs.ucla.edu>
29287
29288         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX):
29289         Define HAVE_PARTLY_WORKING_GETCWD if getcwd is partly working.
29290
29291         * m4/readutmp.m4 (gl_READUTMP): Don't check for sys/param.h.
29292
29293 2004-11-30  Paul Eggert  <eggert@cs.ucla.edu>
29294
29295         * lib/getcwd.c (is_ENAMETOOLONG): New macro.
29296         (__getcwd.c): Don't restore errno; glibc doesn't.
29297         [HAVE_PARTLY_WORKING_GETCWD && !defined AT_FDCWD]: Try system getcwd
29298         first, falling back to our code only if its results look suspicious.
29299         Ensure that the resulting buffer is only as large as necessary.
29300
29301         * lib/readutmp.c: Include readutmp.h first.
29302         Include <errno.h>, since readutmp.h no longer does that.
29303         * lib/readutmp.h: Don't include <errno.h>,
29304         <sys/param.h>, <time.h>; not needed to establish interface.
29305         (errno): Remove decl.
29306         (HAVE_STRUCT_XTMP_UT_TYPE): Remove; no longer needed.
29307         (UT_TYPE_EQ, UT_TYPE_NOT_DEFINED, UT_TYPE_BOOT_TIME,
29308         UT_TYPE_USER_PROCESS, IS_USER_PROCESS): New macros.
29309
29310 2004-11-28  Simon Josefsson  <jas@extundo.com>
29311
29312         * lib/base64.h, base64.c: New file.
29313
29314 2004-11-27  Paul Eggert  <eggert@cs.ucla.edu>
29315
29316         * lib/getcwd.h: New file, which I forgot to check in on 2004-11-25.
29317
29318 2004-11-26  Paul Eggert  <eggert@cs.ucla.edu>
29319
29320         * modules/getcwd (Files): Add lib/getcwd.h, m4/getcwd.m4.
29321         (Depends-on): Remove pathmax, same.  Add mempcpy.
29322         (configure.ac): GL_FUNC_GETCWD_PATH_MAX -> gl_FUNC_GETCWD.
29323         (Makefile.am): Append getcwd.h to lib_SOURCES.
29324         (Include): Add getcwd.h.
29325         (Maintainer): Change from Jim Meyering to "all, glibc",
29326         since getdate now uses intended-for-glibc code.
29327         * modules/xgetcwd (Files): Remove m4/getcwd.m4.
29328         (Depends-on): Depend on getcwd.  Do not depend on pathmax.
29329
29330 2004-11-25  Paul Eggert  <eggert@cs.ucla.edu>
29331
29332         Fix problems reported by Scott S. Tinsley for HP-UX 11.11 using
29333         HP's ANSI C compiler.
29334         * lib/fsusage.c (statvfs) [HAVE_SYS_STATVFS_H]: Remove decl.
29335         Declaring int functions causes warnings on some modern systems and
29336         shouldn't be needed to compile on ancient ones.
29337         * lib/same.c (MIN) [defined MIN]: Don't define, since it's already
29338         defined.
29339
29340         * lib/getcwd.c: Replace by a copy of glibc/sysdeps/posix/getcwd.c, but
29341         with the following changes.
29342         (__set_errno): Parenthesize properly.
29343         Include <stdbool.h>.
29344         (MIN, MAX, MATCHING_INO): New macros.
29345         (__getcwd): Define with prototype, not K&R form.
29346         Use heuristics to allocate default buffer on stack if possible.
29347         If AT_FDCWD is defined, use openat and fstatat to avoid O(N**2)
29348         behavior, and to avoid the PATH_MAX limit when computing
29349         ../../../../...
29350         Use MATCHING_INO to compare inode number to file.
29351         Check for arithmetic overflow in size calculations.
29352         Fix bug in reallocation of dot array that caused getcwd to fail
29353         on directories nested deeper than 75.
29354         Be more careful about saving errno on error.
29355         Do not use realloc; use only free+malloc, as this is a bit
29356         more flexible and avoids a needless copy operation.
29357         Do not inspect st_dev and st_ino for symbolic links; POSIX
29358         doesn't specify the latter.
29359         Check for closedir errors.
29360         Avoid needless casts.
29361         Use "#ifdef weak_alias" around weak_alias, to be like other
29362         glibc code.
29363         The following changes to getcwd.c have effect only when used in
29364         gnulib; they have no effect inside glibc proper.
29365         (#pragma alloca) [defined _AIX && !defined __GNUC__]: Remove,
29366         as alloca isn't used.
29367         (alloca, __alloca): Likewise.
29368         [!_LIBC]: Include "getcwd.h", "mempcpy.h".
29369         Include <stddef.h>, <stdlib.h>, <string.h>, <limits.h>
29370         unconditionally, as gnulib assumes C89 or better.
29371         Do not include <sys/param.h>.
29372         (errno) [!defined __GNU_LIBRARY__ && !defined STDC_HEADERS]: Remove
29373         no-longer-necessary 'extern int errno' decl; gnulib assumes C89 or
29374         better.
29375         (NULL) [!defined NULL]: Remove; we assume C89 or better.
29376         Include <dirent.h> in a way that is compatible with modern Autoconf.
29377         (_D_ALLOC_NAMELEN, _D_EXACT_NAMLEN):
29378         New macros, if not already defined.
29379         Include <unistd.h> if _LIBC, not if __GNU_LIBRARY__.
29380         Use "_LIBC", not "defined _LIBC", for consistency.
29381         (HAVE_MEMPCPY): Remove; no longer needed now that gnulib has
29382         a mempcpy module.
29383         (__lstat, __closedir, __opendir, __readdir) [!_LIBC]: New macros.
29384         (GETCWD_RETURN_TYPE): Remove.  All uses replaced by char *.
29385         * lib/xgetcwd.c: David MacKenzie's old code was removed, so give
29386         credit only to Jim Meyering and adjust the copyright dates.
29387         Do not include <limits.h>, <stdio.h>, <sys/types.h>,
29388         <stdlib.h>, <unistd.h>, "pathmax.h".
29389         Instead, include "xgetcwd.h" (first) and "getcwd.h".
29390         (INITIAL_BUFFER_SIZE): Remove.
29391         (xgetcwd): Rely on getcwd, since we now depend on a reliable one.
29392
29393 2004-11-25  Paul Eggert  <eggert@cs.ucla.edu>
29394
29395         * m4/getcwd-path-max.m4 (gl_FUNC_GETCWD_PATH_MAX): Renamed from
29396         GL_FUNC_GETCWD_PATH_MAX for consistency.  All uses changed.
29397         Use the _ONCE methods, for efficiency.
29398         Check for fcntl.h.  In test program, include <errno.h>
29399         and <fcntl.h> if available.  Remove old K&R cruft from
29400         test program.  Check for common errors in GNU/Linux,
29401         OpenBSD, and Solaris.  Just set gl_cv_func_getcwd_path_max;
29402         don't do AC_LIBOBJ, as that's getcwd.m4's job.
29403         * m4/getcwd.m4 (gl_FUNC_GETCWD_NULL): Renamed from
29404         AC_FUNC_GETCWD_NULL.  All used changed.  Change cache variable
29405         name accordingly.
29406         (gl_FUNC_GETCWD, gl_PREREQ_GETCWD): New macros.  Revamp to
29407         accommodate new getcwd.c.
29408         * m4/jm-macros.m4 (gl_MACROS): Don't require GL_FUNC_GETCWD_PATH_MAX.
29409         * m4/prereq.m4 (gl_PREREQ): Add gl_FUNC_MEMPCPY.
29410         * m4/xgetcwd.m4 (gl_XGETCWD): Replace with gl_FUNC_GETCWD, since
29411         that's all we need now.
29412
29413 2004-11-23  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
29414
29415         * m4/argp.m4 (gl_ARGP): Require gl_GETOPT_SUBSTITUTE unconditionally:
29416         argp-parse.c depends on getopt internals, that means we should
29417         always use our getopt, to be on the safe side.
29418         * m4/getopt.m4 (gl_GETOPT): Check if GETOPT_H is already set, in
29419         order not to spoil the result of an eventual previous invocation
29420         of gl_GETOPT_SUBSTITUTE.
29421
29422 2004-11-23  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
29423
29424         * lib/getopt_.h: Re-addition of __getopt_argv_const caused
29425         redefinition warnings. To avoid them, include the defines
29426         in `#if !defined __need_getopt ... #endif'. The only place
29427         where __getopt_argv_const is used is in definitions
29428         of getopt_long and getopt_long_only below, which are as well
29429         protected by `#ifndef __need_getopt'.
29430         [defined __GETOPT_PREFIX && !defined __need_getopt]: Undef
29431         __need_getopt after including <stdio.h> and <unistd.h> These
29432         headers might have defined it.
29433
29434 2004-11-23  Paul Eggert  <eggert@cs.ucla.edu>
29435
29436         * m4/utimens.m4 (gl_UTIMENS): Check for futimes function.
29437
29438 2004-11-23  Paul Eggert  <eggert@cs.ucla.edu>
29439
29440         * lib/utimens.c (__attribute__, ATTRIBUTE_UNUSED): New macros.
29441         (futimens): New function, which uses futimes if available.
29442         (futimens, utimens): Support timespec==NULL, with same semantics
29443         as utime and utimens.
29444         * lib/utimens.h (futimens): New decl.
29445
29446 2004-11-23  Jim Meyering  <jim@meyering.net>
29447
29448         * lib/getopt_.h: Remove trailing blanks.
29449
29450 2004-11-23  Jim Meyering  <jim@meyering.net>
29451
29452         * lib/__fpending.c: Add comment.
29453
29454 2004-11-22  Paul Eggert  <eggert@cs.ucla.edu>
29455
29456         * modules/canonicalize (Depends-on): Add xreadlink.
29457         Problem reported by James Youngman.
29458
29459 2004-11-20  Paul Eggert  <eggert@cs.ucla.edu>
29460
29461         * lib/getopt_.h (__GETOPT_CONCAT, __GETOPT_XCONCAT, __GETOPT_ID):
29462         New macros.
29463         (getopt, getopt_long, getopt_long_only, optarg, opterr, optind,
29464         optopt): Use them instead of invoking ## directly; otherwise, the
29465         symbols will be __GETOPT_PREFIXgetopt rather than rpl_getopt.
29466
29467 2004-11-19  Bruno Haible  <bruno@clisp.org>
29468
29469         * lib/strtok_r.c: Move comments from here...
29470         * lib/strtok_r.h: ... to here.
29471
29472 2004-11-17  Paul Eggert  <eggert@cs.ucla.edu>
29473
29474         * m4/calloc.m4 (_AC_FUNC_CALLOC_IF): Check for buggy calloc
29475         implementations that mishandle size_t overflow.
29476
29477 2004-11-17  Paul Eggert  <eggert@cs.ucla.edu>
29478
29479         * lib/realloc.c (rpl_realloc): Call 'free' if n==0, since realloc
29480         might fail.  Problem reported by Yoann Vandoorselaere.
29481         * lib/calloc.c (rpl_calloc): Defend against buggy calloc
29482         implementations that mishandle size_t overflow.
29483
29484 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
29485
29486         * modules/canon-host (Depends-on): Add strdup.
29487
29488 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
29489
29490         * m4/canon-host.m4 (gl_CANON_HOST): Check for getaddrinfo.
29491
29492 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
29493
29494         * lib/canon-host.c: Include "strdup.h".
29495         (canon_host): Use getaddrinfo if available, so that IPv6 works.
29496         Use strdup instead of malloc/strcpy to duplicate strings.
29497
29498         * lib/human.h (LONGEST_HUMAN_READABLE): Add 1 for space before unit.
29499         (human_space_before_unit): New constant.
29500         * lib/human.c (human_readable): Support it.
29501
29502         * lib/xgetcwd.c: Include <limits.h>, for PATH_MAX.
29503         (xgetcwd): Set errno correctly when failing.
29504         Work around Solaris 9 bug: getcwd sets errno==ERANGE even though
29505         the failure is actually due to a PATH_MAX problem.
29506
29507         Further getopt changes to make it more likely that glibc will
29508         buy the changes back.
29509         * lib/getopt.c (POSIXLY_CORRECT): New constant.
29510         (getopt): Use it, so to preserve glibc semantic
29511         * lib/getopt1.c (getopt_long, getopt_long_only): Arg is char * const *
29512         when compiling for libc.
29513         * lib/getopt_.h (__getopt_argv_const): Bring it back.
29514         (getopt_long, getopt_long_only): Use it.
29515
29516         * lib/getopt.c (_getopt_initialize, _getopt_internal_r,
29517         _getopt_internal): New arg POSIXLY_CORRECT.  All callers changed.
29518         (getopt): Argv is now char * const *, as per standard.
29519         (_getopt_internal_r, _getopt_internal): Argv is now char **,
29520         not char *__getopt_argv_const *.
29521         * lib/getopt1.c (getopt_long, _getopt_long_r, getopt_long_only,
29522         _getopt_long_only_r): Likewise.
29523         * lib/getopt_.h (getopt, getopt_long, geopt_long_only): Likewise.
29524         * lib/getopt_int.h (_getopt_internal, _getopt_internal_r,
29525         _getopt_long_r, _getopt_long_only_r): Likewise.
29526         * lib/getopt_.h (__getopt_argv_const): Remove.
29527         (getopt): Argv is now char * const *, as per standard.
29528
29529         * lib/getdate.y (tORDINAL): New token.
29530         (day, relunit): Allow it for relative times.
29531         (relative_time_table): Use tORDINAL for ordinals.
29532
29533 2004-11-16  Paul Eggert  <eggert@cs.ucla.edu>
29534
29535         * doc/getdate.texi (General date syntax): "next" is 1, not 2.
29536         Document that "second" isn't allowed as an ordinal number.
29537
29538 2004-11-16  Jim Meyering  <jim@meyering.net>
29539
29540         * modules/closeout (Depends-on): Add fpending.
29541
29542 2004-11-15  Jim Meyering  <jim@meyering.net>
29543
29544         * lib/closeout.c: Include "__fpending.h" once again.
29545         Include <stdbool.h>.
29546         (close_stdout): Don't fail just because stdout was closed initially,
29547         since some programs don't write to stdout in the normal course of
29548         operation (other than --version and --help), and we don't want this
29549         function to make e.g. `touch file >&-' fail.
29550         But do fail if it was closed and someone has tried to write to it.
29551         E.g., `printf foo >&-' must fail.
29552
29553 2004-11-13  Jim Meyering  <jim@meyering.net>
29554
29555         * m4/jm-macros.m4: Do require gl_FUNC_FPENDING.
29556
29557 2004-11-12  Simon Josefsson  <jas@extundo.com>
29558
29559         * config/srclist.txt: Add strtok_r.c, glibc bought our changes, but a
29560         small doc fix is still pending.
29561
29562 2004-11-11  Simon Josefsson  <jas@extundo.com>
29563
29564         * modules/strtok_r: New file.
29565
29566         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
29567         strtok_r.
29568
29569 2004-11-11  Simon Josefsson  <jas@extundo.com>
29570
29571         * m4/strtok_r.m4: New file.
29572
29573         * m4/getopt.m4: Replace opterr.
29574
29575 2004-11-11  Simon Josefsson  <jas@extundo.com>
29576
29577         * lib/strtok_r.h, strtok_r.c: New file.
29578
29579 2004-11-11  Paul Eggert  <eggert@cs.ucla.edu>
29580
29581         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE): Define __GETOPT_PREFIX instead
29582         of replacing opterr, getopt, etc.  This should handle the
29583         powerpc-apple-darwin5.5 problem recently noted by Simon Josefsson.
29584
29585 2004-11-11  Paul Eggert  <eggert@cs.ucla.edu>
29586
29587         * lib/getopt_.h (__getopt_argv_const): New macro, to be used so that
29588         we can stop lying to compilers about the constness of argv when we
29589         are compiled outside glibc.
29590         (getopt, getopt_long, getopt_long_only): Use it.
29591         * lib/getopt.c (_getopt_initialize, _getopt_internal_r,
29592         _getopt_internal, getopt): Likewise.
29593         * lib/getopt1.c (getopt_long, _getopt_long_r, getopt_long_only,
29594         _getopt_long_only_r): Likewise.
29595         * lib/getopt_int.h (_getopt_internal, _getopt_internal_r,
29596         _getopt_long_r, _getopt_long_only_r): Likewise.
29597
29598         * lib/getopt_.h [defined __GETOPT_PREFIX && !defined __need_getopt]:
29599         Include <stdlib.h> and <stdio.h>, and <unistd.h> if available.
29600         Then rename getopt to __GETOPT_PREFIX##getopt, and so forth for
29601         the other external symbols.
29602         (getopt) [!defined __GNU_LIBRARY]: Use prototype, not old-style
29603         declaration, since the above renaming now works around collisions.
29604
29605 2004-11-11  Jim Meyering  <jim@meyering.net>
29606
29607         * lib/linebreak.c: Remove trailing blanks.
29608         * lib/alloca_.h: Likewise.
29609         * lib/acosl.c: Likewise.
29610         * lib/euidaccess.c: Likewise.
29611         * lib/allocsa.h: Likewise.
29612
29613 2004-11-10  Simon Josefsson  <jas@extundo.com>
29614
29615         * m4/getaddrinfo.m4: New file.
29616
29617 2004-11-10  Simon Josefsson  <jas@extundo.com>
29618
29619         * lib/getaddrinfo.h, lib/getaddrinfo.c: New files.
29620
29621 2004-11-10  Simon Josefsson  <jas@extundo.com>
29622
29623         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
29624         getaddrinfo.
29625
29626         * modules/getaddrinfo: New file.
29627
29628 2004-11-10  Paul Eggert  <eggert@cs.ucla.edu>
29629
29630         * m4/prereq.m4 (gl_PREREQ): Require gt_FUNC_SETENV.
29631
29632 2004-11-10  Paul Eggert  <eggert@cs.ucla.edu>
29633
29634         * lib/mktime.c (SHR): New macro, which is a portable
29635         substitute for >> that should work even on Crays.
29636         (TIME_T_MIDPOINT, ydhms_diff, __mktime_internal): Use it.
29637         Problem reported by Mark D. Baushke in
29638         <http://lists.gnu.org/archive/html/bug-gnulib/2004-11/msg00071.html>.
29639         * lib/getdate.y (SHR): Likewise.
29640         (tm_diff): Use it.
29641         * lib/strftime.c (SHR): Likewise.
29642         (tm_diff): Use it.
29643         * lib/quotearg.c (struct quoting_options): Use unsigned int for
29644         quote_these_too, so that right shifts are well defined.  All uses
29645         changed.
29646
29647 2004-11-10  Jim Meyering  <jim@meyering.net>
29648
29649         Ensure that no close failure goes unreported.
29650         * lib/closeout.c (close_stdout): Always close stdout.  I.e., don't
29651         return early when it seems there's nothing to flush.
29652         Don't include __fpending.h.
29653
29654 2004-11-10  Jim Meyering  <jim@meyering.net>
29655
29656         * modules/closeout (Depends-on): Remove fpending.
29657
29658 2004-11-10  Jim Meyering  <jim@meyering.net>
29659
29660         * m4/jm-macros.m4 (gl_MACROS): Don't require gl_FUNC_FPENDING.
29661
29662 2004-11-09  Paul Eggert  <eggert@cs.ucla.edu>
29663
29664         * m4/strftime.m4 (_gl_STRFTIME_PREREQS): Remove.  Move its body to
29665         gl_FUNC_STRFTIME.
29666         (gl_FUNC_STRFTIME): Use AC_CHECK_FUNCS_ONCE and AC_CHECK_HEADERS_ONCE
29667         and AC_REQUIRE when possible, to avoid duplicate checks.
29668         Check for <wchar.h>.
29669
29670 2004-11-09  Paul Eggert  <eggert@cs.ucla.edu>
29671
29672         * lib/strftime.c (DO_MULTIBYTE): Check for wchar.h, too.
29673
29674 2004-11-09  Bruno Haible  <bruno@clisp.org>
29675
29676         * m4/sockpfaf.m4: New file.
29677
29678 2004-11-05  Bruno Haible  <bruno@clisp.org>
29679
29680         * lib/readlink.c: Include stddef.h, needed for size_t on Woe32.
29681         Reported by Mark D. Baushke <mdb@cvshome.org>.
29682
29683 2004-11-04  Bruno Haible  <bruno@clisp.org>
29684
29685         2004-09-11  Bruno Haible  <bruno@clisp.org>
29686                 * allocsa.valgrind: New file.
29687         2004-02-06  Bruno Haible  <bruno@clisp.org>
29688                 * allocsa.h (sa_alignof): Define differently with HP-UX cc, to
29689                 avoid a bug of this cc on HP-UX 10.20 dealing with enums.
29690                 Reported by Christopher Seip <chris.seip@hp.com>.
29691
29692 2004-11-04  Bruno Haible  <bruno@clisp.org>
29693
29694         * modules/allocsa (Files): Add lib/allocsa.valgrind.
29695         (Makefile.am): Distribute it.
29696
29697 2004-11-03  Paul Eggert  <eggert@cs.ucla.edu>
29698
29699         * lib/xreadlink.c (xreadlink): AIX and HP-UX readlink return -1
29700         with errno == ERANGE if the buffer is too small.
29701         Problem reported by Mark D. Baushke.
29702
29703 2004-11-03  Albert Chin  <china@thewrittenword.com>
29704             Paul Eggert  <eggert@cs.ucla.edu>
29705
29706         * m4/uint32_t.m4 (gl_AC_TYPE_UINT32_T): When determining uint32_t
29707         equivalent, substitute $ac_type for equivalent type rather than
29708         blindly using uint32_t *always* which won't work if uint32_t is not
29709         available.  Define _UINT32_T to work around typedef of uint32_t if
29710         <sys/sched.h>, <pthread.h>, or <semaphore.h> used on Solaris
29711         2.5.1.
29712
29713 2004-11-02  Paul Eggert  <eggert@cs.ucla.edu>
29714
29715         * m4/jm-macros.m4: Sync from coreutils.
29716         (gl_MACROS): Check for mbrlen, for pathchk.
29717         (gl_CHECK_ALL_TYPES): Require AC_TYPE_MBSTATE_T, for pathchk.
29718
29719 2004-11-02  Paul Eggert  <eggert@cs.ucla.edu>
29720
29721         * lib/xreadlink.c (MAXSIZE): New macro.
29722         (xreadlink): Use it instead of SSIZE_MAX.  Ensure initial buffer
29723         size does not exceed MAXSIZE.  Avoid cast.
29724         As suggested by Mark D. Baushke in
29725         <http://lists.gnu.org/archive/html/bug-gnulib/2004-11/msg00009.html>,
29726         if readlink fails with buffer size just under MAXSIZE, try again
29727         with MAXSIZE.
29728
29729 2004-11-02  Paul Eggert  <eggert@cs.ucla.edu>
29730
29731         * config/srclist.txt: Add mktime.c; glibc bought all our changes.
29732
29733 2004-11-02  Derek R. Price  <derek@ximbiot.com>
29734         and  Paul Eggert  <eggert@cs.ucla.edu>
29735
29736         * lib/getdate.y [!TEST]: Include <stdio.h>, since we use sprintf now.
29737         (get_date): Overparenthesize to avoid GCC warning.
29738
29739 2004-11-02  Bruno Haible  <bruno@clisp.org>
29740
29741         * m4/setenv.m4 (gt_FUNC_SETENV): Define VOID_UNSETENV if unsetenv()
29742         returns void.
29743
29744 2004-11-02  Bruno Haible  <bruno@clisp.org>
29745
29746         * lib/setenv.h (unsetenv): Define as a macro if the system's unsetenv()
29747         function returns void.
29748
29749 2004-11-01  Paul Eggert  <eggert@cs.ucla.edu>
29750
29751         * m4/getpass.m4 (gl_PREREQ_GETPASS): Check for declarations of
29752         fflush_unlocked, flockfile, funlockfile, funlockfile,
29753         fputs_unlocked, putc_unlocked.
29754
29755 2004-11-01  Paul Eggert  <eggert@cs.ucla.edu>
29756
29757         * lib/getpass.c (fflush_unlocked, flockfile, funlockfile)
29758         (funlockfile, fputs_unlocked, putc_unlocked): Don't define if
29759         already declared.
29760
29761 2004-10-29  Paul Eggert  <eggert@cs.ucla.edu>
29762
29763         * modules/getdate (Files): Add doc/getdate.texi.
29764         (Depends-on): Add setenv, xalloc.
29765
29766 2004-10-29  Paul Eggert  <eggert@cs.ucla.edu>
29767
29768         * lib/getdate.y: Add support for TZ="foo" within a date string.
29769         Fix some bugs near time_t boundaries.  Reject dates with
29770         out-of-range components, e.g., "Sept 31".
29771         Include <stdlib.h>, "setenv.h", "xalloc.h".
29772         (ISDIGIT_LOCALE): Remove; unused.
29773         Note that the TZ and time functions used here are not reentrant.
29774         (mktime_ok, get_tz): New functions.
29775         (TZBUFSIZE): New constant.
29776         (get_date): Parse leading TZ="foo".  Reject out-of-range components;.
29777         This requires that we sometimes generate our own TZ="XXX..." setting.
29778
29779 2004-10-29  Paul Eggert  <eggert@cs.ucla.edu>
29780
29781         * doc/getdate.texi: New file, from coreutils with modifications for
29782         the new TZ parsing.
29783
29784 2004-10-27  Derek R. Price  <derek@ximbiot.com>
29785
29786         * lib/mktime.c (not_equal_tm): Remove redundant check.
29787
29788 2004-10-24  Paul Eggert  <eggert@cs.ucla.edu>
29789
29790         * modules/regex (lib_SOURCES): Add regex.c.
29791         Reported by James Youngman in
29792         <http://lists.gnu.org/archive/html/bug-gnulib/2004-10/msg00199.html>.
29793
29794 2004-10-24  Paul Eggert  <eggert@cs.ucla.edu>
29795
29796         * lib/getdate.y: Use Bison 1.875 features, and some minor
29797         code cleanups.  This change does not affect semantics.
29798         Don't include <stdlib.h>; no longer needed.
29799         Don't include unlocked-io.h; only the "#if TEST" code uses
29800         stdio, and performance isn't crucial there.
29801         (PC, YYLEX_PARAM, YYPARSE_PARAM): Remove; replaced by
29802         Bison 1.875 features as described below.
29803         All uses of "PC." replaced by "pc->".
29804         (YYSTYPE): Add a forward declaration.
29805         (yylex, yyerror): Use full prototypes in forward decls.
29806         Use "%pure-parser" rather than obsolescent "%pure_parser".
29807         Use %parse-param and %lex-param instead of obsolescent
29808         YYPARSE_PARAM and YYLEX_PARAM.
29809         (meridian_table, month_and_day_table, time_units_table,
29810         relative_time_table, time_zone_table, military_table,
29811         lookup_zone, lookup_word, get_date):
29812         Use NULL instead of 0 where appropriate.
29813         (to_hour): Avoid abort (), to avoid a dependency on
29814         stdlib.h.
29815         (yyerror, yylex): Now accepts parser_control * arg.
29816         (main) [TEST]: Use '\0' rather than 0 for char.
29817
29818 2004-10-22  Paul Eggert  <eggert@cs.ucla.edu>
29819
29820         * m4/getpagesize.m4 (gl_GETPAGESIZE): Check for <sys/param.h>.
29821
29822 2004-10-22  Paul Eggert  <eggert@cs.ucla.edu>
29823
29824         * lib/getpagesize.c (getpagesize): Don't assume <sys/param.h> exists.
29825         It's now the caller's responsibility to handle the case where
29826         !HAVE_GETPAGESIZE && !defined getpagesize.
29827
29828         * lib/mktime.c (leapyear): Arg is long int, not int.
29829
29830 2004-10-18  Paul Eggert  <eggert@cs.ucla.edu>
29831
29832         * lib/argp-fs-xinl.c, argp-xinl.c: Update from glibc.
29833
29834 2004-10-17  Paul Eggert  <eggert@cs.ucla.edu>
29835
29836         * gnulib-tool (func_emit_lib_Makefile_am): Fix typo: a $ was
29837         missing.  Problem reported by James Youngman.
29838
29839 2004-10-16  Simon Josefsson  <jas@extundo.com>
29840
29841         * gnulib-tool: Fix comments.  Fix parse problem.
29842         (func_emit_lib_Makefile_am): Don't hard code a in libgl_a_SOURCES.
29843
29844 2004-10-15  Paul Eggert  <eggert@cs.ucla.edu>
29845
29846         * m4/getopt.m4 (gl_GETOPT): Detect and reject the incompatible BSD
29847         implementation of getopt_long.  Problem reported by Alexander Taler in:
29848         http://lists.gnu.org/archive/html/bug-gnulib/2004-10/msg00103.html
29849
29850 2004-10-15  Bruno Haible  <bruno@clisp.org>
29851
29852         * gnulib-tool: Untabify. Initialize supplied_libname.
29853         (func_usage): More homogenous output.
29854         (func_modules_transitive_closure, func_modules_to_filelist,
29855         func_emit_lib_Makefile_am): New functions.
29856         (func_import): New function, extracted from big case statement. Use
29857         func_get_license, func_modules_transitive_closure,
29858         func_modules_to_filelist, func_emit_lib_Makefile_am. Initialize
29859         opt_lgpl. Don't use test -a, as it's not portable.
29860         (func_create_testdir): Use func_modules_transitive_closure,
29861         func_modules_to_filelist, func_emit_lib_Makefile_am.
29862
29863 2004-10-15  Bruno Haible  <bruno@clisp.org>
29864
29865         * gnulib-tool (func_import): Let gl_INIT define LTALLOCA when needed.
29866
29867 2004-10-15  Bruno Haible  <bruno@clisp.org>
29868
29869         * gnulib-tool (func_emit_lib_Makefile_am): Add markers to separate
29870         the portions belonging to each module.
29871         Suggested by Derek Robert Price <derek@ximbiot.com>.
29872
29873 2004-10-12  Simon Josefsson  <jas@extundo.com>
29874
29875         * lib/getpass.c (fflush_unlocked, flockfile, funlockfile)
29876         (fputs_unlocked, putc_unlocked) [!_LIBCS && !USE_UNLOCKED_IO]: Map
29877         to real functions.
29878
29879 2004-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
29880
29881         * modules/vsnprintf: New file.
29882
29883 2004-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
29884
29885         * m4/vsnprintf.m4: New file.
29886
29887 2004-10-11  Yoann Vandoorselaere  <yoann@prelude-ids.org>
29888
29889         * lib/vsnprintf.h: New file.
29890         * lib/vsnprintf.c: New file.
29891
29892 2004-10-11  Bruno Haible  <bruno@clisp.org>
29893
29894         * MODULES.html.sh (Support for systems lacking ISO C 99): Add
29895         vsnprintf.
29896
29897 2004-10-10  Paul Eggert  <eggert@cs.ucla.edu>
29898
29899         * config/srclistvars.sh: Add GNUSTANDARDS (for eggert only).
29900
29901 2004-10-07  Bruno Haible  <bruno@clisp.org>
29902
29903         * lib/snprintf.c (snprintf): Avoid a memory allocation if the result
29904         fits into the provided buffer.
29905
29906 2004-10-06  Paul Eggert  <eggert@cs.ucla.edu>
29907
29908         * lib/diacrit.c, diacrit.h: Add GPL notice.
29909
29910         * lib/atanl.c, logl.c: Add GPL notice, to match glibc's added LGPL
29911         notice.
29912         * lib/atanl.c (atanl): Keep the code as similar to glibc as possible.
29913         * lib/logl.c (logl): Keep the code as similar to glibc as possible.
29914         This avoids a potential constant-folding bug.
29915
29916 2004-10-05  Bruno Haible  <bruno@clisp.org>
29917
29918         * m4/strsep.m4 (gl_FUNC_STRSEP): Require AC_GNU_SOURCE. Don't check
29919         for the declaration of strsep.
29920
29921 2004-10-05  Bruno Haible  <bruno@clisp.org>
29922
29923         * lib/strsep.h: Don't declare strsep() if HAVE_STRSEP.
29924
29925 2004-10-04  Simon Josefsson  <jas@extundo.com>
29926
29927         * modules/memmem: New file.
29928         * tests/test-memmem.c: New file.
29929         * MODULES.html.sh (Extra functions based on ANSI C 89): Add memmem.
29930
29931 2004-10-04  Simon Josefsson  <jas@extundo.com>
29932
29933         * m4/memmem.m4: New file.
29934
29935 2004-10-04  Simon Josefsson  <jas@extundo.com>
29936
29937         * lib/memmem.h: New file.
29938         * lib/memmem.c: New file, taken from glibc.
29939
29940 2004-10-04  Simon Josefsson  <jas@extundo.com>
29941
29942         * lib/error.c, md5.c, regex.c: Use '#if USE_UNLOCKED_IO' instead of
29943         '#ifdef USE_UNLOCKED_IO'.
29944
29945 2004-10-04  Simon Josefsson  <jas@extundo.com>
29946
29947         * config/srclist.txt: Add memmem from glibc.
29948
29949 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
29950
29951         * modules/xalloc (Files, Makefile.am): Remove xstrdup.c.
29952
29953         * modules/argmatch, modules/argp, modules/closeout, modules/error,
29954         modules/exclude, modules/getdate, modules/getline,
29955         modules/getndelim2, modules/getpass, modules/getpass-gnu,
29956         modules/getusershell, modules/linebuffer, modules/md5,
29957         modules/mountlist, modules/posixtm, modules/readtokens,
29958         modules/readutmp, modules/regex, modules/sha1,
29959         modules/version-etc, modules/yesno:
29960         Remove dependency on unlocked-io.
29961
29962 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
29963
29964         * m4/xalloc.m4 (gl_PREREQ_XSTRDUP): Remove.  All uses removed.
29965
29966         * m4/unlocked-io.m4: Add copyright notice.
29967         (gl_FUNC_GLIBC_UNLOCKED_IO): Define USE_UNLOCKED_IO.
29968
29969 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
29970
29971         * lib/xalloc.h (xmemdup): Renamed from xclone.  All uses changed.
29972         * lib/xmalloc.c (xmemdup): Likewise.
29973         * lib/xalloc.h (CCLONE, CLONE, NEW, XCALLOC, XMALLOC, XREALLOC,
29974         XFREE): Remove these long-obsolescent macros.
29975         * lib/xmalloc.c (xstrdup): Implementation moved here from xstrdup.c
29976         * lib/xstrdup.c: Remove.
29977
29978         * lib/regex.c (re_comp): Cast gettext return value to char *,
29979         Problem reported by Martin Neitzel via Mark D. Baushke.
29980
29981 2004-10-04  Paul Eggert  <eggert@cs.ucla.edu>
29982
29983         * lib/argmatch.c, closeout.c, error.c, exclude.c, getdate.y,
29984         getndelim2.c, getpass.c, getusershell.c, linebuffer.c,
29985         md5.c, mountlist.c, posixtm.c, readtokens.c, readutmp.c,
29986         regex.c, sha1.c, version-etc.c, yesno.c:
29987         Include "unlocked-io.h" only if USE_UNLOCKED_IO.
29988         * lib/unlocked-io.h: Don't worry about USE_UNLOCKED_IO; that's now
29989         the includer's responsibility.
29990
29991         Sync from coreutils.
29992
29993         * lib/modechange.c (mode_compile): Don't decrement a pointer that
29994         points to the start of a string, as the C Standard says the
29995         resulting behavior is undefined.
29996
29997         * lib/backupfile.h (enum backuptype): Rename none -> no_backups,
29998         simple -> simple_backups, numbered_existing ->
29999         numbered_existing_backups, numbered -> numbered_backups
30000         to avoid shadowing problems.  All uses changed.
30001         * lib/argmatch.c (enum backuptype) [defined TEST]: Likewise.
30002         * lib/backupfile.c (check_extension, numbered_backup):
30003         Rename locals to avoid shadowing 'basename'.
30004         * lib/backupfile.h (VALID_BACKUP_TYPE): Don't evaluate arg more than
30005         once.
30006
30007         * lib/.cppi-disable: Add getopt_.h, getopt_int.h.
30008         * lib/.cvsignore: Add getopt.h.
30009
30010 2004-10-04  Bruno Haible  <bruno@clisp.org>
30011
30012         * modules/README: New file.
30013         * gnulib-tool (func_all_modules, func_verify_module): modules/README is
30014         not a module.
30015
30016 2004-10-02  Jim Meyering  <jim@meyering.net>
30017
30018         * lib/dirfd.h, getpagesize.h: Add copyright notice.
30019
30020 2004-10-01  Yoann Vandoorselaere  <yoann@prelude-ids.org>
30021
30022         * modules/strsep: New file.
30023
30024 2004-10-01  Yoann Vandoorselaere  <yoann@prelude-ids.org>
30025
30026         * m4/strsep.m4: New file.
30027
30028 2004-10-01  Yoann Vandoorselaere  <yoann@prelude-ids.org>
30029
30030         * lib/strsep.h: New file.
30031         * lib/strsep.c: New file.
30032
30033 2004-10-01  Simon Josefsson  <jas@extundo.com>
30034
30035         * lib/snprintf.c (snprintf): Handle size==0.
30036
30037 2004-10-01  Simon Josefsson  <jas@extundo.com>
30038             Bruno Haible  <bruno@clisp.org>
30039
30040         * lib/snprintf.c: Include <stdarg.h>, <stdlib.h>, <string.h>.
30041         (snprintf): Declare 'args'.
30042
30043 2004-10-01  Paul Eggert  <eggert@cs.ucla.edu>
30044
30045         * lib/snprintf.c: Remove comments as to why each header is needed.
30046
30047 2004-10-01  Bruno Haible  <bruno@clisp.org>
30048
30049         * MODULES.html.sh: Add strsep.
30050
30051 2004-09-30  Simon Josefsson  <jas@extundo.com>
30052
30053         * modules/snprintf: New file.
30054
30055 2004-09-30  Simon Josefsson  <jas@extundo.com>
30056
30057         * m4/snprintf.m4: New file.
30058
30059 2004-09-30  Simon Josefsson  <jas@extundo.com>
30060
30061         * lib/snprintf.h, lib/snprintf.c: New files.
30062
30063 2004-09-30  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
30064
30065         * lib/argp-help.c (canon_doc_option): Fixed coredump if *name==NULL
30066         (hol_entry_help): Never translate an empty string.
30067         Do not translate option tag (opt->name) if OPTION_NO_TRANS is set
30068         * lib/argp.h (OPTION_NO_TRANS): New option.
30069
30070 2004-09-30  Paul Eggert  <eggert@cs.ucla.edu>
30071
30072         * modules/argp (Maintainer): Replace Simon Josefsson
30073         by Sergey Poznyakoff.
30074
30075 2004-09-30  Paul Eggert  <eggert@cs.ucla.edu>
30076
30077         * config/srclist.txt: Comment-out argp/argp.h, until we get the argp
30078         changes merged back into glibc.
30079
30080 2004-09-30  Paul Eggert  <eggert@cs.ucla.edu>
30081
30082         * MODULES.html.sh (Support for systems lacking ISO C 99): Add snprintf.
30083
30084 2004-09-29  Oskar Liljeblad  <oskar@osk.mine.nu>
30085
30086         * lib/xvasprintf.c: Include xalloc.h.
30087         (xvasprintf): Use xalloc_die, not xmalloc_die.
30088
30089 2004-09-29  Bruno Haible  <bruno@clisp.org>
30090
30091         * modules/alloca-opt: New file, derived from modules/alloca.
30092         * modules/allocsa: Depend on alloca-opt instead of alloca.
30093         * modules/setenv: Likewise.
30094         * modules/vasnprintf: Likewise.
30095         * MODULES.html.sh: Add alloca-opt.
30096
30097 2004-09-28  Simon Josefsson  <jas@extundo.com>
30098
30099         * gnulib-tool: New parameter --lgpl, to asseert that modules are
30100         LGPL, and to replace license template from GPL to LGPL.
30101
30102 2004-09-28  Paul Eggert  <eggert@cs.ucla.edu>
30103
30104         * modules/dummy: Change license to LGPL.
30105
30106 2004-09-28  Paul Eggert  <eggert@cs.ucla.edu>
30107
30108         * lib/dummy.c: Change copyright notice to FSF, and license to GPL.
30109
30110 2004-09-24  Simon Josefsson  <jas@extundo.com>
30111
30112         * modules/minmax (License): Change from GPL to LGPL.
30113
30114 2004-09-23  Simon Josefsson  <jas@extundo.com>
30115
30116         * gnulib-tool (--import): Typo.
30117
30118 2004-09-23  Simon Josefsson  <jas@extundo.com>
30119
30120         * gnulib-tool (--import): Make sure *.m4 end up in m4/ by default.
30121
30122 2004-09-22  Bruno Haible  <bruno@clisp.org>
30123
30124         * modules/*: Add 'License' field.
30125         * gnulib-tool: Accept --extract-license option.
30126         (func_get_license): New function.
30127
30128 2004-09-21  Bruno Haible  <bruno@clisp.org>
30129
30130         * modules/vasnprintf (Files): Add m4/stdint_h.m4, m4/inttypes_h.m4.
30131         Reported by Simon Josefsson.
30132
30133 2004-09-20  Paul Eggert  <eggert@cs.ucla.edu>
30134
30135         * modules/inttostr (Files): Add m4/longlong.m4, since it uses
30136         gl_AC_TYPE_LONG_LONG.
30137
30138 2004-09-20  Paul Eggert  <eggert@cs.ucla.edu>
30139
30140         * config/srclist.txt: Add getsubopt.c, since libc bought our changes.
30141
30142 2004-09-18  Simon Josefsson  <jas@extundo.com>
30143         and  Paul Eggert  <eggert@cs.ucla.edu>
30144
30145         * gnulib-tool: Replace various ad-hoc automake/autoconf/aclocal
30146         calls with autoreconf.  Define GL_LIB.
30147
30148 2004-09-14  Karl Berry  <karl@gnu.org>
30149
30150         * config/srclist.txt: unsync setenv.c, sigh.
30151
30152 2004-09-13  Paul Eggert  <eggert@cs.ucla.edu>
30153
30154         * lib/argp-pvh.c (argp_program_version_hook): Provide initial value.
30155         Problem reported by Bruno Haible in:
30156         http://lists.gnu.org/archive/html/bug-tar/2004-09/msg00023.html
30157
30158 2004-09-13  Paul Eggert  <eggert@cs.ucla.edu>
30159
30160         * config/srclist.txt: Comment out argp-pvh.c.
30161
30162 2004-09-11  Paul Eggert  <eggert@cs.ucla.edu>
30163
30164         * lib/mempcpy.h: Wrap the entire include file inside #ifndef mempcpy,
30165         in case some system header has #define'd it.  Problem reported by
30166         Soeren D. Schulze in
30167         <http://lists.gnu.org/archive/html/bug-gnulib/2004-09/msg00017.html>.
30168
30169 2004-09-09  Karl Berry  <karl@gnu.org>
30170
30171         * regex.[ch]: delete from the root.  These were supposed to be
30172                 synced with emacs cvs, but this has not happened for about
30173                 a year, and anyway nothing else uses emacs regex.[ch].
30174                 bug-gnulib mail from Jeff Bailey, 9 Sep 2004 15:49:24 -0700.
30175                 lib/regex[.ch] is untouched.
30176
30177 2004-09-09  Bruno Haible  <bruno@clisp.org>
30178
30179         * modules/vasnprintf (Files): Add m4/eoverflow.m4.
30180
30181 2004-09-09  Bruno Haible  <bruno@clisp.org>
30182
30183         * m4/eoverflow.m4: New file, taken from GNU libiconv eilseq.m4 with
30184         modifications.
30185         * m4/vasnprintf.m4 (gl_FUNC_VASNPRINTF): Require gl_EOVERFLOW.
30186
30187 2004-09-08  Oskar Liljeblad  <oskar@osk.mine.nu>
30188
30189         * modules/xvasprintf: New file.
30190         * MODULES.html.sh (Extra functions based on ANSI C 89): Add vasprintf.
30191
30192 2004-09-08  Oskar Liljeblad  <oskar@osk.mine.nu>
30193
30194         * lib/xvasprintf.h: New file.
30195         * lib/xvasprintf.c: New file.
30196         * lib/xasprintf.c: New file.
30197
30198 2004-09-08  Bruno Haible  <bruno@clisp.org>
30199
30200         * m4/stdint.m4: New file, taken from GNU clisp with modifications.
30201
30202 2004-09-08  Bruno Haible  <bruno@clisp.org>
30203
30204         * lib/vasnprintf.c (VASNPRINTF): Signal EOVERFLOW if the resulting
30205         length is > INT_MAX.
30206         * lib/vasprintf.c (vasprintf): Don't test for length > INT_MAX any
30207         more.
30208
30209 2004-09-08  Bruno Haible  <bruno@clisp.org>
30210
30211         * lib/stdint_.h: New file, taken from GNU clisp.
30212
30213 2004-09-08  Bruno Haible  <bruno@clisp.org>
30214             Oskar Liljeblad  <oskar@osk.mine.nu>
30215
30216         * modules/stdint: New file.
30217         * MODULES.html.sh (Support for systems lacking ISO C 99): Add stdint.
30218
30219 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
30220
30221         Import from coreutils.
30222         * lib/userspec.c: Don't use <alloca.h>, so that we don't use alloca on
30223         strings on unbounded length.  alloca's performance benefits aren't
30224         that important here.
30225         (V_STRDUP): Remove.
30226         (parse_with_separator): New function, with most of the internals
30227         of the old parse_user_spec.  Allow user to omit both user and group,
30228         for compatibility with FreeBSD.
30229         Clone only the user name, not the entire spec.
30230         Do not set *uid, *gid unless entirely successful.
30231         Avoid memory leak in some failing cases.
30232         Fix regression for USER.GROUP reported by Dmitry V. Levin in
30233         <http://lists.gnu.org/archive/html/bug-coreutils/2004-08/msg00102.html>
30234         (parse_user_spec): Rewrite to use parse_with_separator.
30235
30236 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
30237
30238         * modules/userspec: Don't depend on alloca.
30239
30240 2004-08-19  Paul Eggert  <eggert@cs.ucla.edu>
30241
30242         * m4/userspec.m4 (gl_USERSPEC): Don't require AC_FUNC_ALLOCA.
30243
30244 2004-08-17  Paul Eggert  <eggert@cs.ucla.edu>
30245
30246         * MODULES.html.sh: Add xalloc-die, c-strtod, c-strtold, raise,
30247         readtokens0, getcwd, fcntl-safer, canonicalize, cycle-check,
30248         utimecmp, utimens, xnanosleep.  Rename sha to sha1.
30249
30250 2004-08-16  Simon Josefsson  <jas@extundo.com>
30251
30252         * gnulib-tool: Use sed instead of autoconf --trace, inspired by
30253         libtoolize behaviour by "Gary V. Vaughan" <gary@gnu.org>.
30254         Add --dry-run for --import.
30255         Let user provided command line parameters override configure.ac
30256         settings.
30257
30258 2004-08-12  Simon Josefsson  <jas@extundo.com>
30259
30260         * m4/getopt.m4 (gl_GETOPT_SUBSTITUTE): New macro,
30261         as discussed with Paul Eggert in threads rooted at
30262         <http://lists.gnu.org/archive/html/bug-gnulib/2004-06/msg00039.html>
30263         and
30264         <http://lists.gnu.org/archive/html/bug-gnulib/2004-07/msg00001.html>.
30265         Before, the test was empty, and relied on ELIDE_CODE in source
30266         code.)
30267         (gl_PREREQ_GETOPT): New macro.
30268         (gl_GETOPT): Use them.
30269
30270 2004-08-12  Simon Josefsson  <jas@extundo.com>
30271
30272         * lib/getopt.c, getopt1.c: Remove ELIDE_CODE hack.
30273         * lib/getopt_.h: Renamed from getopt.h.
30274
30275 2004-08-12  Simon Josefsson  <jas@extundo.com>
30276
30277         * gnulib-tool: Add --source-base, --m4-base, --libtool options.
30278         Change default library name from libfoo to libgnu.
30279         Now, if you have a configure.ac that says:
30280                 gl_SOURCE_BASE(gl)
30281                 gl_M4_BASE(gl/m4)
30282                 gl_MODULES(error getopt etcetera)
30283                 gl_INIT
30284         you can import all you need by running:
30285                 ../gnulib/gnulib-tool --import
30286
30287         * modules/getopt (Files): Rename getopt.h to getopt_.h.
30288         (Makefile.am): Rewrite, use logic from argz.
30289         (Include): Use <getopt.h> instead of "getopt.h".
30290
30291 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
30292
30293         * modules/argp (Files): Add m4/unlocked-io.m4.
30294         (Depends-on): Add extensions.
30295
30296 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
30297
30298         * m4/argp.m4 (gl_ARGP): Do not check for argp.h or argp_parse; nobody
30299         uses HAVE_ARGP_H or HAVE_ARGP_PARSE.
30300         Require gl_FUNC_GLIBC_UNLOCKED_IO, gl_USE_SYSTEM_EXTENSIONS.
30301         Check for program_invocation_name, program_invocation_short_name,
30302         flockfile, funlockfile, features.h, _getopt_long_only_r.
30303
30304 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
30305
30306         * lib/argp-help.c, argp-parse.c: Use "gettext.h" instead of
30307         its complicated substitute.
30308         * lib/argp-help.c: Include <errno.h>, for program_invocation_short_name
30309         and program_invocation_name.
30310         (__argp_basename) [!_LIBC]: Remove; the only use was
30311         replaced by its body.
30312         (__argp_short_program_name): Change condition from
30313         !defined __argp_short_program_name to
30314         ! (defined _LIBC || HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME),
30315         to match argp-namefrob.h.
30316         (__argp_failure): Don't assume strerror_r returns char *.
30317         * lib/argp-parse.c (N_): Define unconditionally.
30318         (argp_default_options): Fill out initializers with 0 to avoid
30319         gcc warnings.
30320
30321 2004-08-12  Paul Eggert  <eggert@cs.ucla.edu>
30322
30323         * config/srclist.txt: Remove getopt.c, getopt.h (renamed to getopt_.h),
30324         getopt1.c.
30325
30326 2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
30327
30328         Merge from coreutils.
30329
30330         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for wmemchr and wmemcpy.
30331
30332         * m4/obstack.m4 (gl_PREREQ_OBSTACK): Require
30333         gl_AC_HEADER_INTTYPES_H, gl_AC_HEADER_STDINT_H, gl_AC_TYPE_UINTMAX_T.
30334
30335 2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
30336
30337         Merge from coreutils.
30338
30339         * lib/fnmatch.c (WIDE_CHAR_SUPPORT): Don't set to 1 if missing
30340         wmemchr or wmemcpy.  Problem reported by Robert Dahlem
30341         for Reliant Unix 5.43.
30342
30343         * lib/obstack.c: Include <inttypes.h> and <stdint.h> if available.
30344         (union fooround): Use uintmax_t, not long int.
30345         The rest is a merge from libc:
30346         [defined _LIBC]: Include <shlib-compat.h>.
30347         (_obstack) [defined _LIBC]: Remove after 2.3.4.
30348
30349         * lib/settime.c (settime): Recode to avoid warning with
30350         Sun Forte C 6U2.
30351
30352         * lib/strverscmp.c: Convert to UTF-8.
30353
30354 2004-08-11  Paul Eggert  <eggert@cs.ucla.edu>
30355
30356         * modules/obstack (Files): Add m4/inttypes_h.m4, m4/stdint_h.m4,
30357         m4/uintmax_t.m4.
30358
30359 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
30360
30361         * modules/xalloc-die: New file.
30362         * modules/xalloc: Remove dependencies on error, gettext, exitfail.
30363
30364         * modules/md5 (Files): Add m4/uint32_t.m4.
30365         * modules/sha1: Renamed from modules/sha.
30366         (Files):
30367         Rename lib/sha.h to lib/sha1.h.
30368         Rename lib/sha.c to lib/sha1.c.
30369         Rename m4/sha.m4 to m4/sha1.m4.
30370         (lib_SOURCES): Likewise.
30371         (configure.ac): Rename gl_SHA to gl_SHA1.
30372         (Include): sha.h -> sha1.h.
30373
30374 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
30375
30376         * m4/uint32_t.m4, m4/uintptr_t.m4: New files.
30377         * m4/sha1.m4: Renamed from sha.m4.
30378         (gl_SHA1): Renamed from gl_SHA.  All uses changed.
30379
30380 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
30381
30382         * lib/obstack.h (obstack_empty_p):
30383         Don't assume that chunk->contents is suitably aligned.
30384         * lib/obstack.c (_obstack_begin, _obstack_begin_1, _obstack_newchunk):
30385         Likewise. Problem reported by Benno in
30386         <http://sources.redhat.com/ml/libc-alpha/2004-08/msg00055.html>.
30387
30388         * lib/chown.c (rpl_chown): Work even if the file is writeable but not
30389         readable.  This could be improved further but it'd take some work.
30390
30391 2004-08-08  Simon Josefsson  <jas@extundo.com>
30392
30393         * modules/xgethostname (Depends-on): Remove exit and error (not
30394         used).
30395
30396         * modules/getpass-gnu: Add getpass.h.
30397         (Depends-on): Add stdbool.
30398         * modules/getpass: Add getpass.h.
30399
30400 2004-08-08  Simon Josefsson  <jas@extundo.com>
30401
30402         * m4/getpass.m4 (gl_FUNC_GETPASS, gl_FUNC_GETPASS_GNU):
30403         Check getpass declaration.
30404
30405 2004-08-08  Simon Josefsson  <jas@extundo.com>
30406
30407         * lib/xgethostname.c: Don't include error.h (not used).
30408
30409         * lib/getpass.h: Add.
30410         * lib/getpass.c: Include getpass.h first.
30411
30412 2004-08-08  Paul Eggert  <eggert@cs.ucla.edu>
30413
30414         * lib/xalloc-die.c: New file.
30415         * lib/xalloc.h (xalloc_fail_func, xalloc_msg_memory_exhausted): Remove.
30416         All uses removed.
30417         * lib/xmalloc.c (xalloc_fail_func, xalloc_msg_memory_exhausted):
30418         Likewise. Move inclusions of gettext.h, error.h, exitfail.h to
30419         xalloc-die.c.
30420         (_, N_, xalloc_die): Move to xalloc-die.c.
30421         * lib/userspec.c (parse_user_spaec): Use xstrdup rather than strdup,
30422         so that we needn't mess with xalloc_msg_memory_exhausted.
30423
30424         * lib/sha1.h: Renamed from sha.h.
30425         (SHA1_H): Renamed from _SHA_H.
30426         (sha1_ctx): Renamed from sha_ctx.
30427         (sha1_init_ctx): Renamed from sha_init_ctx.
30428         (sha1_process_block): Renamed from sha_process_block.
30429         (sha1_process_bytes): Renamed from sha_process_bytes.
30430         (sha1_finish_ctx): Renamed from sha_finish_ctx.
30431         (sha1_read_ctx): Renamed from sha_read_ctx.
30432         (sha1_stream): Renamed from sha_stream.
30433         (sha1_buffer): Renamed from sha_buffer.
30434         * lib/sha1.c: Likewise; renamed from sha.c.
30435         Do not include <sys/types.h>.
30436         Include <stddef.h> rather than <stdlib.h>.
30437
30438 2004-08-08  Bruno Haible  <bruno@clisp.org>
30439
30440         * lib/pathname.h (FILE_SYSTEM_PREFIX_LEN): Renamed from
30441         FILESYSTEM_PREFIX_LEN.
30442         * lib/progreloc.c: Likewise.
30443         * lib/concatpath.c (concatenated_pathname): Use FILE_SYSTEM_PREFIX_LEN.
30444
30445 2004-08-06  Simon Josefsson  <jas@extundo.com>
30446
30447         * modules/progname (Depends-on): Don't depend on stdbool.
30448
30449 2004-08-06  Simon Josefsson  <jas@extundo.com>
30450
30451         * modules/getsubopt: New file.
30452         * MODULES.html.sh (Support for systems lacking POSIX:2001): Add
30453         getsubopt.
30454
30455 2004-08-06  Paul Eggert  <eggert@cs.ucla.edu>
30456
30457         More merge from coreutils.
30458
30459         * m4/utimens.m4, m4/utimecmp.m4: New files.
30460         * m4/backupfile.m4, euidacces.m4, acl.m4, afs.m4, calloc.m4, dirfd.m4,
30461         fsusage.m4, jm-macros.m4, ls-mntd-fs.m4, md5.m4, mountlist.m4,
30462         prereq.m4, sha.m4: Import changes from coreutils.
30463
30464 2004-08-06  Paul Eggert  <eggert@cs.ucla.edu>
30465
30466         More merge from coreutils.
30467         * modules/raise, modules/readtokens0, modules/utimens:
30468         * modules/utimecmp, module/xnanosleep: New files.
30469         * modules/strftime: Add lib/strftime.h.
30470         Change include from <time.h> to "strftime.h".
30471         * modules/yesno: Add lib/yesno.h.
30472         * modules/backupfile: Remove lib/addext.c.
30473         * modules/euidaccess: Add stat-macros.h.
30474         * modules/canonicalize, modules/euidaccess,
30475         modules/filemode, modules/lchown, modules/makepath,
30476         modules/rmdir, modules/stat: Likewise.
30477
30478 2004-08-06  Paul Eggert  <eggert@cs.ucla.edu>
30479
30480         Merge from tar.
30481         * lib/argp-help.c (make_hol, hol_append): Don't assume that
30482         SIZE_MAX is a valid preprocessor constant.
30483         (__argp_basename): Change from "#ifndef _LIBC"
30484         to "#ifndef __argp_short_program_name", so that
30485         we don't compile these functions for tar.
30486
30487         More merges from coreutils.
30488         * lib/raise.c, lib/readtokens0.h, lib/readtokens0.c, lib/strftime.h:
30489         * lib/utimens.h, lib/utimens.c, lib/utimecmp.h, lib/utimecmp.c:
30490         * lib/xnanosleep.h, lib/xnanosleep.c, lib/yesno.h: New files.
30491         * lib/addext.c: Remove; no longer needed.
30492         * lib/yesno.c, lib/argmatch.h, lib/argmatch.c, lib/backupfile.h,
30493         lib/backupfile.c, lib/euidaccess.c, lib/filemode.c, lib/closeout.c,
30494         lib/dup2.c, lib/exclude.c, lib/fileblocks.c, lib/filemode.c,
30495         lib/fnmatch.c, lib/fnmtahc_loop.c, lib/fopen-safer.c, lib/fsusage.c,
30496         lib/fsusage.h, lib/ftruncate.c, lib/full-write.c, lib/getdate.y,
30497         lib/getloadavg.c, lib/getugroups.c, lib/hard-locale.c,
30498         lib/hard-locale.h, lib/hash.c, lib/human.c, lib/human.h, lib/lchown.c,
30499         lib/lchown.h, lib/makepath.c, lib/makepath.h, lib/md5.c, lib/md5.h,
30500         lib/memchr.c, lib/memcoll.c, lib/memrchr.c, lib/modechange.c,
30501         lib/modechange.h, lib/mountlist.c, lib/mountlist.h, lib/nanosleep.c,
30502         lib/posixtm.c, lib/putenv.c, quotearg.c, lib/quotearg.h,
30503         lib/readtokens.c, lib/readutmp.c, lib/readutmp.h, lib/rmdir.c,
30504         lib/safe-read.c, lib/save-cwd.c, lib/savedir.c, lib/setenv.c,
30505         lib/sig2str.c, lib/stat.c, lib/strtoimax.c, lib/strverscmp.c,
30506         lib/userspec.c, lib/utime.c, lib/version-etc.c., lib/xgethostname.c,
30507         lib/xmemcoll.c, lib/xreadlink.c, lib/xstrtod.c, lib/xstrtod.h,
30508         lib/xstrtoimax.c, lib/xstrtol.c, lib/xstrtol.h, lib/xstrtoumax.c:
30509         Import changes from coreutils.
30510
30511 2004-08-05  Simon Josefsson  <jas@extundo.com>
30512
30513         * m4/strdup.m4: Always run gl_PREREQ_STRDUP, since strdup.h need it.
30514
30515 2004-08-05  Simon Josefsson  <jas@extundo.com>
30516
30517         * m4/getsubopt.m4: New file.
30518
30519 2004-08-05  Paul Eggert  <eggert@cs.ucla.edu>
30520
30521         Merge from coreutils.
30522
30523         * m4/c-strtod.m4, m4/canonicalize.m4, m4/fcntl-safer.m4:
30524         * m4/getcwd-path-max.m4: New files.
30525
30526         * m4/dos.m4 (gl_AC_DOS): filesystem -> file system renaming.
30527         FILESYSTEM_PREFIX_LEN ->
30528         FILE_SYSTEM_PREFIX_LEN.
30529         FILESYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX ->
30530         FILE_SYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX.
30531         FILESYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR ->
30532         FILE_SYSTEM_BACKSLASH_IS_FILE_NAME_SEPARATOR.
30533
30534         * m4/path-concat.m4 (gl_PATH_CONCAT): Don't require gl_AC_DOS, the
30535         prerequisite modules now handle the DOS stuff.
30536         Don't check for unistd.h.
30537
30538 2004-08-05  Paul Eggert  <eggert@cs.ucla.edu>
30539
30540         Merge from coreutils.
30541
30542         * lib/.gdb-history: Remove; this doesn't belong here.
30543
30544         * lib/c-strtod.c, lib/c-strtod.h, lib/c-strtold.c, lib/cycle-check.c:
30545         * lib/cycle-check.h, lib/dev-ino.h, lib/canonicalize.h:
30546         * lib/canonicalize.c, lib/fcntl-safer.h, lib/fcntl-safer.c:
30547         * lib/getcwd.c: New files.
30548
30549         * lib/dirname.h: Include <stdbool.h>.
30550         (FILE_SYSTEM_PREFIX_LEN): Renamed from FILESYSTEM_PREFIX_LEN,
30551         for consistency with POSIX terminology.  All uses changed.
30552         (IS_ABSOLUTE_FILE_NAME, IS_RELATIVE_FILE_NAME): New macros.
30553         (strip_trailing_slashes): Use bool for booleans.
30554         * lib/stripslash.c (strip_trailing_slashes): Likewise.
30555
30556         * lib/error.c: Work around bug in OpenBSD 3.4 sterror_r: it
30557         sometimes returns a positive errno value even when it succeeds.
30558         (print_errno_message) [!LIBC]: Fall back on strerror if
30559         __strerror_r fails.
30560
30561         * lib/path-concat.c (mempcpy): Don't define if a system header defines
30562         it. Don't include stdio.h, stdlib.h, unistd.h, strdup.h.
30563         (longest_relative_suffix): New function.
30564         (path_concat): Use it.  Assume first argument is not NULL.
30565         Port to DOS.  Omit redundant separators.
30566         Report an error instead of returning NULL.
30567         Use mempcpy instead of memcpy.
30568         (xpath_concat): Remove: not declared or used.
30569
30570         * lib/same.h: Include <stdbool.h>
30571         (same_name): Return bool, not int.
30572         * lib/same.c (same_name): Likewise.
30573         (errno): Don't declare; we assume C89 or better now.
30574
30575         * lib/stat-macros (S_ISCTG, S_ISOFD, S_ISOFL): New macros,
30576         if not already defined.
30577
30578         * lib/xgetcwd.c (errno): Don't declare; we assume C89 or better now.
30579         * lib/dup-safer.c (errno): Likewise.
30580
30581 2004-08-05  Paul Eggert  <eggert@cs.ucla.edu>
30582
30583         Merge from coreutils.
30584         * modules/c-strtod, modules/c-strtold, modules/canonicalize:
30585         * modules/cycle-check, modules/fcntl-safer, modules/getcwd: New files.
30586         * modules/path-concat: Don't depend on strdup.
30587
30588 2004-08-03  Simon Josefsson  <jas@extundo.com>
30589
30590         * lib/strdup.h: Only use HAVE_DECL_STRDUP if defined.
30591         * lib/progname.h: Don't include stdbool.h.
30592
30593 2004-08-03  Paul Eggert  <eggert@cs.ucla.edu>
30594
30595         * modules/fatal: Remove, as the "fatal" module wasn't used or working.
30596         * MODULES.html.sh (func_all_modules): Remove fatal.
30597
30598 2004-08-03  Paul Eggert  <eggert@cs.ucla.edu>
30599
30600         * m4/fatal.m4: Remove, as the "fatal" module wasn't used or working.
30601
30602 2004-08-03  Paul Eggert  <eggert@cs.ucla.edu>
30603
30604         * lib/fatal.c, fatal.h: Remove as the "fatal" module wasn't used or
30605         working.
30606
30607 2004-08-02  Simon Josefsson  <jas@extundo.com>
30608
30609         * lib/getsubopt.h: New file, with comments from Bruno Haible.
30610         * lib/getsubopt.c: New file, from glibc, but slightly modified based on
30611         suggestions from Paul Eggert <eggert@cs.ucla.edu>.
30612
30613 2004-08-01  Simon Josefsson  <jas@extundo.com>
30614
30615         * lib/xgetdomainname.c: Include stdlib.h, for free().
30616
30617 2004-07-19  Bruno Haible  <bruno@clisp.org>
30618
30619         * MODULES.html.sh (func_all_modules): Add dummy.
30620
30621 2004-07-16  Simon Josefsson  <jas@extundo.com>
30622
30623         * modules/dummy: New file.
30624
30625 2004-07-16  Simon Josefsson  <jas@extundo.com>
30626
30627         * lib/dummy.c: New file.
30628
30629 2004-07-16  Bruno Haible  <bruno@clisp.org>
30630
30631         * lib/backupfile.h: Add extern "C" for C++.
30632         * lib/closeout.h: Likewise.
30633         * lib/copy-file.h: Likewise.
30634         * lib/findprog.h: Likewise.
30635         * lib/full-write.h: Likewise.
30636         * lib/pathname.h: Likewise.
30637         * lib/progname.h: Likewise.
30638         * lib/stpcpy.h: Likewise.
30639         * lib/stpncpy.h: Likewise.
30640         * lib/strcase.h: Likewise.
30641         * lib/strstr.h: Likewise.
30642         * lib/xalloc.h: Likewise.
30643
30644         * lib/mbswidth.h: Add extern "C" for C++.
30645         Reported by Albert Chin-A-Young <china@thewrittenword.com>.
30646
30647 2004-07-13  Robert Millan  <robertmh@gnu.org>
30648
30649         * m4/host-os.m4: s/KNetBSD/kNetBSD/g and s/KFreeBSD/kFreeBSD/g.
30650
30651 2004-07-09  Simon Josefsson  <jas@extundo.com>
30652
30653         * lib/getndelim2.c: Include stddef.h, for ptrdiff_t.  (FreeBSD 4.9
30654         failed without this.)
30655
30656 2004-07-09  Paul Eggert  <eggert@cs.ucla.edu>
30657
30658         * modules/chown (Files): Add lib/fchown-stub.c, since
30659         gl_PREREQ_CHOWN invokes AC_LIBOBJ(fchown-stub).
30660
30661 2004-07-09  Paul Eggert  <eggert@cs.ucla.edu>
30662
30663         * lib/fchown-stub.c: New file.
30664
30665 2004-06-24  Jim Meyering  <jim@meyering.net>
30666
30667         * lib/obstack.h (obstack_base): Cast to (void *), per documentation.
30668
30669 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
30670
30671         * modules/argz: Omit "#include".
30672
30673         * MODULES.html.sh (func_all_modules): Add calloc, to match
30674         2004-06-01 addition of calloc module.
30675
30676 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
30677
30678         * m4/argz.m4: New file, which is autoupdated from libtool.
30679
30680 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
30681
30682         * lib/argz.c, lib/argz_.h: New files, which are autoupdated from
30683         libtool.
30684
30685 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
30686
30687         * config/srclist-update: Don't insist on "USA." before the
30688         close-comment, as libtool omits the period and puts the */ on a
30689         separate line.
30690         * config/srclist.txt: Add argz.c, argz_.h, argz.m4.
30691         * config/srclistvars.sh: Add LIBTOOL (for eggert only).
30692
30693 2004-06-22  Gary V. Vaughan  <gary@gnu.org>
30694
30695         * modules/argz: New file.
30696         * MODULES.html.sh (func_all_modules): Add argz.
30697
30698 2004-06-12  Jim Meyering  <jim@meyering.net>
30699         and  Paul Eggert  <eggert@cs.ucla.edu>
30700
30701         * modules/hash (Files): Add lib/xalloc.h.
30702         * modules/pipe (Depends-on): Add wait-process.
30703         * modules/stat (Depends-on): Add xalloc.
30704         * modules/userspec (Files): Add lib/userspec.h.
30705         * modules/xstrto
30706
30707         Upgrade from gettext-0.13.
30708         * modules/gettext (Files): Add m4/intmax.m4, m4/longdouble.m4,
30709         m4/longlong.m4, m4/printf-posix.m4, m4/signed.m4, m4/size_max.m4,
30710         m4/wchar_t.m4, m4/wint_t.m4, m4/xsize.m4.
30711
30712 2004-06-10  Jim Meyering  <jim@meyering.net>
30713
30714         * lib/calloc.c: New file.
30715
30716 2004-06-06  Paul Eggert  <eggert@cs.ucla.edu>
30717
30718         * lib/getdate.y (yylex): Allow space between sign and number.
30719         Problem reported by Dan Jacobson.
30720
30721 2004-06-01  Paul Eggert  <eggert@cs.ucla.edu>
30722
30723         Merge from coreutils CVS.
30724
30725         * m4/backupfile.m4, dirname.m4, human.m4, inttypes.m4, longlong.m4,
30726         makepath.m4, memchr.m4, memcmp.m4, mountlist.m4, path-concat.m4,
30727         putenv.m4, quotearg.m4, readutmp.m4, strtoimax.m4, strtoll.m4,
30728         strtoull.m4, strtoumax.m4, ulonglong.m4, vasnprintf.m4,
30729         xstrtol.m4: Fix copyright date and/or serial number.
30730
30731         * m4/chown.m4 (gl_PREREQ_CHOWN): Check for fcntl.h.
30732         See if we need an fchown replacement.
30733         (gl_FUNC_CHOWN_FOLLOWS_SYMLINK): New macro.
30734         (gl_FUNC_CHOWN): Require gl_FUNC_CHOWN_FOLLOWS_SYMLINK,
30735         and use the replacement function if we detect either defect.
30736
30737         * m4/prereq.m4 (gl_PREREQ): Add gl_ALLOCSA, gl_CLOEXEC, gl_INTTOSTR,
30738         gl_UTIMECMP.
30739
30740 2004-06-01  Paul Eggert  <eggert@cs.ucla.edu>
30741         and  Jim Meyering  <jim@meyering.net>
30742
30743         Merge from coreutils CVS.
30744
30745         * lib/stat-macros.h: New file, with contents from file-type.h
30746         and coreutils' system.h.
30747         * lib/file-type.c: Include "stat-macros.h".
30748         * lib/file-type.h (file_type): Move all macro definitions to new file,
30749         stat-macros.h.
30750
30751         * lib/chown.c (rpl_chown) [CHOWN_FAILS_TO_HONOR_ID_OF_NEGATIVE_ONE]:
30752         Wrap old code with this conditional.
30753         [CHOWN_MODIFIES_SYMLINK]: Try to work around a chown
30754         function that does not dereference symlinks.
30755         * lib/lchown.c (lchown) [CHOWN_MODIFIES_SYMLINK]: Just call chown.
30756
30757         * lib/xreadlink.c: Include xreadlink.h first, to catch .h file
30758         dependency problems.
30759         (xreadlink): Accept new arg SIZE, for efficiency.
30760         All decls and uses changed.
30761         * lib/xreadlink.h: Include <stddef.h>, for size_t.
30762
30763         * lib/.cppi-disable: Add alloca_.h, allocsa.h, exit.h, getndelim2.h,
30764         gettext.h, localcharset.h, strdup.h, strndup.h, strtoul.c, time_r.h.
30765
30766         * lib/.cvsignore: Add alloca.h, fnmatch.h, poll.h, stdbool.h,
30767         sysexits.h.
30768
30769 2004-06-01  Jim Meyering  <jim@meyering.net>
30770
30771         * m4/calloc.m4: New file.
30772
30773 2004-05-31  Paul Eggert  <eggert@cs.ucla.edu>
30774
30775         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Detect _Bool bug in HP aC++/ANSI
30776         C B3910B A.05.55 [Dec 04 2003].  Problem reported by Jim Meyering.
30777         Also, fix a typo in a diagnostic.
30778
30779 2004-05-30  Paul Eggert  <eggert@cs.ucla.edu>
30780
30781         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Do not require AC_FUNC_MALLOC
30782         or AC_FUNC_REALLOC.
30783
30784 2004-05-30  Paul Eggert  <eggert@cs.ucla.edu>
30785
30786         * lib/xmalloc.c (HAVE_MALLOC, HAVE_REALLOC): Do not require these
30787         macros to be defined.
30788         (xnmalloc_inline, xnrealloc_inline, xcalloc): Do not die if
30789         the allocator returns NULL because the requested size is zero.
30790
30791 2004-05-20  Paul Eggert  <eggert@cs.ucla.edu>
30792
30793         * lib/malloc/obstack.c (_obstack) [defined _LIBC]: Bring back this
30794         var.  Add comment explaining why libc still defines it.  This
30795         merges the following patch from glibc:
30796         http://sources.redhat.com/ml/libc-alpha/2004-05/msg00157.html
30797
30798 2004-05-20  Andreas Schwab  <schwab@suse.de>
30799
30800         * m4/free.m4: Replace free if it not known to work, not the other
30801         way round.
30802
30803 2004-05-19  Paul Eggert  <eggert@cs.ucla.edu>
30804
30805         * lib/obstack.c (_obstack): Remove unused variable.  It hasn't been
30806         present in glibc since revision 1.1 of this file.
30807         * lib/obstack.h (_obstack_free, obstack_1grow, obstack_1grow_fast,
30808         obstack_alignment_mask, obstack_alloc, obstack_base,
30809         obstack_blank, obstack_blank_fast, obstack_chunk_size,
30810         obstack_copy, obstack_copy0, obstack_finish, obstack_grow,
30811         obstack_grow0, obstack_init, obstack_int_grow,
30812         obstack_int_grow_fast, obstack_make_room, obstack_memory_used,
30813         obstack_next_free, obstack_object_size, obstack_ptr_grow,
30814         obstack_ptr_grow_fast, obstack_room): Remove declarations of
30815         nonexistent functions.
30816
30817 2004-05-18  Karl Berry  <karl@gnu.org>
30818
30819         * config/srclist.txt: break link for vasnprintf.c.
30820
30821 2004-05-17  Paul Eggert  <eggert@cs.ucla.edu>
30822
30823         Port obstack to the AS/400, where pointers are 16 bytes wide and
30824         you cannot cast an integer to a valid pointer.  This patch is
30825         currently waiting to be integrated into glibc; see
30826         <http://sources.redhat.com/ml/libc-alpha/2004-05/msg00073.html>.
30827
30828         * lib/obstack.h (__PTR_TO_INT, __INT_TO_PTR): Remove.
30829         All uses of __INT_TO_PTR (PTR_TO_INT ...) replaced by __PTR_ALIGN.
30830         (__BPTR_ALIGN, __PTR_ALIGN): New macros.
30831         (struct obstack): temp member is now a union of a pointer and
30832         an integer, instead of an integer.  All integer uses changed.
30833         This does not affect the physical layout of struct obstack,
30834         except on hosts (like the AS/400) where the size or alignment of
30835         void * is greater than that of ptrdiff_t.
30836         (obstack_finish) [! (defined __GNUC__ && defined __STDC__ &&
30837         __STDC__)]: Store temporary in pointer member of union, not
30838         integer member.
30839         * lib/obstack.c: Include <stddef.h>, for offsetof.
30840         (struct fooalign): Remove; it doesn't need a name.
30841         (union fooround): Change double to long double, and add void *.
30842         (DEFAULT_ALIGNMENT): Use offsetof to compute.
30843         (DEFAULT_ALIGNMENT, DEFAULT_ROUNDING): Now an enum constant,
30844         not a macro.  Hence the values are always int; so remove all
30845         casts-to-int in uses.
30846
30847 2004-05-17  Paul Eggert  <eggert@cs.ucla.edu>
30848
30849         * config/srclist.txt: Break link for argp-help.c and argp-parse.c until
30850         we can get this patch merged into glibc.
30851
30852 2004-05-17  Derek R. Price  <derek@ximbiot.com>
30853             Paul Eggert  <eggert@cs.ucla.edu>
30854
30855         * m4/argp: Depend on alloca.
30856
30857 2004-05-17  Derek R. Price  <derek@ximbiot.com>
30858             Paul Eggert  <eggert@cs.ucla.edu>
30859
30860         * lib/argp-help.c, argp-parse.c: Assume <alloca.h> rather than
30861         freecoding.
30862
30863 2004-05-17  Bruno Haible  <bruno@clisp.org>
30864
30865         * lib/vasnprintf.c (VASNPRINTF): Correctly handle the case of a
30866         precision that consists of a '.' followed by an empty digit string.
30867         Patch by Tor Lillqvist <tml@iki.fi>.
30868
30869 2004-05-16  Paul Eggert  <eggert@cs.ucla.edu>
30870
30871         * m4/alloca.m4 (gl_FUNC_ALLOCA): Define HAVE_ALLOCA_H always,
30872         for backward compatibility with older code.  We need our own
30873         alloca.h if _AIX is defined.  Define HAVE_ALLOCA if we discover
30874         it under some other name, and our alloca.h will define it.
30875
30876 2004-05-16  Paul Eggert  <eggert@cs.ucla.edu>
30877             Derek Price  <derek@ximbiot.com>
30878
30879         * lib/alloca.c: Include <alloca.h>, to get our interface.
30880         * lib/alloca_.h: Use __alloca on AIX, so that we don't have to
30881         include <alloca.h> first.  Use C89 prototype for alloca; this
30882         requires including <stddef.h> for size_t.  Use extern "C" if C++.
30883         Use #elif for simplicity, since we can assume C89 now.
30884         Don't try to source the system alloca.h since it will not be found
30885         and to prevent recursively including its replacement.
30886         * lib/fnmatch.c: Include <alloca.h> instead of opencoding.
30887         * lib/regex.c: Likewise.
30888
30889 2004-05-16  Derek Price  <derek@ximbiot.com>
30890             Paul Eggert  <eggert@cs.ucla.edu>
30891
30892         getline cleanup.  This changes the getndelim2 API: both order of
30893         arguments, and meaning of delim2 (now uses EOF, not 0, to indicate
30894         no delimiter).
30895
30896         * lib/getline.c: Don't include stddef.h or stdio.h, since our
30897         interface does that.
30898         (getline): Always use getdelim, so that we don't have two
30899         copies of this code.
30900         * lib/getndelim2.c: Include <limits.h>, <inttypes.h>, <stdint.h>
30901         if available.
30902         (PTRDIFF_MAX, SIZE_MAX, SSIZE_MAX): Define if not defined.
30903         (GETNDELIM2_MAXIMUM): New macro.
30904         (getndelim2): Reorder arguments.  delim==EOF now means no delimiter,
30905         instead of the old practice of delim2==0.  All callers changed.
30906         Return -1 on overflow, instead of returning junk.
30907         Do not set *linesize unless allocation succeeds.
30908         * lib/getndelim2.h: Do not include stddef.h; no longer needed, now
30909         that we include sys/types.h.
30910         * lib/getnline.h: Likewise.
30911         * lib/getndelim2.h (GETNLINE_NO_LIMIT): New macro.
30912         (getndelim2): Reorder arguments.
30913         * lib/getnline.c (getnline, getndelim):
30914         Don't discard the NMAX argument.
30915         (getnline): Invoke getndelim, to avoid code duplication.
30916         * lib/getnline.h (GETNLINE_NO_LIMIT): New macro, used instead
30917         of (size_t) -1 by callers of the getnline family.
30918
30919 2004-05-13  Paul Eggert  <eggert@cs.ucla.edu>
30920
30921         * m4/gettime.m4 (gl_GETTIME): Require gl_TIMESPEC.
30922         Check for gettimeofday.
30923         * m4/settime.m4 (gl_SETTIME): Require gl_TIMESPEC.
30924         Check for settimeofday, stime.
30925
30926 2004-05-13  Paul Eggert  <eggert@cs.ucla.edu>
30927
30928         * lib/nanosleep.c (suspended): Change its type from int to
30929         sig_atomic_t volatile.
30930         (first_call): Make it private to rpl_nanosleep, and have it
30931         be zero initially as that's a bit faster.
30932         (my_usleep): Round up fractional times instead of truncating them,
30933         as this is the usual meaning for 'sleep'.
30934
30935         * lib/gettime.c (gettime): Fall back on `time' if `gettimeofday'
30936         doesn't work.
30937         * lib/settime.c: Include <unistd.h>, for stime (on Solaris 8, anyway).
30938         (ENOSYS): Define if not defined.
30939         (settime): Fall back on stime if it exists and settimeofday fails.
30940         But don't bother with fallbacks if a method fails with errno == EPERM.
30941
30942 2004-05-11  Jim Meyering  <jim@meyering.net>
30943
30944         Prior to this change, the save_cwd caller required read access to the
30945         current directory on most systems (ones with the fchdir function).
30946
30947         * lib/save-cwd.c (save_cwd) [HAVE_FCHDIR]: If opening `.' read-only
30948         fails, try write-only, and finally, resort to using xgetcwd.
30949
30950 2004-05-06  Paul Eggert  <eggert@cs.ucla.edu>
30951
30952         * lib/obstack.c, obstack.h: Import changes from libc.
30953
30954 2004-04-28  Bruno Haible  <bruno@clisp.org>
30955
30956         * lib/findprog.c (find_in_path): Treat Cygwin like Windows, since it
30957         also implicitly appends .exe to executables.
30958         * lib/localcharset.c (ISSLASH): Treat Cygwin like Windows, since it now
30959         accepts Windows pathnames.
30960         * lib/pathname.h (ISSLASH, IS_PATH_WITH_DIR, FILESYSTEM_PREFIX_LEN):
30961         Treat Cygwin like Windows, since it now accepts Windows pathnames.
30962         * lib/progreloc.c (ISSLASH, IS_PATH_WITH_DIR, FILESYSTEM_PREFIX_LEN):
30963         Treat Cygwin like Windows, since it now accepts Windows pathnames.
30964         Reported by Derek Robert Price <derek@ximbiot.com>.
30965
30966 2004-04-21  Karl Berry  <karl@gnu.org>
30967
30968         * config/srclist.txt (localcharset.c): break sync.
30969
30970 2004-04-20  Paul Eggert  <eggert@twinsun.com>
30971
30972         * m4/host-os.m4: Add a copyright notice.
30973
30974 2004-04-20  Jim Meyering  <jim@meyering.net>
30975
30976         Change UTILS_ to gl_ in AC_DEFINE'd names.
30977         Change utils_- and jm_-prefixed variables, too.
30978         * m4/mkdir-slash.m4 (gl_FUNC_MKDIR_TRAILING_SLASH): Renamed from
30979         UTILS_FUNC_MKDIR_TRAILING_SLASH.
30980         * m4/mkstemp.m4 (gl_FUNC_MKSTEMP): Renamed from UTILS_FUNC_MKSTEP.
30981
30982         * m4/dirfd.m4 (gl_FUNC_DIRFD): Rename from UTILS_FUNC_DIRFD.
30983         Don't emit trailing blanks.
30984         Also rename jm_-prefixed variables to have gl_ prefix.
30985
30986         * m4/host-os.m4 (gl_HOST_OS): Rename from UTILS_HOST_OS.
30987         Also rename jm_-prefixed variables to have gl_ prefix.
30988
30989         * m4/jm-macros.m4: Reflect the renamings.
30990         * m4/prereq.m4: Likewise.
30991
30992 2004-04-20  Jim Meyering  <jim@meyering.net>
30993
30994         * lib/getndelim2.c (getndelim2): Upon realloc failure, don't leak
30995         memory.
30996
30997 2004-04-20  Jim Meyering  <jim@meyering.net>
30998             Bruno Haible  <bruno@clisp.org>
30999
31000         * lib/localcharset.c (get_charset_aliases) [!VMS && !WIN32]: Don't leak
31001         memory when realloc fails.
31002
31003 2004-04-19  Jim Meyering  <jim@meyering.net>
31004
31005         * m4/readutmp.m4 (gl_PREREQ_READUTMP): Require gl_FUNC_FREE,
31006         now that readutmp.c may call `free (0)'.
31007
31008 2004-04-19  Bruno Haible  <bruno@clisp.org>
31009
31010         * m4/mbrtowc.m4: Change jm_ to gl_ in cache variables as well.
31011         * m4/inttypes_h.m4: Likewise.
31012         * m4/stdint_h.m4: Likewise.
31013         * m4/intmax_t.m4: Likewise.
31014         * m4/uintmax_t.m4: Likewise.
31015
31016 2004-04-18  Jim Meyering  <jim@meyering.net>
31017
31018         * m4/prereq.m4: Don't forbid jm_ prefix.
31019
31020         * m4/afs.m4, m4/allocsa.m4, m4/assert.m4, m4/backupfile.m4:
31021         * m4/bison.m4, m4/check-decl.m4, m4/chown.m4, m4/d-ino.m4:
31022         * m4/d-type.m4, m4/dirname.m4, m4/dos.m4, m4/error.m4, m4/fpending.m4:
31023         * m4/fstypename.m4, m4/fsusage.m4, m4/ftruncate.m4, m4/getdate.m4:
31024         * m4/getgroups.m4, m4/gettext.m4, m4/glibc21.m4, m4/group-member.m4:
31025         * m4/human.m4, m4/intmax.m4, m4/intmax_t.m4, m4/inttostr.m4:
31026         * m4/inttypes.m4, m4/inttypes_h.m4, m4/jm-macros.m4, m4/jm-winsz1.m4:
31027         * m4/jm-winsz2.m4, m4/lchown.m4, m4/lib-check.m4, m4/link-follow.m4:
31028         * m4/localcharset.m4, m4/longlong.m4, m4/ls-mntd-fs.m4, m4/lstat.m4:
31029         * m4/makepath.m4, m4/mbrtowc.m4, m4/mbswidth.m4, m4/memchr.m4:
31030         * m4/memcmp.m4, m4/mkdtemp.m4, m4/mkstemp.m4, m4/mountlist.m4:
31031         * m4/nanosleep.m4, m4/path-concat.m4, m4/perl.m4, m4/prereq.m4:
31032         * m4/putenv.m4, m4/quotearg.m4, m4/regex.m4, m4/stat.m4:
31033         * m4/stdint_h.m4, m4/strftime.m4, m4/strtoimax.m4, m4/strtoll.m4:
31034         * m4/strtoull.m4, m4/strtoumax.m4, m4/timespec.m4, m4/uintmax_t.m4:
31035         * m4/ulonglong.m4, m4/unlink-busy.m4, m4/unlocked-io.m4, m4/uptime.m4,
31036         * m4/utimbuf.m4, m4/utime.m4, m4/utimes-null.m4, m4/vasnprintf.m4:
31037         * m4/xstrtoimax.m4, m4/xstrtol.m4, m4/xstrtoumax.m4:
31038         Change jm_ to gl_ in AC_DEFINE'd names. Update all uses.
31039
31040 2004-04-18  Jim Meyering  <jim@meyering.net>
31041
31042         * lib/readutmp.c (read_utmp) [UTMP_NAME_FUNCTION]: Upon realloc
31043         failure, don't leak memory and do call END_UTMP_ENT.
31044
31045 2004-04-16  Jim Meyering  <jim@meyering.net>
31046
31047         * m4/prereq.m4 (jm_PREREQ_STAT): Remove macro.  It is specific to
31048         coreutils' stat program.
31049         (gl_PREREQ): Don't require jm_PREREQ_STAT.
31050
31051 2004-04-11  Paul Eggert  <eggert@twinsun.com>
31052
31053         * lib/inttostr.h: Include <limits.h> unconditionally, since we assume
31054         C89.
31055         (CHAR_BIT): Remove, since we assume C89.
31056         Include <stdint.h> if available, as per current Autoconf CVS advice.
31057
31058 2004-03-31  Jim Meyering  <jim@meyering.net>
31059
31060         * m4/prereq.m4: Require AC_FUNC_MALLOC, not jm_FUNC_MALLOC.
31061         Require AC_FUNC_REALLOC, not jm_FUNC_REALLOC.
31062         * m4/xalloc.m4: Likewise.
31063
31064 2004-03-30  Paul Eggert  <eggert@twinsun.com>
31065
31066         Merge from coreutils.
31067
31068         * m4/inttostr.m4: New file.
31069         * m4/getdate.m4 (gl_GETDATE): Remove time-related stuff.
31070         Require AM_STDBOOL_H and gl_TIMESPEC instead.
31071         Require gl_CLOCK_TIME.
31072         * m4/clock_time.m4 (gl_CLOCK_TIME): Require AC_GNU_SOURCE.
31073
31074 2004-03-30  Paul Eggert  <eggert@twinsun.com>
31075
31076         * lib/cloexec.h, cloexec.c (set_cloexec_flag): Return int
31077         not bool, to be more consistent with Unix conventions.
31078         Suggested by Bruno Haible.
31079
31080         Merge from coreutils.
31081
31082         * lib/imaxtostr.c, lib/inttostr.c, lib/inttostr.h, lib/offtostr.c:
31083         * lib/umaxtostr.c: New files.
31084
31085         * lib/getdate.h: Include stdbool.h, and timespec.h instead of
31086         the usual <time.h> dance.
31087         (get_date): Change signature to support fractional time stamps.
31088         All callers changed.
31089         * lib/getdate.y: Include "getdate.h" first, as we can now
31090         assume C89 and don't need to worry about 'const'.
31091         Similarly, include "unlocked-io.h" near start, not in middle.
31092         Include <limits.h>.
31093         (textint.value): Use long int rather than int.
31094         (textint.digits): Use size_t rather than int.
31095         (BILLION, LOG10_BILLION): New constants.
31096         (parser_control): New member rel_ns.  Members day_ordinal,
31097         time_zone, month, day, hour, minutes, rel_year, rel_month,
31098         rel_day, rel_hour, rel_minutes, rel_seconds
31099         are now long int, not int.  Member seconds is now struct timespec,
31100         not int.  New member timespec_seen.  Members dates_seen, days_seen,
31101         local_zones_seen, rels_seen, times_seen, zones_seen are now size_t,
31102         not int.
31103         (%union.intval): Now long int, not int.
31104         New member timespec.
31105         (tSDECIMAL_NUMBER, tUDECIMAL_NUMBER): New tokens.
31106         (seconds, signed_seconds, unsigned_seconds): New nonterminals.
31107         (spec): Now is a timespec or an item list.
31108         (timespec, items): New nonterminals.
31109         (time, rel, relunit, number, get_date):
31110         Add support for fractional seconds.
31111         (time): Fix bug: seconds weren't cleared in "00:00 +0000" syntax.
31112         (gmtime, localtime, mktime): Remove decls; not needed with C89.
31113         (to_hour): First arg is now long int, not int.
31114         (to_year): Returns long int, not int.
31115         Don't treat year -70 like 70.
31116         (tm_diff): Returns long int, not int.
31117         (lookup_word): Use bool instead of int when appropriate.
31118         (yylex): Use size_t for count, not int.
31119         Detect overflow when parsing large integer constants.
31120         Add support for fractions.
31121         (get_date): Make pointers 'const' if possible.
31122         Use more-portable code to detect integer overflow.
31123         (main) [TEST]: Adjust to above changes.  Test for localtime failure.
31124         Don't use ctime; it's not reliable if the year has >4 digits.
31125
31126         * lib/human.c (humblock): Inspect BLOCKSIZE if BLOCK_SIZE isn't set.
31127         This is for compatibility with BSD.
31128
31129         * lib/timespec.h (ST_TIME_CMP_NS, ST_TIME_CMP): Define.
31130         (ATIME_CMP, CTIME_CMP, MTIME_CMP, TIMESPEC_NS): Likewise.
31131         From coreutils' system.h.
31132
31133         * lib/userspec.c: Don't include "posixver.h".
31134         (parse_user_spec): Fall back on USER.GROUP parsing, regardless
31135         of POSIX version, as POSIX 1003.1-2001 allows that behavior as a
31136         compatible extension.  Simplify code by removing a boolean int
31137         that was always nonzero if a string was nonnull.
31138
31139 2004-03-30  Jim Meyering  <jim@meyering.net>
31140
31141         Merge from coreutils.
31142
31143         Avoid a configure-time warning about sys/ucred.h on OSF V4.0.
31144         * m4/ls-mntd-fs.m4: Test for sys/ucred.h separately, since
31145         on some systems one must include <grp.h> before it.
31146         Reported by Christian Krackowizer.
31147
31148 2004-03-30  Jim Meyering  <jim@meyering.net>
31149
31150         Merge from coreutils.
31151
31152         * lib/mountlist.c [HAVE_SYS_UCRED_H]: Include grp.h before sys/ucred.h.
31153
31154         * lib/readtokens.c (readtoken): Don't leak 64 bytes when reading
31155         an empty input stream.
31156
31157         * lib/readtokens.c: Include <stdbool.h>.
31158         (readtoken): Use `size_t' rather than int/long.
31159         All callers adjusted.
31160         Use `bool' rather than `int' where appropriate.
31161         Use memset rather than an explicit loop.
31162         Use x2nrealloc rather than xrealloc.
31163         Allow the use of `\0' as a delimiter.
31164         (readtokens): Likewise.
31165         * lib/readtokens.h (readtoken, readtokens): Update prototypes.
31166
31167 2004-03-30  Jim Meyering  <jim@meyering.net>
31168
31169         * m4/realloc.m4: Remove file, since now it does no more than
31170         AC_REQUIRE([AC_FUNC_REALLOC]), and that can be done via
31171         the `configure.ac' section of module/realloc.
31172         * m4/malloc.m4: Likewise, but for AC_FUNC_MALLOC.
31173
31174 2004-03-30  Bruno Haible  <bruno@clisp.org>
31175
31176         * lib/getloadavg.c (getloadavg): Don't assume setlocale returns
31177         nonnull.
31178
31179 2004-03-29  Paul Eggert  <eggert@twinsun.com>
31180
31181         Merge changes to getloadavg.c from coreutils and Emacs.
31182
31183         * lib/getloadavg.c [!defined HAVE_SETLOCALE] (setlocale):
31184         Define to an expression, not to the empty string.
31185         Include cloexec.h and xalloc.h.
31186         (getloadavg): Restore LC_NUMERIC locale after setting it temporarily.
31187         Use set_cloexec_flag rather than rolling our own.
31188         * lib/cloexec.c, lib/cloexec.h: New files.
31189
31190 2004-03-29  Paul Eggert  <eggert@twinsun.com>
31191
31192         * m4/cloexec.m4: New file.
31193
31194 2004-03-18  Paul Eggert  <eggert@twinsun.com>
31195
31196         * lib/getopt.h: Sync with libc CVS.
31197
31198 2004-03-18  Paul Eggert  <eggert@twinsun.com>
31199             Bruno Haible  <bruno@clisp.org>
31200
31201         * m4/mbswidth.m4 (gl_MBSWIDTH): Also test whether <wchar.h> declares
31202         mbswidth.
31203
31204 2004-03-18  Paul Eggert  <eggert@twinsun.com>
31205             Bruno Haible  <bruno@clisp.org>
31206
31207         * lib/mbswidth.h: Include <wchar.h> only if
31208         HAVE_DECL_MBSWIDTH_IN_WCHAR_H, not on all platforms that have
31209         <wchar.h>.
31210         * lib/mbswidth.c: Include <stdio.h> and <time.h> before <wchar.h>.
31211
31212 2004-03-09  Paul Eggert  <eggert@twinsun.com>
31213
31214         * lib/argp-parse.c, getopt.c, getopt.h, getopt1.c:
31215         Sync with libc CVS.
31216         * lib/getopt_int.h: New file, also synced from libc.
31217
31218 2004-03-09  Paul Eggert  <eggert@twinsun.com>
31219
31220         * config/srclistvars.sh: Add GNUWWWLICENSES for eggert.
31221         * config/srclist.txt: Sync getopt with libc.  Add getopt_int.h.
31222         Bring back getopt.c, getopt.h, getopt1.c.
31223
31224 2004-03-07  Paul Eggert  <eggert@twinsun.com>
31225
31226         * m4/c-stack.m4 (gl_PREREQ_C_STACK): Renamed from jm_PREREQ_C_STACK.
31227         All uses changed.  Check for sa_sigaction member; this fixes
31228         a bug first reported by Jason Andrade in
31229         <http://mail.gnu.org/archive/html/bug-textutils/2003-03/msg00027.html>.
31230
31231 2004-03-07  Paul Eggert  <eggert@twinsun.com>
31232
31233         * lib/c-stack.c (SIGACTION_WORKS): New macro.  Use it instead of long
31234         '#if' expressions.  Unlike the code it replaces, it does not
31235         depend on (defined _SC_PAGESIZE).  However, it does depend on
31236         HAVE_STRUCT_SIGACTION_SA_SIGACTION; this last change fixes a bug
31237         first reported by Jason Andrade in
31238         <http://mail.gnu.org/archive/html/bug-textutils/2003-03/msg00027.html>.
31239
31240 2004-02-25  Simon Josefsson  <jas@extundo.com>
31241
31242         * m4/strdup.m4 (gl_PREREQ_STRDUP): Check whether strdup is declared.
31243
31244 2004-02-25  Simon Josefsson  <jas@extundo.com>
31245
31246         * lib/strdup.h: New file.
31247         * lib/strdup.c: Include it.
31248         * lib/path-concat.c: Include strdup.h. Drop strdup declaration.
31249         * lib/userspec.c: Include strdup.h. Drop strdup declaration.
31250
31251 2004-02-23  Karl Berry  <karl@gnu.org>
31252
31253         * doc/maintain.texi, doc/standards.texi, doc/make-stds.texi: new files
31254         (from fencepost.gnu.org:/gd/gnuorg).
31255
31256 2004-02-23  Karl Berry  <karl@gnu.org>
31257
31258         * config/srclistvars.sh (GNUORG) [karl]: redefine.
31259         * config/srclist.txt: add maintain/standards documents.
31260
31261 2004-02-18  Bruno Haible  <bruno@clisp.org>
31262
31263         * m4/xsize.m4 (gl_XSIZE): Require AC_C_INLINE.
31264         Reported by Derek Robert Price <derek@ximbiot.com>.
31265
31266 2004-02-16  Karl Berry  <karl@gnu.org>
31267
31268         * config/mkinstalldirs, install-sh: update from automake.
31269
31270 2004-02-06  Karl Berry  <karl@gnu.org>
31271
31272         * m4/po.m4: update from gettext 0.14.1.
31273
31274 2004-02-06  Karl Berry  <karl@gnu.org>
31275
31276         * lib/config.charset: update from gettext 0.14.1.
31277
31278 2004-02-05  Paul Eggert  <eggert@twinsun.com>
31279
31280         Add comments and code, prompted by suggestions from Bruno Haible
31281         for sh-quote.
31282         * lib/quotearg.h (quotearg_alloc): New decl.  Improve the comments
31283         describing the enum quoting_style values.
31284         * lib/quotearg.c (quotearg_alloc): New function.
31285         (quotearg_buffer_restyled): Treat lone { and } as special.
31286         Treat = as special.  Work around bug with older shells
31287         that "see" a '\' that is really the 2nd byte of a multibyte char.
31288         Quote empty string with shell_quoting_style.
31289
31290 2004-02-03  Bruno Haible  <bruno@clisp.org>
31291
31292         * m4/pipe.m4: New file, from GNU gettext.
31293
31294 2004-02-03  Bruno Haible  <bruno@clisp.org>
31295
31296         * lib/pipe.h: New file, from GNU gettext.
31297         * lib/pipe.c: New file, from GNU gettext.
31298
31299 2004-01-27  Bruno Haible  <bruno@clisp.org>
31300
31301         * m4/execute.m4: New file, from GNU gettext.
31302
31303 2004-01-27  Bruno Haible  <bruno@clisp.org>
31304
31305         * lib/execute.h: New file, from GNU gettext.
31306         * lib/execute.c: New file, from GNU gettext.
31307         * lib/w32spawn.h: New file, from GNU gettext.
31308
31309 2004-01-24  Paul Eggert  <eggert@twinsun.com>
31310
31311         Merge from diffutils.
31312
31313         * lib/file-type.c (file_type): Add typed memory objects.
31314         * lib/file-type.h (S_TYPEISTMO): New macro.
31315
31316         * lib/c-stack.h (c_stack_action): Remove argv argument.
31317         * lib/c-stack.c (c_stack_action): Likewise.  All uses changed.
31318         (die): Don't calculate message unless segv_action returns.
31319         (get_stack_location, min_address_from_argv, max_address_from_argv,
31320         volatile stack_base, volatile_stack_size): Remove.
31321         (segv_handler): If ! HAVE_XSI_STACK_OVERFLOW_HEURISTIC, assume
31322         that every segmentation violation is a stack overflow.  (Ouch!)
31323         See Debian bug 136249 (still outstanding) for more info about why
31324         HAVE_XSI_STACK_OVERFLOW_HEURISTIC fails on Linux kernels.
31325
31326 2004-01-24  Paul Eggert  <eggert@twinsun.com>
31327
31328         Exit-status fix from coreutils.
31329
31330         Use exit_failure consistently in place of EXIT_FAILURE,
31331         so that program exit statuses are consistent on failure.
31332
31333         * lib/argmatch.c (ARGMATCH_DIE) [! defined ARGMATCH_DIE]:
31334         Include "exitfail.h", and use exit_failure rather than EXIT_FAILURE.
31335         * lib/argmatch.h: Comment fix to match the above.
31336         * lib/obstack.c (obstack_exit_failure) [!defined _LIBC]:
31337         Now a macro referring to exit_failure, instead of a separate
31338         variable.  Include "exitfail.h" to get it.
31339         * lib/xstrtol.h: Include "exitfail.h".
31340         (STRTOL_FATAL_ERROR): Exit with status exit_failure, not 2.
31341
31342         * lib/long-options.c (parse_long_options): Use prototype
31343         for usage function arg.  Pass it EXIT_SUCCESS rather than 0,
31344         for clarity.
31345
31346 2004-01-21  Jim Meyering  <jim@meyering.net>
31347
31348         * lib/mktime.c (__mktime_internal) [!_LIBC]: Define to mktime_internal
31349         so as not to conflict with a different-sized __mktime_internal
31350         function in GNU libc.
31351         * lib/timegm.c (__mktime_internal) [!_LIBC]: Likewise.
31352         Problem building statically-linked `ls' reported by Michael Brunnbauer.
31353
31354 2004-01-20  Karl Berry  <karl@gnu.org>
31355
31356         * config/config.guess: update from config.
31357
31358         * config/srclistvars.sh: GNUWWWLICENSES for karl.
31359
31360 2004-01-20  Bruno Haible  <bruno@clisp.org>
31361
31362         Safer stack allocation.
31363         * lib/setenv.c: Include allocsa.h.
31364         (alloca): Remove fallback definition.
31365         (freea): Remove macro.
31366         (__add_to_environ) [!_LIBC]: Use allocsa instead of alloca. Use freesa
31367         instead of freea.
31368
31369 2004-01-20  Bruno Haible  <bruno@clisp.org>
31370
31371         * m4/eealloc.m4: New file, from GNU gettext.
31372
31373 2004-01-20  Bruno Haible  <bruno@clisp.org>
31374
31375         * m4/allocsa.m4: New file, from GNU gettext.
31376
31377 2004-01-20  Bruno Haible  <bruno@clisp.org>
31378
31379         * lib/xallocsa.h: New file, from GNU gettext.
31380         * lib/xallocsa.c: New file, from GNU gettext.
31381
31382 2004-01-20  Bruno Haible  <bruno@clisp.org>
31383
31384         * lib/wait-process.c: On Windows, include windows.h. Needed on mingw.
31385
31386 2004-01-20  Bruno Haible  <bruno@clisp.org>
31387
31388         * lib/wait-process.c (wait_subprocess): Add ignore_sigpipe argument.
31389         * lib/wait-process.c (wait_subprocess): Likewise. Handle SIGPIPE
31390         specially.
31391
31392 2004-01-20  Bruno Haible  <bruno@clisp.org>
31393
31394         * lib/wait-process.c (wait_process): Disable the 2003-10-31 waitid()
31395         patch.
31396
31397 2004-01-20  Bruno Haible  <bruno@clisp.org>
31398
31399         * lib/wait-process.c (cleanup_slaves): Use ANSI C declaration.
31400
31401 2004-01-20  Bruno Haible  <bruno@clisp.org>
31402
31403         * lib/eealloc.h: New file.
31404
31405 2004-01-20  Bruno Haible  <bruno@clisp.org>
31406
31407         * lib/binary-io.h: Avoid warnings on Cygwin.
31408
31409 2004-01-20  Bruno Haible  <bruno@clisp.org>
31410
31411         * lib/allocsa.h: New file, from GNU gettext.
31412         * lib/allocsa.c: New file, from GNU gettext.
31413
31414 2004-01-18  Karl Berry  <karl@gnu.org>
31415
31416         * doc/gpl.texi, doc/lgpl.texi: new files.
31417
31418 2004-01-18  Karl Berry  <karl@gnu.org>
31419
31420         * config/srclistvars.sh (GNUWWWLICENSES): new variable.
31421         * config/srclist.txt ({fdl,gpl,lgpl}.text): get from there.
31422
31423 2004-01-15  Paul Eggert  <eggert@twinsun.com>
31424
31425         Merge from coreutils.
31426
31427         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Check for uintptr_t.
31428         * m4/posixver.m4 (gl_POSIXVER): Require gl_DEFAULT_POSIX2_VERSION.
31429         (gl_DEFAULT_POSIX2_VERSION): Move
31430         the documentation from 'configure' into 'config.hin',
31431         so that 'configure --help' isn't burdened by it and
31432         we don't have to worry about its formatting there.
31433         Reword the documentation so that it's more succinct
31434         and can be run together into a single paragraph.
31435         * m4/same.m4 (gl_SAME): Check for pathconf.
31436
31437 2004-01-15  Paul Eggert  <eggert@twinsun.com>
31438
31439         Merge from coreutils.
31440
31441         * lib/posixver.c: Include posixver.h.
31442
31443         * lib/same.c: Include <stdbool.h>, <limits.h>.
31444         (_POSIX_NAME_MAX): Define if not defined.
31445         (MIN): New macro.
31446         (same_name): If file names are silently truncated, report
31447         that the file names are the same if they are the same after
31448         the silent truncation.
31449
31450         * lib/xstrtod.h (xstrtod): Accept an extra arg, specifying the
31451         conversion function.
31452         * lib/xstrtod.c (xstrtod): Likewise.  All callers changed to
31453         include c-strtod.h and use c_strtod.  Don't include stdlib.h; no
31454         longer needed.
31455
31456 2004-01-15  Jim Meyering  <jim@meyering.net>
31457
31458         Merge from coreutils.
31459
31460         * m4/clock_time.m4 (gl_CLOCK_TIME): Don't set LIB_CLOCK_GETTIME
31461         if no library is required.
31462         * m4/jm-macros.m4: Don't require UTILS_SYS_OPEN_MAX.
31463         * m4/jm-macros.m4 (jm_MACROS): Require gl_FUNC_FREE.
31464         * m4/jm-macros.m4 (jm_MACROS): Require autoconf-2.58.
31465         (AC_LANG_SOURCE): Remove definition, now that we require autoconf-2.58.
31466         * m4/jm-macros.m4 (jm_MACROS): Don't require AC_FUNC_FTW.
31467         * m4/lib-check.m4 (jm_LIB_CHECK): Do not set LIB_CRYPT to the
31468         value, $ac_cv_search_crypt, if it's "none required".
31469         * m4/posixver.m4 (gl_DEFAULT_POSIX2_VERSION): New macro.
31470         * m4/prereq.m4 (jm_PREREQ): Require AC_FUNC_GETLOADAVG,
31471         not gl_FUNC_GETLOADAVG.
31472         * m4/prereq.m4 (jm_PREREQ): Require gl_READTOKENS, gl_MD5, gl_MAKEPATH,
31473         gl_LONG_OPTIONS, and gl_IDCACHE, gl_GETUGROUPS.
31474
31475 2004-01-15  Jim Meyering  <jim@meyering.net>
31476
31477         Merge from coreutils.
31478
31479         * lib/md5.h (rol) [__GNUC__ && __i386__]: Don't use `asm' code.  These
31480         days, gcc-3.x does better all by itself.  Patch from Dean Gaudet:
31481         http://mail.gnu.org/archive/html/bug-coreutils/2003-11/msg00144.html
31482
31483         * lib/posixver.c (DEFAULT_POSIX2_VERSION): Use definition of new,
31484         optional configure-time default.
31485
31486         * lib/version-etc.c (version_etc_copyright): Update copyright date.
31487
31488         * lib/xreadlink.c (xreadlink): Correct outdated comment.
31489
31490 2004-01-15  Alexandre Duret-Lutz  <adl@gnu.org>
31491
31492         Merge from coreutils.
31493
31494         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Do not set LIB_NANOSLEEP to the
31495         value, $ac_cv_search_nanosleep, if it's "none required".
31496
31497 2004-01-14  Paul Eggert  <eggert@twinsun.com>
31498
31499         * lib/fnmatch_loop.c (ALLOCA_LIMIT): Remove macro, which collided
31500         with like-named macro in fnmatch.c.
31501         (EXT): Use an internal constant instead.
31502
31503         Merge fnmatch patches from glibc.
31504         * lib/fnmatch.c (mbsinit): Remove define.
31505         Add libc_hidden_ver (__fnmatch, fnmatch).
31506         * lib/fnmatch_loop.c (FCT): Cast to int32_t and UCHAR when appropriate.
31507         Adjust to renaming of collseq_table_lookup to __collseq_table_lookup.
31508
31509 2004-01-14  Karl Berry  <karl@gnu.org>
31510
31511         * config/install-sh: update from automake.
31512
31513 2004-01-13  Karl Berry  <karl@gnu.org>
31514
31515         * config/install-sh: update from automake.
31516
31517 2004-01-09  Karl Berry  <karl@gnu.org>
31518
31519         * config/install-sh: update from automake.
31520
31521 2004-01-05  Karl Berry  <karl@gnu.org>
31522
31523         * config/config.{sub,guess}: update from config.
31524
31525 2003-12-31  Karl Berry  <karl@gnu.org>
31526
31527         * config/depcomp: update from automake.
31528
31529 2003-12-14  Karl Berry  <karl@gnu.org>
31530
31531         * lib/config.charset: update from gettext-runtime.
31532
31533 2003-12-03  Paul Eggert  <eggert@twinsun.com>
31534
31535         * lib/getgroups.c (getgroups): xmalloc takes one argument, not two.
31536         Bug reported by Alfred M. Szmidt.
31537
31538 2003-12-03  Bruno Haible  <bruno@clisp.org>
31539
31540         * m4/gettext.m4: Upgrade from gettext-0.13.
31541         * m4/po.m4: Upgrade from gettext-0.13.
31542         * m4/size_max.m4 (gl_SIZE_MAX): Don't use the _ONCE macros here.
31543         * m4/intmax.m4: New file, from gettext-0.13.
31544         * m4/printf-posix.m4: New file, from gettext-0.13.
31545
31546 2003-11-29  Karl Berry  <karl@gnu.org>
31547
31548         * lib/argp-{help.c,parse.c,namefrob.h}, argp.h: update from libc.
31549
31550 2003-11-25  Paul Eggert  <eggert@twinsun.com>
31551             Bruno Haible  <bruno@clisp.org>
31552
31553         * lib/printf-parse.h: Don't include sys/types.h.
31554         (ARG_NONE): New macro.
31555         (char_directive): Change type of *arg_index fields to size_t.
31556         * lib/printf-parse.c: Don't include sys/types.h.
31557         (SSIZE_MAX): Remove macro.
31558         (PRINTF_PARSE): Change the type of the arg_index variables to size_t.
31559         Remove unnecessary overflow check.
31560         * lib/vasnprintf.c (VASNPRINTF): Update for type change of *arg_index
31561         fields.
31562
31563 2003-11-25  Bruno Haible  <bruno@clisp.org>
31564
31565         * modules/vasnprintf (Files): Remove m4/ssize_t.m4.
31566
31567 2003-11-25  Bruno Haible  <bruno@clisp.org>
31568
31569         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_PARSE): Don't require
31570         gt_TYPE_SSIZE_T.
31571
31572 2003-11-24  Paul Eggert  <eggert@twinsun.com>
31573
31574         * modules/alloca: Remove dependency on xalloc.
31575
31576 2003-11-24  Paul Eggert  <eggert@twinsun.com>
31577
31578         * lib/alloca.c: Remove dependency on xalloc module.
31579         (xalloc_die): Remove.
31580         (memory_full) [!defined emacs]: New macro.
31581         [!defined emacs]: Don't include xalloc.h.
31582         (alloca): Invoke memory_full, not xalloc_die, if malloc fails or
31583         address arithmetic overflows.  Change datatypes a bit to avoid
31584         unnecessary casts.
31585
31586 2003-11-22  Jim Meyering  <jim@meyering.net>
31587
31588         * lib/xmalloc.c (x2nrealloc_inline): Fix typos in comments:
31589         s/size/size_t/.
31590
31591 2003-11-21  Karl Berry  <karl@gnu.org>
31592
31593         * config/config.{sub,guess}: update from config.
31594
31595 2003-11-18  Karl Berry  <karl@gnu.org>
31596
31597         * config/config.{sub,guess}: update from config.
31598
31599         * config/(printf-{parse,args}.[ch]): sync broken, sigh.
31600
31601 2003-11-17  Paul Eggert  <eggert@twinsun.com>
31602
31603         * README: Mention that S+T cannot overflow if S is the size of
31604         an existing object and T is sufficiently small.
31605
31606 2003-11-17  Jim Meyering  <jim@meyering.net>
31607
31608         On systems without utime and without a utimes function capable of
31609         dealing with a NULL struct utimbuf* argument, this utime replacement
31610         could -- in unusual circumstances -- leak a file descriptor.
31611         * lib/utime.c: Include <unistd.h> and <errno.h>.
31612         (utime_null): Be sure to close `fd' and to preserve errno.
31613         Reported by Geoff Collyer via Arnold Robbins.
31614
31615 2003-11-17  Bruno Haible  <bruno@clisp.org>
31616
31617         * modules/vasnprintf (Files): Add m4/ssize_t.m4.
31618         (Depends-on): Add xsize.
31619
31620 2003-11-17  Bruno Haible  <bruno@clisp.org>
31621
31622         * m4/vasnprintf.m4 (gl_PREREQ_PRINTF_PARSE): Require gt_TYPE_SSIZE_T.
31623
31624 2003-11-17  Bruno Haible  <bruno@clisp.org>
31625
31626         * lib/vasnprintf.c (alloca): Remove fallback definition.
31627         (freea): Remove definition.
31628         (VASNPRINTF): Use alloca only for small sizes, say <= 4000 bytes.
31629         Reported by Paul Eggert.
31630
31631 2003-11-16  Paul Eggert  <eggert@twinsun.com>
31632             Bruno Haible  <bruno@clisp.org>
31633
31634         Protect against address arithmetic overflow.
31635         * lib/printf-args.h: Include stddef.h.
31636         (arguments): Change type of field 'count' to size_t.
31637         * lib/printf-args.c (printf_fetchargs): Use size_t instead of
31638         'unsigned int' where appropriate.
31639         * lib/printf-parse.h: Include sys/types.h.
31640         (char_directive): Change type of *arg_index fields to ssize_t.
31641         (char_directives): Change type of fields 'count', max_*_length to
31642         size_t.
31643         * lib/printf-parse.c: Include sys/types.h and xsize.h.
31644         (SSIZE_MAX): Define fallback value.
31645         (PRINTF_PARSE): Use size_t instead of 'unsigned int' and ssize_t
31646         instead of 'int' where appropriate. Check a_allocated, d_allocated
31647         against overflow. Reject %m$ argument numbers > SSIZE_MAX + 1.
31648         * lib/vasnprintf.c: Include xsize.h.
31649         (VASNPRINTF): Use size_t instead of 'unsigned int' where appropriate.
31650         Check alloca, malloc, realloc, ENSURE_ALLOCATION arguments against
31651         overflow. Avoid wraparound when converting a width or precision from
31652         decimal to binary.
31653
31654 2003-11-16  Bruno Haible  <bruno@clisp.org>
31655
31656         Update from GNU gettext.
31657         * lib/printf-parse.c: Generalize to it can be compiled for wide
31658         strings.
31659         (PRINTF_PARSE, CHAR_T, DIRECTIVE, DIRECTIVES): New macros.
31660         * lib/vasnprintf.c: Generalize to it can be compiled for wide strings.
31661         (VASNPRINTF, CHAR_T, DIRECTIVE, DIRECTIVES, PRINTF_PARSE, USE_SNPRINTF,
31662         SNPRINTF): New macros.
31663         Don't include <alloca.h> if the file is used inside libintl.
31664         (local_wcslen): New function, for Solaris 2.5.1.
31665         (VASNPRINTF): Use it instead of wcslen.
31666
31667 2003-11-16  Bruno Haible  <bruno@clisp.org>
31668
31669         * lib/xsize.h (xmax): New function.
31670         (xsum, xsum3, xsum4): Declare as "pure" functions.
31671
31672 2003-11-12  Paul Eggert  <eggert@twinsun.com>
31673
31674         * modules/xalloc (Files): Undo latest change, since xalloc.h
31675         no longer needs SIZE_MAX or PTRDIFF_MAX.
31676
31677 2003-11-12  Paul Eggert  <eggert@twinsun.com>
31678
31679         * m4/xalloc.m4 (gl_PREREQ_XALLOC): Do not require gl_SIZE_MAX or
31680         gl_PTRDIFF_MAX.
31681
31682 2003-11-12  Paul Eggert  <eggert@twinsun.com>
31683
31684         * lib/xstrtol.c (__xstrtol): Remove "break" immediately after
31685         "return", to pacify some unknown compiler.  Problem reported
31686         by Joerg Schilling.
31687
31688 2003-11-12  Paul Eggert  <eggert@twinsun.com>
31689
31690         * lib/xalloc.h: Do not include <limits.h> or <stdint.h>.
31691         (xalloc_oversized): Use sizeof (ptrdiff_t) and sizeof (size_t) for
31692         the heuristic, rather than PTRDIFF_MAX and SIZE_MAX.  This
31693         heuristic is just as accurate as far as we know, and it removes a
31694         dependency on size_max.m4 and ptrdiff_max.m4.
31695
31696 2003-11-11  Bruno Haible  <bruno@clisp.org>
31697
31698         * modules/xsize (Files): Add m4/size_max.m4.
31699         * modules/xalloc (Files): Add m4/size_max.m4, m4/ptrdiff_max.m4.
31700
31701 2003-11-11  Bruno Haible  <bruno@clisp.org>
31702
31703         * m4/size_max.m4: New file.
31704         * m4/ptrdiff_max.m4: New file.
31705         * m4/xsize,m4 (gl_XSIZE): Require gl_SIZE_MAX.
31706         * m4/xalloc.m4 (gl_PREREQ_XALLOC): New macro.
31707         (gl_XALLOC): Invoke it.
31708
31709 2003-11-11  Bruno Haible  <bruno@clisp.org>
31710
31711         * lib/xsize.h (SIZE_MAX): Remove fallback definition.
31712         * lib/xalloc.h: Include limits.h. Assume SIZE_MAX and PTRDIFF_MAX are
31713         defined.
31714
31715 2003-11-10  Paul Eggert  <eggert@twinsun.com>
31716
31717         * lib/xalloc.h (xalloc_oversized): [! (defined PTRDIFF_MAX &&
31718         PTRDIFF_MAX < SIZE_MAX)]: Fix off-by-one error that would have
31719         rejected some allocations of exactly SIZE_MAX - 2 bytes.
31720         From Bruno Haible.
31721         [defined PTRDIFF_MAX && PTRDIFF_MAX < SIZE_MAX]: Use SIZE_MAX,
31722         not (size_t) -1, since it's defined here.
31723
31724 2003-11-09  Karl Berry  <karl@gnu.org>
31725
31726         * config/mkinstalldirs, depcomp, mdate-sh: update from automake.
31727
31728 2003-11-06  Paul Eggert  <eggert@twinsun.com>
31729
31730         * lib/xalloc.h [HAVE_STDINT_H]: Include <stdint.h>.
31731         (xalloc_oversized) [! (PTRDIFF_MAX < SIZE_MAX)]:
31732         Reject sizes of exactly SIZE_MAX bytes.
31733         * lib/xreadlink.c: Include "xalloc.h" before checking whether SIZE_MAX
31734         is defined, since "xalloc.h" now defines SIZE_MAX on modern hosts.
31735
31736 2003-11-05  Bruno Haible  <bruno@clisp.org>
31737
31738         * lib/xsize.h: Include limits.h, to avoid a possible collision with
31739         SIZE_MAX defined in <limits.h> on Solaris.
31740
31741 2003-11-04  Jim Meyering  <jim@meyering.net>
31742
31743         * modules/sysexits: Use the `$(VAR)' notation for AC_SUBST'd
31744         variable names, rather than @VAR@.
31745         * modules/poll: Likewise.
31746
31747 2003-11-04  Bruno Haible  <bruno@clisp.org>
31748
31749         * modules/xsize: New file.
31750         * modules/linebreak: Depend on xsize.
31751         * MODULES.html.sh (func_all_modules): Add xsize.
31752
31753 2003-11-04  Bruno Haible  <bruno@clisp.org>
31754
31755         * m4/xsize.m4: New file.
31756
31757 2003-11-04  Bruno Haible  <bruno@clisp.org>
31758
31759         * lib/xsize.h: New file.
31760         * lib/linebreak.c: Include xsize.h.
31761         (mbs_possible_linebreaks, mbs_width_linebreaks): Check malloc()
31762         argument for overflow.
31763         Suggested by Paul Eggert.
31764
31765 2003-11-03  Karl Berry  <karl@gnu.org>
31766
31767         * config/config.{guess,sub}: update from config.
31768
31769 2003-11-03  Jim Meyering  <jim@meyering.net>
31770
31771         * modules/userspec (lib_SOURCES): Add userspec.h.
31772         (Include): Add "userspec.h".
31773         Improve description.
31774
31775 2003-11-03  Jim Meyering  <jim@meyering.net>
31776
31777         * lib/userspec.c: Include "userspec.h".
31778         * lib/userspec.h: New file.
31779
31780 2003-11-03  Bruno Haible  <bruno@clisp.org>
31781
31782         * m4/wait-process.m4 (gl_WAIT_PROCESS): Also check for waitid.
31783
31784 2003-11-03  Bruno Haible  <bruno@clisp.org>
31785
31786         * lib/wait-process.c (wait_process): Use waitid with WNOWAIT if
31787         available, to avoid (extremely rare) race condition.
31788         Suggested by Paul Eggert.
31789
31790 2003-11-02  Karl Berry  <karl@gnu.org>
31791
31792         * config/srclist.txt (vasprintf.c): sync broken, sigh.
31793
31794 2003-10-31  Paul Eggert  <eggert@twinsun.com>
31795
31796         * lib/mountlist.h (struct mount_entry.me_type_malloced): New member.
31797         * lib/mountlist.c (SIZE_MAX): Define if not defined already.
31798         (read_filesystem_list): Set and use me_type_malloced.
31799         Use "sizeof *me" rather than "sizeof (struct mount_entry)" (or
31800         whatever the type happens to be), for brevity and consistency.
31801         Check for size calculation overflow on Alphas running OSF/1.
31802
31803 2003-10-31  Jim Meyering  <jim@meyering.net>
31804
31805         * lib/hash.c: Include "xalloc.h" for use of xalloc_oversized.
31806
31807         * lib/linebuffer.c: Include <string.h> for declaration of memset.
31808
31809 2003-10-30  Paul Eggert  <eggert@twinsun.com>
31810             Bruno Haible  <bruno@clisp.org>
31811
31812         * lib/vasprintf.c: Include <limits.h>, <stdlib.h>.
31813         (vasprintf): Fail if the resulting length doesn't fit in an 'int'.
31814
31815 2003-10-30  Paul Eggert  <eggert@cs.ucla.edu>
31816
31817         * m4/host-os.m4 (UTILS_HOST_OS): Change netbsd*-gnu pattern back to
31818         netbsd*-gnu*.  Suggested by Robert Millan.
31819
31820 2003-10-29  Paul Eggert  <eggert@twinsun.com>
31821
31822         * modules/group-member: Depend on stdbool.
31823
31824 2003-10-29  Paul Eggert  <eggert@twinsun.com>
31825
31826         * m4/xalloc.m4 (gl_XALLOC): Undo previous change.
31827
31828 2003-10-29  Paul Eggert  <eggert@twinsun.com>
31829
31830         * m4/host-os.m4 (UTILS_HOST_OS): Resurrect netbsd*-gnu.  Add comments
31831         to it, and to knetbsd*-gnu and kfreebsd*-gnu.  Remove the '*' from
31832         after the 'gnu' in these cases.  This fixes some bugs in the
31833         previous change, and is based on suggestions by Robert Millan.
31834
31835 2003-10-29  Paul Eggert  <eggert@twinsun.com>
31836
31837         * lib/xalloc.h (xalloc_oversized): Now a macro, not a function,
31838         so that it works even if SIZE_MAX < N.  Do not include <stdbool.h>;
31839         no longer needed.
31840         * lib/quotearg.c (quotearg_n_options): Use it.
31841         * lib/group-member.c: Include <stdbool.h>.
31842         (free_group_info): Arg is now const *; don't free arg.
31843         (get_group_info): Now returns bool and accepts struct group_info *,
31844         rather than returning a malloc'ed struct group_info *.
31845         All uses changed.  Check for overflow in internal size calculation.
31846
31847         * lib/getusershell.c (readname): Simplify the code by using x2nrealloc
31848         rather than xmalloc/xrealloc.
31849         * lib/linebuffer.c (initbuffer, readlinebuffer): Simplify the code by
31850         using x2realloc rather than xmalloc/xrealloc.  Also, fix a C
31851         conformance bug: the old code used a pointer after freeing the
31852         storage that it addressed.
31853         * lib/hash.c (hash_initialize): Simplify the code by using
31854         xalloc_oversized rather than doing it by hand.
31855         * lib/getgroups.c (getgroups): Don't use xrealloc, since we don't need
31856         the buffer preserved.  Use free and xmalloc instead.
31857         * lib/quotearg.c (quotearg_n_options): Likewise.
31858         Use a simpler test for size overflow.  Don't use xalloc_oversized
31859         because unsigned int might be wider than size_t (!); this suggests
31860         that we should switch from unsigned int to size_t for slot numbers.
31861
31862 2003-10-28  Paul Eggert  <eggert@twinsun.com>
31863
31864         * m4/host-os.m4 (UTILS_HOST_OS): Identify GNU/KFreeBSD and
31865         GNU/KNetBSD.  These implementations use glibc atop the FreeBSD and
31866         NetBSD kernels.  Requested by Richard Stallman.
31867
31868 2003-10-27  Paul Eggert  <eggert@twinsun.com>
31869
31870         * lib/exclude.c (new_exclude): Use xzalloc rather than xmalloc
31871         to allocate the returned structure.  Do not allocate a subarray,
31872         as x2nrealloc will do that.
31873         (add_exclude): Use x2nrealloc to reallocate ex->exclude,
31874         instead of xnrealloc.
31875         (add_exclude_file): Use x2realloc instead of malloc + xnrealloc.
31876
31877 2003-10-27  Bruno Haible  <bruno@clisp.org>
31878
31879         * lib/stdbool_.h: Better support for BeOS.
31880
31881 2003-10-26  Paul Eggert  <eggert@twinsun.com>
31882
31883         * m4/xalloc.m4 (gl_XALLOC): Requore AC_C_INLINE, since xalloc.h
31884         now uses inline.
31885
31886 2003-10-26  Paul Eggert  <eggert@twinsun.com>
31887
31888         * lib/xalloc.h (xalloc_oversized): New static inline function, for
31889         callers that want to do their own size-overflow checking.  Include
31890         <stdbool.h>, since xalloc_oversized returns bool.
31891         * lib/xalloc.c (array_size_overflow): Remove.  All callers changed
31892         to use xalloc_oversized.
31893
31894         Add two functions x2realloc, x2nrealloc, for programs that grow
31895         arrays dynamically by doubling their sizes.
31896         * lib/xalloc.h (x2realloc, x2nrealloc): New decls.
31897         * lib/xmalloc.c (x2nrealloc_inline, x2nrealloc, x2realloc):
31898         New functions.
31899
31900         Port to C99 semantics for 'inline' of external functions.
31901         Bug reported by Bruno Haible.
31902         * lib/xmalloc.c (xnmalloc_inline): New static inline function,
31903         with the old contents of xnmalloc.
31904         (xnmalloc, xmalloc): Use it.
31905         (xnrealloc_inline): New static inline function,
31906         with the old contents of xnrealloc.
31907         (xnrealloc, xrealloc): Use it.
31908
31909         * lib/alloc.c (alloca): xmalloc cannot return NULL, so don't test for
31910         that.
31911
31912 2003-10-26  Karl Berry  <karl@gnu.org>
31913
31914         * config/srclist.txt (COPYING.DOC): no longer available from
31915         /gd/gnuorg; don't know where the ultimate source is.
31916
31917 2003-10-25  Paul Eggert  <eggert@twinsun.com>
31918
31919         Fix several address-calculation bugs in the hash modules,
31920         plus some minor code cleanup.
31921
31922         * lib/hash.h: Include <stdbool.h>, for bool.
31923         * lib/hash.c: Don't include <stdbool.h>, since hash.h does it now.
31924         * lib/hash.h (Hash_hasher, hash_get_n_buckets, hash_get_n_buckets_used,
31925         hash_get_n_entries, hash_get_max_bucket_length,
31926         hash_get_entries, hash_do_for_each, hash_string, hash_initialize,
31927         hash_rehash): Use size_t rather than unsigned.
31928         * lib/hash.c (struct hash_table, hash_get_n_buckets,
31929         hash_get_n_buckets_used, hash_get_n_entries,
31930         hash_get_max_bucket_length, hash_table_ok, hash_print_statistics,
31931         hash_get_entries, hash_do_for_each, hash_string, is_prime,
31932         next_prime, hash_initialize, hash_rehash, hash_delete, hash_print):
31933         Likewise.
31934         (SIZE_MAX): Define if not defined.
31935         (hash_get_max_bucket_length, hash_table_ok, hash_lookup,
31936         hash_get_first, hash_get_next, hash_get_entries, hash_do_for_each,
31937         hash_print):
31938         Use const * when possible.
31939         (hash_string): Use (unsigned char) *P rather than *(unsigned char *) P.
31940         (check_tuning): Fix bug: if tuning parameters were very close to
31941         0 or 1, rounding errors could have caused subscript violations.
31942         (hash_initialize, allocate_entry, hash_print): Remove unnecessary cast.
31943         (hash_initialize): Add 'fail:' label
31944         to free table and return NULL, and use it to simplify code.
31945         Use calloc rather than clearing the storage ourself.
31946         (hash_initialize, hash_rehash): Check for arithmetic overflow in
31947         buffer size calculations.
31948         * lib/hash-pjw.h (hash_pjw): Use size_t, not unsigned.
31949         Include <stddef.h>, for size_t.
31950         * lib/hash-pjw.c (hash_pjw): Likewise.
31951         Switch to method described by Bruno Haible.
31952         Include <limits.h>, for CHAR_BIT.
31953         (SIZE_BITS): New macro.
31954
31955 2003-10-23  Paul Eggert  <eggert@twinsun.com>
31956
31957         * m4/getline.m4 (AM_FUNC_GETLINE):
31958         Don't include getndelim2.o twice into LIBOBJS; this breaks on some
31959         hosts.  Problem reported by Derek Robert Price in
31960         <http://mail.gnu.org/archive/html/bug-gnulib/2003-10/msg00092.html>.
31961         This patch can be withdrawn after Autoconf 2.58 is required for gnulib.
31962         * m4/getndelim2.m4 (gl_GETNDELIM2): Likewise.
31963
31964 2003-10-21  Paul Eggert  <eggert@twinsun.com>
31965
31966         * lib/getndelim2.c (getndelim2): When size calculation overflows,
31967         ceiling the allocation at NMAX bytes rather than silently
31968         discarding input bytes before NMAX is reached.  This makes
31969         a difference only if NMAX exceeds SIZE_MAX / 2.
31970
31971         * lib/obstack.c: Merge from glibc.
31972         [defined _LIBC]: Include <obstack.h>, not "obstack.h".
31973         Add libc_hidden_def (_obstack_newchunk).
31974         (_obstack_free) [! defined _LIBC]: Remove.
31975         [defined _LIBC]: Make a strong alias from obstack_free, rather than
31976         a clone of the function body.
31977         (fputs) [defined _LIBC && defined USE_IN_LIBIO]: Remove.
31978         [defined _LIBC && !defined USE_IN_LIBIO]: Include <libio/iolibio.h>.
31979
31980         * lib/obstack.h: Indenting cleanup, to make it easier to merge with
31981         glibc.
31982         (obstack_grow, obstack_grow0): Remove unnecessary parentheses around
31983         arg to memcpy.
31984
31985         * lib/obstack.h (obstack_1grow_fast): Properly parenthesize arg.
31986         (obstack_ptr_grow_fast, obstack_int_grow_fast):
31987         Don't use lvalue casts, as GCC plans to remove support for them
31988         in GCC 3.5.  Reported by Joseph S. Myers.  This bug
31989         was also present in the non-GCC version, indicating that this
31990         code had always been buggy and had never been widely used.
31991         (obstack_1grow, obstack_ptr_grow, obstack_int_grow, obstack_blank):
31992         Use the fast variant of each macro, rather than copying the
31993         definiens of the fast variant; that way, we'll be more likely to
31994         catch future bugs in the fast variants.
31995
31996 2003-10-20  Bruno Haible  <bruno@clisp.org>
31997
31998         * modules/wait-process: New file.
31999         * MODULES.html.sh (func_all_modules): Add wait-process.
32000
32001 2003-10-20  Bruno Haible  <bruno@clisp.org>
32002
32003         * m4/wait-process.m4: New file.
32004
32005 2003-10-20  Bruno Haible  <bruno@clisp.org>
32006
32007         * lib/wait-process.h: New file, from GNU gettext.
32008         * lib/wait-process.c: New file, from GNU gettext.
32009
32010 2003-10-19  Jim Meyering  <jim@meyering.net>
32011
32012         * lib/vasnprintf.c (vasnprintf): Work around losing snprintf on
32013         HPUX 10.20.
32014
32015 2003-10-18  Karl Berry  <karl@gnu.org>
32016
32017         * config/config.guess: update from config.
32018
32019 2003-10-16  Paul Eggert  <eggert@twinsun.com>
32020
32021         * lib/getgroups.c: Include <errno.h>, <stdlib.h>.
32022         (getgroups): First arg is int, not size_t.
32023         Don't let 'free' mangle errno.
32024
32025 2003-10-16  Paul Eggert  <eggert@twinsun.com>
32026
32027         * README: Mention that gnulib assumes that (foo *) NULL + 0 == NULL.
32028
32029 2003-10-16  Karl Berry  <karl@gnu.org>
32030
32031         * config/config.{guess,sub}: update from config.
32032
32033 2003-10-16  Jim Meyering  <jim@meyering.net>
32034
32035         * lib/xmalloc.c: Include <string.h>, for declarations of memset and
32036         memcpy.
32037
32038 2003-10-15  Paul Eggert  <eggert@twinsun.com>
32039
32040         * lib/exclude.c: Do not include <inttypes.h> or <stdint.h>.
32041         (SIZE_MAX): Remove.
32042         (new_exclude, add_exclude_file): Initial size no longer needs to
32043         be a power of 2.
32044         (add_exclude, add_exclude_file): Use xnrealloc instead of rolling
32045         our own address arithmetic overflow checking.
32046
32047         * lib/fnmatch.c (SIZE_MAX): Define if standard headers don't.
32048         (fnmatch): Do not alloca more than 2000 wide characters;
32049         instead, use malloc for large buffers.
32050         Check for address arithmetic overflow, and return -1
32051         with errno set to ENOMEM in that case.
32052         * lib/fnmatch_loop.c (ALLOCA_LIMIT): New macro.
32053         (NEW_PATTERN): Do not alloca more than 8000 bytes;
32054         instead, return -1.  Check for address arithmetic overflow.
32055
32056 2003-10-14  Paul Eggert  <eggert@twinsun.com>
32057
32058         Handle invalid suffixes and overflow independently, so that
32059         callers can treat them independently as needed.  Fix some bugs in
32060         suffix handling, e.g., "100k@" was not diagnosed as an invalid
32061         suffix for a human-readable blocksize.  The major caller-visible
32062         change is the addition of a new
32063         LONGINT_INVALID_SUFFIX_CHAR_WITH_OVERFLOW enum value, indicating
32064         that both overflow and suffix chars were found.
32065
32066         * lib/human.c (humblock): Don't check separately for invalid suffix
32067         char; that is xstrtoumax's job (now that its bug is fixed).
32068         * lib/xstrtoimax.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM) [defined
32069         INTMAX_MAX]: New macros.
32070         * lib/xstrtol.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM, TYPE_MINIMUM,
32071         TYPE_MAXIMUM): New macros.
32072         (bkm_scale, bkm_scale_by_power): Return strtol_error, not int.
32073         (bkm_scale, bkm_scale_by_power, __xstrtol): Return maximal values
32074         if overflow occurs, as it's what __strtol does and it's more useful
32075         in practice.
32076         (__xstrtol): If __strtol reports some error other than ERANGE,
32077         reflect it to the caller as LONGINT_INVALID.  If it reports
32078         ERANGE, continue the rest of parsing, and report LONGINT_OVERFLOW
32079         | LONGINT_INVALID_SUFFIX_CHAR if both errors occur.
32080         * lib/xstrtol.h (LONGINT_INVALID_SUFFIX_CHAR_WITH_OVERFLOW): New enum
32081         value.
32082         (_STRTOL_ERROR): Handle it.  Abort when given unknown error codes.
32083         * lib/xstrtoul.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM): New macros.
32084         * lib/xstrtoumax.c (STRTOL_T_MINIMUM, STRTOL_T_MAXIMUM)
32085         [defined UINTMAX_MAX]: New macros.
32086
32087 2003-10-14  Bruno Haible  <bruno@clisp.org>
32088
32089         * modules/fatal-signal: Add m4/sig_atomic_t.m4 to file list.
32090
32091 2003-10-14  Bruno Haible  <bruno@clisp.org>
32092
32093         * m4/sig_atomic_t: New file, from GNU gettext.
32094         * m4/fatal-signal.m4 (gl_FATAL_SIGNAL): Require gt_TYPE_SIG_ATOMIC_T.
32095
32096 2003-10-14  Bruno Haible  <bruno@clisp.org>
32097
32098         * lib/fatal-signal.h: Improved comments. Suggested by Paul Eggert.
32099         * lib/fatal-signal.c: Use sig_atomic_t. Suggested by Paul Eggert.
32100         Also use volatile where needed.
32101
32102 2003-10-12  Paul Eggert  <eggert@twinsun.com>
32103
32104         * modules/xalloc: Do not depend on 'exit'.  Depend on 'stdbool'.
32105         Change maintainer from Bruno Haible to 'all'.
32106
32107 2003-10-12  Paul Eggert  <eggert@twinsun.com>
32108
32109         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Require AC_C_INLINE.
32110
32111 2003-10-12  Paul Eggert  <eggert@twinsun.com>
32112
32113         * lib/xalloc.h (xnmalloc, xzalloc, xnrealloc, xclone): New decls.
32114         (XMALLOC, XCALLOC, XREALLOC, XFREE, CCLONE, CLONE): Deprecate,
32115         and define in terms of the other primitives.
32116         * lib/xmalloc.c: Include stdbool.h; do not include exit.h.
32117         (SIZE_MAX): Define if not already defined.
32118         (array_size_overflow): New function.
32119         (xalloc_die): Abort instead of exiting if 'error' returns.
32120         (xnmalloc, xnrealloc, xzalloc, xclone): New functions.
32121         (xmalloc, xrealloc): Use them.
32122         (xcalloc): Check for address arithmetic overflow.
32123         * lib/xstrdup.c (xstrdup): Use xclone, since memcpy should be
32124         a bit faster than strcpy.
32125
32126 2003-10-10  Simon Josefsson  <jas@extundo.com>
32127
32128         * modules/argp (Depends-on): Add restrict and strcase.
32129
32130 2003-10-10  Simon Josefsson  <jas@extundo.com>
32131
32132         * m4/argp.m4: Add AC_C_INLINE.
32133
32134 2003-10-08  Paul Eggert  <eggert@twinsun.com>
32135
32136         Merge getpass from libc, plus a few fixes.
32137
32138         * lib/getpass.c (HAVE_STDIO_EXT) [_LIBC]: Define to 1.
32139         Include <stdbool.h>.
32140         Include <stdio_ext.h> if HAVE_STDIO_H, otherwise define
32141         __fsetlocking to empty.
32142         [_LIBC]: Do not include "getline.h" or "unlocked-io.h", but
32143         do include <bits/libc-lock.h>.
32144         Do not include <fcntl.h>; not needed.
32145         [_LIBC]: Include <wchar.h>.
32146         (NOTCANCEL_MODE): New macro.
32147         (flockfile, funlockfile) [_LIBC]: New macros.
32148         (__libc_cleanup_push, __libc_cleanup_pop, __getline, __tcgetattr)
32149         [!_LIBC]: New macros.
32150         (call_fclose): New function.
32151         (getpass): Use it.  Save tty stream separately; this simplifies the
32152         code and makes it more reliable if stdin happens to equal stdout.
32153         Invoke __fsetlocking on tty.
32154         Handle thread cancellation if needed.
32155         Namespace cleanup (use __tcgetattr, __getline).
32156         Use bool for Booleans.
32157         [USE_IN_LIBIO]: Handle wide streams.
32158         [!_LIBC]: Unconditionally do the fseek, since we don't know what
32159         stream might go where.
32160
32161         * lib/unlocked-io.h: Include <stdio.h>, so that the caller
32162         doesn't have to include <stdio.h> before us.
32163         (clearerr_unlocked, feof_unlocked, ferror_unlocked,
32164         fflush_unlocked, fgets_unlocked, fputc_unlocked, fputs_unlocked,
32165         fread_unlocked, fwrite_unlocked, getc_unlocked, getchar_unlocked,
32166         putc_unlocked, putchar_unlocked): Define to the unlocked counterpart
32167         if not declared, so that we can use getpass.c code from libc without
32168         rewriting it.
32169         (flockfile, ftrylockfile, funlockfile): New macros.
32170
32171 2003-10-08  Paul Eggert  <eggert@twinsun.com>
32172
32173         * modules/getpass: Depend on stdbool.
32174
32175 2003-10-08  Paul Eggert  <eggert@twinsun.com>
32176
32177         * m4/getpass.m4 (gl_PREREQ_GETPASS): Check for stdio_ext.h.
32178
32179 2003-10-07  Karl Berry  <karl@gnu.org>
32180
32181         * config/config.{guess,sub}: update from config.
32182
32183 2003-10-06  Jim Meyering  <jim@meyering.net>
32184             Bruno Haible  <bruno@clisp.org>
32185
32186         This lets translators provide better translations for the
32187         "Written by ..." part of --version output.
32188         * lib/version-etc.h: Include stdarg.h.
32189         (version_etc_copyright): Declare as readonly.
32190         (version_etc): Make this function variadic with a NULL-terminated list
32191         of author name strings.
32192         (version_etc_va): New declaration.
32193         * lib/version-etc.c: Include stdarg.h, stdlib.h.
32194         (version_etc_copyright): Declare as readonly.
32195         (version_etc_va): New function. Provide a different translatable string
32196         for each possible number of authors < 10. Abbreviate when there are 10
32197         authors or more.
32198         (version_etc): Make this function variadic. Call version_etc_va.
32199         Suggestion from Gary V. Vaughan.
32200
32201         * lib/long-options.h (parse_long_options): Change prototype: the
32202         authors string is moved to the end and becomes variadic.
32203         * lib/long-options.c: Include stdarg.h.
32204         (parse_long_options): Make this function variadic, too.
32205         Call version_etc_va, not version_etc.
32206
32207 2003-10-06  Bruno Haible  <bruno@clisp.org>
32208
32209         * modules/version-etc-2: Remove file.
32210         * MODULES.html.sh (func_all_modules): Remove version-etc-2.
32211
32212 2003-10-06  Bruno Haible  <bruno@clisp.org>
32213
32214         * modules/fatal-signal: New file.
32215         * MODULES.html.sh (func_all_modules): Add fatal-signal.
32216
32217 2003-10-06  Bruno Haible  <bruno@clisp.org>
32218
32219         * m4/fatal-signal.m4: New file.
32220         * m4/signalblocking.m4: New file, from GNU gettext.
32221
32222 2003-10-06  Bruno Haible  <bruno@clisp.org>
32223
32224         * lib/version-etc-2.h: Remove file.
32225         * lib/version-etc-2.c: Remove file.
32226
32227 2003-10-06  Bruno Haible  <bruno@clisp.org>
32228
32229         * lib/fatal-signal.h: New file, from GNU gettext.
32230         * lib/fatal-signal.c: New file, from GNU gettext.
32231
32232 2003-10-05  Paul Eggert  <eggert@twinsun.com>
32233
32234         * README: Rework advice for preventing empty .o files.
32235         Don't recommend ELIDE constructs.  Recommend <stddef.h>,
32236         not <sys/types.h>.
32237
32238 2003-10-04  Karl Berry  <karl@gnu.org>
32239
32240         * lib/argp*: update from libc.
32241
32242 2003-10-04  Karl Berry  <karl@gnu.org>
32243
32244         * config/config.{guess,sub}: update from config.
32245
32246 2003-10-02  Bruno Haible  <bruno@clisp.org>
32247
32248         * modules/lchown (Include): Add lchown.h.
32249         * modules/time_r (Include): Use "..." syntax.
32250         * modules/xgetdomainname (Include): Add xgetdomainname.h.
32251
32252 2003-10-01  Simon Josefsson  <jas@extundo.com>
32253
32254         * MODULES.html.sh (func_all_modules): Move gethostname from section
32255         'based on' to section 'lacking' POSIX:2001.
32256
32257 2003-10-01  Larry Jones  <lawrence.jones@eds.com>
32258
32259         * lib/getpass.c (getpass): Use a no-op fseek when switching from input
32260         to output mode on the same stream.
32261
32262 2003-09-29  Paul Eggert  <eggert@twinsun.com>
32263
32264         * lib/strftime.c (tm_diff) [! HAVE_TM_GMTOFF]:
32265         Fix arg typo in previous patch.
32266
32267 2003-09-28  Jim Meyering  <jim@meyering.net>
32268
32269         * lib/error.c: Correct cpp indentation.
32270
32271 2003-09-27  Paul Eggert  <eggert@twinsun.com>
32272
32273         * modules/free: New file.
32274
32275 2003-09-27  Paul Eggert  <eggert@twinsun.com>
32276
32277         * m4/free.m4: New file.
32278
32279 2003-09-27  Paul Eggert  <eggert@twinsun.com>
32280
32281         * lib/minmax.h (MIN, MAX)
32282         [__STDC__ && defined __GNUC__ && __GNUC__ >= 2]:
32283         Omit the special code that used __typeof__, since we worry that
32284         it could be more trouble than it's worth.  See:
32285         http://mail.gnu.org/archive/html/bug-gnulib/2003-01/msg00090.html
32286         http://mail.gnu.org/archive/html/bug-gnulib/2003-01/msg00095.html
32287
32288         * lib/free.c: New file.
32289
32290 2003-09-27  Oskar Liljeblad  <oskar@osk.mine.nu>
32291
32292         Trivial fixes to Makefile.am parts of module listings.
32293         * modules/strstr: Append strstr.h to lib_SOURCES.
32294         * modules/strcase: Likewise, for strcase.h.
32295
32296 2003-09-27  Karl Berry  <karl@gnu.org>
32297
32298         * config/mkinstalldirs: update from automake.
32299
32300 2003-09-26  Paul Eggert  <eggert@twinsun.com>
32301
32302         * lib/error.c (SIZE_MAX) [!defined SIZE_MAX]: Define.
32303         (error_tail): Do not loop, reallocating temporary buffer, since
32304         the output cannot contain more wide characters than the input
32305         contains bytes, the size must be big enough already.  This avoids
32306         one potential size overflow calculation.  Check for size overflow
32307         when calculating temporary buffer size.  Free temporary buffer
32308         when done, if it was allocated with malloc; this plugs a memory
32309         leak.  Remove casts from void * to pointers, that are no longer
32310         needed now that we're assuming C89 or better.
32311
32312         Merge error changes from glibc.
32313
32314         * lib/error.c, error.h: Update copyright notice header to match glibc.
32315         * lib/error.c [defined _LIBC]: Include <errno.h>, <bits/libc-lock.h>.
32316         (error, error_at_line) [defined _LIBC && defined __libc_ptf_call]:
32317         Disable cancellation while printing error.
32318         * lib/error.h: Prepend __ to parameter names.
32319
32320 2003-09-26  Jim Meyering  <jim@meyering.net>
32321
32322         * lib/error.c (error_tail): Move some declarations
32323         into inner scope where the local variables are used.
32324
32325 2003-09-26  Bruno Haible  <bruno@clisp.org>
32326
32327         * m4/stpncpy.m4 (gl_FUNC_STPNCPY): Add comments about the AIX
32328         stpncpy().
32329         Don't define stpncpy through config.h; it's now done through stpncpy.h.
32330
32331 2003-09-26  Bruno Haible  <bruno@clisp.org>
32332
32333         * lib/stpncpy.h (gnu_stpncpy): New declaration.
32334         (stpncpy): Define as alias for gnu_stpncpy.
32335         * lib/stpncpy.c [!_LIBC]: Define gnu_stpncpy, not stpncpy.
32336
32337 2003-09-25  Simon Josefsson  <jas@extundo.com>
32338
32339         * lib/xgetdomainname.h: New file.
32340         * lib/xgetdomainname.c: New file.
32341
32342 2003-09-25  Simon Josefsson  <jas@extundo.com>
32343             Bruno Haible  <bruno@clisp.org>
32344
32345         * modules/getdomainname: New file.
32346         * modules/xgetdomainname: New file.
32347         * MODULES.html.sh (func_all_modules): Add getdomainname,
32348         xgetdomainname.
32349
32350 2003-09-25  Simon Josefsson  <jas@extundo.com>
32351             Bruno Haible  <bruno@clisp.org>
32352
32353         * m4/getdomainname.m4: New file.
32354
32355 2003-09-25  Simon Josefsson  <jas@extundo.com>
32356             Bruno Haible  <bruno@clisp.org>
32357
32358         * lib/getdomainname.h: New file.
32359         * lib/getdomainname.c: New file.
32360
32361 2003-09-25  Karl Berry  <karl@gnu.org>
32362
32363         * lib/argp-fmtstream.c, argp-help.c: update from libc.
32364
32365 2003-09-25  Karl Berry  <karl@gnu.org>
32366
32367         * config/install-sh: update from automake.
32368
32369 2003-09-25  Bruno Haible  <bruno@clisp.org>
32370
32371         * modules/version-etc-2: New file, from modules/version-etc with
32372         modifications.
32373         * MODULES.html.sh (func_all_modules): Add version-etc-2.
32374
32375 2003-09-25  Bruno Haible  <bruno@clisp.org>
32376
32377         * lib/version-etc-2.h: New file, from version-etc.h with modifications.
32378         * lib/version-etc-2.c: New file, from version-etc.c with modifications.
32379
32380 2003-09-24  Simon Josefsson  <jas@extundo.com>
32381
32382         * modules/xgethostname: Add xgethostname.h.
32383
32384 2003-09-24  Paul Eggert  <eggert@twinsun.com>
32385
32386         * lib/linebuffer.c (freebuffer): Don't free the argument, just
32387         the buffer associated with the argument.  Bug reported by
32388         Simon Josefsson.
32389
32390 2003-09-24  Paul Eggert  <eggert@twinsun.com>
32391
32392         * README: Document assumptions that 'int' is at least 32 bits
32393         wide, that integer arithmetic is 2's complement without overflow,
32394         that there are no holes in integer values, that adding sizes of
32395         two nonoverlapping objects can't overflow, and that all-bits-zero
32396         yields scalar zero.  Fix spelling and capitalization typos.
32397
32398 2003-09-19  Karl Berry  <karl@gnu.org>
32399
32400         * lib/argp.h: update from libc.
32401
32402 2003-09-17  Paul Eggert  <eggert@twinsun.com>
32403
32404         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Call AC_BEFORE first,
32405         to avoid spurious warnings like "AC_RUN_IFELSE was called before
32406         gl_USE_SYSTEM_EXTENSIONS" from autoreconf.
32407
32408 2003-09-17  Paul Eggert  <eggert@twinsun.com>
32409
32410         * gnulib-tool: Use "test -h", not "test -L", for portability
32411         to Solaris 8 /bin/sh.  (This bug is fixed in Solaris 9.)
32412         (tags_regexp): Remove, since \| doesn't conform to POSIX.
32413         (sed_extract_prog): Issue s commands one-by-one, rather than
32414         using \| in one s command.
32415
32416 2003-09-16  Paul Eggert  <eggert@twinsun.com>
32417
32418         * lib/linebuffer.c (readlinebuffer): Return NULL immediately upon
32419         input error, instead of returning NULL the next time we are called
32420         (and therefore losing track of errno).
32421
32422 2003-09-16  Bruno Haible  <bruno@clisp.org>
32423
32424         * gnulib-tool (func_create_testdir): Warn about duplicated
32425         dependencies.
32426
32427 2003-09-15  Paul Eggert  <eggert@twinsun.com>
32428
32429         * modules/argmatch, modules/fatal, modules/obstack,
32430         modules/xalloc, modules/xgethostname: Sort dependencies by
32431         importance, not alphabetically.
32432
32433 2003-09-15  Paul Eggert  <eggert@twinsun.com>
32434
32435         * lib/getndelim2.c (getndelim2): Don't trash errno when a read
32436         fails, so that the caller gets the proper errno.
32437
32438         * lib/readutmp.c (read_utmp): Likewise.
32439         Check for fstat error.  Close stream and free storage
32440         when failing.
32441
32442 2003-09-14  Karl Berry  <karl@gnu.org>
32443
32444         * config/srclist.txt (strdup.c): disable for c89 changes.
32445
32446 2003-09-14  Jim Meyering  <jim@meyering.net>
32447
32448         * lib/getloadavg.c: Correct cpp indentation.
32449         * lib/strdup.c: Likewise.
32450         * lib/vasnprintf.c: Likewise.
32451
32452 2003-09-14  Bruno Haible  <bruno@clisp.org>
32453
32454         * modules/fwriteerror: New file.
32455         * MODULES.html.sh (func_all_modules): Add fwriteerror.
32456
32457 2003-09-14  Bruno Haible  <bruno@clisp.org>
32458
32459         * lib/fwriteerror.h: New file.
32460         * lib/fwriteerror.c: New file.
32461
32462 2003-09-12  Paul Eggert  <eggert@twinsun.com>
32463
32464         * modules/argmatch, modules/exitfail, modules/fatal, modules/obstack,
32465         modules/xgethostname, modules/xalloc: Depend on exit.
32466
32467 2003-09-12  Paul Eggert  <eggert@twinsun.com>
32468
32469         * m4/error.m4: Require AC_FUNC_STRERROR_R rather than invoking it.
32470
32471         * m4/extensions.m4 (gl_USE_SYSTEM_EXTENSIONS): Require AC_AIX
32472         and AC_MINIX, too, so that their extensions are available.
32473
32474         * m4/prereq.m4 (jm_PREREQ_ADDEXT): Remove.  All uses removed.
32475         This macro has been superseded by gl_BACKUPFILE.
32476
32477         More patches to assume C89 or better.
32478
32479         * m4/error.m4 (gl_ERROR): Don't check for vprintf.
32480
32481         * m4/check-decl.m4 (jm_CHECK_DECLS): Include <string.h>, <stdlib.h>
32482         unconditionally.
32483         * m4/closeout.m4 (gl_CLOSEOUT): Don't check for stdlib.h.
32484         * m4/gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER):
32485         Include <string.h>, <stdlib.h> unconditionally.
32486         * m4/lstat.m4 (gl_PREREQ_LSTAT): Don't check for stdlib.h, free.
32487         * m4/readdir.m4 (GL_FUNC_READDIR): Don't check for string.h.
32488         * m4/readutmp.m4 (gl_PREREQ_READUTMP): Don't check for standard C
32489         headers or for string.h.
32490         * m4/strtoumax.m4 (gl_PREREQ_STRTOUMAX): Don't check for stdlib.h
32491         or strtoul.
32492
32493         * m4/mkstemp.m4 (jm_PREREQ_TEMPNAME): Do not require standard C
32494         headers.
32495         * m4/strdup.m4 (gl_PREREQ_STRDUP): Likewise.
32496         * m4/userspec.m4 (gl_USERSPEC): Likewise.
32497         * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Likewise.
32498         * m4/xstrtod.m4 (gl_XSTRTOD): Likewise.
32499         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
32500         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Don't check for limits.h,
32501         memcpy, memset.
32502         (jm_FUNC_GNU_STRFTIME): Don't require standard C headers.
32503         * m4/strtod.m4 (gl_FUNC_STRTOD): Do not check for float.h.
32504         * m4/strtoimax.m4 (gl_PREREQ_STRTOIMAX): Do not check for stdlib.h,
32505         strtol.
32506         * m4/strtol.m4 (gl_FUNC_STRTOL): Do not check for limits.h.
32507         * m4/userspec.m4 (gl_USERSPEC): Do not check for string.h.
32508         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Do not check for string.h, strtol,
32509         strtoul.
32510
32511 2003-09-12  Paul Eggert  <eggert@twinsun.com>
32512
32513         * lib/argmatch.c, fatal.c, xgethostname.c, xmalloc.c: Include exit.h.
32514         * lib/obstack.c [!defined _LIBC]: Likewise.
32515         * lib/argmatch.c (EXIT_FAILURE): Remove; now done by exit.h
32516         * lib/exitfail.c, fatal.c, xgethostname.c, xmalloc.c: Likewise.
32517         * lib/exitfail.c: Don't include stdlib.h; no longer needed.
32518
32519         More changes to assume C89 or better.
32520
32521         * lib/error.c (error_tail): Assume vprintf.
32522
32523         * lib/argmatch.c (getenv): Remove decl.
32524         * lib/progreloc.c (get_full_program_name): Define via prototype.
32525         * lib/setenv.c (clearenv): Likewise.
32526         * lib/stpncpy.c: Do not include <string.h> or <sys/types.h>; not
32527         needed.
32528         * lib/strdup.c: Include <stdlib.h>, <string.h> unconditionally.
32529         (malloc, memcpy): Remove decls.
32530         * lib/strftime.c (HAVE_LIMITS_H, STDC_HEADERS) [defined _LIBC]: Remove.
32531         (HAVE_MEMCPY) [defined emacs && !defined HAVE_BCOPY]: Remove.
32532         Include <limits.h>, <stddef.h>, <stdlib.h>, <string.h> unconditionally.
32533         (memcpy): Remove macro.
32534         (MEMCPY) [!defined COMPILE_WIDE]: Define to memcpy unconditionally.
32535         (__P): Remove.  All uses removed.
32536         (PTR): Remove.  All uses changed to void *.
32537         (CHAR_BIT, NULL): Remove.
32538         (spaces, zeros, memset_space, memset_zero)
32539         [!defined memset && !defined HAVE_MEMSET && !defined _LIBC]:
32540         Remove.
32541         (LOCALE_PARAM, LOCALE_PARAM_DECL): Remove.
32542         (memcpy_lowcase, memcpy_uppcase, tm_diff, iso_week_days):
32543         Define with prototype.
32544         Remove now-unnecessary prototype decl.
32545         (extra_args_spec): Assume ANSI C.  All uses changed.
32546         (extra_args_spec_iso): Remove.
32547         (my_strftime, emacs_strftimeu): Define via prototype.
32548         * lib/strtod.c: Include <float.h>, <stdlib.h>, <string.h>
32549         unconditionally.
32550         (DBL_MAX, DBL_MIN, HUGE_VAL, NULL): Remove decls.
32551         * lib/strtoimax.c: Include <stdlib.h> unconditionally.
32552         (strtoul, strtol): Remove decls.
32553         * lib/strtol.c (STDC_HEADERS, HAVE_LIMITS_H, NULL, ULONG_MAX,
32554         LONG_MAX): Remove.
32555         Include <limits.h>, <stddef.h>, <stdlib.h>, <string.h> unconditionally.
32556         (LOCALE_PARAM_DECL): Remove.  All uses changed to LOCALE_PARAM_PROTO.
32557         (LOCALE_PARAM_PROTO): New macro.
32558         (INTERNAL, INTERNAL1, WEAKNAME): Assume ANSI C, not K&R.
32559         (INTERNAL (strtol), strtol): Define with a prototype.
32560         (PARAMS): Remove.  All uses removed.
32561         * lib/tempname.c: Include <string.h> unconditionally.
32562         * lib/userspec.c: Include <stdlib.h>, <string.h> unconditionally.
32563         * lib/xgethostname.c (main): Define with a prototype.
32564         * lib/xmalloc.c: Include "xalloc.h" first, to check interface.
32565         Include <stdlib.h> unconditionally.
32566         (calloc, malloc, realloc, free): Remove decls.
32567         * lib/xstrtod.c: Include "xstrtod.h" first, to check interface.
32568         Include <stdlib.h> unconditionally.  Sort include file names.
32569         (strtod): Remove.
32570         (xstrtod): Define with a prototype.
32571         * lib/xstrtol.c: Include <stdlib.h>, <string.h> unconditionally.
32572         (strtol, strtoul): Remove decls.
32573
32574 2003-09-11  Paul Eggert  <eggert@twinsun.com>
32575
32576         More patches to assume C89 or better.
32577         * m4/strndup.m4 (gl_PREREQ_STRNDUP): Remove STDC_HEADERS check.
32578         * m4/strnlen.m4 (gl_PREREQ_STRNLEN): Don't check for memory.h,
32579         string.h, memchr, STDC_HEADERS.
32580
32581 2003-09-11  Paul Eggert  <eggert@twinsun.com>
32582
32583         * lib/strndup.c: Don't include <stdio.h>, <sys/types.h>.
32584         Include <stdlib.h>, <string.h> unconditionally.
32585         Remove now-unnecessary cast to char *.
32586         * lib/strnlen.c: Include <string.h> unconditionally.
32587         * lib/yesno.c (yesno): Define with a prototype.
32588
32589 2003-09-11  Bruno Haible  <bruno@clisp.org>
32590
32591         * config/srclist.txt (setenv.c, unsetenv.c): Disable for the moment.
32592
32593 2003-09-10  Jim Meyering  <jim@meyering.net>
32594
32595         * lib/error.c: Correct indentation of cpp directives.
32596
32597 2003-09-10  Bruno Haible  <bruno@clisp.org>
32598
32599         * m4/strcspn.m4 (gl_PREREQ_STRCSPN): Remove <string.h> check.
32600         * m4/strpbrk.m4 (gl_PREREQ_STRPBRK): Remove <string.h> check.
32601         * m4/strstr.m4 (gl_PREREQ_STRSTR): Remove <string.h> check.
32602         * m4/unicodeio.m4 (gl_UNICODEIO): Remove <string.h> check.
32603         * m4/setenv.m4 (gl_PREREQ_SETENV, gl_PREREQ_UNSETENV): Remove
32604         <stdlib.h> and <string.h> checks.
32605         * m4/xreadlink.m4 (gl_XREADLINK): Remove <stdlib.h> check.
32606         * m4/yesno.m4 (gl_YESNO): Remove <stdlib.h> check.
32607
32608 2003-09-10  Bruno Haible  <bruno@clisp.org>
32609
32610         * lib/strcspn.c: Include <string.h> unconditionally.
32611         * lib/strpbrk.c: Include <string.h> unconditionally.
32612         * lib/strstr.c: Include <string.h> unconditionally.
32613         * lib/unicodeio.c: Include <string.h> unconditionally.
32614         * lib/setenv.c: Include <stdlib.h> and <string.h> unconditionally.
32615         * lib/unsetenv.c: Likewise.
32616         * lib/xreadlink.c: Include <stdlib.h> unconditionally.
32617         * lib/yesno.c: Include <stdlib.h> unconditionally.
32618         (rpmatch): Add prototype.
32619
32620 2003-09-09  Paul Eggert  <eggert@twinsun.com>
32621
32622         More patches to assume C89 or better.
32623         * m4/getcwd.m4 (AC_FUNC_GETCWD_NULL): Don't check for stdlib.h.
32624         * m4/getopt.m4 (gl_GETOPT): Don't check for string.h.
32625         * m4/getugroups.m4 (gl_GETUGROUPS): Do not check for standard C headers
32626         or for string.h.
32627         * m4/getusershell.m4 (gl_PREREQ_GETUSERSHELL): Do not check for
32628         stdlib.h.
32629         * m4/group-member.m4 (gl_PREREQ_GROUP_MEMBER): Do not require standard
32630         C headers.
32631         * m4/hard-locale.m4 (gl_HARD_LOCALE): Do not check for stdlib.h,
32632         string.h.
32633         * m4/hash.m4 (gl_HASH): Do not check for stdlib.h, malloc, free.
32634         * m4/human.m4 (gl_HUMAN): Do not check for stdlib.h, string.h, getenv.
32635         * m4/idcache.m4 (gl_IDCACHE): Do not check for standard C headers,
32636         or for string.h.
32637         * m4/long-options.m4 (gl_LONG_OPTIONS): Do not check for stdlib.h.
32638         * m4/makepath.m4 (gl_MAKEPATH): Do not check for string.h or standard
32639         C headers.
32640         * m4/md5.m4 (gl_MD5): Don't check for limits.h, standard C headers,
32641         memcpy.
32642         * m4/sha.m4 (gl_SHA): Don't check for standard Cheaders, memcpy.
32643         * m4/memchr.m4 (jm_PREREQ_MEMCHR): Don't check for limits.h, stdlib.h.
32644         * m4/memcmp.m4 (gl_PREREQ_MEMCMP): Don't check for string.h.
32645         * m4/memcoll.m4 (gl_MEMCOLL): Likewise.
32646         * m4/memrchr.c (gl_PREREQ_MEMRCHR): Don't check for limits.h.
32647         * m4/mkdir-slash.m4 (gl_PREREQ_MKDIR): Don't check for stdlib.h,
32648         string.h, free.
32649         * m4/mktime.m4 (gl_PREREQ_MKTIME): Don't check for standard C headers.
32650         * m4/modechange.m4 (gl_MODECHANGE): Don't check for standard C headers.
32651         * m4/mountlist.m4 (gl_PREREQ_MOUNTLIST_EXTRA): Don't check for standard
32652         C headers, or for string.h.
32653         * m4/obstack.m4 (gl_OBSTACK): Don't check for stddefe.h, string.h.
32654         (gl_PREREQ_OBSTACK): Don't check for stdlib.h.
32655         * m4/path-concat.m4 (gl_PATH_CONCAT): Don't check for standard C
32656         headers, memory.h, stdlib.h, string.h, strings.h.
32657         * m4/posixtm.m4 (gl_POSIXTM): Don't check for stdlib.h, string.h.
32658         * m4/posixver.m4 (gl_POSIXVER): Don't check for getenv.
32659         * m4/putenv.m4 (gl_PREREQ_PUTENV): Don't check for string.h, memcpy,
32660         strchr.
32661         * m4/readtokens.m4 (gl_READTOKENS): Don't check for standard C
32662         headers, memory.h, string.h.
32663         * m4/regex.m4 (jm_PREREQ_REGEX): Do not check for limits.h, string.h.
32664         * m4/rename.m4 (gl_PREREQ_RENAME): Do not check for stdlib.h, string.h,
32665         free.
32666         * m4/rpmatch.m4 (gl_PREREQ_RPMATCH): Don't check for standard C
32667         headers.
32668         * m4/same.m4 (gl_SAME): Don't check for stdlib.h, string.h, free.
32669         * m4/save-cwd.m4 (gl_SAVE_CWD): Don't check for standard C headers.
32670         * m4/savedir.m4 (gl_SAVEDIR): Don't check for standard C headers.
32671         * m4/strchrnul.m4 (gl_PREREQ_STRCHRNUL): Don't check for string.h.
32672         * m4/xgetcwd.m4 (gl_XGETCWD): Don't check for stdlib.h.
32673
32674 2003-09-09  Paul Eggert  <eggert@twinsun.com>
32675
32676         More K&R removal.
32677
32678         * lib/acosl.c (main): Use a prototype.
32679         * lib/asinl.c, cosl.c, expl.c, frexpl.c, ldexpl.c, sinl.c,
32680         tanl.c: Likewise.
32681
32682         * lib/getloadavg.c (getloadavg, main): Define via prototypes.
32683
32684         * lib/getopt.h (struct option.name): Assume C89, and use 'const'.
32685         (getopt, etopt_long, getopt_long_only, _getopt_internal)
32686         [defined __GNU_LIBRARY__]: Assume C89, so we can always declare
32687         with a prototype.
32688         * lib/getopt.c (const): Remove macro.
32689         Include <string.h> unconditionally.
32690         (my_index): Remove; all uses changed to strchr.
32691         (strlen): Remove decl.
32692         (exchange): Remove forward decl; no longer needed.
32693         (exchange, _getopt_initialize, _getopt_internal, getopt, main):
32694         Define with prototype.
32695         * lib/getopt1.c (const): Remove macro.
32696         (getopt_long, getopt_long_only, main): Define with prototype.
32697
32698         * lib/getugroups.c: Include <string.h> unconditionally.
32699
32700         * lib/getusershell.c: Include <stdlib.h> unconditionally.
32701         (getusershell, setusershell, endusershell, readname, main):
32702         Define with prototypes.
32703
32704         * lib/group-member.c: Include group-member.h first.
32705         Include <stdlib.h> unconditionally.
32706
32707         * lib/hard-locale.c: Include hard-locale.h first.
32708         Include <stdlib.h>, <string.h> unconditionally.
32709
32710         * lib/hash.c (free, malloc): Remove decls.
32711         Include <stdlib.h> unconditionally.
32712
32713         * lib/human.c: Include <stdlib.h>, <string.h> unconditionally.
32714         (getenv): Do not declare.
32715
32716         * lib/idcache.c: Include <string.h> unconditionally.
32717
32718         * lib/long-options.c: Include long-options.h first, to test interface.
32719         Include <stdlib.h> unconditionally.
32720
32721         * lib/makepath.c: Include makepath.h first, to test interface.
32722         Include <stdlib.h> and <string.h> unconditionally.
32723
32724         * lib/linebuffer.c: Include <stdlib.h>.
32725         (free): Remove decl.
32726
32727         * lib/malloc.c: Include <stdlib.h>, for malloc; don't bother with
32728         stddef.h. rpl_malloc returns void *, not char *.
32729         * lib/realloc.c (rpl_realloc): Likewise.  Also, define with a
32730         prototype.
32731
32732         * lib/md5.h: Include <limits.h> unconditionally.
32733         (UINT_MAX_32_BITS): Don't worry about non-__STDC__ case.
32734         (__P): Remove; all uses removed.
32735         * lib/md5.c: Include "md5.h" first.
32736         (md5_init_ctx, md5_read_ctx, md5_finish_ctx, md5_stream,
32737         md5_buffer, md5_process_bytes, md5_process_block):
32738         Define with prototypes.
32739         * lib/sha.h (__P): Remove all uses.  (It wasn't defined??)
32740         * lib/sha.c: Include "sha.h" first.
32741         Include <stdlib.h>, <string.h> unconditionally.
32742
32743         * lib/memchr.c (__ptr_t): Remove; all uses changed to void *.
32744         * lib/memcmp.c (__ptr_t): Likewise.
32745         * lib/memrchr.c (__ptr_t): Likewise.
32746         * lib/memchr.c, memcmp.c, memcoll.c, memrchr.c:
32747         Include <string.h> unconditionally.
32748         * lib/memchr.c, memrchr.c: Include <limits.h> unconditionally.
32749         * lib/memchr.c: Include <stdlib.h> unconditionally.
32750         * lib/memchr.c (LONG_MAX): Remove.
32751         * lib/memrchr.c (LONG_MAX): Likewise.
32752         * lib/memchr.c (__memchr): Define via a prototype.
32753         * lib/memrchr.c (__memrchr): Likewise.
32754         * lib/memcmp.c (__P): Remove, and remove all uses.
32755         (memcmp_bytes, memcmp_common_alignment, memcmp_not_common_alignment):
32756         Remove forward decls; no longer needed.
32757         * lib/memcpy.c, memmove.c, memset.c: Include <stddef.h>.
32758         Use types required by C89 in prototype.
32759
32760         * lib/mkdir.c: Include <stdlib.h>, <string.h> unconditionally.
32761         * lib/savedir.c: Likewise.
32762         * lib/mkdir.c (free): Remove decl.
32763         * lib/rmdir.c (rmdir): Define with a prototype.
32764         * lib/savedir.c: Include savedir.h first, to test interface.
32765
32766         * lib/mktime.c (STDC_HEADERS): Remove.
32767         Include <stdlib.h>, <string.h> unconditionally.
32768
32769         * lib/modechange.c: Include <stdlib.h> unconditionally.
32770         (malloc): Remove decl.
32771
32772         * lib/mountlist.c: Include <stdlib.h>, <string.h> unconditionally.
32773         (free): Remove decl.
32774
32775         * lib/obstack.h (PTR_INT_TYPE) [!defined __PTRDIFF_TYPE__]:
32776         Define to ptrdiff_t, without bothering to check HAVE_STDDEF_H.
32777         (This type really should be intptr_t, but that's a C99ism.)
32778         (_obstack_memcpy): Remove: all uses changed to memcpy.
32779         Include <string.h> unconditionally.
32780         (struct obstack): Assume __STDC__ for types of members
32781         chunkfun, freefun, extra_arg.
32782         (_obstack_newchunk, _obstack_free, _obstack_begin, _obstack_begin_1,
32783         _obstack_memory_used, obstack_alloc_failed_handler, obstack_init,
32784         obstack_begin, obstack_specify_allocation,
32785         obstack_specify_allocation_with_arg, obstack_chunkfun,
32786         obstack_freefun, obstack_free) [! (defined __STDC__ && __STDC__)]:
32787         Remove unprototyped decls and the macros that use them.
32788         * lib/obstack.c (POINTER): Remove.  All uses changed to void *.
32789         (obstack_alloc_failed_handler, CALL_CHUNKFUN, CALL_FREEFUN,
32790         _obstack_begin, _obstack_begin_1, _obstack_allocated_p)
32791         (defined __STDC__ && __STDC__)]:
32792         Remove nonprototyped code.
32793         Include <stdlib.h> unconditionally.
32794         (_obstack_begin, _obstack_begin_1, _obstack_newchunk,
32795         _obstack_allocated_p, _obstack_free, obstack_free,
32796         _obstack_memory_used, print_and_abort):
32797         Define using prototypes.
32798         (obstack_1grow, obstack_1grow_fast, obstack_alloc, obstack_base,
32799         obstack_blank, obstack_blank_fast, obstack_copy, obstack_copy0,
32800         obstack_finish, obstack_grow, obstack_grow0, obstack_make_room,
32801         obstack_next_free, obstack_object_size, obstack_room) [0]:
32802         Remove unused, unprototyped code.
32803
32804         * lib/path-concat.c: Include <stdlib.h>, <string.h> unconditionally.
32805
32806         * lib/physmem.c (physmem_total, physmem_available, main): Define
32807         with prototypes.
32808
32809         * lib/posixtm.c: Include <stdlib.h>, <string.h> unconditionally.
32810         (main): Define with a prototype.
32811
32812         * lib/posixver.c (getenv): Remove decl.
32813
32814         * lib/putenv.c (malloc): Returns void *, not char *.
32815         Include <string.h> unconditionally.
32816         (strchr, memcpy, NULL): Do not define.
32817
32818         * lib/readtokens.c: Include readtokens.h first, to test interface.
32819         Include <stdlib.h>, <string.h> unconditionally.
32820         (init_tokenbuffer): Define with a prototype.
32821
32822         * lib/regex.c (PARAMS): Remove.  All uses removed.
32823         All uses of _RE_ARGS removed, too.
32824         Include <stddef.h>, <stdlib.h>, <string.h>, <limits.h>
32825         unconditionally.
32826         (bzero): Assume memset exists.
32827         (memcmp, memcpy, NULL): Remove.
32828         (SIGN_EXTEND_CHAR): Remove; all uses replaced by casts to signed
32829         char, or assignments to local vars of type signed char.
32830         (init_syntax_once, PREFIX(extract_number_and_incr),
32831         PREFIX(print_partial_compiled_pattern),
32832         PREFIX(print_compiled_pattern), PREFIX(print_double_string),
32833         convert_mbs_to_wcs, print_fastmap, re_set_syntax,
32834         PREFIX(regex_grow_registers), PREFIX(regex_compile),
32835         PREFIX(store_op1), PREFIX(store_op2), PREFIX(insert_op1),
32836         PREFIX(insert_op2), PREFIX(at_begline_loc_p),
32837         PREFIX(at_endline_loc_p), group_in_compile_stack, insert_space,
32838         wcs_compile_range, byte_compile_range, truncate_wchar,
32839         PREFIX(re_compile_fastmap), re_compile_fastmap, re_set_registers,
32840         re_search, re_search_2, PREFIX(re_search_2), re_match, re_match_2,
32841         count_mbs_length, wcs_re_match_2_internal,
32842         byte_re_match_2_internal, PREFIX(group_match_null_string_p),
32843         PREFIX(alt_match_null_string_p),
32844         PREFIX(common_op_match_null_string_p), PREFIX(bcmp_translate),
32845         re_compile_pattern, re_comp, re_exec, regcomp, regexec, regerror,
32846         regfree, PREFIX(extract_number)): Define with prototype.  Remove
32847         now-unnecessary declaration, if any.
32848         (byte_compile_range, PREFIX(regex_compile), re_comp, re_exec,
32849         regcomp, regexec):
32850         Remove now-unnecessary casts among pointer types.
32851         * lib/regex.h (_RE_ARGS): Remove.  All uses removed.
32852
32853         * lib/rename.c: Include <stdlib.h>, <string.h> unconditionally.
32854         (free): Remove decl.
32855
32856         * lib/rpmatch.c: Include <stdlib.h> unconditionally.
32857
32858         * lib/same.c: Include <stdlib.h>, <string.h> unconditionally.
32859         (free): Remove decl.
32860
32861         * lib/save-cwd.c: Include <stdlib.h> unconditionally.
32862         * lib/xgetcwd.c: Likewise.
32863
32864         * lib/stat.c: Include <stdlib.h>, <string.h> unconditionally.
32865         (free): Remove decl.
32866
32867         * lib/strchrnul.c (strchrnul): Define with a prototype.
32868         Fix bug: c_in was not converted to char before searching.
32869
32870         The following changes are not K&R related:
32871
32872         * lib/group-member.h: Include <sys/types.h>, so that this file is
32873         self-contained.
32874         * lib/makepath.h: Likewise.
32875
32876         * lib/getusershell.c (readname, default_index, line_size, readname):
32877         Use size_t, not int, for sizes.
32878         (readname): If the size overflows, report an error instead of
32879         looping forever.
32880
32881 2003-09-09  Paul Eggert  <eggert@twinsun.com>
32882
32883         * config/srclist.txt: Do not get getopt.h, getopt1.c, or regex.h from
32884         libc.
32885
32886 2003-09-09  Paul Eggert  <eggert@twinsun.com>
32887
32888         * README: New section: portability guidelines.
32889
32890 2003-09-09  Derek Robert Price  <derek@ximbiot.com>
32891
32892         * m4/getndelim2.m4 (gl_PREREQ_GETNDELIM2): Assume stdlib.h per the
32893         C89 spec.
32894
32895 2003-09-09  Derek Robert Price  <derek@ximbiot.com>
32896
32897         * lib/getndelim2.c: Assume stdlib.h per the C89 spec.
32898
32899 2003-09-08  Paul Eggert  <eggert@twinsun.com>
32900
32901         Assume C89 or better; remove K&R cruft.
32902         A few of these changes were first proposed by Derek Robert Price
32903         in <http://mail.gnu.org/archive/html/bug-gnulib/2003-07/msg00105.html>.
32904
32905         * lib/addext.c: Include <string.h> unconditionally.
32906         * lib/backupfile.c: Include <string.h>, <stdlib.h> unconditionally.
32907         Don't declare getenv or malloc.
32908
32909         * lib/alloca.c: Include <string.h>, <stdlib.h> unconditionally.
32910         (POINTER_TYPE, pointer): Remove; all uses changed to void *.
32911         (NULL): Remove.
32912         (find_stack_direction, alloca): Use prototypes.
32913
32914         * lib/atexit.c (atexit): Define using a prototype.
32915
32916         * lib/basename.c, dirname.c, stripslash.c:
32917         Include <string.h> unconditionally.
32918
32919         * lib/bcopy.c: Include <stddef.h>.
32920         (bcopy): Define with prototype, using 'const' and 'void' and 'size_t'.
32921
32922         * lib/canon-host.c: Include <stdlib.h>, <string.h> unconditionally.
32923
32924         * lib/error.h (error, error_at_line, error_print_progname)
32925         [! (defined (__STDC__) && __STDC__)]: Remove decls.
32926         * lib/error.c: Include error.h first, to check interface.
32927         Include <stdarg.h>, <stdlib.h>, <string.h> unconditionally.
32928         (VA_START): Remove; all uses changeed to va_start.
32929         (exit, strerror): Remove decls.
32930         (error_print_progname): Prototype uncondionally.
32931         Don't include <errno.h>; no longer needed.
32932         (private_strerror): Remove.
32933         (error_tail): Always define.
32934         (error, error_at_line): Assume C89 or better; always use prototypes.
32935         * lib/fatal.c: Include "fatal.h" first, to test interface.
32936         Include <stdarg.h>, <stdlib.h>, <string.h> unconditionally.
32937         (VA_START): Remove; all uses changed to va_start.
32938         [! (HAVE_VPRINTF || HAVE_DOPRNT || _LIBC)]: Remove support for
32939         this case.
32940         (exit): Remove decl.
32941         (fatal): Prototype unconditionally.  Assume va_start works.
32942         Abort at end, to pacify gcc.
32943
32944         * lib/euidaccess.c (main): Define with a prototype.
32945
32946         * lib/exclude.c: Include <stdlib.h>, <string.h> unconditionally.
32947
32948         * lib/exitfail.c: Include <stdlib.h> unconditionally.
32949
32950         * lib/fnmatch_.h (__P): Remove.  All uses changed to assume
32951         prototypes.
32952         * lib/fnmatch.c: Include fnmatch.h first, to test interface.
32953         Include <string.h>, <stddef.h>, <stdlib.h> unconditionally.
32954         (getenv): Remove decl.
32955         (fnmatch): Define using a prototype.
32956         * lib/fnmatch_loop.c (FCT): Remove forward decl; no longer needed.
32957         (FCT): Define using a prototype.
32958
32959         * lib/getdate.y: Include <stdlib.h>, <string.h> unconditionally.
32960
32961         * lib/gethostname.c: Include <stddef.h>.
32962         (gethostname): Define with prototype.  Length is size_t, not int.
32963
32964 2003-09-08  Paul Eggert  <eggert@twinsun.com>
32965
32966         Assume C89 or better; remove K&R cruft.
32967         * m4/alloca.m4 (gl_PREREQ_ALLOCA): Don't check for stdlib.h, string.h.
32968         * m4/backupfile.m4 (gl_BACKUPFILE): Don't check for stdlib.h,
32969         string.h, getenv, malloc.
32970         * m4/dirname.m4 (gl_DIRNAME): Don't check for string.h or C standard
32971         headers.
32972         * m4/canon-host.m4 (gl_CANON_HOST): Don't check for string.h, stdlib.h.
32973         * m4/error.m4 (jm_PREREQ_ERROR): Do not require STDC headers, and
32974         do not check for strerror.
32975         * m4/exclude.m4: Do not check for stdlib.h, string.h, strings.h.
32976         * m4/exitfail.m4 (gl_EXITFAIL): Do not check for stdlib.h.
32977         * m4/fatal.m4 (gl_FATAL): Do not require STDC headers, and
32978         do not check for doprnt or vprintf.
32979         * m4/fnmatch.m4 (gl_PREREQ_FNMATCH_EXTRA): Remove.  All uses removed.
32980         * m4/getdate.m4 (gl_GETDATE): Don't check for stdlib.h or string.h.
32981
32982 2003-09-08  Paul Eggert  <eggert@twinsun.com>
32983
32984         * lib/getversion.c: Remove; was migrated to backupfile.c in 1997.
32985         getversion.c should have been removed then, but was accidentally
32986         preserved.
32987
32988         * lib/utime.c [!HAVE_UTIMES_NULL]: Include <sys/stat.h>, <fcntl.h>.
32989         (utime_null): Fix typo: 'st' was sometimes called 'sb'.
32990
32991 2003-09-08  Karl Berry  <karl@gnu.org>
32992
32993         * config/config.sub, config.guess, srclistvars.sh: update from savannah
32994                 config, forget about prep.
32995
32996         * config/depcomp, missing: update from automake.
32997
32998 2003-09-07  Paul Eggert  <eggert@twinsun.com>
32999
33000         * modules/time_r: Depend on 'restrict'.  Fix from Simon Josefsson in
33001         <http://mail.gnu.org/archive/html/bug-gnulib/2003-09/msg00028.html>.
33002
33003 2003-09-07  Paul Eggert  <eggert@twinsun.com>
33004
33005         * lib/time_r.c (gmtime_r, localtime_r): Fix silly typo: missing arg to
33006         copy_tm_result.  Bug reported by Simon Josefsson in
33007         <http://mail.gnu.org/archive/html/bug-gnulib/2003-09/msg00028.html>.
33008
33009 2003-09-06  Paul Eggert  <eggert@twinsun.com>
33010
33011         * m4/time_r.m4: New file.
33012         * m4/mktime.m4 (gl_PREREQ_MKTIME): Remove check for limits.h.
33013         * m4/timegm.m4 (gl_FUNC_TIMEGM): Assume that timegm is buggy if mktime
33014         is. Check for timegm declaration.
33015         (gl_PREREQ_TIMEGM): Require gl_FUNC_MKTIME.
33016         Do not check for gmtime_r.
33017         Replace mktime if __mktime_internal does not exist and if mktime
33018         hasn't been replaced already.
33019
33020 2003-09-06  Paul Eggert  <eggert@twinsun.com>
33021
33022         * lib/time_r.c, lib/time_r.h: New files.
33023
33024         * lib/mktime.c (my_mktime_localtime_r): Remove; all uses changed to
33025         __localtime_r.
33026         (__localtime_r) [!defined _LIBC]: New macro.  Include <time_r.h>.
33027         (__mktime_internal) [!defined _LIBC]: Now extern, not static.
33028
33029         * lib/strftime.c (my_strftime_gmtime_r): Remove; all uses changed to
33030         __gmtime_r.
33031         (my_strftime_localtime_r): Remove; all uses changed to __localtime_r.
33032         (__gtime_r, __localtime_r) [!HAVE_TM_GMTOFF]: New macros.
33033         Include <time_r.h>.
33034
33035         * lib/timegm.c: Switch to glibc implementation, with the following
33036         changes:
33037         [defined HAVE_CONFIG_H]: Include <config.h>.
33038         [!defined _LIBC]: Include "timegm.h" rather than <time.h>.
33039         (__mktime_internal) [!defined _LIBC]: New decl.
33040         (__gmtime_r) [!defined _LIBC]: New macro and function.
33041         (timegm): Use a prototype, since gnulib assumes C89.
33042         Do not bother declaring tmp to be const, as it's not really usefu.
33043         * lib/timegm.h: Hoist "#include <time.h>" out of #ifdef.
33044         (timegm): Declare only if HAVE_DECL_TIMEGM.
33045
33046 2003-09-06  Paul Eggert  <eggert@twinsun.com>
33047
33048         * MODULES.html.sh (func_all_modules): Add time_r.
33049         * modules/time_r: New file.
33050         * modules/mktime, modules/strftime, modules/timegm: Depend on time_r.
33051         * modules/timegm: Depend on mktime.  Change maintainer to "all, glibc".
33052
33053 2003-09-03  Paul Eggert  <eggert@twinsun.com>
33054
33055         * lib/human.c (human_readable): Fix bug that rounded 10501 to 10k.
33056         Bug reported by Lute Kamstra in
33057         <http://mail.gnu.org/archive/html/bug-gnulib/2003-09/msg00003.html>.
33058
33059         * lib/getdate.y (relative_time_table): Use tDAY_UNIT for "tomorrow",
33060         "yesterday", "today", and "now" rather than tMINUTE_UNIT.  Of
33061         course with correspondingly smaller numbers for tomorrow and
33062         yesterday.  From Tadayoshi Funaba.  Originally installed into
33063         sh-utils on 1999-08-07, but the patch got lost (I guess during the
33064         coreutils merge?).
33065
33066 2003-08-31  Simon Josefsson  <jas@extundo.com>
33067
33068         * modules/timegm: New file.
33069         * MODULES.html.sh (func_all_modules): Add timegm.
33070
33071 2003-08-31  Simon Josefsson  <jas@extundo.com>
33072
33073         * m4/timegm.m4: New file.
33074
33075 2003-08-31  Simon Josefsson  <jas@extundo.com>
33076
33077         * lib/timegm.h: New file.
33078         * lib/timegm.c: New file.  Based on
33079         wget-1.8.2/src/http.c:mktime_from_utc.
33080
33081 2003-08-31  Karl Berry  <karl@gnu.org>
33082
33083         * lib/argp.h: update from libc.
33084
33085 2003-08-28  Bruno Haible  <bruno@clisp.org>
33086
33087         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Remove AC_DEFINE of fnmatch here.
33088         This avoids havoc on compilers for which '#define fnmatch rpl_fnmatch'
33089         followed by '#define fnmatch fnmatch_posix' gives an error.
33090
33091 2003-08-28  Bruno Haible  <bruno@clisp.org>
33092
33093         * lib/binary-io.h: Undefine O_BINARY before defining it. This avoids a
33094         warning on QNX, which defines O_BINARY to 000000.
33095
33096 2003-08-27  Jim Meyering  <jim@meyering.net>
33097
33098         * m4/mkstemp.m4: Require that the system mkstemp be able to create
33099         70 temporary files, not just 30.  Tru64 V4.0F's mkstemp function
33100         would fail after 32.  Reported by Danny Levinson.  Details here:
33101         http://mail.gnu.org/archive/html/bug-coreutils/2003-08/msg00124.html
33102
33103 2003-08-24  Bruno Haible  <bruno@clisp.org>
33104
33105         * lib/binary-io.h: Include <stdio.h>, to avoid a compilation error when
33106         MSVC7 <stdio.h> is included later.
33107
33108 2003-08-22  Simon Josefsson  <jas@extundo.com>
33109
33110         * modules/strndup (Makefile.am): Add strndup.h to lib_SOURCES.
33111
33112 2003-08-20  Karl Berry  <karl@gnu.org>
33113
33114         * m4/lib-ld.m4: serial 1003 from gettext, no changes besides serial.
33115
33116 2003-08-20  Bruno Haible  <bruno@clisp.org>
33117
33118         * modules/progname: New file.
33119         * MODULES.html.sh (func_all_modules): Add progname.
33120
33121 2003-08-20  Bruno Haible  <bruno@clisp.org>
33122
33123         * lib/progname.h: New file, from GNU gettext.
33124         * lib/progname.c: New file, from GNU gettext.
33125         * lib/progreloc.c: New file, from GNU gettext.
33126
33127 2003-08-19  Jim Meyering  <jim@meyering.net>
33128
33129         * m4/lib-ld.m4: Revert yesterday's change, per Bruno's request here:
33130         http://mail.gnu.org/archive/html/bug-gnulib/2003-08/msg00155.html
33131
33132 2003-08-19  Bruno Haible  <bruno@clisp.org>
33133
33134         * m4/xalloc.m4 (gl_PREREQ_XSTRDUP): Don't check for <string.h> any
33135         more.
33136
33137 2003-08-19  Bruno Haible  <bruno@clisp.org>
33138
33139         * lib/xstrdup.c: Assume <string.h> exists.
33140
33141 2003-08-18  Paul Eggert  <eggert@twinsun.com>
33142
33143         * modules/stdbool: Add BUILT_SOURCES.  Prefer $@ to target name
33144         in makefile rules.
33145
33146 2003-08-18  Jim Meyering  <jim@meyering.net>
33147
33148         * m4/getloadavg.m4: Use [\t ], not [ \t] (where \t is a literal TAB).
33149         * m4/lib-ld.m4: Likewise.
33150
33151 2003-08-18  Jim Meyering  <jim@meyering.net>
33152
33153         * lib/setenv.h: Indent nested cpp directive.
33154         * lib/vasnprintf.c: Remove trailing blanks.
33155
33156 2003-08-17  Simon Josefsson  <jas@extundo.com>
33157
33158         * modules/xstrndup: New file.
33159         * MODULES.html.sh (func_all_modules): Add xstrndup.
33160
33161 2003-08-17  Simon Josefsson  <jas@extundo.com>
33162
33163         * modules/argp: Fix autoconf macro name. Add more dependencies.
33164
33165 2003-08-17  Simon Josefsson  <jas@extundo.com>
33166
33167         * m4/xstrndup.m4: New file.
33168
33169 2003-08-17  Simon Josefsson  <jas@extundo.com>
33170
33171         * m4/argp.m4: New file.
33172
33173 2003-08-17  Simon Josefsson  <jas@extundo.com>
33174             Bruno Haible  <bruno@clisp.org>
33175
33176         * lib/xstrndup.h: New file.
33177         * lib/xstrndup.c: New file.
33178
33179 2003-08-17  Bruno Haible  <bruno@clisp.org>
33180
33181         * modules/strndup (Files, Include): Add lib/strndup.h.
33182
33183 2003-08-17  Bruno Haible  <bruno@clisp.org>
33184
33185         * modules/euidaccess (Files): Add lib/euidaccess.h.
33186
33187 2003-08-17  Bruno Haible  <bruno@clisp.org>
33188
33189         * lib/strndup.h: New file.
33190
33191 2003-08-17  Bruno Haible  <bruno@clisp.org>
33192
33193         * gnulib-tool (func_create_testdir): Handle gl_USE_SYSTEM_EXTENSIONS
33194         like AC_GNU_SOURCE.
33195         * modules/extensions (configure.ac): Comment out the invocation of
33196         gl_USE_SYSTEM_EXTENSIONS.
33197
33198 2003-08-16  Paul Eggert  <eggert@twinsun.com>
33199
33200         Merges from coreutils, etc.
33201         * m4/rpmatch.m4 (gl_PREREQ_RPMATCH): Insert ':' to prevent a syntax
33202         error in gl_FUNC_MATCH.  This fixes a bug I introduced on 2003-05-28.
33203         * m4/readlink.m4 (gl_PREREQ_READLINK): Renamed from gl_PREREQ_READLINE,
33204         fixing a typo.
33205         * m4/host-os.m4 (UTILS_HOST_OS): Add GNU/NetBSD, GNU/FreeBSD.
33206         * m4/hash.m4 (gl_HASH): Use AM_STDBOOL_H, not AC_HEADER_STDBOOL.
33207
33208 2003-08-16  Paul Eggert  <eggert@twinsun.com>
33209
33210         Document merge from coreutils.
33211         * modules/alloca: Append $(ALLOCA_H) to BUILT_SOURCES.
33212         * modules/fnmatch: Append $(FNMATCH_H) to BUILT_SOURCES.
33213         * modules/utime: Add m4/utimes-null.m4.
33214
33215 2003-08-16  Paul Eggert  <eggert@twinsun.com>
33216
33217         * lib/regex.h, strdup.c, strtoll.c, strtoul.c: Do not normalize white
33218         space, undoing this 2003-08-12 change:
33219         <http://mail.gnu.org/archive/html/bug-gnulib/2003-08/msg00080.html>
33220
33221 2003-08-16  Paul Eggert  <eggert@twinsun.com>
33222
33223         * config/srclist.txt: Get regex.h, strdup.c, strtoll.c,
33224         strtoul.c from libc, undoing this 2003-08-12 change:
33225         <http://mail.gnu.org/archive/html/bug-gnulib/2003-08/msg00080.html>
33226
33227 2003-08-16  Jim Meyering  <jim@meyering.net>
33228
33229         Merges from coreutils.
33230         * m4/readdir.m4 (GL_FUNC_READDIR): Change name to have GL_ (not jm_)
33231         prefix.  Adjust cache variables similarly.  Create 500 rather than
33232         just 300 files, to exercise bug on Darwin6.5, too.
33233         * m4/perl.m4 (jm_PERL): Use $am_missing_run, not undefined
33234         $missing_dir.
33235         * m4/jm-winsz1.m4: Require AC_SYS_POSIX_TERMIOS, not
33236         AM_SYS_POSIX_TERMIOS.
33237         Reported by mkc@mathdogs.com.
33238         Also change use of $am_cv_sys_posix_termios
33239         to $ac_cv_sys_posix_termios.  Reported by Andreas Schwab.
33240         * m4/getgroups.m4 (jm_FUNC_GETGROUPS): Rewrite to use AC_FUNC_GETGROUPS
33241         and (if needed) to call AC_LIBOBJ and to set GETGROUPS_LIB.
33242         * m4/fsusage.m4 [__GLIBC__]: GNU libc's statvfs stats each mount point
33243         in /proc/mounts until it finds one with matching device number.  This
33244         is unnecessary when the FILE argument *is* a mount point.  No stat call
33245         is necessary in that case.  So, disable the statvfs-testing code on
33246         systems with GNU libc.  Reported by Andrei Gaponenko via Tim Waugh
33247         as RedHat bug# 84846.
33248         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Limit stack size
33249         to 1MB, so as not to render systems with no stack size limit (e.g.,
33250         linux-2.2.x) unusable.  Suggestion and code from Bruno Haible.
33251         Include <unistd.h>.  On some systems,
33252         it is required for the definition of _SC_PAGESIZE.
33253
33254 2003-08-16  Jim Meyering  <jim@meyering.net>
33255
33256         Merge from coreutils.
33257         * lib/xstrtoimax.c: #else #if -> #elif.
33258         * lib/xstrtoumax.c: Likewise.
33259
33260 2003-08-16  Jim Meyering  <jim@meyering.net>
33261
33262         * m4/utimes.m4 (gl_FUNC_UTIMES): New file.
33263         * m4/utimes.m4: Removed.
33264         * m4/utimes-null.m4: Renamed from utimes.m4.
33265
33266         * m4/c-stack.m4 (AC_SYS_XSI_STACK_OVERFLOW_HEURISTIC): Limit stack size
33267         to 1MB, so as not to render systems with no stack size limit (e.g.,
33268         linux-2.2.x) unusable.  Suggestion and code from Bruno Haible.
33269         Include <unistd.h>.  On some systems,
33270         it is required for the definition of _SC_PAGESIZE.
33271
33272 2003-08-16  Jim Meyering  <jim@meyering.net>
33273         and Paul Eggert  <eggert@cs.ucla.edu>
33274
33275         Merges from coreutils, etc.
33276
33277         * m4/jm-macros.m4 (AC_LANG_SOURCE(C)): New macro, undefine, then define
33278         using the latest version from cvs.  This avoids problems with #line
33279         directives using a vendor (Sun) compiler.
33280         (jm_MACROS): Bump prerequisite from 2.52g to 2.57.
33281         Don't set GETGROUPS_LIB here; now it's
33282         done via getgroups.m4's wrapper function.
33283         AC_SUBST OPTIONAL_BIN_PROGS, OPTIONAL_BIN_ZCRIPTS, and MAN here,
33284         rather than just in sh-util/configure.in, so that the
33285         now-shared-by-fileutils-and-textutils lib/Makefile.am are all the
33286         same.
33287         Use AC_CONFIG_LIBOBJ_DIR(lib) to tell the new
33288         AC_FUNC_GETLOADAVG where to find getloadavg.c.
33289         Require AC_FUNC_FTW, gt_INTTYPES_PRI, gl_CLOCK_TIME,
33290         UTILS_SYS_OPEN_MAX, GL_FUNC_GETCWD_PATH_MAX, GL_FUNC_READDIR,
33291         gl_FSUSAGE, gl_MOUNTLIST, AC_FUNC_CANONICALIZE_FILE_NAME.
33292         Remove code that is now done by the newly-required macros.
33293         Append $(EXEEXT) to DF_PROG.
33294         AC_LIBOBJ fchdir-stub if fchdir doesn't exist; similarly for fchown.
33295         Do not invoke or require the following here,
33296         since prereq.m4 or some gnulib .m4 now does this for us:
33297         gl_REGEX, UTILS_FUNC_MKDIR_TRAILING_SLASH, jm_BISON, gl_FUNC_MKTIME,
33298         jm_FUNC_LSTAT, jm_FUNC_STAT, jm_FUNC_REALLOC, jm_FUNC_MALLOC,
33299         jm_FUNC_NANOSLEEP, jm_FUNC_READDIR, jm_FUNC_MEMCMP,
33300         jm_FUNC_GLIBC_UNLOCKED_IO, AC_FUNC_FNMATCH_GNU, jm_FUNC_PUTENV,
33301         jm_AC_PREREQ_XSTRTOUMAX, jm_AC_PREREQ_XSTRTOIMAX,
33302         AC_FUNC_ERROR_AT_LINE, jm_FUNC_GNU_STRFTIME, AC_FUNC_VPRINTF,
33303         vb_FUNC_RENAME, UTILS_FUNC_MKSTEP, jm_FUNC_UTIME, AM_FUNC_GETLINE,
33304         AC_FUNC_OBSTACK.
33305         Do not replace the following functions, as this is now the job
33306         of some gnulib .m4: strcasecmp, strncasecmp, dup2, gethostname,
33307         getusershell, sig2str, strcspn, stpcpy, strstr, strtol, strtoul
33308         strpbrk, euidaccess, memcmp, rmdir, rpmatch, strndup, strverscmp,
33309         atexit getpass, strdup, getpagesize.
33310         Replace 'raise'.
33311         Do not check for the following functions, as this is now the job
33312         of some gnulib .m4: bcopy, canonicalize_file_name, fchdir, ftime,
33313         getcwd, getmntinfo, resolvepath.  But check for sysctl, setreuid,
33314         setregid.
33315         (jm_CHECK_ALL_HEADERS): Do not check for fenv.h.
33316         Check for sys/sysctl.h.
33317         (jm_CHECK_ALL_TYPES): Do not require AC_STRUCT_TM, AC_STRUCT_TIMEZONE,
33318         jm_CHECK_TYPE_STRUCT_TIMESPEC.  Invoke gt_TYPE_SSIZE_T instead
33319         of checking for ssize_t ourselves.
33320
33321         * m4/prereq.m4 (jm_PREREQ): Don't invoke macros; AC_REQUIRE them.
33322         Require every macro that gnulib/modules/* suggests for us.
33323         (jm_PREREQ_ADDEXT): New macro.
33324         (jm_PREREQ_STAT): Check for 'struct statfs' on Ultrix 4.4.
33325         Require jm_AC_TYPE_LONG_LONG instead of invoking it.
33326
33327         * m4/physmem.m4 (gl_SYS__SYSTEM_CONFIGURATION): New macro.
33328         (gl_PHYSMEM): Use it.
33329         Also check for `table' function.
33330         Check for new headers and functions.
33331         Add check for sys/sysmp.h.
33332         With suggestions from Kaveh Ghazi.
33333         Ignore headers that are present but cannot be compiled.  This
33334         avoids spurious warnings on Solaris 9 sparc with Forte Developer 7
33335         C 5.4.
33336
33337 2003-08-15  Paul Eggert  <eggert@twinsun.com>
33338
33339         Document merge from coreutils.
33340         * modules/userspec: Depend on posixver.
33341         * modules/strftime: Depend on tzset.
33342
33343 2003-08-15  Paul Eggert  <eggert@twinsun.com>
33344
33345         * lib/config.charset, ref-add.sin, ref-del.sin: Use three spaces,
33346         rather than tab, after '#' in shell-script copyright notices.
33347         Suggested by Bruno Haible.
33348
33349 2003-08-15  Paul Eggert  <eggert@twinsun.com>
33350
33351         * config/srclist-update: Use three spaces, rather than tab, after '#'
33352         in shell-script copyright notices.  Suggested by Bruno Haible.
33353         Remove unnecessary parenthesization in regular expression.
33354
33355 2003-08-15  Jim Meyering  <jim@meyering.net>
33356
33357         Merge from coreutils.
33358         * lib/xgethostname.c: Include <stdlib.h>.
33359         (xghostname): Don't exit for anything other than memory-related
33360         failure; just return NULL.
33361         * lib/userspec.c: Include "posixver.h".
33362         (parse_user_spec): Accept `.' as a separator only
33363         in pre-POSIX-200112 mode.
33364         * lib/strtoimax.c: Use #elif rather than #else #if.
33365         * lib/strftime.c (my_strftime) [!_LIBC && HAVE_TZNAME && HAVE_TZSET]:
33366         Remove function, now that we can rely on a working tzset function.
33367         [!_LIBC]: Ensure that the required autoconf test has been run.
33368         [!defined _NL_CURRENT && HAVE_STRFTIME]:
33369         Use underlying_strftime for %r.
33370         * lib/sha.c: Merge in some clean-up and optimization changes from
33371         glibc.
33372         * lib/sha.c (sha_stream) [BLOCKSIZE]: Move definition to top of file.
33373         Ensure that it is a multiple of 64.
33374         Rearrange loop exit tests so as to avoid performing an
33375         additional fread after encountering an error or EOF.
33376         * lib/realloc.c: Update copyright date.
33377
33378 2003-08-15  Jim Meyering  <jim@meyering.net>
33379         and Paul Eggert  <eggert@twinsun.com>
33380
33381         Merge from coreutils.
33382         * lib/readutmp.h (HAVE_UTMPX_H): Undef if struct utmp has the ut_exit
33383         member but strut utmpx does not.  Needed for AIX 4.3.3.
33384         (UT_EXIT_E_TERMINATION, UT_EXIT_E_EXIT): Define.
33385
33386 2003-08-15  Jim Meyering  <jim@meyering.net>
33387         and Paul Eggert  <eggert@cs.ucla.edu>
33388
33389         Merges from coreutils, etc.
33390         * m4/strftime.m4 (_jm_STRFTIME_PREREQS):
33391         Require gl_FUNC_TZSET_CLOBBER.
33392         * m4/readutmp.m4 (gl_READUTMP): Check for ut_exit.ut_exit,
33393         ut_exit.e_exit, ut_exit.ut_termination, and ut_exit.e_termination
33394         members.
33395
33396 2003-08-14  Paul Eggert  <eggert@twinsun.com>
33397
33398         Help the merge from coreutils.
33399         * m4/gettimeofday.m4 (gl_GETTIMEOFDAY_REPLACE_LOCALTIME): New macro.
33400         (AC_FUNC_GETTIMEOFDAY_CLOBBER): Use it.
33401         * m4/tzset.m4: Use it too.
33402
33403 2003-08-14  Paul Eggert  <eggert@twinsun.com>
33404
33405         * modules/tzset: New file.
33406
33407 2003-08-14  Jim Meyering  <jim@meyering.net>
33408
33409         Merges from coreutils.
33410         * modules/fnmatch: Use the `$(FNMATCH_H)' notation for AC_REPLACED
33411         variable names, rather than @FNMATCH_H@.
33412         * modules/alloca: Likewise for $(ALLOCA_H).
33413
33414         * modules/fnmatch (fnmatch.h): Use `$@' in the commands, in place of
33415         the three copies of the literal target, `fnmatch.h'.
33416         * modules/alloca (alloca.h): Likewise.
33417
33418 2003-08-14  Jim Meyering  <jim@meyering.net>
33419
33420         Merge from coreutils.
33421         * m4/tzset.m4: New file.
33422         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Move the
33423         MOUNTED_VMOUNT test to precede the MOUNTED_GETMNTENT1 tests, since
33424         otherwise, AIX 5.1 systems would end up using the latter.
33425         MOUNTED_GETMNTENT1 support is inadequate on such systems: 1) detecting
33426         whether a file system is remote doesn't work  2) the MOUNTED_VMOUNT
33427         code reports the HOSTNAME:/MOUNT_POINT, while the MOUNTED_GETMNTENT1
33428         code reports merely /MOUNT_POINT.  Reported by Mike Jetzer.
33429
33430 2003-08-14  Jim Meyering  <jim@meyering.net>
33431
33432         Merge from coreutils.
33433         * lib/obstack.h: Whitespace changes.
33434         * lib/mountlist.c: Remove anachronistic casts of xmalloc, xrealloc,
33435         and xcalloc return values.
33436         (read_filesystem_list) [MOUNTED_GETFSSTAT]:
33437         Use MNT_NOWAIT, rather than MNT_WAIT.  Otherwise, `df DIR' could
33438         hang on OSF/1 5.1 for DIR on both local and remote file systems.
33439         Reported by (and fix confirmed by) Nelson H. F. Beebe.
33440         (read_filesystem_list) [MOUNTED_VMOUNT]: Detect any
33441         error from mntctl.
33442         Use mntctl's return value to drive the entry-processing loop, since
33443         we can't rely on the value of the vmt_length member in the last
33444         entry.  On some systems doing so could result in exhausting
33445         virtual memory.  Based in part on a patch from Mike Jetzer.
33446
33447 2003-08-14  Jim Meyering  <jim@meyering.net>
33448         and Paul Eggert  <eggert@twinsun.com>
33449
33450         Merges from coreutils, plus other fixes.
33451         * lib/physmem.c: Merge in portability changes from gcc/libiberty
33452         to support AIX, IRIX, Tru64, and Windows.  See the ChangeLog there
33453         for credits and details.  Thanks to Kaveh Ghazi for helping
33454         to keep these files in sync.
33455         (ARRAY_SIZE): Define it.
33456         (physmem_total, physmem_available): Add comments. From Kaveh Ghazi.
33457         * lib/memcasecmp.c: Remove unnecessary parentheses after 'defined'.
33458         (memcasecmp): Don't assume size_t fits in unsigned int.
33459         Remove casts and duplicate code.
33460         * lib/md5.c: Include <string.h> and <stdlib.h> unconditionally.
33461         (memcpy): Remove definition.
33462         Merge in some clean-up and optimization changes from glibc.
33463         [BLOCKSIZE]: Move definition to top of file.
33464         Ensure that it is a multiple of 64.
33465         Rearrange loop exit tests so as to avoid performing an
33466         additional fread after encountering an error or EOF.
33467         * lib/md5.h (md5_uintptr): Define.
33468         * lib/makepath.c (CLEANUP_CWD): Report an error if we failed to
33469         return to the initial working directory.  Preserve errno
33470         for caller.
33471         * lib/idcache.c: Include "xalloc.h".
33472         (xmalloc, xrealloc): Remove decls.
33473         (getuser): Remove casts no longer required in C89.
33474         * lib/human.c: Include stdio.h, for sprintf.
33475         * lib/group-member.c: Include "xalloc.h".
33476         (xmalloc, xrealloc): Remove decls.
33477         (get_group_info): Remove casts no longer required in C89.
33478         * lib/getusershell.c (readname): Remove casts no longer required in
33479         C89.
33480         * lib/gettimeofday.c (rpl_gmtime, rpl_tzset): New functions.
33481         * lib/getline.c: Whitespace fix, from coreutils.
33482
33483 2003-08-13  Paul Eggert  <eggert@twinsun.com>
33484
33485         * m4/exclude.m4 (gl_EXCLUDE): Require AC_C_INLINE, AC_HEADER_STDC.
33486         Check for isascii.
33487
33488         * m4/gettext.m4, iconv.m4, intdiv0.m4, inttypes-pri.m4, lib-link.m4,
33489         lib-prefix.m4, longdouble.m4, po.m4, progtest.m4, signed.m4:
33490         Undo previous (whitespace-only) change.
33491
33492 2003-08-13  Paul Eggert  <eggert@twinsun.com>
33493
33494         * lib/exclude.c: Include <ctype.h>
33495         (IN_CTYPE_DOMAIN): New macro.
33496         (is_space): New fn.
33497         (add_exclude_file): If LINE_END is a space, ignore trailing spaces
33498         and empty lines.
33499
33500         * lib/argp-help.c, argp-parse.c, config.charset, getopt.h:
33501         Undo previous (whitespace-only) change.
33502
33503 2003-08-13  Paul Eggert  <eggert@twinsun.com>
33504
33505         * config/srclist-update: Change update back to the old behavior,
33506         leaving whitespace alone.  Use one 'sed' command rather than a
33507         pipeline.
33508         (fixlicense): Now a variable, not a function.
33509         (remove_trailing_blanks): Remove.
33510         (fixfile): Don't invoke unexpand or cat, or remove trailing blanks.
33511         * config/config.guess, config.sub, install-sh, missing, texinfo.tex:
33512         Undo previous (whitespace-only) change.
33513
33514 2003-08-12  Paul Eggert  <eggert@twinsun.com>
33515
33516         Merge from coreutils.
33517         * modules/euidaccess: Add lib_SOURCES, include for new
33518         file euidaccess.h
33519
33520 2003-08-12  Paul Eggert  <eggert@twinsun.com>
33521
33522         * m4/gettext.m4, iconv.m4, intdiv0.m4, inttypes-pri.m4, lib-link.m4,
33523         lib-prefix.m4, longdouble.m4, po.m4, progtest.m4, signed.m4:
33524         Normalize leading white space and remove trailing white space.
33525
33526         Merge from coreutils
33527         * m4/euidaccess.m4 (gl_FUNC_EUIDACCESS): Check for euidaccess decl.
33528
33529         * m4/lib-ld.m4, lib-link.m4, lib-prefix.m4: Regenerate from gettext
33530         0.12.1.  These files are now being upgraded automatically by
33531         ../config/srclist-update.
33532
33533 2003-08-12  Paul Eggert  <eggert@twinsun.com>
33534
33535         * lib/argp-help.c, argp-parse.c, config.charset, getopt.h:
33536         Normalize leading white space and remove trailing white space.
33537         * lib/ref-add.sin, ref-del.sin: Use '#' before empty line in copyright
33538         notice, as per ../config/srclist-update.
33539
33540         Merge from coreutils.
33541         * lib/euidaccess.h: New file.
33542         * lib/euidaccess.c: Include it.
33543         * lib/.cppi-disable: Add printf-args.h, printf-parse.h, stdbool_.h,
33544         vasnprintf.h, vasprintf.h.  Remove strdup.c, gettext.h.
33545         * lib/regex.h, strdup.c, strtoll.c, strtoul.c: Normalize white space.
33546
33547 2003-08-12  Paul Eggert  <eggert@twinsun.com>
33548
33549         * config/srclist-update: Add copyright notice.
33550         (remove_id_lines, remove_trailing_blanks): New constants.
33551         (fixfile): Use them to normalize spacing a bit in copied files.
33552         * config/config.guess, config.sub, install-sh, missing, texinfo.tex:
33553         Normalize leading white space and remove trailing white space.
33554
33555         * config/texinfo.tex: Sync with texinfo.
33556
33557         * config/srclist.txt: Don't get regex.h, strdup.c, strtoll.c,
33558         strtoul.c from libc, to merge coreutils whitespace changes.
33559
33560         * config/srclist.txt: Get the following m4 files from gettext:
33561         codeset.m4, gettext.m4, glibc21.m4, iconv.m4, intdiv0.m4,
33562         inttypes-pri.m4, lcmessage.m4, lib-ld.m4, lib-link.m4, lib-prefix.m4,
33563         longdouble.m4, nls.m4, po.m4, progtest.m4, signed.m4, wchar_t.m4,
33564         wint_t.m4.
33565
33566 2003-08-12  Karl Berry  <karl@gnu.org>
33567
33568         * config/srclist.txt: can't sync vasnprintf.c any more, changes have
33569         been made.
33570
33571 2003-08-11  Paul Eggert  <eggert@twinsun.com>
33572
33573         * modules/gnu-source, m4/gnu-source.m4:
33574         Remove; we're assuming Autoconf 2.54 or later now.
33575         Suggested by Bruno Haible.
33576         * MODULES.html.sh (func_all_modules): Remove gnu-source.
33577
33578 2003-08-11  Bruno Haible  <bruno@clisp.org>
33579
33580         * m4/vasnprintf.m4 (gl_PREREQ_VASNPRINTF): Also check for wcslen.
33581
33582 2003-08-11  Bruno Haible  <bruno@clisp.org>
33583
33584         * lib/vasnprintf.c (local_wcslen): New function, for Solaris 2.5.1.
33585         (vasnprintf): Use it instead of wcslen.
33586
33587 2003-08-11  Bruno Haible  <bruno@clisp.org>
33588
33589         * lib/stdbool_.h (_Bool): Undo last change; instead use a negative enum
33590         value to ensure that _Bool promotes to int. Use #define for _Bool when
33591         using the Solaris C compiler. Adds comments suggested by Paul Eggert.
33592
33593 2003-08-10  Karl Berry  <karl@gnu.org>
33594
33595         * lib/regex.h: update from libc (whitespace fix).
33596
33597 2003-08-09  Paul Eggert  <eggert@twinsun.com>
33598
33599         Merge some files from coreutils.  These changes were
33600         originally made by Jim Meyering.
33601         * lib/acl.c: Include <sys/types.h> before <sys/stat.h>;
33602         many older Unixes require this.
33603         * lib/alloca.c (alloca): Remove cast to argument of free;
33604         no longer needed in C89.
33605         * lib/alloca_.h, regex.h: Fix white space to match
33606         what GNU indent does.
33607
33608 2003-08-09  Paul Eggert  <eggert@twinsun.com>
33609
33610         * m4/regex.m4 (jm_INCLUDED_REGEX): Change "\201" to "\371";
33611         apparently Emacs's Unicode mode got confused before my 2003-08-05
33612         checkin.
33613
33614 2003-08-08  Paul Eggert  <eggert@twinsun.com>
33615
33616         * m4/extensions.m4: New file.
33617         * m4/timespec.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC):
33618         Require gl_USE_SYSTEM_EXTENSIONS.
33619         * m4/unlocked-io.m4 (jm_FUNC_GLIBC_UNLOCKED_IO):
33620         Require gl_USE_SYSTEM_EXTENSIONS rather than AC_GNU_SOURCE.
33621
33622 2003-08-08  Paul Eggert  <eggert@twinsun.com>
33623
33624         * MODULES.html.sh (func_all_modules): Add extensions, gnu-source.
33625         * modules/extensions, modules/gnu-source: New files.
33626         * modules/timespec, modules/unlocked-io: Depend on extensions.
33627
33628 2003-08-07  Paul Eggert  <eggert@twinsun.com>
33629
33630         * modules/restrict: New file.
33631         * MODULES.html.sh (func_all_modules): Add restrict.
33632         * modules/regex: Depend on restrict.
33633
33634 2003-08-07  Paul Eggert  <eggert@twinsun.com>
33635
33636         * m4/restrict.m4: New file.
33637         * m4/regex.m4 (jm_PREREQ_REGEX): Add gl_C_RESTRICT.
33638
33639 2003-08-07  Bruno Haible  <bruno@clisp.org>
33640
33641         * modules/getndelim2 (Makefile.am): Add the files to EXTRA_DIST, not
33642         lib_SOURCES, because getndelim2.m4 now uses AC_LIBOBJ(getndelim2).
33643
33644 2003-08-07  Bruno Haible  <bruno@clisp.org>
33645
33646         * m4/getndelim2.m4 (gl_GETNDELIM2): Use AC_LIBOBJ(getndelim2). This
33647         makes the module 'getndelim2' compatible with the module 'getline'.
33648
33649 2003-08-05  Paul Eggert  <eggert@twinsun.com>
33650
33651         * m4/regex.m4 (jm_INCLUDED_REGEX): Replace a single non-ASCII
33652         byte with "\201" to avoid glitches when editing that source file
33653         with multi-gnome-terminal.
33654
33655 2003-08-05  Paul Eggert  <eggert@twinsun.com>
33656
33657         * lib/bumpalloc.h: Remove.
33658
33659 2003-08-05  Paul Eggert  <eggert@twinsun.com>
33660
33661         * MODULES.html.sh (func_all_modules): Remove bumpalloc.
33662         * modules/bumpalloc: Remove.
33663
33664 2003-08-04  Paul Eggert  <eggert@twinsun.com>
33665
33666         * lib/getloadavg.c: Change copyright notice and spacing to conform to
33667         GNU coding style.
33668
33669         Merge from coreutils.
33670         * lib/error.c [!USE_IN_LIBIO]: Omit this case; assume USE_IN_LIBIO is
33671         1. From glibc.
33672         * lib/getdate.y (date): Also accept dates like May-23-2003; suggestion
33673         from Karl Berry, implemented by Jim Meyering.
33674         * lib/getgroups.c: Include "xalloc.h" instead of declaring xalloc fns;
33675         from Dmitry V. Levin.
33676         Remove anachronistic cast of xrealloc.
33677         * lib/fnmatch_.h (__const): Remove.  Use 'const'.
33678         * lib/fnmatch_loop.c (NEW_PATTERN): Cast alloca return value to proper
33679         type. Otherwise, it wouldn't compile with at least /bin/cc on
33680         ymp-cray-unicos9.0.2.X.
33681         Combine two mostly-identical uses of alloca into one.
33682         Thanks to the Cray-Cyber project for access to a Cray Y-MP.
33683
33684 2003-08-04  Dave Love  <d.love@dl.ac.uk>
33685
33686         [From Emacs.]
33687
33688         * lib/getloadavg.c: Check `__unix' as well as `unix'.  Use #ifdef, not
33689         #if.  Check HAVE_LIBKSTAT as well as LOAD_AVE_TYPE.  Check
33690         F_SETFD, not FD_SETFD.  Use HAVE_STRUCT_NLIST_N_UN_N_NAME, not
33691         obsolete NLIST_NAME_UNION.
33692         [__GNU__]: Undef BSD and FSCALE.
33693         [!NLIST_STRUCT]: Remove conditional definition of NLIST_STRUCT.
33694
33695 2003-08-03  Paul Eggert  <eggert@twinsun.com>
33696
33697         * lib/stdbool_.h (_Bool): Make it signed char, instead of
33698         an enum type, so that it's guaranteed to promote to int.  See:
33699         <http://mail.gnu.org/archive/html/bug-gnulib/2003-07/msg00124.html>
33700
33701 2003-08-03  Karl Berry  <karl@gnu.org>
33702
33703         * config/depcomp: update from automake.
33704
33705 2003-07-31  Paul Eggert  <eggert@twinsun.com>
33706
33707         * lib/strerror.c: Include config.h, limits.h.  Declare sprintf.
33708         (strerror): Don't assume that a printable int fits in 14 bytes.
33709
33710 2003-07-31  Bruno Haible  <bruno@clisp.org>
33711
33712         * modules/getpass-gnu: New file.
33713         * MODULES.html.sh (func_all_modules): Add getpass-gnu.
33714
33715 2003-07-31  Bruno Haible  <bruno@clisp.org>
33716
33717         * m4/getpass.m4 (gl_FUNC_GETPASS_GNU): New macro.
33718
33719 2003-07-24  Karl Berry  <karl@gnu.org>
33720
33721         * config/missing: update from automake.
33722
33723 2003-07-24  Derek Robert Price  <derek@ximbiot.com>
33724             Bruno Haible  <bruno@clisp.org>
33725
33726         * lib/getline.h (getline, getdelim): Change return type to ssize_t.
33727         * lib/getline.c (getline, getdelim): Likewise.
33728         Remove _GNU_SOURCE define; now it's defined in config.h through
33729         m4/getline.m4.
33730
33731 2003-07-23  Karl Berry  <karl@gnu.org>
33732
33733         * config/config.sub: update from prep.
33734
33735 2003-07-22  Paul Eggert  <eggert@twinsun.com>
33736
33737         * modules/xalloc (Depends-on): Add exitfail.
33738         * modules/xmemcoll: Likewise.
33739
33740 2003-07-22  Paul Eggert  <eggert@twinsun.com>
33741
33742         * lib/xalloc.h (XCALLOC, XREALLOC, CCLONE): Fix under- and
33743         over-parenthesization in macros.
33744
33745         Sync with coreutils.
33746
33747         * lib/xalloc.h (XMALLOC, XCALLOC, XREALLOC): Remove casts not
33748         required by C99.
33749
33750         Use `exit_failure' for xalloc and xmemcoll instead of their own
33751         private exit-failure variables.
33752         * lib/xalloc.h (xalloc_exit_failure): Remove.
33753         * lib/xmalloc.c: Likewise.  Include exitfail.h.
33754         (xalloc_die): Use exit_failure instead of xalloc_exit_failure.
33755         * lib/xmemcoll.h (xmemcoll_exit_failure): Remove.
33756         * lib/xmemcoll.c: Likewise.  Include exitfail.h.
33757         (xmemcoll): Use exit_failure instead of xalloc_exit_failure.
33758
33759 2003-07-20  Jim Meyering  <jim@meyering.net>
33760
33761         * modules/closeout (Depends-on): Add exitfail.
33762         Suggestion from Bruno Haible.
33763
33764 2003-07-19  Karl Berry  <karl@gnu.org>
33765
33766         * config/config.sub: update from prep.
33767
33768 2003-07-18  Paul Eggert  <eggert@twinsun.com>
33769
33770         * lib/closeout.h (close_stdout_set_status, close_stdout_status):
33771         Remove.
33772         * lib/closeout.c: Likewise.  Include "closeout.h" right after config.h,
33773         to test that it can stand by itself.  Include "exitfail.h".
33774         Clients should set exit_failure instead.
33775         (EXIT_FAILURE): Remove; no longer needed.  Do not include <stdlib.h>.
33776
33777 2003-07-18  Bruno Haible  <bruno@clisp.org>
33778
33779         * modules/getndelim2: New file.
33780         * modules/getline: Share files with module getndelim2.
33781         * modules/getnline: Depend on getndelim2 instead of sharing files with
33782         it. Add getnline.c to lib_SOURCES.
33783         * MODULES.html.sh (func_all_modules): Add getndelim2.
33784
33785 2003-07-18  Bruno Haible  <bruno@clisp.org>
33786
33787         * m4/getndelim2.m4: New file.
33788         * m4/getline.m4 (AM_FUNC_GETLINE): Add AC_LIBOBJ of getndelim2.c and
33789         invoke gl_PREREQ_GETNDELIM2.
33790         (gl_PREREQ_GETLINE): Drop AC_HEADER_STDC, now done by
33791         gl_PREREQ_GETNDELIM2.
33792         * m4/getnline.m4 (gl_GETNLINE): Drop AC_HEADER_STDC, now done by
33793         gl_GETNDELIM2.
33794
33795 2003-07-18  Bruno Haible  <bruno@clisp.org>
33796
33797         * lib/getndelim2.h: New file.
33798         * lib/getndelim2.c: Make into a module of its own. Include config.h,
33799         getndelim2.h.
33800         (getndelim2): Make non-static. Change return type to ssize_t.
33801         * lib/getline.h: Change argument names.
33802         * lib/getline.c: Include getndelim2.h instead of getndelim2.c.
33803         * lib/getnline.c: Include getndelim2.h.
33804
33805 2003-07-18  Andreas Schwab  <schwab@suse.de>
33806
33807         * lib/memcoll.c (memcoll) [!HAVE_STRCOLL]: Clear errno.
33808
33809 2003-07-17  Karl Berry  <karl@gnu.org>
33810
33811         * config/config.sub: update from prep.
33812
33813 2003-07-17  Bruno Haible  <bruno@clisp.org>
33814
33815         * modules/getnline: New file.
33816         * modules/getline: Add lib/getndelim2.c to source file list.
33817         * MODULES.html.sh (func_all_modules): Add getnline.
33818
33819 2003-07-17  Bruno Haible  <bruno@clisp.org>
33820
33821         * m4/getnline.m4: New file.
33822
33823 2003-07-17  Bruno Haible  <bruno@clisp.org>
33824
33825         * m4/Makefile.am.in: Remove file.
33826         * m4/Makefile.am: Remove file.
33827         * m4/Makefile.in: Remove file.
33828
33829 2003-07-17  Bruno Haible  <bruno@clisp.org>
33830
33831         * lib/getnline.h: New file.
33832         * lib/getnline.c: New file.
33833         * lib/getndelim2.c: New file, extracted from getline.c.
33834         (getndelim2): Renamed from getdelim2, with added nmax argument.
33835         * lib/getline.c: Include getndelim2.c.
33836         (getdelim2): Moved out to getndelim2.c.
33837         (getline, getdelim): Update.
33838
33839 2003-07-17  Bruno Haible  <bruno@clisp.org>
33840
33841         * lib/Makefile.am: Remove file.
33842         * lib/Makefile.in: Remove file.
33843
33844 2003-07-17  Bruno Haible  <bruno@clisp.org>
33845
33846         * configure.in: Remove file.
33847         * Makefile.in: Remove file.
33848
33849 2003-07-17  Bruno Haible  <bruno@clisp.org>
33850
33851         * MODULES.html.sh: Put the </BODY> right before </HTML>.
33852
33853 2003-07-16  Karl Berry  <karl@gnu.org>
33854
33855         * config/srclist-update: was running fixlicense twice, which caused
33856                 texinfo.tex to be nullified for some reason.  Simplify,
33857                 $gplsrc is no longer needed as far as I can see?
33858
33859 2003-07-16  Jim Meyering  <jim@meyering.net>
33860
33861         * modules/save-cwd: Depend on xgetcwd.  From Derek Price.
33862
33863 2003-07-15  Paul Eggert  <eggert@twinsun.com>
33864
33865         * config/srclist.txt: Get the following files from gettext-runtime/intl
33866         instead: config.charset, localcharset.c, localcharset.h, ref-add.sin,
33867         ref-del.sin.  From Bruno Haible.
33868         * config/srclist-update (fixfile): Change grep pattern again, since the
33869         previous fix didn't work (there was another trailing $).  Use
33870         '[$]' to escape the $s.
33871
33872 2003-07-15  Karl Berry  <karl@gnu.org>
33873
33874         * lib/vasnprintf.c: update from gettext.
33875
33876 2003-07-15  Karl Berry  <karl@gnu.org>
33877
33878         * config/srclist-update (fixfile): Change grep pattern, since 'Id'
33879         gets expanded when surrounded by '$'.
33880
33881 2003-07-15  Jim Meyering  <jim@meyering.net>
33882
33883         * modules/save-cwd: Don't depend on error.  From Derek Price.
33884
33885 2003-07-15  Jim Meyering  <jim@meyering.net>
33886
33887         * lib/makepath.c (make_path): Enclose diagnostic in _(...).
33888
33889 2003-07-14  Simon Josefsson  <jas@extundo.com>
33890
33891         * modules/mempcpy: New file.
33892         * MODULES.html.sh (func_all_modules): Add mempcpy.
33893
33894 2003-07-14  Simon Josefsson  <jas@extundo.com>
33895
33896         * m4/mempcpy.m4: New file.
33897
33898 2003-07-14  Simon Josefsson  <jas@extundo.com>
33899
33900         * lib/mempcpy.h: New file.
33901         * lib/mempcpy.c: New file.
33902
33903 2003-07-14  Paul Eggert  <eggert@twinsun.com>
33904
33905         * modules/getdate, modules/posixtm: Depend on mktime.
33906
33907 2003-07-14  Paul Eggert  <eggert@twinsun.com>
33908
33909         * lib/ceill.c, expl.c, floorl.c, frexpl.c, ldexpl.c, mathl.h,
33910         sincosl.c, sqrtl.c, trigl.c, trigl.h, poll.c, poll_.h, mkstemp.c,
33911         unicodeio.c, unicodeio.h, unlocked-io.h:
33912         Switch from LGPL to GPL.
33913
33914 2003-07-14  Paul Eggert  <eggert@twinsun.com>
33915
33916         * lib/asnprintf.c, asprintf.c, config.charset, gettext.h,
33917         localcharset.c, localcharset.h, mkdtemp.c, printf-args.c,
33918         printf-args.h, printf-parse.c, printf-parse.h, ref-add.sin,
33919         ref-del.sin, setenv.c, unsetenv.c, vasnprintf.c, vasnprintf.h,
33920         vasprintf.c, vasprintf.h: Regenerate.  These files are now being
33921         updated automatically by ../config/srclist-update.  This changes
33922         their license from LPGL to GPL.
33923
33924 2003-07-14  Paul Eggert  <eggert@twinsun.com>
33925
33926         * config/srclist.txt: Add tons more gettext files.  $GETTEXT is now
33927         assumed to refer to the root of the most recent stable gettext version.
33928         * config/srclistvars.sh: Add defaults for eggert.
33929         * config/srclist-update: Convert LGPL to GPL in shell scripts, too.
33930         Match "This program" as well as "The program".  This is needed
33931         for gettext.
33932
33933 2003-07-14  Jim Meyering  <jim@meyering.net>
33934
33935         Don't emit diagnostics.  Let callers do that.
33936         * lib/save-cwd.c: Don't include "error.h".
33937         (save_cwd): Don't call error.  Ensure that errno is valid
33938         when returning nonzero.
33939
33940         * lib/save-cwd.h (restore_cwd): Update prototype.
33941         * lib/save-cwd.c (restore_cwd): Remove two parameters.
33942         Simplify.  Don't call error upon failure.  Let callers do that.
33943         (save_cwd): Mention that Irix 5.3 has the same problem as SunOS 4
33944         when auditing is enabled.  But don't bother updating the #if.
33945
33946 2003-07-11  Alexandre Duret-Lutz  <adl@gnu.org>
33947
33948         * lib/obstack.h (__INT_TO_PTR): Revert change of 2003-03-13;
33949         it breaks C++ compilation.
33950         [!__GNUC__ || !__STDC__] (obstack_finish): Cast result to void*.
33951
33952 2003-07-10  Simon Josefsson  <jas@extundo.com>
33953
33954         * modules/strchrnul (Makefile.am): Add strchrnul.h.
33955
33956 2003-07-10  Jim Meyering  <jim@meyering.net>
33957
33958         * m4/clock_time.m4: Remove trailing blank.
33959         * m4/intmax_t.m4: Likewise.
33960
33961 2003-07-10  Jim Meyering  <jim@meyering.net>
33962
33963         * lib/vasnprintf.c: Remove trailing blanks.
33964         Make cpp indentation consistent.
33965
33966 2003-07-09  Paul Eggert  <eggert@twinsun.com>
33967
33968         * lib/alloca_.h, euidaccess.c, getpass.c, memrchr.c, obstack.h,
33969         posixver.c, strftime.c, strnlen.c, strverscmp.c:
33970         Switch from LGPL to GPL.
33971
33972 2003-07-09  Paul Eggert  <eggert@twinsun.com>
33973
33974         * config/srclist.txt: Sort sublists.  Add
33975         $LIBCSRC/sysdeps/generic/strtoul.c. In comments, add more libc files
33976         that differ from gnulib for one reason or another; we'd like this list
33977         to be smaller but for now let's document what we have.
33978
33979 2003-07-08  Paul Eggert  <eggert@twinsun.com>
33980
33981         * config/srclist-update: Port to POSIX 1003.1-2001 hosts by avoiding
33982         the use of GNU extensions.  Change "x=`eval echo $x`" to the shorter
33983         and sweeter "eval x=$x".
33984         * config/srclist.txt: Get lib/argp* from glibc.
33985
33986 2003-07-07  Paul Eggert  <eggert@twinsun.com>
33987
33988         * lib/mktime.c: Fix some boundary cases and remove need for floating
33989         point.
33990
33991         Issue a compile-time diagnostic if time_t is floating point, or if
33992         two's complement arithmetic is not in effect, or if arithmetic
33993         right shift does not propagate the sign.  These assumptions were
33994         all in the original code but they weren't checked.
33995
33996         (TIME_T_MIDPOINT, verify): New macros.
33997         (__isleap): Remove; it has integer overflow problems.
33998         (leapyear): New function, without those problems.
33999         (ydhms_tm_diff): Remove; splitting into two parts.
34000         (ydhms_diff): New function, containing the arithmetic part of
34001         the old ydhms_tm_diff function.  Issue a compile-time
34002         diagnostic if we are not using C99 integer division.
34003         Avoid casts when possible.
34004         (guess_time_tm): New function, containing the checking part of
34005         the old ydhms_tm_diff function.  Return the new value, rather than
34006         the difference between it and the old.  Accept a new argument T
34007         so that *T specifies the old value.  Check for overflow in the result.
34008
34009         (__mktime_internal): Use a time_t offset, not a long int offset.
34010         This undoes the 2003-06-04 change, which is no longer needed now
34011         that we have better overflow checking.
34012         (localtime_offset): Likewise.
34013
34014         (__mktime_internal): Avoid harmful overflow on hosts where time_t
34015         and long are 64-bit but int is only 32-bit.
34016         (ydhms_diff): Use long int to store year1 and yday1.
34017         Issue a compile-time diagnostic if long int is not wide enough.
34018
34019         (__mktime_internal): Use long int to store adjusted year and yday.
34020         Use plain C rather than preprocessor commands, if that doesn't
34021         affect efficiency.
34022         Check for overflow (and try to repair) after each probe
34023         rather than checking only at the very end.  This avoids some bugs
34024         (e.g., southern hemisphere, behind GMT, and GMT offset at minimum time
34025         does not equal GMT offset at maximum time).
34026         Use integer to check for overflow rather than floating point; this
34027         is more portable to non-IEEE hosts, and is a tad faster.
34028         When we detect that we are oscillating between two values,
34029         don't check whether tm_isdst has the requested value, since
34030         we already know the answer.  When tm_isdst has the wrong value,
34031         use a different heuristic to find the right one, based on the
34032         extreme values actually observed in practice in tz2003a,
34033         rather than the (overly optimistic) "previous 3 calendar quarters".
34034
34035         (not_equal_tm, print_tm, check_result): Use "const T" rather than
34036         "T const" to accommodate glibc style.
34037         (check_result): Use less-confusing report format.  "long" -> "long int.
34038         (main): Likewise.
34039         Don't loop if the iteration overflows time_t.
34040         Allow a negative step in the iteration.
34041
34042 2003-07-06  Karl Berry  <karl@gnu.org>
34043
34044         * config/depcomp: update from automake.
34045         * config/config.sub: update from prep.
34046
34047 2003-07-03  Karl Berry  <karl@gnu.org>
34048
34049         * config/config.guess: update from prep.
34050
34051 2003-07-01  Paul Eggert  <eggert@twinsun.com>
34052
34053         * m4/xreadlink.m4 (gl_XREADLINK): Don't check for sys/types.h, since
34054         xreadlink.c now includes it unconditionally.
34055
34056 2003-07-01  Paul Eggert  <eggert@twinsun.com>
34057
34058         * lib/xreadlink.c: Include <sys/types.h> unconditionally, instead of
34059         having it depend on HAVE_SYS_TYPES_H.
34060
34061 2003-07-01  Bruno Haible  <bruno@clisp.org>
34062
34063         * m4/ssize_t.m4 (gt_TYPE_SSIZE_T): Don't include <unistd.h>.
34064         <sys/types.h> should be sufficient.
34065         Reported by Paul Eggert.
34066
34067 2003-06-26  Karl Berry  <karl@gnu.org>
34068
34069         * config/depcomp: update from automake.
34070
34071 2003-06-26  Bruno Haible  <bruno@clisp.org>
34072
34073         * modules/human: Depend on module stdbool.
34074
34075 2003-06-25  Bruno Haible  <bruno@clisp.org>
34076
34077         * modules/readlink: New file.
34078         * modules/xreadlink: Depend on it.
34079         * MODULES.html.sh (func_all_modules): Add readlink.
34080
34081 2003-06-25  Bruno Haible  <bruno@clisp.org>
34082
34083         * m4/readlink.m4: New file.
34084
34085 2003-06-25  Bruno Haible  <bruno@clisp.org>
34086
34087         * lib/readlink.c: New file.
34088
34089 2003-06-22  Karl Berry  <karl@gnu.org>
34090
34091         * config/srclist.txt: update mkinstalldirs from automake.
34092         * config/mkinstalldirs: update.
34093
34094 2003-06-22  Bruno Haible  <bruno@clisp.org>
34095
34096         Portability to mingw32.
34097         * m4/ssize_t.m4: New file, from GNU gettext.
34098         * m4/safe-read.m4 (gl_PREREQ_SAFE_READ): Require gt_TYPE_SSIZE_T.
34099         * m4/xreadlink.m4 (gl_XREADLINK): Require gt_TYPE_SSIZE_T.
34100
34101 2003-06-22  Bruno Haible  <bruno@clisp.org>
34102
34103         * modules/safe-read: Add m4/ssize_t.m4.
34104         * modules/xreadlink: Add m4/ssize_t.m4.
34105
34106 2003-06-20  Bruno Haible  <bruno@clisp.org>
34107
34108         Assume C89, so PARAMS isn't needed.
34109         * lib/unicodeio.h (PARAMS): Remove.
34110         * lib/unicodeio.c: Don't use PARAMS.
34111
34112 2003-06-18  Karl Berry  <karl@gnu.org>
34113
34114         * config/config.{guess,sub}: update from prep.
34115
34116 2003-06-18  Jim Meyering  <jim@meyering.net>
34117
34118         Merge changes from coreutils.
34119         * lib/readutmp.c: Include <string.h> and <stdlib.h> unconditionally.
34120         Remove explicit declarations of xmalloc and realloc.
34121         Include xalloc.h.
34122         (read_utmp): Remove anachronistic cast of xmalloc.
34123
34124 2003-06-17  Paul Eggert  <eggert@twinsun.com>
34125
34126         Assume C89, so PARAMS isn't needed.
34127         * lib/backupfile.h (PARAMS): Remove.  All uses removed.
34128         * lib/closeout.h, lib/dirname.h, lib/filemode.h, lib/fsusage.h,
34129         lib/getdate.h, lib/getline.h, lib/group-member.h, lib/hard-locale.h,
34130         lib/hash.h, lib/linebuffer.h, lib/long-options.h, lib/makepath.h,
34131         lib/memcasecmp.h, lib/memcoll.h, lib/modechange.h, lib/mountlist.h,
34132         lib/path-concat.h, lib/physmem.h, lib/posixtm.h, lib/quote.h,
34133         lib/readutmp.h, lib/same.h, lib/save-cwd.h, lib/savedir.h,
34134         lib/stdio-safer.h, lib/strtoimax.c, lib/strverscmp.h,
34135         lib/unistd-safer.h, lib/version-etc.h, lib/xalloc.h, lib/xreadlink.h,
34136         lib/xstrtod.h, lib/xstrtol.h: Likewise.
34137         * lib/filemode.h, lib/hard-locale.h, lib/memcoll.h, lib/modechange.h,
34138         lib/physmem.h, lib/same.h, lib/strverscmp.h: Do not include config.h;
34139         no longer needed. Anyway, config.h should always be included before any
34140         other file.
34141
34142 2003-06-11  Simon Josefsson  <jas@extundo.com>
34143
34144         * modules/sysexits: New file.
34145         * MODULES.html.sh (func_all_modules): Add sysexits.
34146
34147 2003-06-11  Simon Josefsson  <jas@extundo.com>
34148
34149         * lib/sysexit_.h: New file.
34150
34151 2003-06-11  Derek Price  <derek@ximbiot.com>
34152
34153         * lib/stat.c [LSTAT]: Compile/use slash_aware_lstat only if it is
34154         necessary.
34155
34156 2003-06-11  Bruno Haible  <bruno@clisp.org>
34157
34158         * m4/sysexits.m4: New file.
34159
34160 2003-06-10  Simon Josefsson  <jas@extundo.com>
34161
34162         * lib/argp.h: New file, from glibc.
34163         * lib/argp-ba.c: New file, from glibc.
34164         * lib/argp-eexst.c: New file, from glibc.
34165         * lib/argp-fmtstream.c: New file, from glibc.
34166         * lib/argp-fmtstream.h: New file, from glibc.
34167         * lib/argp-fs-xinl.c: New file, from glibc.
34168         * lib/argp-help.c: New file, from glibc.
34169         * lib/argp-namefrob.h: New file, from glibc.
34170         * lib/argp-parse.c: New file, from glibc.
34171         * lib/argp-pv.c: New file, from glibc.
34172         * lib/argp-pvh.c: New file, from glibc.
34173         * lib/argp-xinl.c: New file, from glibc.
34174
34175 2003-06-10  Simon Josefsson  <jas@extundo.com>
34176
34177         * modules/strchrnul: New file.
34178
34179 2003-06-10  Simon Josefsson  <jas@extundo.com>
34180
34181         * modules/argp: New file.
34182
34183 2003-06-10  Simon Josefsson  <jas@extundo.com>
34184
34185         * m4/strchrnul.m4: New file.
34186
34187 2003-06-10  Simon Josefsson  <jas@extundo.com>
34188
34189         * lib/strchrnul.h: New file.
34190         * lib/strchrnul.c: New file.
34191
34192 2003-06-10  Bruno Haible  <bruno@clisp.org>
34193
34194         * MODULES.html.sh (func_all_modules): Add strchrnul and argp.
34195
34196 2003-06-07  Karl Berry  <karl@gnu.org>
34197
34198         * config/config.{guess,sub}: update from prep.
34199
34200 2003-06-07  Jim Meyering  <jim@meyering.net>
34201
34202         * modules/strtod: Use $(...) notation, not @...@ for
34203         AC_REPLACE'd variables.
34204         * modules/localcharset: Likewise.
34205
34206 2003-06-07  Jim Meyering  <jim@meyering.net>
34207
34208         * lib/readtokens.h: Put `Free Software Foundation, Inc.'
34209         in place of my name in the copyright comment.
34210         Remove definition and uses of __P.
34211
34212         From coreutils.
34213         * lib/stat.c: Don't declare xmalloc explicitly.
34214         Instead, include "xalloc.h".
34215         * lib/readtokens.c (readtokens): Remove anachronistic casts of xmalloc,
34216         xrealloc, and xcalloc return values.
34217         * lib/xgetcwd.c (xgetcwd): Include "xgetcwd.h".
34218         Improve comment.
34219         * lib/xgetcwd.h: Remove definition/uses of PARAMS.
34220
34221 2003-06-07  Bruno Haible  <bruno@clisp.org>
34222
34223         * modules/poll (Makefile.am): Use explicit creation rule for poll.h, to
34224         avoid AC_CONFIG_LINKS.
34225         * modules/fnmatch (Makefile.am): Use explicit creation rule for
34226         fnmatch.h, to avoid AC_CONFIG_LINKS.
34227         * modules/alloca (Makefile.am): Make creation of alloca.h Ctrl-C safe.
34228
34229 2003-06-07  Bruno Haible  <bruno@clisp.org>
34230
34231         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH, gl_FUNC_FNMATCH_POSIX,
34232         gl_FUNC_FNMATCH_GNU): Set FNMATCH_H instead of invoking
34233         AC_CONFIG_LINKS. Needed to allow for a different name of the lib
34234         directory.
34235         * m4/poll.m4 (gl_FUNC_POLL): Set POLL_H instead of invoking
34236         AC_CONFIG_LINKS. Needed to allow for a different name of the lib
34237         directory.
34238
34239 2003-06-06  Jim Meyering  <jim@meyering.net>
34240
34241         Merge from coreutils.
34242         * lib/same.c: (same_name): Declare *_basename locals to be `const'.
34243         Consolidate declarations and initializations of *_base* locals.
34244
34245         Merge from coreutils.
34246         This avoids a core dump on systems without GNU putenv,
34247         when running `env -u SOME_ALREADY_UNSET_VARIABLE'.
34248         * lib/putenv.c (__set_errno, LOCK, UNLOCK): Define.
34249         (unsetenv): New static function, from GNU libc.
34250         (rpl_putenv): Use it.
34251
34252         * lib/modechange.c: Remove trailing blanks.
34253
34254         Merge from coreutils.
34255         * lib/fsusage.c: Remove declaration of statfs.
34256         It conflicted with one from OSF/1 5.1 in <sys/mount.h>.
34257
34258         * lib/posixtm.c: Include <stdbool.h> unconditionally.
34259
34260 2003-06-06  Jim Meyering  <jim@meyering.net>
34261
34262         * lib/stdbool_.h: Renamed from stdbool.h.in.
34263
34264 2003-06-06  Jim Meyering  <jim@meyering.net>
34265             Bruno Haible  <bruno@clisp.org>
34266
34267         * modules/stdbool: Reflect renaming: stdbool.h.in -> stdbool_.h.
34268         Adjust Makefile.am snippet not to redirect directly to target.
34269         Use $(STDBOOL_H) notation, not @STDBOOL_H@ for AC_REPLACE'd variables.
34270
34271 2003-06-05  Paul Eggert  <eggert@twinsun.com>
34272
34273         * lib/mktime.c (__mktime_internal): When resolving a tm_isdst
34274         mismatch, look in future quarters as well as past.  This fixes a
34275         bug when processing fall-backwards gaps immediately after a long
34276         period of daylight-saving time.
34277
34278         * lib/mktime.c: Assume freestanding C89 or better.
34279         (HAVE_LIMITS_H): Remove.  Assume it's 1.
34280         (__P): Remove; not used.
34281         (CHAR_BIT, INT_MIN, INT_MAX): Remove; <limits.h> defines them.
34282         (mktime, not_equal_tm, print_tm, check_result,
34283         main): Use prototypes.  Use const * where appropriate.
34284         (main): Fix typo in testing code that uncovered by above changes.
34285         (Local Variables): Remove -DHAVE_LIMITS_H from compile-command.
34286
34287 2003-06-04  Paul Eggert  <eggert@twinsun.com>
34288
34289         * m4/human.m4 (gl_HUMAN): Require AM_STDBOOL_H.  Check for
34290         locale.h, localeconv.  This merges changes from coreutils.
34291
34292         * m4/mktime.m4 (AC_FUNC_MKTIME): New macro, taken from Autoconf CVS.
34293         It can be removed after the next Autoconf is released.
34294         * m4/exclude.m4 (gl_EXCLUDE): Don't check for sys/types.h; no loner
34295         needed.
34296
34297 2003-06-04  Paul Eggert  <eggert@twinsun.com>
34298
34299         * lib/mktime.c: Fix Debian bug 177940
34300         <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=177940>.
34301         (localtime_offset): Now long int, not time_t, because we want it
34302         to be guaranteed to be signed.  All uses changed.
34303         (__mktime_internal): If overflow would occur when adding offset,
34304         don't add it.
34305
34306         Merge 'human' changes from coreutils.  Rewrite to support
34307         locale-specific notations like thousands separators.
34308         * lib/human.c: Simplify authorship notice.
34309         Include human.h immediately after config.h.
34310         <sys/types.h>, <stdio.h>: Do not include; no longer needed.
34311         <limits.h>: Do not include, since human.h does.
34312         (SIZE_MAX, UINTMAX_MAX): New macros.
34313         <strings.h>: Include if HAVE_STRINGS_H, not if !HAVE_STRING_H.
34314         <locale.h>: Include if HAVE_LOCALE_H and HAVE_LOCALECONV.
34315         (HUMAN_READABLE_SUFFIX_LENGTH_MAX): New macro.
34316         (power_letter): Renamed from suffixes.
34317         (generate_suffix_backwards): Remove.
34318         (adjust_value): Now takes int style (because of human.h changes)
34319         and long double value (for greater precision on some platforms).
34320         (group_number): New function.
34321         (human_readable): Use it.  Use integer options, not enum.
34322         Put the options before the sizes in the arg list.
34323         Support all the new options.
34324         The old human_readable function has been removed;
34325         use inttostr.h instead.
34326         (human_readable, default_block_size, humblock):
34327         Use uintmax_t, not int, for block sizes.
34328         (human_readable_inexact, block_size_types): Remove.
34329         (block_size_opts): New constant.
34330         (human_options): Renamed from human_block_size, with new signature
34331         that allows block sizes up to UINTMAX_MAX.  All callers changed.
34332         * lib/human.h: Add copyright and authorship notice.
34333         Include <limits.h> and <stdbool.h> unconditionally.
34334         (PARAMS): Remove.  All uses removed.
34335         (LONGEST_HUMAN_READABLE): Add support for thousands separator.
34336         (enum human_inexact_style): Remove tag; now a nameless enum.
34337         (human_floor, human_ceiling, human_round_to_even): Now have
34338         values 2, 0, 1 rather than -1, 1, 0.
34339         (human_group_digits, human_suppress_point_zero, human_autoscale,
34340         human_base_1024, human_SI, human_B): New constants.
34341         (human_readable_inexact, human_block_size): Remove.
34342         (human_readable): Size args are now uintmax_t, not int.
34343         (human_options): New decl.
34344
34345         * lib/exclude.c: (new_exclude, add_exclude): Remove casts that are
34346         unnecessary now that we assume C89 or better.  This change
34347         imported from coreutils.
34348
34349         * lib/mktime.c (__mktime_internal): Do not reject negative timestamps
34350         arbitrarily.  This is the same patch as 2003-05-28, but it got lost
34351         in the 2003-05-30 sync from glibc.
34352
34353         .h files should stand alone, but we shouldn't include <sys/types.h>
34354         if we can get away with just <stddef.h>.
34355
34356         * lib/__fpending.h, addext.c, backupfile.c, exclude.c, getline.c,
34357         malloc.c, putenv.c, realloc.c, strcasecmp.c: Include <stddef.h>
34358         rather than <sys/types.h>, as we merely need size_t.
34359         * lib/dirname.h, memcoll.h, xalloc.h, xmemcoll.h: Include <stddef.h>,
34360         to get size_t.
34361         * lib/hash.h, linebuffer.h, readtokens.h, stdio-safer.h, version-etc.h:
34362         Include <stdio.h>, to get FILE.
34363         * lib/memcasecmp.c: Don't include <sys/types.h>, as we can assume
34364         memcasecmp.h has included <stddef.h> and all we need is size_t.
34365         * lib/memcoll.c: Include "memcoll.h", which gets us size_t and checks
34366         our interface, instead of including <sys/types.h>
34367
34368 2003-06-04  Paul Eggert  <eggert@twinsun.com>
34369
34370         * config/srclist.txt ($LIBCSRC/time/mktime.c lib gpl): Comment out for
34371         now, as glibc mktime is buggy on non-glibc systems.
34372
34373 2003-06-03  Karl Berry  <karl@gnu.org>
34374
34375         * config/config.sub: update from prep.
34376
34377 2003-06-02  Paul Eggert  <eggert@twinsun.com>
34378
34379         [from coreutils]
34380         Fix some minor time-related bugs with POSIX time arguments.
34381         Some valid time stamps were being rejected (notably -1, and
34382         time stamps before 1900 on 64-bit hosts).  And some invalid
34383         time stamps were being accepted, e.g. September 31.
34384
34385         * lib/posixtm.h (posixtime): Return bool instead of time_t, so
34386         that we can return (time_t) -1 successfully.
34387         * lib/posixtm.c: Likewise.
34388         [HAVE_STDBOOL_H]: Include <stdbool.h>.
34389         (bool, false, true) [!HAVE_STDBOOL_H]: New type.
34390         (t): Remove static var.
34391         (year, posix_time_parse): Now takes struct tm * arg to modify, instead
34392         of static var.  All uses changed.
34393         (year): Do not reject years before 1900; they can occur with
34394         64-bit time_t.
34395         (posix_time_parse): Do not check for out-of-range components;
34396         that is now the caller's responsibility, since our checks were
34397         only approximations.
34398         (posixtime): Use mktime to check for out-of-range components,
34399         since it knows them exactly.
34400         If mktime returns (time_t) -1, check whether an error actually occurred
34401         by invoking localtime on -1.
34402         (main) [TEST_POSIXTIME]: Check for input data errors, and report
34403         posixtime failures better.
34404         Improve the test data (in comments only).
34405
34406 2003-06-02  Karl Berry  <karl@gnu.org>
34407
34408         * config/mkinstalldirs (version): new variable.
34409         (--version): new option.
34410         (usage): improve message.
34411
34412 2003-05-30  Karl Berry  <karl@gnu.org>
34413
34414         * lib/mktime.c: update from libc.
34415
34416 2003-05-30  Bruno Haible  <bruno@clisp.org>
34417
34418         * modules/gettext: Add files m4/nls.m4 and m4/po.m4.
34419         * config/config.rpath: Upgrade to gettext-0.12.1.
34420
34421 2003-05-30  Bruno Haible  <bruno@clisp.org>
34422
34423         * m4/gettext.m4: Upgrade to gettext-0.12.1.
34424         * m4/nls.m4: New file, from gettext-0.12.1.
34425         * m4/po.m4: New file, from gettext-0.12.1.
34426         * m4/progtest.m4: Upgrade to gettext-0.12.1.
34427
34428 2003-05-30  Bruno Haible  <bruno@clisp.org>
34429
34430         * lib/config.charset: Upgrade to gettext-0.12.1 and libiconv-1.9.1.
34431         * lib/localcharset.h: Likewise.
34432         * lib/localcharset.c: Likewise.
34433
34434 2003-05-29  Karl Berry  <karl@gnu.org>
34435
34436         * config/config.rpath: update from gettext.
34437
34438 2003-05-28  Paul Eggert  <eggert@twinsun.com>
34439
34440         Assume the headers required for C89 freestanding compilers.
34441         * m4/backupfile.m4 (gl_BACKUPFILE): Don't check for limits.h.
34442         * m4/fsusage.m4 (gl_PREREQ_FSUSAGE_EXTRA): Likewise.
34443         * m4/human.m4 (gl_HUMAN): Likewise.
34444         * m4/pathmax.m4 (gl_PATHMAX): Likewise.
34445         * m4/rpmatch.m4 (gl_FUNC_RPMATCH): Likewise.
34446         * m4/userspec.m4 (gl_USERSPEC): Likewise.
34447         * m4/xreadlink.m4 (gl_XREADLINK): Likewise.
34448         * m4/xstrtol.m4 (gl_PREREQ_XSTRTOL): Likewise.
34449         * m4/quote.m4 (gl_QUOTE): Don't check for stddef.h.
34450
34451 2003-05-28  Paul Eggert  <eggert@twinsun.com>
34452
34453         Assume the headers required for C89 freestanding compilers.
34454         * lib/addext.c, lib/backupfile.c, lib/fsusage.c, lib/human.c,
34455         lib/pathmax.h, lib/rpmatch.c, lib/userspec.c, lib/xreadlink.c,
34456         lib/xstrtol.c: Include <limits.h> without checking for HAVE_LIMITS_H.
34457         * lib/backupfile.c, lib/fsusage.c, lib/hash.c, lib/human.c,
34458         lib/safe-read.c, lib/userspec.c, lib/xstrtol.c (CHAR_BIT): Don't
34459         define, since <limits.h> is guaranteed to do that.
34460         * lib/fatal.c: Include <stdarg.h> without checking for __STDC__.
34461         * lib/exclude.c: Include <stdbool.h> unconditionally.
34462         * lib/tempname.c: Include <stddef.h> unconditionally.
34463         * lib/hash.c: Include <limits.h>, since we no longer define CHAR_BIT.
34464         * lib/modechange.c, rpmatch.c (NULL): Don't define, since
34465         <stddef.h> does that.
34466         * lib/quote.c: Dont include <stddef.h> or <sys/types.h>; not needed.
34467         * lib/safe-read.c (INT_MAX): Don't define, since <limits.h> does that.
34468         * lib/safe-read.c (TYPE_MINIMUM, TYPE_MAXIMUM): Remove; no longer
34469         needed.
34470         * lib/xstrtol.c: Likewise.
34471         * lib/safe-read.c: Remove TYPE_SIGNED; no longer needed.
34472         * lib/savedir.c: Include <stddef.h> instead of defining NULL.
34473
34474         * lib/addext.c (addext): Use assignment rather than cast, to avoid
34475         warnings on some platforms.
34476
34477         * lib/mktime.c (__mktime_internal): Do not reject negative timestamps
34478         arbitrarily.
34479
34480 2003-05-26  Jim Meyering  <jim@meyering.net>
34481
34482         Merge in a change from coreutils:
34483         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Test the cache variable, not one
34484         that is guaranteed to be `no'.  Use `no_such_member' to indicate
34485         that condition, rather than `-1' which is slightly misleading.
34486         Change the name of the cache variable to have the gl_ prefix.
34487         Prompted by a patch from Richard Dawe for DJGPP.
34488
34489 2003-05-24  Karl Berry  <karl@gnu.org>
34490
34491         * config/config.guess: update from prep.
34492
34493 2003-05-22  Karl Berry  <karl@gnu.org>
34494
34495         * gnulib-tool (func_usage): =LIBRARY not =libRARY in help msg.
34496
34497 2003-05-20  Karl Berry  <karl@gnu.org>
34498
34499         * config/config.guess: update from prep.
34500
34501 2003-05-18  Karl Berry  <karl@gnu.org>
34502
34503         * config/srclistvars.sh (TEXMF): use TEXMFROOT instead, since TEXMF
34504         might actually be set by the user.
34505
34506         * config/depcomp, install-sh, mdate-sh: update from automake.
34507
34508 2003-05-17  Bruno Haible  <bruno@clisp.org>
34509
34510         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Fix a quoting bug leading to an
34511         invalid expansion for AC_EGREP_CPP.
34512         * m4/strtoimax.m4 (gl_FUNC_STRTOIMAX): Likewise.
34513         * m4/strtoumax.m4 (gl_FUNC_STRTOUMAX): Likewise.
34514         Suggested by Akim Demaille <akim@epita.fr> in
34515         http://mail.gnu.org/archive/html/bug-autoconf/2003-05/threads.html
34516
34517 2003-05-12  Jim Meyering  <jim@meyering.net>
34518
34519         * lib/strftime.c (my_strftime): Let the `-' (no-pad) flag affect
34520         the space-padded-by-default conversion specifiers, %e, %k, %l.
34521
34522 2003-05-12  Bruno Haible  <bruno@clisp.org>
34523
34524         * lib/linebreak.c (iconv_string_length): Don't return -1 just because
34525         the string is longer than 4 KB.
34526
34527 2003-05-11  Karl Berry  <karl@gnu.org>
34528
34529         * config/config.{guess,sub}: update from prep.
34530
34531 2003-05-09  Bruno Haible  <bruno@clisp.org>
34532
34533         * modules/error: Add m4/strerror_r.m4 to file list.
34534
34535 2003-05-03  Bruno Haible  <bruno@clisp.org>
34536
34537         Upgrade to Unicode-4.0.
34538         * lib/linebreak.c (nonspacing_table_data): Change width of U+00AD,
34539         U+0350..U+0357, U+035D..U+035F, U+0600..U+0603, U+0610..U+0615,
34540         U+0656..U+0658, U+0A01, U+0AE2..U+0AE3, U+0CBC, U+17B4..U+17B5,
34541         U+17DD, U+1920..U+1922, U+1927..U+192B, U+1932, U+1939..U+193B
34542         from 1 to 0. Change width of U+0CBF, U+0CC6, U+180E from 0 to 1.
34543         (uc_width): Change width of U+4DC0..U+4DFF from 2 to 1. Change width
34544         of U+2A6D7..U+2F7FF, U+2FA1E..U+2FFFD, U+30000..U+3FFFD from 1 to 2.
34545         Change width of U+E0100..U+E01EF from 1 to 0.
34546
34547 2003-04-25  Jim Meyering  <jim@meyering.net>
34548
34549         * lib/copy-file.c (copy_file_preserving): Declare buf_size to be
34550         of type size_t, not int.
34551
34552 2003-04-25  Bruno Haible  <bruno@clisp.org>
34553
34554         * lib/copy-file.c: Include <stddef.h>, for size_t.
34555
34556 2003-04-21  Paul Eggert  <eggert@twinsun.com>
34557
34558         * m4/error.m4 (gl_ERROR): Do not put under dynamic conditions some
34559         code which expansion is under static control.  Patch imported from
34560         Akim Demaille's patch to Bison; see
34561         <http://mail.gnu.org/archive/html/bison-patches/2003-03/msg00057.html>.
34562
34563 2003-04-14  Bruno Haible  <bruno@clisp.org>
34564
34565         * m4/error.m4 (jm_PREREQ_ERROR): Use AC_FUNC_VPRINTF.
34566
34567 2003-04-11  Jim Meyering  <jim@meyering.net>
34568
34569         Merge changes from Coreutils.
34570
34571         2003-03-22  Jim Meyering  <jim@meyering.net>
34572
34573         * lib/strftime.c (widen): Cast alloca return value to proper type.
34574
34575         2003-01-19  Ulrich Drepper  <drepper@redhat.com>
34576
34577         From GNU libc.
34578         * lib/strftime.c (my_strftime): Handle very large width
34579         specifications for numeric values correctly.  Improve checks for
34580         overflow.
34581
34582         2003-01-19  Jim Meyering  <jim@meyering.net>
34583
34584         * lib/strftime.c (widen) [COMPILE_WIDE]: Merge nearly-identical
34585         definitions.
34586         (nl_get_alt_digit) [! defined my_strftime]: Define.
34587         (my_strftime) [_NL_CURRENT]: Merge nearly-identical uses of
34588         _nl_get_alt_digit and _nl_get_walt_digit.
34589
34590         * lib/strftime.c (my_strftime): Merge in locale-related changes from
34591         libc. These changes have no effect outside of _LIBC.
34592
34593 2003-04-10  Bruno Haible  <bruno@clisp.org>
34594
34595         * modules/findprog: New file.
34596         * MODULES.html.sh (func_all_modules): Add it.
34597
34598 2003-04-10  Bruno Haible  <bruno@clisp.org>
34599
34600         * m4/findprog.m4: New file.
34601         * m4/eaccess.m4: New file.
34602
34603 2003-04-10  Bruno Haible  <bruno@clisp.org>
34604
34605         * lib/findprog.h: New file, from GNU gettext.
34606         * lib/findprog.c: New file, from GNU gettext.
34607
34608 2003-04-05  Jim Meyering  <jim@meyering.net>
34609
34610         Merge changes from Coreutils.
34611
34612         * lib/exclude.h (PARAMS): Remove definition and uses.
34613         * lib/exclude.c: Remove uses of `PARAMS'.
34614
34615         * lib/dirname.c [TEST_DIRNAME]: Update build instructions for test.
34616         Add test-cases for DOS filenames. Declare program_name.
34617         (main): Set up program_name.  Patch by Rich Dawe.
34618
34619         * lib/mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Detect any
34620         error from mntctl.
34621         Use mntctl's return value to drive the entry-processing loop, since
34622         we can't rely on the value of the vmt_length member in the last
34623         entry.  On some systems doing so could result in exhausting
34624         virtual memory.  Based in part on a patch from Mike Jetzer.
34625
34626 2003-04-04  Bruno Haible  <bruno@clisp.org>
34627
34628         * modules/linebreak: New file.
34629         * MODULES.html.sh (func_all_modules): Add it.
34630
34631 2003-04-04  Bruno Haible  <bruno@clisp.org>
34632
34633         * m4/linebreak.m4: New file.
34634
34635 2003-04-04  Bruno Haible  <bruno@clisp.org>
34636
34637         * lib/linebreak.h: New file, from GNU gettext.
34638         * lib/linebreak.c: New file, from GNU gettext with slight
34639         modifications.
34640         * lib/lbrkprop.h: New file, from GNU gettext.
34641
34642 2003-04-03  Bruno Haible  <bruno@clisp.org>
34643
34644         * modules/utf8-ucs4: New file.
34645         * modules/utf16-ucs4: New file.
34646         * modules/ucs4-utf8: New file.
34647         * modules/ucs4-utf16: New file.
34648         * MODULES.html.sh (func_all_modules): Add them.
34649
34650 2003-04-03  Bruno Haible  <bruno@clisp.org>
34651
34652         * m4/utf-ucs4.m4: New file.
34653         * m4/ucs4-utf.m4: New file.
34654
34655 2003-04-03  Bruno Haible  <bruno@clisp.org>
34656
34657         * lib/utf8-ucs4.h: New file, from GNU gettext.
34658         * lib/utf16-ucs4.h: New file, from GNU gettext.
34659         * lib/ucs4-utf8.h: New file, from GNU gettext.
34660         * lib/ucs4-utf16.h: New file, from GNU gettext.
34661
34662 2003-04-02  Bruno Haible  <bruno@clisp.org>
34663
34664         * modules/binary-io: New file.
34665         * MODULES.html.sh (func_all_modules): Add it.
34666
34667 2003-04-02  Bruno Haible  <bruno@clisp.org>
34668
34669         * lib/binary-io.h: New file, from GNU gettext.
34670
34671 2003-04-01  Bruno Haible  <bruno@clisp.org>
34672
34673         * modules/pathname: New file.
34674         * MODULES.html.sh (func_all_modules): Add it.
34675
34676 2003-04-01  Bruno Haible  <bruno@clisp.org>
34677
34678         * lib/pathname.h: New file, from GNU gettext.
34679         * lib/concatpath.c: New file, from GNU gettext.
34680
34681 2003-03-30  Bruno Haible  <bruno@clisp.org>
34682
34683         * m4/copy-file.m4 (gl_COPY_FILE): Add check for chown().
34684
34685 2003-03-30  Bruno Haible  <bruno@clisp.org>
34686
34687         * lib/copy-file.c (copy_file_preserving): Don't set owner if the
34688         function chown() doesn't exist.
34689
34690 2003-03-28  Bruno Haible  <bruno@clisp.org>
34691
34692         * modules/copy-file: New file.
34693         * MODULES.html.sh (func_all_modules): Add it.
34694
34695 2003-03-28  Bruno Haible  <bruno@clisp.org>
34696
34697         * m4/copy-file.m4: New file.
34698
34699 2003-03-28  Bruno Haible  <bruno@clisp.org>
34700
34701         * lib/copy-file.h: New file, from GNU gettext.
34702         * lib/copy-file.c: New file, from GNU gettext.
34703
34704 2003-03-18  Jim Meyering  <jim@meyering.net>
34705
34706         * lib/quote.c (quote_n): Fix typo in comment.
34707
34708 2003-03-18  Bruno Haible  <bruno@clisp.org>
34709
34710         * m4/onceonly.m4: Use m4_defn instead of defn, for better error
34711         checking.
34712         * m4/onceonly_2_57.m4: Likewise.
34713
34714 2003-03-17  Bruno Haible  <bruno@clisp.org>
34715
34716         * m4/onceonly.m4: Require autoconf 2.54 or newer.
34717         (m4_quote): Remove macro.
34718         * m4/onceonly_2_57.m4: Require autoconf 2.54 or newer.
34719
34720 2003-03-14  Jim Meyering  <jim@meyering.net>
34721
34722         Merge changes from Coreutils.
34723         * lib/obstack.h (obstack_object_size): Declare temporary, __o,
34724         to be const, in order to avoid warnings.
34725         (obstack_room): Likewise.
34726         (obstack_empty_p): Likewise.
34727
34728 2003-03-14  Bruno Haible  <bruno@clisp.org>
34729
34730         * m4/onceonly_2_57.m4 (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE,
34731         AC_CHECK_DECLS_ONCE): Quote AC_FOREACH variable-expansions properly.
34732
34733 2003-03-13  Paul Eggert  <eggert@twinsun.com>
34734
34735         Merge changes from Bison.
34736         * lib/obstack.h: (__INT_TO_PTR) [__STDC__]: Cast result to
34737         (void *) to avoid diagnostic with native c89 on SGI IRIX 6.5
34738         when compiling Bison 1.875's `bitset bset = obstack_alloc
34739         (bobstack, bytes);'.  Problem reported by Nelson H. F. Beebe.
34740         * lib/hash.c: Include <stdbool.h> unconditionally.
34741
34742 2003-03-13  Paul Eggert  <eggert@twinsun.com>
34743
34744         * m4/onceonly.m4 (m4_quote): New macro.
34745         (AC_CHECK_HEADERS_ONCE, AC_CHECK_FUNCS_ONCE, AC_CHECK_DECLS_ONCE):
34746         Quote AC_FOREACH variable-expansions properly.
34747
34748 2003-03-13  Paul Eggert  <eggert@twinsun.com>
34749
34750         * doc/COPYING.DOC, fdl.texi: Sync with latest FSF version.
34751
34752 2003-03-09  Paul Eggert  <eggert@twinsun.com>
34753
34754         * lib/argmatch.c (EXIT_FAILURE): Define if the system doesn't.
34755         Reported by Bruce Becker; see:
34756         http://mail.gnu.org/archive/html/bug-bison/2003-03/msg00017.html
34757
34758 2003-03-03  Paul Eggert  <eggert@twinsun.com>
34759             Bruno Haible  <bruno@clisp.org>
34760
34761         * lib/mbswidth.h: Include <wchar.h>. Needed for UnixWare 7.1.1.
34762         Reported by John Hughes, see
34763         http://mail.gnu.org/archive/html/bug-bison/2003-02/msg00030.html
34764
34765 2003-02-20  Bruno Haible  <bruno@clisp.org>
34766
34767         * MODULES.html.sh (func_all_modules): Add poll.
34768
34769 2003-02-19  Paolo Bonzini  <bonzini@gnu.org>
34770
34771         * modules/poll: New file.
34772
34773 2003-02-19  Paolo Bonzini  <bonzini@gnu.org>
34774
34775         * lib/poll_.h: New file.
34776         * lib/poll.c: New file.
34777
34778 2003-02-19  Paolo Bonzini  <bonzini@gnu.org>
34779
34780         * m4/poll.m4: New file.
34781
34782 2003-02-18  Paolo Bonzini  <bonzini@gnu.org>
34783
34784         * modules/mathl: New file.
34785
34786 2003-02-18  Paolo Bonzini  <bonzini@gnu.org>
34787
34788         * lib/mathl.h: New file.
34789         * lib/acosl.c: New file.
34790         * lib/asinl.c: New file.
34791         * lib/atanl.c: New file.
34792         * lib/ceill.c: New file.
34793         * lib/cosl.c: New file.
34794         * lib/expl.c: New file.
34795         * lib/floorl.c: New file.
34796         * lib/frexpl.c: New file.
34797         * lib/ldexpl.c: New file.
34798         * lib/logl.c: New file.
34799         * lib/sincosl.c: New file.
34800         * lib/sinl.c: New file.
34801         * lib/sqrtl.c: New file.
34802         * lib/tanl.c: New file.
34803         * lib/trigl.c: New file.
34804         * lib/trigl.h: New file.
34805
34806 2003-02-18  Paolo Bonzini  <bonzini@gnu.org>
34807
34808         * m4/mathl.m4: New file.
34809
34810 2003-02-18  Bruno Haible  <bruno@clisp.org>
34811
34812         * MODULES.html.sh (func_all_modules): Add mathl.
34813
34814 2003-02-17  Bruno Haible  <bruno@clisp.org>
34815
34816         * modules/mkdtemp: New module.
34817         * MODULES.html.sh (func_all_modules): Add it.
34818
34819 2003-02-17  Bruno Haible  <bruno@clisp.org>
34820
34821         * m4/mkdtemp.m4: New file, from GNU gettext with modifications.
34822
34823 2003-02-17  Bruno Haible  <bruno@clisp.org>
34824
34825         * lib/mkdtemp.h: New file, from GNU gettext.
34826         * lib/mkdtemp.c: New file, from GNU gettext.
34827
34828 2003-02-02  Jim Meyering  <jim@meyering.net>
34829
34830         * m4/regex.m4 (jm_INCLUDED_REGEX): Detect broken re_search in
34831         e.g. glibc-2.2.93.
34832
34833 2003-01-31  Bruno Haible  <bruno@clisp.org>
34834
34835         * m4/rename.m4 (vb_FUNC_RENAME): Add a redirection from 'rename' to
34836         'rpl_rename'.
34837         * m4/strnlen.m4 (gl_FUNC_STRNLEN): Add a redirection from 'strnlen' to
34838         'rpl_strnlen'.
34839         * m4/strtod.m4 (gl_FUNC_STRTOD): Add a redirection from 'strtod' to
34840         'rpl_strtod'.
34841         * m4/utime.m4 (jm_FUNC_UTIME): Add a redirection from 'utime' to
34842         'rpl_utime'.
34843
34844 2003-01-31  Bruno Haible  <bruno@clisp.org>
34845
34846         * lib/rename.c: #undef rename before defining rpl_rename.
34847         * lib/strnlen.c: #undef strnlen, define rpl_strnlen instead of strnlen.
34848
34849 2003-01-30  Bruno Haible  <bruno@clisp.org>
34850
34851         * modules/vasnprintf, modules/vasprintf: New modules.
34852         * MODULES.html.sh (func_all_modules): Add them.
34853
34854 2003-01-30  Bruno Haible  <bruno@clisp.org>
34855
34856         * m4/signed.m4: New file, from GNU gettext.
34857         * m4/longdouble.m4: New file, from GNU gettext.
34858         * m4/wchar_t.m4: New file, from GNU gettext.
34859         * m4/wint_t.m4: New file, from GNU gettext.
34860         * m4/vasnprintf.m4: New file.
34861         * m4/vasprintf.m4: New file.
34862
34863 2003-01-30  Bruno Haible  <bruno@clisp.org>
34864
34865         * lib/printf-args.h: New file, from GNU gettext.
34866         * lib/printf-args.c: New file, from GNU gettext.
34867         * lib/printf-parse.h: New file, from GNU gettext.
34868         * lib/printf-parse.c: New file, from GNU gettext.
34869         * lib/vasnprintf.h: New file, from GNU gettext.
34870         * lib/vasnprintf.c: New file, from GNU gettext.
34871         * lib/asnprintf.c: New file, from GNU gettext.
34872         * lib/vasprintf.h: New file, from GNU gettext with modifications.
34873         * lib/vasprintf.c: New file, from GNU gettext.
34874         * lib/asprintf.c: New file, from GNU gettext.
34875
34876 2003-01-29  Bruno Haible  <bruno@clisp.org>
34877
34878         * modules/stpncpy: New module.
34879         * MODULES.html.sh (func_all_modules): Add it.
34880
34881 2003-01-29  Bruno Haible  <bruno@clisp.org>
34882
34883         * m4/stpncpy.m4: New file.
34884
34885 2003-01-29  Bruno Haible  <bruno@clisp.org>
34886
34887         * lib/stpncpy.h: New file, from GNU gettext with modifications.
34888         * lib/stpncpy.c: New file, from GNU gettext with modifications.
34889
34890 2003-01-28  Bruno Haible  <bruno@clisp.org>
34891
34892         * modules/c-ctype: New module.
34893         * MODULES.html.sh (func_all_modules): Add it.
34894
34895 2003-01-28  Bruno Haible  <bruno@clisp.org>
34896
34897         * lib/c-ctype.h: New file, from GNU gettext, with changes suggested by
34898         Paul Eggert.
34899         * lib/c-ctype.c: New file, from GNU gettext, with changes suggested by
34900         Paul Eggert.
34901
34902 2003-01-27  Bruno Haible  <bruno@clisp.org>
34903
34904         * modules/xsetenv: New module.
34905         * MODULES.html.sh (func_all_modules): Add it.
34906
34907 2003-01-27  Bruno Haible  <bruno@clisp.org>
34908
34909         * lib/xsetenv.h: New file, from GNU gettext.
34910         * lib/xsetenv.c: New file, from GNU gettext.
34911
34912 2003-01-23  Jim Meyering  <jim@meyering.net>
34913
34914         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Correct typo: s/-1/no/ that kept this
34915         from working on systems without dirfd (at least Irix and OSF1/Tru64).
34916
34917 2003-01-23  Bruno Haible  <bruno@clisp.org>
34918
34919         * modules/minmax: New module.
34920         * MODULES.html.sh (func_all_modules): Add it.
34921
34922 2003-01-23  Bruno Haible  <bruno@clisp.org>
34923
34924         * lib/minmax.h: New file, from GNU gettext, with comments from Paul
34925         Eggert.
34926
34927 2003-01-22  Bruno Haible  <bruno@clisp.org>
34928
34929         * modules/exit: New module.
34930         * MODULES.html.sh (func_all_modules): Add it.
34931
34932 2003-01-22  Bruno Haible  <bruno@clisp.org>
34933
34934         * lib/exit.h: New file, from GNU gettext.
34935
34936 2003-01-19  Bruno Haible  <bruno@clisp.org>
34937
34938         * gnulib-tool: Recognize option --extract-maintainer.
34939         (func_get_maintainer): New function.
34940         * modules/*: Add Maintainer entry.
34941
34942 2003-01-16  Jim Meyering  <jim@meyering.net>
34943
34944         * m4/regex.m4: The `regex' struct is both input and output.
34945         Initialize it before each use.  Patch by Tim Waugh.
34946
34947 2003-01-16  Bruno Haible  <bruno@clisp.org>
34948
34949         * MODULES.html.sh: Add a table of contents. Add the module name as
34950         leftmost column. Add hyperlinks.
34951
34952 2003-01-15  Bruno Haible  <bruno@clisp.org>
34953
34954         * m4/md5.m4 (gl_MD5): Require AC_C_INLINE.
34955
34956 2003-01-15  Bruno Haible  <bruno@clisp.org>
34957
34958         * m4/longlong.m4 (jm_AC_TYPE_LONG_LONG): Also test the LL suffix.
34959         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Also test the ULL
34960         suffix.
34961
34962 2003-01-15  Bruno Haible  <bruno@clisp.org>
34963
34964         * m4/alloca.m4 (gl_FUNC_ALLOCA): Invoke AC_EGREP_CPP prerequisites.
34965
34966 2003-01-15  Bruno Haible  <bruno@clisp.org>
34967
34968         * lib/stpcpy.h (stpcpy): Use ANSI C function declarations.
34969         * lib/strcase.h (strcasecmp, strncasecmp): Likewise.
34970
34971 2003-01-14  Jim Meyering  <jim@meyering.net>
34972
34973         * lib/same.c (same_name): Tweak a comment.
34974
34975 2003-01-14  Bruno Haible  <bruno@clisp.org>
34976
34977         * lib/same.c (same_name): Reorder tests so as to avoid calling stat()
34978         when a string comparison is sufficient.
34979
34980 2003-01-14  Bruno Haible  <bruno@clisp.org>
34981
34982         * lib/readtokens.c (readtoken): Cast character to 'unsigned char', not
34983         'unsigned int'.
34984
34985 2003-01-14  Bruno Haible  <bruno@clisp.org>
34986
34987         * lib/hash-pjw.c: Add comment about low quality of this function.
34988
34989 2003-01-13  Bruno Haible  <bruno@clisp.org>
34990
34991         * modules/stpcpy: Distribute lib/stpcpy.h.
34992         * modules/setenv: Depend on alloca. Distribute lib/setenv.h.
34993
34994 2003-01-13  Bruno Haible  <bruno@clisp.org>
34995
34996         * modules/*: Add a description.
34997         * modules/strpbrk: Fix Makefile.am snippet.
34998         * modules/strtoimax: Fix dependencies.
34999         * modules/strtoumax: Likewise.
35000
35001 2003-01-13  Bruno Haible  <bruno@clisp.org>
35002
35003         * gnulib-tool (func_create_testdir): Substitute lib_OBJECTS.
35004         * modules/alloca (Makefile.am): All object files depend on alloca.h.
35005         * modules/stdbool (Makefile.am): All object files depend on stdbool.h.
35006
35007 2003-01-13  Bruno Haible  <bruno@clisp.org>
35008
35009         * gnulib-tool (func_create_testdir): Store config/* files in the main
35010         directory.
35011         * config.rpath: Move to ...
35012         * config/config.rpath: ... here.
35013         * modules/gettext: Contains config/config.rpath, not config.rpath.
35014         * modules/iconv: Likewise.
35015
35016 2003-01-12  Paul Eggert  <eggert@twinsun.com>
35017
35018         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
35019         to avoid collisions with libcurses and libreadline.
35020
35021         * m4/getstr.m4: Remove.
35022         * m4/getline.m4 (gl_PREREQ_GETLINE): Require AC_HEADER_STDC.
35023
35024 2003-01-12  Paul Eggert  <eggert@twinsun.com>
35025
35026         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
35027         to avoid collisions with libcurses and libreadline.
35028
35029         * lib/Makefile.am (libfetish_a_SOURCES): Remove getstr.c, getstr.h.
35030         * lib/getstr.h, getstr.c: Remove.
35031         * lib/getline.c: Include "getline.h", to check interface.
35032         Move body of old getstr.c here: this defines MIN_CHUNK and
35033         declares getdelim2, which is renamed from getstr.
35034         (getline, getdelim): Adjust to renaming of getstr -> getdelim2.
35035
35036         * lib/linebuffer.c (readlinebuffer): Renamed from readline.
35037         All uses changed.
35038         * lib/linebuffer.h: Likewise.
35039         (readline): Remove backward-compatibility macro.
35040
35041 2003-01-12  Paul Eggert  <eggert@twinsun.com>
35042
35043         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
35044         to avoid collisions with libcurses and libreadline.
35045         * getstr: Remove.
35046         * MODULES.html.sh: Remove getstr.
35047         * modules/getline: Depend on unlocked-io, not getstr.
35048
35049 2003-01-12  Jim Meyering  <jim@meyering.net>
35050
35051         * lib/makepath.c: Don't test HAVE_ERRNO_H.  It's not necessary.
35052
35053 2003-01-10  Bruno Haible  <bruno@clisp.org>
35054
35055         * modules/alloca: Change Makefile.am requirements. Simplify Include
35056         requirements. Add lib/alloca_.h to file list.
35057
35058 2003-01-10  Bruno Haible  <bruno@clisp.org>
35059
35060         * m4/alloca.m4 (gl_FUNC_ALLOCA): Also define ALLOCA_H.
35061
35062 2003-01-10  Bruno Haible  <bruno@clisp.org>
35063
35064         * lib/alloca_.h: New file.
35065         * lib/getdate.y: Unconditionally include alloca.h.
35066         * lib/makepath.c: Likewise.
35067         * lib/setenv.c: Likewise.
35068         * lib/userspec.c: Likewise.
35069
35070 2003-01-09  Karl Berry  <karl@gnu.org>
35071
35072         * MODULES.html.sh: include `dirname $0` in PATH, to find
35073         gnulib-tool.
35074
35075 2003-01-09  Bruno Haible  <bruno@clisp.org>
35076
35077         * modules/stdbool: Change configure.ac, Makefile.am requirements.
35078         Simplify Include requirements. Add lib/stdbool.h.in to file list.
35079
35080 2003-01-09  Bruno Haible  <bruno@clisp.org>
35081
35082         * m4/stdbool.m4 (AM_STDBOOL_H): New macro.
35083
35084 2003-01-09  Bruno Haible  <bruno@clisp.org>
35085
35086         * lib/stdbool.h.in: New file.
35087
35088 2003-01-09  Bruno Haible  <bruno@clisp.org>
35089
35090         * gnulib-tool (func_all_modules): Ignore files ending in ~.
35091         * MODULES.html.sh: Likewise.
35092
35093 2003-01-08  Jim Meyering  <jim@meyering.net>
35094
35095         * lib/full-write.c: Undefine and define-away `const' after inclusion
35096         of errno.h, not before.  Suggestion from Bruno Haible.
35097
35098 2003-01-08  Bruno Haible  <bruno@clisp.org>
35099
35100         * modules/full-read: Depend on full-write.
35101
35102 2003-01-08  Bruno Haible  <bruno@clisp.org>
35103
35104         * lib/safe-read.c: Include specification header first, to ensure its
35105         selfcontainedness.
35106         * lib/full-write.c: Likewise.
35107
35108 2003-01-07  Jim Meyering  <jim@meyering.net>
35109
35110         * lib/full-write.c: Rework so that it may serve to define full_read,
35111         too.
35112         * lib/full-read.c: Simply #define FULL_READ and include full-write.c.
35113
35114 2003-01-07  Bruno Haible  <bruno@clisp.org>
35115
35116         * lib/strtoimax.c: Include <stdint.h> as an alternative to
35117         <inttypes.h>.
35118         * lib/xstrtol.h: Likewise.
35119         * lib/xstrtoimax.c: Likewise.
35120         * lib/xstrtoumax.c: Likewise.
35121         * lib/human.h: Likewise.
35122
35123         * lib/tempname.c: Include <inttypes.h> too. Avoids a compilation error
35124         on systems that have <inttypes.h> but not <stdint.h>.
35125
35126 2003-01-07  Bruno Haible  <bruno@clisp.org>
35127
35128         * MODULES.html.sh: Add copyright notice.
35129         (missed_files): Omit CVS directory entries.
35130         (func_module): Make it work with sed-3.02.
35131         * MODULES.txt: Remove file.
35132
35133 2003-01-06  Jim Meyering  <jim@meyering.net>
35134
35135         * lib/version-etc.c: Update year in translatable copyright string.
35136
35137 2003-01-03  Karl Berry  <karl@gnu.org>
35138
35139         * config/config.{guess,sub}: update from prep.
35140
35141 2003-01-02  Karl Berry  <karl@gnu.org>
35142
35143         * doc/COPYING.DOC: belatedly updated to 1.2.
35144
35145 2003-01-01  Karl Berry  <karl@gnu.org>
35146
35147         * gnulib-tool (func_verify_module): report module name $module in
35148         error message, not $1.
35149         * gnulib-tool (create-testdir): don't complain if destdir couldn't
35150         be created, only if it doesn't exist.
35151         * gnulib-tool (last_checkin_date): don't expand the $Date here.
35152
35153 2002-12-31  Paul Eggert  <eggert@twinsun.com>
35154
35155         * m4/memcoll.m4 (gl_MEMCOLL): Require AC_FUNC_MEMCMP.
35156
35157 2002-12-31  Paul Eggert  <eggert@twinsun.com>
35158
35159         * lib/memcoll.c (memcoll): Fall back on a simple algorithm using
35160         memcmp if strcoll doesn't work.
35161
35162 2002-12-31  Bruno Haible  <bruno@clisp.org>
35163
35164         * lib/utime.c (utime_null): No need to call ftruncate if the file was
35165         nonempty.
35166
35167 2002-12-31  Bruno Haible  <bruno@clisp.org>
35168
35169         * lib/memcoll.c (STRCOLL): New macro.
35170         (memcoll): Use it.
35171
35172 2002-12-31  Bruno Haible  <bruno@clisp.org>
35173
35174         * lib/localcharset.h: New file.
35175         * lib/localcharset.c: Include it.
35176         * lib/unicodeio.c: Likewise.
35177
35178 2002-12-31  Bruno Haible  <bruno@clisp.org>
35179
35180         * lib/getstr.h (getstr): Define, to avoid clash with libcurses.
35181         * lib/linebuffer.h (readline): Define, to avoid clash with libreadline.
35182
35183 2002-12-31  Bruno Haible  <bruno@clisp.org>
35184
35185         * lib/getline.h: Include <stddef.h>, for size_t.
35186
35187         * lib/unicodeio.h: Include <stddef.h>, for size_t.
35188         * lib/unicodeio.c: Don't include <stddef.h>.
35189
35190 2002-12-31  Bruno Haible  <bruno@clisp.org>
35191
35192         * lib/getdate.y (get_date): Test HAVE_STRUCT_TM_TM_ZONE, not
35193         HAVE_TM_ZONE.
35194
35195 2002-12-24  Karl Berry  <karl@gnu.org>
35196
35197         * config/config.guess: update from prep.
35198
35199 2002-12-24  Bruno Haible  <bruno@clisp.org>
35200
35201         General infrasructure.
35202         * m4/README: Rewritten.
35203         * m4/onceonly.m4: New file.
35204         * m4/onceonly_2_57.m4: New file.
35205
35206         Module atexit.
35207         * m4/atexit.m4: New file.
35208
35209         Module strtod.
35210         * m4/strtod.m4: New file.
35211
35212         Module strtol.
35213         * m4/strtol.m4: New file.
35214
35215         Module strtoul.
35216         * m4/strtoul.m4: New file.
35217
35218         Module memchr.
35219         * m4/memchr.m4: New file.
35220
35221         Module memcmp.
35222         * m4/memcmp.m4 (gl_PREREQ_MEMCMP): New macro.
35223         (jm_FUNC_MEMCMP): Invoke it.
35224
35225         Module memcpy.
35226         * m4/memcpy.m4: New file.
35227
35228         Module memmove.
35229         * m4/memmove.m4: New file.
35230
35231         Module memset.
35232         * m4/memset.m4: New file.
35233
35234         Module strcspn.
35235         * m4/strcspn.m4: New file.
35236
35237         Module strpbrk.
35238         * m4/strpbrk.m4: New file.
35239
35240         Module strstr.
35241         * m4/strstr.m4: New file.
35242
35243         Module strerror.
35244         * m4/strerror.m4: New file.
35245
35246         Module mktime.
35247         * m4/mktime.m4: Renamed from jm-mktime.m4.
35248         (gl_PREREQ_MKTIME): New macro.
35249         (gl_FUNC_MKTIME): Renamed from jm_FUNC_MKTIME. Invoke gl_PREREQ_MKTIME.
35250
35251         Module malloc.
35252         * m4/malloc.m4 (gl_PREREQ_MALLOC): New macro.
35253         (jm_FUNC_MALLOC): Use AC_FUNC_MALLOC. Invoke gl_PREREQ_MALLOC.
35254         Don't define HAVE_DONE_WORKING_MALLOC_CHECK, since nothing uses it.
35255
35256         Module realloc.
35257         * m4/realloc.m4 (gl_PREREQ_REALLOC): New macro.
35258         (jm_FUNC_REALLOC): Use AC_FUNC_REALLOC. Invoke gl_PREREQ_REALLOC.
35259         Don't define HAVE_DONE_WORKING_REALLOC_CHECK, since nothing uses it.
35260
35261         Module strftime.
35262         * m4/tm_gmtoff.m4: New file, extracted from strftime.m4.
35263         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Use AC_FUNC_STRFTIME.
35264         Don't test for bcopy (we are not emacs). Invoke AC_TYPE_MBSTATE_T and
35265         gl_TM_GMTOFF.
35266         (_jm_STRFTIME_PREREQS, jm_FUNC_GNU_STRFTIME): Use onceonly macros.
35267
35268         Module xalloc.
35269         * m4/xalloc.m4: New file.
35270
35271         Module alloca.
35272         * m4/alloca.m4: New file.
35273
35274         Module putenv.
35275         * m4/putenv.m4 (gl_PREREQ_PUTENV): New macro.
35276         (jm_FUNC_PUTENV): Invoke it.
35277
35278         Module setenv.
35279         * m4/setenv.m4 (gt_FUNC_SETENV): New macro.
35280         (gt_CHECK_VAR_DECL): Fix quoting error that led to infinite loop in m4
35281         when invoked twice.
35282         (gt_PREREQ_SETENV, gt_PREREQ_UNSETENV): New macros, replacing old
35283         gt_FUNC_SETENV.
35284
35285         Module memrchr.
35286         * m4/memrchr.m4: New file.
35287
35288         Module stpcpy.
35289         * m4/stpcpy.m4: New file.
35290
35291         Module strcase.
35292         * m4/strcase.m4: New file.
35293
35294         Module strdup.
35295         * m4/strdup.m4: New file.
35296
35297         Module strnlen.
35298         * m4/strnlen.m4: New file.
35299
35300         Module strndup.
35301         * m4/strndup.m4: New file.
35302
35303         Module xstrtod.
35304         * m4/xstrtod.m4: New file.
35305
35306         Module xstrtol.
35307         * m4/xstrtol.m4: New file.
35308
35309         Module getdate.
35310         * m4/getdate.m4: New file.
35311
35312         Module unlocked-io.
35313         * m4/unlocked-io.m4: Renamed from jm-glibc-io.m4.
35314         (jm_FUNC_GLIBC_UNLOCKED_IO): Invoke AC_GNU_SOURCE. Use onceonly macros.
35315         * m4/jm-glibc-io.m4n: Remove file.
35316
35317         Module long-options.
35318         * m4/long-options.m4: New file.
35319
35320         Module md5.
35321         * m4/md5.m4: New file.
35322
35323         Module sha.
35324         * m4/sha.m4: New file.
35325
35326         Module getstr.
35327         * m4/getstr.m4: New file.
35328
35329         Module getline.
35330         * m4/getline.m4 (gl_PREREQ_GETLINE): New macro.
35331         (AM_FUNC_GETLINE): Invoke AC_GNU_SOURCE. Use <stdlib.h>, not
35332         <sys/types.h>, for size_t. Use the function name gnu_getline, not
35333         simply getline. Infoke gl_PREREQ_GETLINE.
35334
35335         Module obstack.
35336         * m4/obstack.m4: New file.
35337
35338         Module hash.
35339         * m4/hash.m4: New file.
35340
35341         Module readtokens.
35342         * m4/readtokens.m4: New file.
35343
35344         Module strverscmp.
35345         * m4/strverscmp.m4: New file.
35346
35347         Module stdbool.
35348         * m4/stdbool.m4 (AC_HEADER_STDBOOL): Add test for _Bool. Needed for
35349         OSF/1.
35350
35351         Module strtoll.
35352         * m4/strtoll.m4: New file.
35353
35354         Module strtoull.
35355         * m4/strtoull.m4: New file.
35356
35357         Module strtoimax.
35358         * m4/strtoimax.m4: New file.
35359
35360         Module strtoumax.
35361         * m4/strtoumax.m4: New file.
35362
35363         Module xstrtoimax.
35364         * m4/xstrtoimax.m4 (jm_XSTRTOIMAX): Renamed from
35365         jm_AC_PREREQ_XSTRTOIMAX.
35366         Moved the strtol prerequisites to strtol.m4.
35367         Moved the strtoll prerequisites to strtoll.m4.
35368         Moved the strtoimax prerequisites to strtoimax.m4.
35369
35370         Module xstrtoumax.
35371         * m4/xstrtoumax.m4 (jm_XSTRTOUMAX): Renamed from
35372         jm_AC_PREREQ_XSTRTOUMAX.
35373         Moved the strtoul prerequisites to strtoul.m4.
35374         Moved the strtoull prerequisites to strtoull.m4.
35375         Moved the strtoumax prerequisites to strtoumax.m4.
35376
35377         Module chown.
35378         * m4/chown.m4 (gl_PREREQ_CHOWN): New macro.
35379         (jm_FUNC_CHOWN): Use AC_FUNC_CHOWN. Invoke gl_PREREQ_CHOWN.
35380
35381         Module dup2.
35382         * m4/dup2.m4: New file.
35383
35384         Module ftruncate.
35385         * m4/ftruncate.m4 (gl_PREREQ_FTRUNCATE): New macro.
35386         (jm_FUNC_FTRUNCATE): Use AC_REPLACE_FUNCS. Invoke gl_PREREQ_FTRUNCATE.
35387
35388         Module getgroups.
35389         * m4/getgroups.m4 (gl_PREREQ_GETGROUPS): New macro.
35390         (jm_FUNC_GETGROUPS): Use AC_FUNC_GETGROUPS. Invoke gl_PREREQ_GETGROUPS.
35391
35392         Module gettimeofday.
35393         * m4/gettimeofday.m4 (gl_PREREQ_GETTIMEOFDAY): New macro.
35394         (AC_FUNC_GETTIMEOFDAY_CLOBBER): Use onceonly macros. Invoke
35395         gl_PREREQ_GETTIMEOFDAY.
35396
35397         Module mkdir.
35398         * m4/mkdir-slash.m4 (gl_PREREQ_MKDIR): New macro.
35399         (UTILS_FUNC_MKDIR_TRAILING_SLASH): Invoke gl_PREREQ_MKDIR.
35400
35401         Module mkstemp.
35402         * m4/mkstemp.m4 (gl_PREREQ_MKSTEMP): New macro.
35403         (jm_PREREQ_TEMPNAME): New macro, from prereq.m4. Also invoke
35404         jm_AC_TYPE_UINTMAX_T.
35405         (UTILS_FUNC_MKSTEMP): Invoke gl_PREREQ_MKSTEMP and jm_PREREQ_TEMPNAME.
35406
35407         Module stat.
35408         * m4/stat.m4 (gl_PREREQ_STAT): New macro.
35409         (jm_FUNC_STAT): Use AC_FUNC_STAT. Invoke gl_PREREQ_STAT.
35410
35411         Module lstat.
35412         * m4/lstat.m4 (gl_PREREQ_LSTAT): New macro.
35413         (jm_FUNC_LSTAT): Use AC_FUNC_LSTAT. Invoke gl_PREREQ_LSTAT.
35414
35415         Module timespec.
35416         * m4/timespec.m4 (gl_TIMESPEC): New macro.
35417         (jm_CHECK_TYPE_STRUCT_TIMESPEC): Add check for <sys/time.h>.
35418         * m4/st_mtim.m4: Indentation.
35419
35420         Module nanosleep.
35421         * m4/nanosleep.m4 (gl_PREREQ_NANOSLEEP): New macro.
35422         (jm_FUNC_NANOSLEEP): Add check for <sys/time.h>. Invoke
35423         gl_PREREQ_NANOSLEEP.
35424
35425         Module regex.
35426         * m4/regex.m4 (jm_PREREQ_REGEX): New macro.
35427         (jm_INCLUDED_REGEX): Invoke jm_PREREQ_REGEX.
35428         (gl_REGEX): New macro.
35429
35430         Module rename.
35431         * m4/rename.m4 (gl_PREREQ_RENAME): New macro.
35432         (vb_FUNC_RENAME): Invoke gl_PREREQ_RENAME.
35433
35434         Module rmdir.
35435         * m4/rmdir.m4: New file.
35436
35437         Module utime.
35438         * m4/utimbuf.m4 (jm_CHECK_TYPE_STRUCT_UTIMBUF): Use onceonly macros.
35439         * m4/utime.m4 (gl_PREREQ_UTIME): New macro.
35440         (jm_FUNC_UTIME): Invoke gl_PREREQ_UTIME.
35441
35442         Module dirname.
35443         * m4/dirname.m4: New file.
35444
35445         Module getopt.
35446         * m4/getopt.m4: New file.
35447
35448         Module unistd-safer.
35449         * m4/unistd-safer.m4: New file.
35450
35451         Module fnmatch.
35452         * m4/fnmatch.m4 (_AC_FUNC_FNMATCH_IF): Include <stdlib.h>, for exit()
35453         declaration.
35454         (gl_PREREQ_FNMATCH_EXTRA): New macro.
35455         (gl_FUNC_FNMATCH_POSIX): New macro.
35456         (gl_FUNC_FNMATCH_GNU): Renamed from AC_FUNC_FNMATCH_GNU. Invoke
35457         gl_PREREQ_FNMATCH_EXTRA. Use the function name gnu_fnmatch, not
35458         simply fnmatch.
35459
35460         Module exclude.
35461         * m4/exclude.m4: New file.
35462
35463         Module human.
35464         * m4/human.m4: New file.
35465
35466         Module acl.
35467         * m4/acl.m4: Nop.
35468
35469         Module backupfile.
35470         * m4/backupfile.m4: New file.
35471         * m4/d-ino.m4: Indentation.
35472
35473         Module fsusage.
35474         * m4/fsusage.m4 (gl_FSUSAGE): New macro.
35475         (jm_STATFS_TRUNCATES): New macro, from coreutils-4.5.4/configure.ac.
35476         (gl_PREREQ_FSUSAGE_EXTRA): New macro.
35477
35478         Module dirfd.
35479         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Invoke some AC_EGREP_CPP
35480         requirements.
35481
35482         Module euidaccess.
35483         * m4/euidaccess.m4: New file.
35484
35485         Module file-type.
35486         * m4/file-type.m4: New file.
35487
35488         Module fileblocks.
35489         * m4/fileblocks.m4: New file.
35490
35491         Module filemode.
35492         * m4/filemode.m4: New file.
35493
35494         Module isdir.
35495         * m4/isdir.m4: New file.
35496
35497         Module lchown.
35498         * m4/lchown.m4 (gl_PREREQ_LCHOWN): New macro.
35499         (jm_FUNC_LCHOWN): Invoke gl_PREREQ_LCHOWN.
35500
35501         Module makepath.
35502         * m4/makepath.m4: New file.
35503
35504         Module modechange.
35505         * m4/modechange.m4: New file.
35506
35507         Module mountlist.
35508         * m4/mountlist.m4: New file.
35509         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Use onceonly macros.
35510         Indentation.
35511
35512         Module path-concat.
35513         * m4/path-concat.m4: New file.
35514
35515         Module pathmax.
35516         * m4/pathmax.m4: New file.
35517
35518         Module same.
35519         * m4/same.m4: New file.
35520
35521         Module save-cwd.
35522         * m4/save-cwd.m4: New file.
35523
35524         Module savedir.
35525         * m4/savedir.m4: New file.
35526
35527         Module xgetcwd.
35528         * m4/xgetcwd.m4: New file.
35529         * m4/getcwd.m4 (AC_FUNC_GETCWD_NULL): Use onceonly macros.
35530
35531         Module xreadlink.
35532         * m4/xreadlink.m4: New file.
35533
35534         Module safe-read.
35535         * m4/safe-read.m4: New file.
35536
35537         Module safe-write.
35538         * m4/safe-write.m4: New file.
35539
35540         Module closeout.
35541         * m4/closeout.m4: New file.
35542
35543         Module stdio-safer.
35544         * m4/stdio-safer.m4: New file.
35545
35546         Module getpass.
35547         * m4/getpass.m4: New file.
35548
35549         Module getugroups.
35550         * m4/getugroups.m4: New file.
35551
35552         Module group-member.
35553         * m4/group-member.m4 (gl_PREREQ_GROUP_MEMBER): New macro.
35554         (jm_FUNC_GROUP_MEMBER): Invoke AC_GNU_SOURCE, gl_PREREQ_GROUP_MEMBER.
35555
35556         Module idcache.
35557         * m4/idcache.m4: New file.
35558
35559         Module userspec.
35560         * m4/userspec.m4: New file.
35561
35562         Module gettime.
35563         * m4/clock_time.m4: New file.
35564         * m4/gettime.m4: New file.
35565
35566         Module settime.
35567         * m4/settime.m4: New file.
35568
35569         Module posixtm.
35570         * m4/posixtm.m4: New file.
35571
35572         Module gethostname.
35573         * m4/gethostname.m4: New file.
35574
35575         Module canon-host.
35576         * m4/canon-host.m4: New file.
35577
35578         Module gettext.
35579         * m4/codeset.m4: New file, from gettext-0.11.5.
35580         * m4/gettext.m4: New file, from gettext-0.11.5.
35581         * m4/glibc21.m4: New file, from gettext-0.11.5.
35582         * m4/iconv.m4: New file, from gettext-0.11.5.
35583         * m4/intdiv0.m4: New file, from gettext-0.11.5.
35584         * m4/inttypes-pri.m4: New file, from gettext-0.11.5.
35585         * m4/inttypes.m4: New file, from gettext-0.11.5.
35586         * m4/inttypes_h.m4: New file, from gettext-0.11.5 with modifications.
35587         * m4/isc-posix.m4: New file, from gettext-0.11.5.
35588         * m4/lcmessage.m4: New file, from gettext-0.11.5.
35589         * m4/lib-ld.m4: New file, from gettext-0.11.5.
35590         * m4/lib-link.m4: New file, from gettext-0.11.5.
35591         * m4/lib-prefix.m4: New file, from gettext-0.11.5.
35592         * m4/progtest.m4: New file, from gettext-0.11.5.
35593         * m4/stdint_h.m4: New file, from gettext-0.11.5 with modifications.
35594         * m4/uintmax_t.m4: New file, from gettext-0.11.5 with modifications.
35595         * m4/ulonglong.m4: New file, from gettext-0.11.5 with modifications.
35596
35597         Module localcharset.
35598         * m4/localcharset.m4: New file.
35599
35600         Module hard-locale.
35601         * m4/hard-locale.m4: New file.
35602
35603         Module mbswidth.
35604         * m4/mbswidth.m4 (gl_MBSWIDTH): Renamed from jm_PREREQ_MBSWIDTH. Use
35605         onceonly macros.
35606         * m4/mbrtowc.m4: Add comment.
35607
35608         Module memcasecmp.
35609         * m4/memcasecmp.m4: New file.
35610
35611         Module memcoll.
35612         * m4/memcoll.m4: New file.
35613
35614         Module unicodeio.
35615         * m4/unicodeio.m4: New file.
35616
35617         Module rpmatch.
35618         * m4/rpmatch.m4: New file.
35619
35620         Module yesno.
35621         * m4/yesno.m4: New file.
35622
35623         Module exitfail.
35624         * m4/exitfail.m4: New file.
35625
35626         Module c-stack.
35627         * m4/c-stack.m4 (gl_C_STACK): New macro.
35628         (jm_PREREQ_C_STACK): Check for <sys/time.h>. Use onceonly macros.
35629
35630         Module error.
35631         * m4/error.m4 (gl_ERROR): New macro.
35632         (jm_PREREQ_ERROR): Use onceonly macros.
35633
35634         Module fatal.
35635         * m4/fatal.m4: New file.
35636
35637         Module getloadavg.
35638         * m4/getloadavg.m4 (AC_FUNC_GETLOADAVG): Use onceonly macros.
35639         (gl_FUNC_GETLOADAVG, gl_PREREQ_GETLOADAVG): New macros.
35640
35641         Module getpagesize.
35642         * m4/getpagesize.m4: New file.
35643
35644         Module getusershell.
35645         * m4/getusershell.m4: New file.
35646
35647         Module physmem.
35648         * m4/physmem.m4: New file.
35649
35650         Module posixver.
35651         * m4/posixver.m4: New file.
35652
35653         Module quotearg.
35654         * m4/quotearg.m4: New file.
35655
35656         Module quote.
35657         * m4/quote.m4: New file.
35658
35659         Module readutmp.
35660         * m4/readutmp.m4: New file, based on jm_PREREQ_READUTMP from prereq.m4.
35661
35662         Module sig2str.
35663         * m4/sig2str.m4: New file.
35664
35665         Other.
35666         * m4/longlong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Remove, moved to
35667         ulonglong.m4.
35668         * m4/intmax_t.m4: New file.
35669         * m4/d-type.m4: Indentation.
35670         * m4/jm-macros.m4: Update.
35671         * m4/prereq.m4 (jm_PREREQ): Update.
35672         (jm_PREREQ_ADDEXT): Remove, obsoleted by backupfile.m4.
35673         (jm_PREREQ_CANON_HOST): Remove, obsoleted by canon-host.m4.
35674         (jm_PREREQ_DIRNAME): Remove, obsoleted by dirname.m4.
35675         (jm_PREREQ_EXCLUDE): Remove, obsoleted by exclude.m4.
35676         (jm_PREREQ_GETPAGESIZE): Remove, obsoleted by getpagesize.m4.
35677         (jm_PREREQ_HARD_LOCALE): Remove, obsoleted by hard-locale.m4.
35678         (jm_PREREQ_HASH): Remove, obsoleted by hash.m4.
35679         (jm_PREREQ_HUMAN): Remove, obsoleted by human.m4.
35680         (jm_PREREQ_MEMCHR): Remove, obsoleted by memchr.m4.
35681         (jm_PREREQ_PHYSMEM): Remove, obsoleted by physmem.m4.
35682         (jm_PREREQ_POSIXVER): Remove, obsoleted by posixver.m4.
35683         (jm_PREREQ_QUOTEARG): Remove, obsoleted by quotearg.m4.
35684         (jm_PREREQ_READUTMP): Remove, obsoleted by readutmp.m4.
35685         (jm_PREREQ_REGEX): Remove, obsoleted by regex.m4.
35686         (jm_PREREQ_STRNLEN): Remove, obsoleted by strnlen.m4.
35687         (jm_PREREQ_TEMPNAME): Remove, obsoleted by mkstemp.m4.
35688         (jm_PREREQ_XGETCWD): Remove, obsoleted by xgetcwd.m4.
35689         (jm_PREREQ_XREADLINK): Remove, obsoleted by xreadlink.m4.
35690         * m4/readdir.m4 (jm_FUNC_READDIR): Use onceonly macros.
35691
35692 2002-12-24  Bruno Haible  <bruno@clisp.org>
35693
35694         * MODULES.txt: Update according to m4/ changes.
35695
35696         Module gettext.
35697         * config.rpath: New file, from gettext-0.11.5.
35698
35699         * modules/*: New module descriptions.
35700         * gnulib-tool: New file.
35701         * MODULES.html.sh: New file.
35702
35703 2002-12-21  Karl Berry  <karl@gnu.org>
35704
35705         * doc/fdl.texi: update to version 1.2.
35706
35707 2002-12-19  Karl Berry  <karl@gnu.org>
35708
35709         * config/config.guess: update from prep.
35710
35711 2002-12-18  Bruno Haible  <bruno@clisp.org>
35712
35713         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Don't test for localtime_r.
35714         * m4/jm-mktime.m4 (jm_FUNC_MKTIME): Likewise.
35715
35716 2002-12-17  Bruno Haible  <bruno@clisp.org>
35717
35718         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH): Remove checks for limits.h,
35719         stdlib.h, string.h.
35720
35721 2002-12-17  Bruno Haible  <bruno@clisp.org>
35722
35723         * lib/canon-host.c (strdup): Remove unused declaration.
35724
35725         * lib/fsusage.c: Include full_read.h.
35726         (get_fs_usage): Use full_read instead of safe_read.
35727
35728         * lib/utime.c (utime_null): Use SAFE_READ_ERROR.
35729
35730 2002-12-12  Karl Berry  <karl@gnu.org>
35731
35732         * config/config.guess: update from prep.
35733
35734 2002-12-11  Bruno Haible  <bruno@clisp.org>
35735
35736         * m4/setenv.m4: New file, from gettext-0.11.5.
35737
35738 2002-12-11  Bruno Haible  <bruno@clisp.org>
35739
35740         * lib/setenv.h: Rewritten to cope with systems that have setenv() but
35741         not unsetenv().
35742         * lib/setenv.c, unsetenv.c: Taken from glibc-2.2.4 with the following
35743         modifications:
35744
35745         2002-12-11  Bruno Haible  <bruno@clisp.org>
35746
35747                 * setenv.c (alloca): Fall back to malloc.
35748                 (freea): New macro.
35749                 (setenv): Use freea() to free memory allocated with alloca().
35750
35751         2002-11-13  Bruno Haible  <bruno@clisp.org>
35752
35753                 * setenv.c (compar_fn_t, __add_to_environ, setenv): Use ANSI C
35754                 function declarations.
35755                 * unsetenv.c (unsetenv): Likewise.
35756
35757         2002-03-04  Bruno Haible  <bruno@clisp.org>
35758
35759                 Portability to AIX 4.3.3.
35760                 * unsetenv.c: New file, extracted from setenv.c.
35761                 * setenv.c: Move the unsetenv() function to unsetenv.c.
35762
35763         2001-12-20  Bruno Haible  <bruno@clisp.org>
35764
35765                 * setenv.c (__add_to_environ): Don't call realloc(NULL,...),
35766                 use malloc instead. For SunOS 4.
35767
35768         2001-12-11  Bruno Haible  <bruno@clisp.org>
35769
35770                 * setenv.c: Declare alloca.
35771                 (compar_fn_t): New typedef.
35772                 (KNOWN_VALUE, STORE_VALUE): Use it.
35773
35774         * lib/Makefile.am (libfetish_a_SOURCES): Add setenv.c, unsetenv.c,
35775         setenv.h.
35776
35777 2002-12-10  Paul Eggert  <eggert@twinsun.com>
35778
35779         Port exclude.c and exclude.h to more non-GNU systems, e.g. Solaris 7.
35780         * lib/exclude.h (EXCLUDE_ANCHORED, EXCLUDE_INCLUDE, EXCLUDE_WILDCARDS):
35781         Choose values that are less likely to collide with system fnmatch
35782         options.
35783         * lib/exclude.c (FNM_CASEFOLD, FNM_LEADING_DIR): Define to 0 if not
35784         defined (e.g., a pure POSIX system).
35785         (EXCLUDE_macros_do_not_collide_with_FNM_macros): Use FNM_PATHNAME
35786         instead of FNM_FILE_NAME, for compatibility with pure POSIX sytems.
35787
35788 2002-12-06  Paul Eggert  <eggert@twinsun.com>
35789
35790         Undo the 2001-07-02 change for jm-glibc-io, as it was too much of
35791         a pain in practice to deal with generated m4 files.  This change
35792         goes together with the 2002-12-04 unlocked-io.h change in ../lib.
35793
35794         * m4/Makefile.am.in (Makefile.am): Don't mention jm-glibc-io.m4n
35795         and jm-glibc-io.m4, as they are no longer a special case.
35796         * m4/jm-glibc-io.m4: Rename from jm-glibc-io.m4n, and remove the
35797         kludge and the auto-generation stuff.  Check only whether the
35798         functions are declared, not whether they exist, since older hosts
35799         that don't declare the functions can't use the optimization anyway.
35800
35801 2002-12-06  Jim Meyering  <jim@meyering.net>
35802
35803         * lib/error.c: Be consistent: change `#ifndef _LIBC' to `#if !_LIBC'.
35804
35805         Merge in changes from libc's misc/error.c, in preparation
35806         for the merge of gnulib's changes back into libc.
35807
35808         * lib/error.c (_): Define only if not already defined.
35809         Move definition to follow all #include directives.
35810         Include unlocked-io.h only if !_LIBC.
35811         [_LIBC]: Include <libio/libioP.h>.
35812         [USE_IN_LIBIO]: Include <libio/iolibio.h>
35813         (fflush): Tweak definition to use INTUSE.
35814         (putc): Define.
35815
35816 2002-12-05  Paul Eggert  <eggert@twinsun.com>
35817
35818         * lib/alloca.c [defined emacs]: Include "lisp.h".
35819         (xalloc_die) [defined emacs]: New macro.
35820         (free) [defined emacs && defined EMACS_FREE]: Define to EMACS_FREE.
35821         [! defined emacs]: Include <xalloc.h>.
35822         (POINTER_TYPE) [!defined POINTER_TYPE]: New macro.
35823         (pointer): Typedef to POINTER_TYPE *.
35824         (malloc): Remove decl; we now always use xmalloc.
35825         (alloca): Use old-style definition, since Emacs needs this.
35826         Check for arithmetic overflow when computing combined size.
35827
35828 2002-12-04  Paul Eggert  <eggert@twinsun.com>
35829
35830         Do not generate unlocked-io.h automatically, since it's easier to
35831         maintain it by hand.
35832
35833         * lib/unlocked-io.h: New file, from GNU diffutils,
35834         but with proper copyright notice and attribution.
35835         * lib/gen-uio: Remove.
35836         * lib/Makefile.am: Add copyright notice.
35837         (libfetish_a_SOURCES): Add unlocked-io.h.
35838         (BUILT_SOURCES, all-local): Remove unlocked-io.h.
35839         (DISTCLEANFILES, io_functions): Remove macros.
35840         (EXTRA_DIST): Remove gen_uio.
35841         (unlocked-io.h): Remove rule.
35842
35843 2002-12-04  Jim Meyering  <jim@meyering.net>
35844
35845         Reflect the fact that stat.c and lstat.c are no longer generated.
35846         * lib/Makefile.am (BUILT_SOURCES): Remove stat.c and lstat.c.
35847         (DISTCLEANFILES): Likewise.
35848         (EXTRA_DIST): Likewise.
35849         (all_local): Don't depend on stat.c or lstat.c.
35850         (stat.c, lstat.c): Remove rules.
35851         (EXTRA_DIST): Remove xstat.in.
35852
35853         * lib/xstat.in: Remove file.  Contents moved into stat.c.
35854         * lib/stat.c: New file.  Contents mostly from xstat.in.
35855         * lib/stat.c: Rework so that it may serve to define rpl_lstat, too.
35856         * lib/lstat.c: New file. Simply #define LSTAT and include stat.c.
35857
35858         * lib/safe-read.c: Rework so that it may serve to define safe_write,
35859         too.
35860         * lib/safe-write.c: Simply #define SAFE_WRITE and include safe-read.c.
35861
35862 2002-12-03  Jim Meyering  <jim@meyering.net>
35863
35864         * lib/safe-read.c, safe-write.c: Change variable names and comments,
35865         but not semantics, to minimize the differences between these two files.
35866         (safe_read): Change comment to mention SAFE_READ_ERROR.
35867
35868         * lib/safe-read.c (IS_EINTR): Define.
35869         (safe_read): Use IS_EINTR in place of in-function cpp directives.
35870
35871 2002-12-02  Jim Meyering  <jim@meyering.net>
35872
35873         * lib/safe-read.c (EINTR): Define.
35874         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Define.
35875         (INT_MAX): Provide fallback.
35876         (safe_read): Rewrite to iterate IFF the read fails with EINTR.
35877
35878         * lib/safe-read.h (SAFE_READ_ERROR): Define.
35879
35880 2002-12-02  Bruno Haible  <bruno@clisp.org>
35881
35882         * lib/safe-write.c (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM):
35883         Define, taken from safe-read.c.
35884         (INT_MAX): Provide fallback.
35885         (safe_write): Rewrite to iterate IFF the write fails with EINTR.
35886         * lib/safe-write.h (SAFE_WRITE_ERROR): Define.
35887
35888         * lib/safe-read.c (EINTR): Remove definition.
35889         (safe_read): Don't use EINTR if it is absent.
35890
35891 2002-12-01  Jim Meyering  <jim@meyering.net>
35892
35893         * lib/safe-read.c: (safe_read): Also exit the loop when read returns
35894         zero.
35895         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM, INT_MAX): Define.
35896
35897 2002-11-27  Paul Eggert  <eggert@twinsun.com>
35898
35899         * lib/hash.c (hash_lookup, hash_get_first, hash_get_next,
35900         hash_find_entry, hash_rehash): Replace `if (limit <= value) abort ();'
35901         with `if (! (value < limit)) abort ();', for readability.
35902
35903 2002-11-26  Karl Berry  <karl@gnu.org>
35904
35905         * lib/strdup.c: copy from libc again, with jim's ok.
35906         * lib/.cppi-disable: re-add strdup.c
35907
35908 2002-11-25  Karl Berry  <karl@gnu.org>
35909
35910         * lib/strtoll.c: copy from libc, meaning we now #include <strtol.c>
35911         instead of "strtol.c".
35912
35913 2002-11-25  Karl Berry  <karl@gnu.org>
35914
35915         * config/install-sh: update from automake for variable quoting, $0 in
35916         error msgs, etc.
35917
35918         * config/srclist.txt ($LIBCSRC/time/mktime.c lib gpl): new entry.
35919         * config/srclist.txt ($LIBCSRC/sysdeps/generic/strtoll.c lib gpl): new
35920         entry.
35921
35922 2002-11-25  Jim Meyering  <jim@meyering.net>
35923
35924         * lib/mktime.c: Sync from libc, now that it has the latest fix.
35925
35926 2002-11-24  Karl Berry  <karl@gnu.org>
35927
35928         * lib/error.c, getopt.c, getopt.h, getopt1.c, obstack.c, regex.c,
35929         regex.h, strdup.c, strtoll.c, tempname.c: change license to gpl.
35930
35931 2002-11-24  Jim Meyering  <jim@meyering.net>
35932
35933         Update from coreutils:
35934
35935         * lib/mktime.c: Merge in changes from libc.
35936
35937         Avoid a link-time failure on some Linux systems.
35938         * lib/mktime.c (STATIC): Define to be empty (_LIBC) or `static'
35939         (otherwise).
35940         (__mon_yday): Declare with the STATIC attribute.
35941         (__mktime_internal): Likewise.
35942         Based on a report from Greg Schafer.
35943
35944 2002-11-23  Jim Meyering  <jim@meyering.net>
35945
35946         * lib/sig2str.c (str2signum, sig2str): Avoid a warning from gcc:
35947         Use `unsigned', not `int', as type of index.
35948
35949         * lib/xstat.in [@BEGIN_LSTAT_ONLY@]: Include <string.h>.
35950
35951         * lib/fsusage.c: Remove unneeded parentheses around operands of
35952         `defined'.
35953
35954 2002-11-22  Paul Eggert  <eggert@twinsun.com>
35955
35956         * lib/quotearg.h: Allow multiple inclusion by surrounding with
35957         "#ifndef QUOTEARG_H_".  Include <stddef.h>, for size_t,
35958         so that we can be included first.
35959         (PARAMS): Remove; we now assume C89 or later.  All uses removed.
35960         * lib/quotearg.c: Include quotearg.h immediately after config.h.
35961         No need to include stddef.h or sys/types.h any more.
35962         Surround local include files with "", not "<>".
35963         Assume HAVE_LIMITS_H unconditionally, as we assume C89.
35964         Similarly, assume HAVE_C_BACKSLASH_A, CHAR_BIT, UCHAR_MAX, UINT_MAX,
35965         HAVE_STDLIB_H, HAVE_STRING_H, STDC_HEADERS.
35966         (HAVE_MBSINIT): Undef if !HAVE_MBRTOWC.
35967         (mbsinit): Define to 1 if !defined mbsinit && !HAVE_MBSINIT.
35968         (ISPRINT): Remove; no longer needed now that we assume C89.
35969
35970         (clone_quoting_options, quotearg_buffer, quotearg_n_options):
35971         Preserve errno.
35972
35973         (quotearg_buffer_restyled, quotearg_n, quotearg_n_style,
35974         quotearg_char): Use SIZE_MAX rather than
35975         (size_t) -1 when we are talking about "infinity".
35976
35977         (quotearg_buffer_restyled): Fix bug when quoting trigraphs.
35978
35979 2002-11-22  Paul Eggert  <eggert@twinsun.com>
35980
35981         * lib/hash.c: Avoid use of <assert.h>, as the GNU Coding Standards
35982         hint that one should use `if (! x) abort ();' rather than `assert
35983         (x);', and anyway it's one less thing to worry about configuring.
35984         (hash_lookup, hash_get_first, hash_get_next, hash_find_entry,
35985         hash_rehash, hash_insert): Use abort rather than assert.
35986
35987 2002-11-22  Bruno Haible  <bruno@clisp.org>
35988
35989         * lib/safe-read.h: Assume C89. Add comments.
35990         (safe_read): Change return type to size_t.
35991         * lib/safe-read.c (safe_read): Change return type to size_t. Handle
35992         byte counts > SSIZE_MAX correctly.
35993         * lib/safe-write.h: New file.
35994         * lib/safe-write.c: New file.
35995         * lib/full-read.h: New file.
35996         * lib/full-read.c: New file.
35997         * lib/full-write.h: Assume C89. Add comments.
35998         * lib/full-write.c: Include safe-write.h.
35999         (full_write): Rewritten to use safe_write.
36000         Suggested by Jim Meyering and Paul Eggert.
36001
36002 2002-11-21  Jim Meyering  <jim@meyering.net>
36003
36004         * lib/strdup.c (strdup): Tweak comment and initial #if/#include.
36005
36006         Merge in changes from the coreutils.
36007
36008         2002-09-25  Paul Eggert  <eggert@twinsun.com>
36009         * lib/fsusage.c [! HAVE_INTTYPES_H && HAVE_STDINT_H] Include
36010         <stdint.h>.
36011         (UINTMAX_MAX) [!defined UINTMAX_MAX]: New macro.
36012         (PROPAGATE_ALL_ONES): Work even if X is unsigned and narrower than
36013         int.  Work more efficiently if X is the same width as uintmax_t.
36014         Do not compare X to -1, to avoid bogus compiler warning.
36015         (get_fs_usage): (uintmax_t) -1 -> UINTMAX_MAX to avoid a cast.
36016         Don't assume that f_frsize and f_bsize are the same type.
36017
36018         * lib/mountlist.c: #undef MNT_IGNORE before defining it, to avoid
36019         warning on FreeBSD.
36020
36021         * lib/makepath.c (make_path): Restore umask *before* creating the final
36022         component.
36023         (make_path): Minor reformatting.
36024
36025         * lib/xmalloc.c: Adjust to work with new autoconf macros,
36026         AC_FUNC_MALLOC and AC_FUNC_REALLOC: test #ifndef
36027         HAVE_MALLOC/HAVE_REALLOC.
36028
36029         * lib/mountlist.h (ME_DUMMY): Don't count entries of type `auto' as
36030         dummy ones.  At least on GNU/Linux systems, `auto' means something
36031         else.
36032         From Michael Stone.
36033
36034 2002-11-21  Bruno Haible  <bruno@clisp.org>
36035
36036         Remove case insensitive option matching.
36037         * lib/argmatch.h (argcasematch): Remove declaration.
36038         (ARGCASEMATCH): Remove macro.
36039         (__xargmatch_internal): Remove case_sensitive argument.
36040         (XARGMATCH): Update.
36041         (XARGCASEMATCH): Remove macro.
36042         * lib/argmatch.c (argmatch): Renamed from __argmatch_internal. Remove
36043         case_sensitive argument.
36044         (argcasematch): Remove function.
36045         (__xargmatch_internal): Remove case_sensitive argument.
36046         (main): Use XARGMATCH instead of XARGCASEMATCH.
36047
36048         * lib/xmalloc.c: Change compile-time error message. Add comment about
36049         required autoconf version.
36050
36051 2002-11-20  Paul Eggert  <eggert@twinsun.com>
36052
36053         Merge argmatch cleanups from Bison.  Assume C89.
36054
36055         * lib/argmatch.c: Include config.h here, not in argmatch.h.
36056         Include stdlib.h, for EXIT_FAILURE.
36057         Always include <string.h>, since we assume C89.
36058         (EXIT_FAILURE): Remove pre-C89 bug workaround.
36059         * lib/argmatch.h: Do not include <config.h> or <sys/types.h>.
36060         Include <stddef.h> instead, since it's all we need for size_t.
36061         (PARAMS): Remove.  All uses removed.
36062         (ARRAY_CARDINALITY): Do not bother to #undef.
36063         (ARRAY_CARDINALITY, ARGMATCH, ARGCASEMATCH, invalid_arg,
36064         ARGMATCH_VALID, XARGMATCH, XARGCASEMATCH):
36065         Remove unnecessary parentheses.
36066         (ARGMATCH_VALID, XARGMATCH, XARGCASEMATCH):
36067         Insert necessary parentheses.
36068         (ARGMATCH_CONSTRAINT, ARGMATCH_VERIFY): New macros.
36069         (ARGMATCH_ASSERT): Use ARGMATCH_CONSTRAINT.
36070
36071 2002-11-19  Bruno Haible  <bruno@clisp.org>
36072
36073         * lib/mbswidth.c: Include mbswidth.h right at the beginning.
36074         * lib/mbswidth.h: Include <stddef.h>, for size_t.
36075
36076         * lib/mbswidth.h (PARAMS): Remove macro.
36077         (mbswidth, mbsnwidth): Use ANSI C function declarations.
36078         * lib/mbswidth.c (mbswidth, mbsnwidth): Likewise.
36079
36080         * lib/gcd.h (PARAMS): Remove macro.
36081         (gcd): Use ANSI C function declarations.
36082         * lib/gcd.c (gcd): Likewise.
36083
36084 2002-11-15  Bruno Haible  <bruno@clisp.org>
36085
36086         * lib/strcspn.c: Include <stddef.h>.
36087         (strcspn): Use ANSI C function declaration. Change return type to
36088         size_t. Use NULL.
36089         * lib/strpbrk.c: Minimize diffs to glibc. Include <stddef.h>.
36090         (strpbrk): Use NULL.
36091         * lib/strpbrk.h (PARAMS): Remove macro.
36092         (strpbrk): Use ANSI C function declaration.
36093         * lib/strstr.c: Don't include <sys/types.h>.
36094         * lib/strstr.h (PARAMS): Remove macro.
36095         (strstr): Use ANSI C function declarations.
36096
36097 2002-11-14  Karl Berry  <karl@gnu.org>
36098
36099         * config/mkinstalldirs: `do' on separate line, instead of
36100         `for var; do'.
36101
36102 2002-11-06  Bruno Haible  <bruno@clisp.org>
36103
36104         * lib/gcd.h (gcd): Change argument type to 'unsigned long'.
36105         * lib/gcd.c (gcd): Likewise.
36106
36107 2002-11-05  Bruno Haible  <bruno@clisp.org>
36108
36109         * lib/gcd.h: New file, from gettext-0.11.5.
36110         * lib/gcd.c: New file, from gettext-0.11.5.
36111
36112 2002-11-05  Bruno Haible  <bruno@clisp.org>
36113
36114         * lib/error.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
36115         * lib/getopt.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
36116         * lib/obstack.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
36117         * lib/regex.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
36118
36119         * lib/argmatch.c: Include gettext.h instead of <locale.h> and
36120         <libintl.h>.
36121         * lib/makepath.c: Include gettext.h instead of <locale.h> and
36122         <libintl.h>.
36123
36124         * lib/closeout.c: Include gettext.h instead of <libintl.h>.
36125         * lib/human.c: Include gettext.h instead of <libintl.h>.
36126         * lib/quotearg.c: Include gettext.h instead of <libintl.h>.
36127         * lib/rpmatch.c: Include gettext.h instead of <libintl.h>.
36128         * lib/unicodeio.c: Include gettext.h instead of <libintl.h>.
36129         * lib/userspec.c: Include gettext.h instead of <libintl.h>.
36130         * lib/version-etc.c: Include gettext.h instead of <libintl.h>.
36131         * lib/xmalloc.c: Include gettext.h instead of <libintl.h>.
36132         (textdomain): Remove definition.
36133         * lib/xmemcoll.c: Include gettext.h instead of <libintl.h>.
36134
36135         * lib/long-options.c: Remove include of <libintl.h> and definition of
36136         _.
36137         * lib/same.c: Remove include of <libintl.h> and definition of _.
36138
36139 2002-11-04  Owen Taylor  <otaylor@redhat.com>
36140
36141         * lib/config.charset: A few additions for Solaris.
36142
36143 2002-11-04  Bruno Haible  <haible@clisp.cons.org>
36144
36145         Make it possible to build libcharset with CC=gcc CFLAGS="-x c++".
36146         * lib/localcharset.c (locale_charset): Declare as extern "C".
36147
36148 2002-11-04  Bruno Haible  <haible@clisp.cons.org>
36149
36150         * lib/config.charset: msdos in uk_UA uses CP1125.
36151
36152 2002-11-04  Bruno Haible  <bruno@clisp.org>
36153
36154         * lib/stpcpy.h: New file, from GNU gettext-0.11.5.
36155         * lib/strcase.h: New file, from GNU gettext-0.11.5.
36156         * lib/strpbrk.h: New file, from GNU gettext-0.11.5.
36157         * lib/strstr.h: New file, from GNU gettext-0.11.5.
36158         * lib/xgetcwd.h: New file, from GNU gettext-0.11.5.
36159
36160 2002-11-04  Bruno Haible  <bruno@clisp.org>
36161
36162         * lib/localcharset.c (locale_charset): Don't return an empty string.
36163
36164 2002-11-04  Bruno Haible  <bruno@clisp.org>
36165
36166         * lib/localcharset.c (get_charset_aliases): Add more Windows specific
36167         aliases.
36168
36169 2002-11-04  Bruno Haible  <bruno@clisp.org>
36170
36171         * lib/config.charset: Update for newest glibc. Add canonical names
36172         ISO-8859-14, KOI8-T, TCVN5712-1, GEORGIAN-PS.
36173
36174 2002-11-04  Bruno Haible  <bruno@clisp.org>
36175
36176         * lib/config.charset: Add support for NetBSD.
36177
36178 2002-11-04  Bruno Haible  <bruno@clisp.org>
36179
36180         * lib/config.charset [msdosdjgpp]: For Russian, use CP866.
36181
36182 2002-11-01  Bruno Haible  <bruno@clisp.org>
36183
36184         * configure.in: Add AC_CONFIG_AUX_DIR call.
36185         (AC_OUTPUT): Add m4/Makefile, lib/Makefile. Remove doc/Makefile,
36186         test/Makefile.
36187         * Makefile.in (subdirs): Add m4, lib. Remove doc, test.
36188
36189 2002-09-28  Karl Berry  <karl@gnu.org>
36190
36191         * config/srclist.txt: can't copy install-sh/mkinstalldirs from
36192         installed automake until the next release, since changes have been
36193         made.
36194
36195 2002-09-25  Karl Berry  <karl@gnu.org>
36196
36197         * lib/strdup.c: copy from libc/string (via ../config/srclist*).
36198         * lib/getopt*: copy from libc/posix.
36199         * lib/gettext.h: copy from gettext.
36200         * lib/.cppi-disable: add strdup.c, gettext.h.
36201
36202 2002-09-25  Karl Berry  <karl@gnu.org>
36203
36204         * config/srclist.txt: enable gettext.h check.
36205         * config/config.{guess,sub}: update from prep.
36206         * config/depcomp, install-sh, mdate-sh, missing, mkinstalldirs: update
36207                 from automake 1.6.3.
36208         See srclist*.
36209
36210 2002-08-23  Stefan Monnier  <monnier@cs.yale.edu>
36211
36212         * regex.c (PATFETCH): Remove the translating fetch.
36213         (PATFETCH_RAW): Rename to PATFETCH.
36214         (set_image_of_range): New fun.
36215         (SET_RANGE_TABLE_WORK_AREA): Use it.
36216         (regex_compile): Don't translate the pattern chars so eagerly.
36217         Only do it when inserting an `exactn' bytecode or when handling
36218         a char-range.
36219         (mutually_exclusive_p): Avoid empty statement.
36220
36221 2002-07-06  Jim Meyering  <meyering@lucent.com>
36222
36223         * m4/README: Don't mention Makefile.am.in.
36224         Outline how I've tested changes to .m4 files.  Yep, it's a pain.
36225
36226 2002-07-01  Jim Meyering  <meyering@lucent.com>
36227
36228         * lib/c-stack.c: Include sys/time.h.
36229         From Volker Borchert.
36230
36231 2002-06-26  Paul Eggert  <eggert@twinsun.com>
36232
36233         * m4/fnmatch.m4 (_AC_LIBOBJ_FNMATCH): Check for btowc.
36234
36235 2002-06-26  Paul Eggert  <eggert@twinsun.com>
36236
36237         * lib/fnmatch.c, fnmatch_loop.c (WIDE_CHAR_SUPPORT):
36238         New macro.  Use it uniformly instead of
36239         (defined HAVE_WCTYPE_H && defined HAVE_WCHAR_H).
36240         It also uses HAVE_BTOWC, to fix a porting bug on Solaris 2.5.1
36241         reported by Vin Shelton.
36242
36243 2002-06-22  Paul Eggert  <eggert@twinsun.com>
36244
36245         * lib/c-stack.h (segv_handler, c_stack_action) [! defined SA_SIGINFO]:
36246         Do not assume SA_SIGINFO behavior.
36247         Bug reported by Jim Meyering on NetBSD 1.5.2.
36248
36249 2002-06-22  Jim Meyering  <meyering@lucent.com>
36250
36251         * m4/c-stack.m4: New file, from diffutils-2.8.2.
36252         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_C_STACK.
36253
36254         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Don't require AC__GNU_SOURCE,
36255         now that configure.ac uses AC_GNU_SOURCE.
36256         (jm_MACROS): Rename: jm_FUNC_FNMATCH to AC_FUNC_FNMATCH_GNU.
36257         * m4/prereq.m4 (jm_PREREQ_EXCLUDE): Likewise, wrt jm_FUNC_FNMATCH.
36258
36259         Update to latest tools.  Suggestions from Paul Eggert.
36260         * m4/stdbool.m4: New file, from diffutils-2.8.2.
36261         * m4/gnu-source.m4: Update from diffutils-2.8.2.
36262         * m4/fnmatch.m4: Likewise.
36263         * m4/prereq.m4: Change each use of AC_CHECK_HEADERS(stdbool.h)
36264         to AC_HEADER_STDBOOL
36265
36266 2002-06-22  Jim Meyering  <meyering@lucent.com>
36267
36268         * lib/fnmatch.c (ISASCII, ISPRINT): Undefine, to avoid warning about
36269         redefinition due to Solaris 2.6's definition in /usr/include/sys/euc.h.
36270
36271 2002-06-22  Jim Meyering  <meyering@lucent.com>
36272
36273         * lib/c-stack.c, lib/c-stack.h: New files, from diffutils-2.8.2.
36274
36275         * lib/exitfail.c, exitfail.h: Likewise.
36276         * lib/Makefile.am (libfetish_a_SOURCES): Add exitfail.c and exitfail.h.
36277
36278         * lib/Makefile.am (libfetish_a_SOURCES): Add fnmatch_.h in place
36279         of fnmatch.h.
36280         (EXTRA_DIST): Add fnmatch_loop.c.
36281         (libfetish_a_SOURCES): Add c-stack.c and c-stack.h.
36282
36283         * lib/fnmatch_loop.c: New file, from diffutils-2.8.2.
36284         * lib/fnmatch.c: Update from diffutils-2.8.2.
36285         * lib/fnmatch_.h: New file.  From diffutils-2.8.2.
36286         * lib/fnmatch.h: Remove file.
36287
36288 2002-06-21  Jim Meyering  <meyering@lucent.com>
36289
36290         * m4/c-bs-a.m4: Add comment, from diffutils-2.8.2.
36291         * m4/mbrtowc.m4: Likewise.
36292
36293         * m4/mbstate_t.m4: Update from diffutils-2.8.2.
36294         * m4/mbswidth.m4: Reflect name change:
36295         s/AC_MBSTATE_T/AC_TYPE_MBSTATE_T.
36296         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Likewise.
36297
36298         * m4/lib-link.m4: Update from gettext-0.11.2.
36299         * m4/gettext.m4: Likewise.
36300
36301         * m4/jm-macros.m4 (jm_CHECK_ALL_HEADERS): Check for hurd.h.
36302         From Alfred M. Szmidt.
36303
36304 2002-06-18  Paul Eggert  <eggert@twinsun.com>
36305
36306         * lib/file-type.h: Report an error if neither S_ISREG nor
36307         S_IFREG is defined, instead of using a test specific to glibc
36308         2.2.  This should be safe, since POSIX requires S_ISREG and
36309         Unix Version 7 had S_IFREG.  We don't need to check for
36310         <sys/types.h> since we don't use any symbols that it defines.
36311
36312 2002-06-15  Richard Dawe  <richdawe@bigfoot.com>
36313
36314         * lib/Makefile.am (lstat.c, stat.c, .sin.sed): Use t-$@, rather than
36315         $@-t, so that each temporary file name is unique and valid in the first
36316         8 characters, for operation under DOS.
36317
36318 2002-06-15  Paul Eggert  <eggert@twinsun.com>
36319
36320         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Check for st_author.
36321
36322 2002-06-15  Jim Meyering  <meyering@lucent.com>
36323
36324         Work even with DJGPP 2.03, which lacks support for symlinks.
36325         From Richard Dawe.
36326         * lib/xstat.in (S_ISLNK): Define to 0 if neither S_ISLNK nor S_IFLNK
36327         is defined.
36328         * lib/lchown.c (S_ISLNK): Likewise.
36329
36330 2002-06-15  Jim Meyering  <meyering@lucent.com>
36331
36332         * lib/file-type.h (FILE_TYPE_H): Guard entire contents with #ifndef.
36333         For GNU libc 2.2 and newer, ensure that <sys/types.h> and <sys/stat.h>
36334         have been included before this file.
36335
36336 2002-06-14  Jim Meyering  <meyering@lucent.com>
36337
36338         * lib/file-type.h: Use the version from diffutils-2.8.2.
36339         * lib/file-type.c: Likewise.
36340
36341 2002-06-07  Jim Meyering  <meyering@lucent.com>
36342
36343         * m4/prereq.m4 (jm_PREREQ_STAT): Check for sys/param.h and sys/mount.h.
36344         They're needed at least for NetBSD 1.5.2.
36345         ($statxfs_includes): Include those same headers.
36346         ($statxfs_includes): Include sys/vfs.h if available.
36347         ($statxfs_includes): Likewise for sys/statvfs.h.
36348         Check for the following members in both structs statfs and statvfs:
36349         f_basetype, f_type, f_fsid.__val, f_namemax, f_namelen.
36350
36351 2002-06-01  Jim Meyering  <meyering@lucent.com>
36352
36353         * m4/d-type.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Rename macro:
36354         s/D_TYPE_IN_DIRENT/HAVE_STRUCT_DIRENT_D_TYPE/.
36355
36356 2002-05-28  Jim Meyering  <meyering@lucent.com>
36357
36358         * m4/readdir.m4 (jm_FUNC_READDIR): Undefine `mkdir', not `rmdir'.
36359         Reported by Volker Borchert.
36360
36361 2002-05-27  Jim Meyering  <meyering@lucent.com>
36362
36363         Fix a problem seen only on nonconforming systems whereby ls.c's
36364         use of localtime, and then of gettimeofday would cause trouble:
36365         the localtime call used to initialize rpl_gettimeofday's save
36366         mechanism would clobber ls's current local time information so
36367         that in any long listing the first file would always be listed
36368         with date 1970-01-01.  Analysis by Volker Borchert.
36369
36370         * lib/gettimeofday.c (localtime): Undefine.
36371         (rpl_localtime): New function.
36372
36373 2002-05-27  Jim Meyering  <meyering@lucent.com>
36374
36375         * m4/gettimeofday.m4 (AC_FUNC_GETTIMEOFDAY_CLOBBER): Also replace
36376         localtime.
36377
36378         * m4/readdir.m4 (jm_FUNC_READDIR): Undefine `rmdir' so we don't try to
36379         use the replacement function; it wouldn't resolve at link time.
36380         Reported by Volker Borchert.
36381
36382 2002-05-22  Jim Meyering  <meyering@lucent.com>
36383
36384         * lib/Makefile.am (libfetish_a_SOURCES): Add file-type.c and
36385         file-type.h.
36386         * lib/file-type.h: New file.
36387         * lib/file-type.c (file_type): New file/function.  Extracted from
36388         diffutils.
36389
36390 2002-04-30  Jim Meyering  <meyering@lucent.com>
36391
36392         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_STAT.
36393
36394 2002-04-29  Paul Eggert  <eggert@twinsun.com>
36395
36396         * m4/prereq.m4 (jm_PREREQ_SIG2STR): Remove; all callers changed.
36397
36398 2002-04-29  Paul Eggert  <eggert@twinsun.com>
36399
36400         * m4/prereq.m4 (jm_PREREQ_HARD_LOCALE): Check for stdlib.h.
36401         Do not check for alloca.h (no longer used) or stdbool.h (was never
36402         used?).  Add AM_C_PROTOTYPES since hard-locale.h uses it.
36403
36404 2002-04-29  Paul Eggert  <eggert@twinsun.com>
36405
36406         * lib/hard-locale.c: Upgrade to version used in GNU Diffutils 2.8.1.
36407
36408 2002-04-29  Jim Meyering  <meyering@lucent.com>
36409
36410         * m4/jm-macros.m4 (jm_MACROS): Remove use of AC_FUNC_STRNLEN.
36411         * m4/prereq.m4: Add jm_PREREQ_STRNLEN.
36412         Use AC_FUNC_STRNLEN here instead.
36413
36414         * m4/jm-macros.m4: Don't AC_REQUIRE([AC_PROG_CC_STDC]).
36415         With autoconf-2.53a, it's part of AC_PROG_CC.
36416
36417 2002-04-28  Paul Eggert  <eggert@twinsun.com>
36418
36419         * m4/jm-macros.m4 (jm_MACROS): Add AC_REPLACE_FUNCS(sig2str).
36420         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_SIG2STR.
36421
36422 2002-04-28  Paul Eggert  <eggert@twinsun.com>
36423
36424         * lib/sig2str.h, lib/sig2str.c: New files.
36425         * lib/Makefile.am (libfetish_a_SOURCES): Add sig2str.h.
36426
36427 2002-04-28  Paul Eggert  <eggert@twinsun.com>
36428
36429         * lib/sig2str.h (SIGNUM_BOUND): Do not use WTERMSIG, to avoid
36430         depending on <sys/wait.h> and WTERMSIG.  Default to 64 instead
36431         of 127, since 64 is the largest conceivable number for ancient
36432         nonstandard hosts.
36433         * lib/sig2str.c: Do not include <sys/wait.h>; no longer needed.
36434
36435 2002-04-28  Jim Meyering  <meyering@lucent.com>
36436
36437         * lib/sig2str.c (WTERMSIG): Remove definition (unused).
36438
36439 2002-04-24  Jim Meyering  <meyering@lucent.com>
36440
36441         * m4/prereq.m4 (jm_PREREQ_HARD_LOCALE): New macro.
36442         (jm_PREREQ): Use it.
36443
36444         * m4/getloadavg.m4: Check for these headers: locale.h unistd.h
36445         mach/mach.h fcntl.h.
36446         Check for this function: setlocale.
36447
36448 2002-04-24  Jim Meyering  <meyering@lucent.com>
36449
36450         * lib/gettext.h: New file, from Gettext.
36451         * lib/Makefile.am (INCLUDES): Remove -I../intl.
36452         (libfetish_a_SOURCES): Add gettext.h.
36453
36454 2002-04-16  Jim Meyering  <meyering@lucent.com>
36455
36456         * m4/prereq.m4 (jm_PREREQ_READUTMP): Also check for these members:
36457         ut_pid, ut_id, ut_exit.
36458
36459 2002-04-16  Jim Meyering  <meyering@lucent.com>
36460
36461         * lib/readutmp.h (UT_TYPE): Remove definition (now in who.c).
36462         (HAVE_STRUCT_XTMP_UT_EXIT, HAVE_STRUCT_XTMP_UT_ID): Define.
36463         (HAVE_STRUCT_XTMP_UT_PID, HAVE_STRUCT_XTMP_UT_TYPE): Define.
36464
36465 2002-04-12  Jim Meyering  <meyering@lucent.com>
36466
36467         * m4/ls-mntd-fs.m4 (checking for getmntinfo function...): Remove
36468         now-bogus check for f_type in sys/mount.h.  Instead, just test for the
36469         existence of the getmntinfo function.  Needed for Darwin 5.3.
36470
36471         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Also detect when dirfd is a macro.
36472         This is necessary at least on Darwin 5.3.
36473
36474         * m4/jm-macros.m4: Don't AC_REPLACE(strnlen), now that we use
36475         AC_FUNC_STRNLEN.  Otherwise, we'd end up putting two copies of
36476         strnlen.o in the library, and that makes some versions of ranlib
36477         object.
36478
36479 2002-04-12  Jim Meyering  <meyering@lucent.com>
36480
36481         * lib/dirfd.h (dirfd): Elide prototype if dirfd is a macro.
36482
36483 2002-04-09  Jim Meyering  <meyering@lucent.com>
36484
36485         * m4/malloc.m4: (jm_FUNC_MALLOC): Change the `checking ...' message
36486         to be more precise.  Rather than saying we're checking whether the
36487         function `works', say what we're testing.
36488         * m4/realloc.m4 (jm_FUNC_REALLOC): Likewise.
36489         Reported by Bruno Haible.
36490
36491 2002-03-10  Jim Meyering  <meyering@lucent.com>
36492
36493         * lib/makepath.c (make_path): Remove a comma from a diagnostic.
36494         Suggestion from Santiago Vila.
36495
36496 2002-03-08  Jim Meyering  <meyering@lucent.com>
36497
36498         * lib/rename.c: Mention that this wrapper is needed also on
36499         mips-dec-ultrix4.4 systems.
36500
36501 2002-03-02  Jim Meyering  <meyering@lucent.com>
36502
36503         * lib/gettime.c (gettime): Test HAVE_CLOCK_GETTIME,
36504         not HAVE_CLOCK_SETTIME.
36505
36506 2002-02-27  Paul Eggert  <eggert@twinsun.com>
36507
36508         * m4/jm-macros.m4 (jm_MACROS): Do not replace stime; no longer used.
36509         Check for clock_settime.
36510
36511 2002-02-27  Paul Eggert  <eggert@twinsun.com>
36512
36513         * lib/nanosleep.h: Rename to....
36514         * lib/timespec.h: New name for nanosleep.h.  All uses changed.
36515
36516         * lib/gettime.c: New file.
36517         * lib/settime.c: New file.
36518         * lib/stime.c: Remove.
36519
36520         * lib/Makefile.am (libfetish_a_SOURCES): Add gettime.c, settime.c,
36521         timespec.h.  Remove nanosleep.h.
36522
36523 2002-02-25  Paul Eggert  <eggert@twinsun.com>
36524
36525         * m4/acl.m4: New file.
36526         * m4/jm-macros.m4 (jm_MACROS): Require AC_FUNC_ACL.
36527         Do not check for acl or sys/acl.h, as AC_FUNC_ACL does that now.
36528
36529 2002-02-25  Paul Eggert  <eggert@twinsun.com>
36530
36531         * lib/acl.c, lib/acl.h: New files.
36532         * lib/Makefile.am (libfetish_a_SOURCES): Add acl.h, acl.c.
36533
36534 2002-02-24  Jim Meyering  <meyering@lucent.com>
36535
36536         * lib/strnlen.c (strnlen): Define-away/undef so that an inconsistent
36537         prototype in string.h (on at least AIX4.3.2.0 w/gcc-2.95.3) doesn't
36538         cause trouble.  Reported by Nelson Beebe.
36539
36540 2002-02-23  Paul Eggert  <eggert@twinsun.com>
36541
36542         * lib/path-concat.c (xpath_concat): Reorder code to pacify
36543         compilers that don't know that xalloc_die never returns.
36544
36545 2002-02-20  Jim Meyering  <meyering@lucent.com>
36546
36547         * lib/getdate.c: Regenerate using bison-1.33.
36548
36549 2002-02-17  Jim Meyering  <meyering@lucent.com>
36550
36551         * config/config.guess (main): Don't use `head -1'; it's no longer
36552         portable. Use `sed 1q' instead.
36553
36554 2002-02-16  gettextize  <bug-gnu-gettext@gnu.org>
36555
36556         * m4/codeset.m4: Upgrade to gettext-0.11.
36557         * m4/gettext.m4: Upgrade to gettext-0.11.
36558         * m4/glibc21.m4: Upgrade to gettext-0.11.
36559         * m4/iconv.m4: Upgrade to gettext-0.11.
36560         * m4/isc-posix.m4: Upgrade to gettext-0.11.
36561         * m4/lcmessage.m4: Upgrade to gettext-0.11.
36562         * m4/lib-ld.m4: New file, from gettext-0.11.
36563         * m4/lib-link.m4: New file, from gettext-0.11.
36564         * m4/lib-prefix.m4: New file, from gettext-0.11.
36565         * m4/progtest.m4: Upgrade to gettext-0.11.
36566
36567 2002-02-15  Paul Eggert  <eggert@twinsun.com>
36568
36569         * m4/prereq.m4 (jm_PREREQ_POSIXVER): New macro.
36570         (jm_PREREQ): Use it.
36571
36572 2002-02-15  Paul Eggert  <eggert@twinsun.com>
36573
36574         * lib/posixver.c, lib/posixver.h: New files.
36575         * lib/Makefile.am (libfetish_a_SOURCES): Add them.
36576
36577 2002-02-02  Paul Eggert  <eggert@twinsun.com>
36578             Bruno Haible  <bruno@clisp.org>
36579
36580         * lib/unicodeio.h (print_unicode_char): Add exit_on_error argument.
36581         (fwrite_success_callback): New declaration.
36582         * lib/unicodeio.c (unicode_to_mb): New function, extracted from
36583         print_unicode_char. Call failure callback instead of error.
36584         (fwrite_success_callback): New function.
36585         (exit_failure_callback): New function.
36586         (fallback_failure_callback): New function.
36587         (print_unicode_char): Call unicode_to_mb.
36588
36589 2002-01-26  Jim Meyering  <meyering@lucent.com>
36590
36591         * m4/jm-macros.m4 (jm_MACROS): Require autoconf-2.52g.
36592         * m4/strnlen.m4: Remove file, now that it's part of autoconf.
36593
36594 2002-01-26  Jim Meyering  <meyering@lucent.com>
36595
36596         * lib/Makefile.am (getdate$U.o): Depend on unlocked-io.h.
36597
36598 2002-01-22  Paul Eggert  <eggert@twinsun.com>
36599
36600         * m4/jm-macros.m4 (jm_MACROS): Require AC_FUNC_FSEEKO.
36601
36602 2002-01-22  Jim Meyering  <meyering@lucent.com>
36603
36604         * lib/Makefile.am (Makefile): Don't depend on $(BUILT_SOURCES).
36605         Otherwise, some versions of automake would omit the rule that makes
36606         Makefile from Makefile.in.
36607
36608 2002-01-21  Paul Eggert  <eggert@twinsun.com>
36609
36610         * lib/xmemcoll.h, lib/xmemcoll.c: New files.
36611         * lib/Makefile.am (libfetish_a_SOURCES): Add them.
36612         * lib/memcoll.c: Include errno.h, and declare errno if not defined.
36613         (memcoll): Set errno to zero if there is no error.
36614
36615         * lib/quotearg.c (quotearg_buffer_restyled):
36616         Fix bug with quoting buffers containing NUL when backslashing escapes.
36617         This bug was exposed by the other changes in this patch.
36618         (quotearg_n_options): New arg ARGSIZE.
36619         All callers changed.
36620         (quoting_options_from_style): New function.
36621         (quotearg_n_style): Use it.
36622         (quotearg_n_style_mem): New function.
36623
36624         * lib/quotearg.h (quotearg_n_style_mem): New function.
36625
36626 2002-01-19  Jim Meyering  <meyering@lucent.com>
36627
36628         * m4/jm-macros.m4 (jm_MACROS): Use AC_FUNC_STRNLEN.
36629         Remove useless quotes: DF_PROG="df".
36630         * m4/strnlen.m4: New file.
36631
36632 2002-01-16  Paul Eggert  <eggert@twinsun.com>
36633
36634         * lib/backupfile.c (ISDIGIT): Comment fix.
36635         * lib/getdate.y (ISDIGIT): Likewise.
36636         * lib/posixtm.c (ISDIGIT, year): Likewise.
36637         * lib/strverscmp.c (ISDIGIT): Likewise.
36638         * lib/userspec.c (ISDIGIT): Likewise.
36639
36640 2002-01-16  Jim Meyering  <meyering@lucent.com>
36641
36642         * lib/getdate.y: Add three semicolons, each just before a closing
36643         brace. Bison (as of version 1.31) no longer papers over that mistake.
36644
36645 2002-01-05  Jim Meyering  <meyering@lucent.com>
36646
36647         * lib/version-etc.c (version_etc_copyright): Update copyright year.
36648
36649 2001-12-19  Paul Eggert  <eggert@twinsun.com>
36650
36651         * lib/closeout.c (close_stdout_status): If ferror (stdout), do
36652         not silently exit merely because the output buffer happens to
36653         have nothing pending.
36654
36655 2001-12-18  Paul Eggert  <eggert@twinsun.com>
36656
36657         See the big note in ../ChangeLog.
36658         * lib/human.c (suffixes): Prefer K to k for 1024.
36659         (generate_suffix_backwards): New function.
36660         (human_readable_inexact): Use it.
36661         * lib/xstrtol.c (__xstrtol): If there is no number but there
36662         is a valid suffix, assume 1.  "MB" now means decimal, "MiB" binary.
36663         Accept 'K' as well as 'k'.
36664
36665 2001-12-15  Jim Meyering  <meyering@lucent.com>
36666
36667         * lib/regex.h (__restrict_arr): Update from libc.
36668
36669         * lib/mountlist.h (ME_REMOTE): Recognize file systems of type smbfs
36670         as `remote' if the name starts with `//'.  Suggested by Michael Stone.
36671         (STREQ): Define.
36672
36673 2001-12-14  Jim Meyering  <meyering@lucent.com>
36674
36675         * m4/jm-macros.m4 (jm_MACROS): Check for iswspace.
36676         Suggestion from Bruno Haible.
36677
36678 2001-12-10  Jim Meyering  <meyering@lucent.com>
36679
36680         * lib/linebuffer.c: Remove explicit declarations of xmalloc and
36681         xrealloc, Instead, include "xalloc.h".
36682         (initbuffer): Don't cast xmalloc return value to char*.
36683         (readline): Reword comment.
36684         Don't cast xrealloc return value to char*
36685         Return NULL, not 0.
36686
36687 2001-12-09  Jim Meyering  <meyering@lucent.com>
36688
36689         * lib/modechange.c (mode_compile): Add cast to avoid pedantic warning
36690         about `signed and unsigned type in conditional expression'.
36691         * lib/posixtm.c (posix_time_parse): Likewise.
36692
36693         * lib/xreadlink.c (xreadlink): Add cast to avoid a pedantic warning.
36694
36695         * lib/readtokens.c (readtoken): Declare an index to be of type unsigned
36696         to avoid a pedantic warning.
36697
36698         * lib/getstr.c: Don't include assert.h.
36699         (getstr): Remove warning-evoking assertions.
36700         Return -1 if offset parameter is out of bounds.
36701         Change the type of a local from int to size_t.
36702
36703         * lib/strftime.c (my_strftime_localtime_r): Include this function
36704         definition in the `#if ! HAVE_TM_GMTOFF' block.
36705
36706         * lib/xgethostname.c: Remove declarations of xmalloc and xrealloc.
36707         Include xalloc.h instead.
36708
36709 2001-12-02  Jim Meyering  <meyering@lucent.com>
36710
36711         * lib/tempname.c: Don't declare getenv, thus reverting the change of
36712         2001-11-18.  It's no longer necessary, now that stdlib.h is always
36713         included.
36714
36715         * lib/regex.c [!__BOUNDED_POINTERS__]: Define away __bounded,
36716         __unbounded, and __ptrvalue.  Reported by Uwe H. Steinfeld.
36717
36718 2001-11-30  Akim Demaille  <akim@epita.fr>
36719
36720         * lib/xstrdup.c: Include xalloc.h, so that xstrdup is declared
36721         before being defined.
36722
36723 2001-11-27  Paul Eggert  <eggert@twinsun.com>
36724
36725         * lib/quotearg.h (quotearg_n, quotearg_n_style):
36726         First arg is int, not unsigned.
36727         * lib/quotearg.c (quotearg_n, quotearg_n_style): Likewise.
36728         (SIZE_MAX, UINT_MAX): New macros.
36729         (quotearg_n_options): Abort if N is negative.
36730         Avoid overflow check on hosts where size_t is 64 bits and int
36731         is 32 bits, as overflow is impossible there.
36732         Fix off-by-one typo that caused unnecessary reallocation.
36733
36734 2001-11-27  Jim Meyering  <meyering@lucent.com>
36735
36736         * lib/tempname.c: Merge with version from libc.
36737         * lib/regex.c: Likewise.
36738
36739         * lib/tempname.c: Include stdlib.h unconditionally.  On some old
36740         systems for which STDC_HEADERS is 0, it was not included, resulting in
36741         a warning about an integer-to-pointer conversion problem with getenv.
36742         Reported by Volker Borchert.
36743
36744 2001-11-26  Jim Meyering  <meyering@lucent.com>
36745
36746         * lib/gtod.h: Remove file.
36747         * lib/Makefile.am (libfetish_a_SOURCES): Remove gtod.h.
36748         * lib/gettimeofday.c: Don't include gtod.h.
36749         (GTOD_init): Remove function.
36750         (rpl_gettimeofday): Do its job here instead, rather than aborting.
36751         Suggestion from Volker Borchert.
36752
36753 2001-11-23  Jim Meyering  <meyering@lucent.com>
36754
36755         * lib/hash.h (struct hash_table): Don't define here.  Merely declare
36756         it.
36757         * lib/hash.c (struct hash_table): Define it here instead.
36758
36759 2001-11-22  Jim Meyering  <meyering@lucent.com>
36760
36761         * lib/hash.h: Bracket contents of file with #ifndef HASH_H_ ... #endif.
36762
36763 2001-11-20  Jim Meyering  <meyering@lucent.com>
36764
36765         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): Update comment to reflect that
36766         SunOS 4.1.4 and Solaris 2.5.1 lose, too.
36767
36768 2001-11-19  Jim Meyering  <meyering@lucent.com>
36769
36770         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): Don't bother with a temporary
36771         directory.  Use "conftestXXXXXX" as the template.
36772         Suggestion from Paul Eggert.
36773
36774         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): Close each descriptor
36775         immediately, so the test doesn't mistakenly hit the max-open-files
36776         limit.
36777
36778 2001-11-18  Paul Eggert  <eggert@twinsun.com>
36779
36780         * lib/tempname.c (TMP_MAX): Remove; no longer needed.
36781         (TEMPORARIES): New macro.
36782         (__gen_tempname): Use TEMPORARIES rather than TMP_MAX.  This
36783         removes an artificial limitation (e.g. HP-UX 10.20, where
36784         TMP_MAX is 17576).
36785
36786 2001-11-18  Jim Meyering  <meyering@lucent.com>
36787
36788         * m4/prereq.m4 (jm_PREREQ_TEMPNAME): Check for declaration of getenv.
36789
36790 2001-11-18  Jim Meyering  <meyering@lucent.com>
36791
36792         * lib/tempname.c [!HAVE_DECL_GETENV]: Declare getenv to avoid warning
36793         on SunOS 4.
36794
36795         * lib/Makefile.am (Makefile): Depend on $(BUILT_SOURCES), so those
36796         files will be created before anything else.
36797
36798 2001-11-17  Paul Eggert  <eggert@twinsun.com>
36799
36800         * m4/jm-winsz1.m4 (jm_WINSIZE_IN_PTEM): Do not define
36801         WINSIZE_IN_PTEM if <termios.h> defines struct winsize.
36802
36803 2001-11-17  Jim Meyering  <meyering@lucent.com>
36804
36805         * m4/mkstemp.m4 (UTILS_FUNC_MKSTEMP): New file and macro.
36806         Prompted by a report from Bob Proulx.
36807
36808         * m4/jm-macros.m4 (jm_MACROS): Don't test for mkstemp here.
36809         Instead, require UTILS_FUNC_MKSTEMP.
36810
36811 2001-11-17  Jim Meyering  <meyering@lucent.com>
36812
36813         * m4/jm-macros.m4 (jm_MACROS): Remove code to set POW_LIBM.
36814         Now, that's done as part of AC_FUNC_STRTOD.
36815
36816 2001-11-17  Jim Meyering  <meyering@lucent.com>
36817
36818         * lib/modechange.c (mode_adjust): Fix error introduced on 1999-04-26
36819         that made e.g., `chmod a=,o=w,g=o F' cause F to be group readable
36820         rather than group writable.  Patch by Juan F. Codagnone.
36821
36822         * lib/readtokens.c: Remove explicit declarations of xmalloc and
36823         xrealloc, Instead, include "xalloc.h".
36824
36825         * lib/mountlist.c: Include unlocked-io.h after all system headers.
36826         Remove explicit declarations of xmalloc, xrealloc,
36827         and xstrdup.  Instead, include "xalloc.h".
36828
36829         * lib/argmatch.c, closeout.c, error.c, exclude.c: Include
36830         unlocked-io.h.
36831         * lib/fatal.c, getdate.y, getpass.c, getstr.c, getusershell.c:
36832         Likewise.
36833         * lib/mountlist.c, posixtm.c, readtokens.c, readutmp.c: Likewise.
36834
36835         * lib/regex.c, sha.c, version-etc.c, yesno.c: Likewise.
36836         Reported by Padraig Brady.
36837
36838         * lib/mkstemp.c: #undef mkstemp.
36839         Include config.h.
36840         (rpl_mkstemp): Rename from mkstemp.
36841         Protoize.
36842
36843 2001-11-16  Jim Meyering  <meyering@lucent.com>
36844
36845         * lib/physmem.c [HAVE_SYS_PSTAT_H]: Include <sys/pstat.h>.
36846         (physmem_total) [HAVE_PSTAT_GETSTATIC]: If sysconf couldn't be used to
36847         determine the amount of total physical memory, use pstat_getstatic.
36848         HPUX-11 doesn't define _SC_PHYS_PAGES.
36849         (physmem_available) [HAVE_PSTAT_GETSTATIC && HAVE_PSTAT_GETDYNAMIC]:
36850         If sysconf couldn't be used to determine the amount of available
36851         physical memory, use both pstat_getstatic and pstat_getdynamic.
36852         Based on a patch from Bob Proulx.
36853
36854 2001-11-10  Jim Meyering  <meyering@lucent.com>
36855
36856         * m4/prereq.m4 (jm_PREREQ_PHYSMEM): New function.
36857         (jm_PREREQ): Use it.
36858
36859 2001-11-09  Jim Meyering  <meyering@lucent.com>
36860
36861         * m4/jm-macros.m4: Require autoconf-2.52f.
36862         (AC_FUNC_ERROR_AT_LINE, AC_FUNC_OBSTACK, AC_FUNC_STRTOD):
36863         Use these AC_-prefixed names, not the AM_-prefixed ones.
36864
36865         * m4/afs.m4 (jm_AFS): Quote the body.  Patch by Akim Demaille.
36866
36867 2001-11-05  Jim Meyering  <meyering@lucent.com>
36868
36869         * lib/xstat.in (slash_aware_lstat): Correct a misleading comment.
36870
36871 2001-11-04  Jim Meyering  <meyering@lucent.com>
36872
36873         * m4/fpending.m4: Remove unused cruft that saved, set, and restored
36874         $DEFS.
36875
36876 2001-11-03  Jim Meyering  <meyering@lucent.com>
36877
36878         * m4/jm-glibc-io.m4n (jm_FUNC_GLIBC_UNLOCKED_IO): Quote first arg
36879         of AC_DEFUN.
36880
36881         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): Rework so dirfd.c doesn't have to
36882         know the name of the variable in the macro definition.
36883
36884 2001-11-03  Jim Meyering  <meyering@lucent.com>
36885
36886         * lib/argmatch.h (ARGMATCH_TO_ARGUMENT): Remove casts of first two args
36887         in argmatch_to_argument call.
36888
36889         * lib/dirfd.c (dirfd): Reflect the fact that DIR_TO_FD now takes an
36890         argument.
36891
36892         * lib/hash.c (hash_clear): Fix a bug that could lead to an infloop or
36893         e.g., a fault due to an attempt to free a NULL pointer.
36894
36895 2001-11-01  Jim Meyering  <meyering@lucent.com>
36896
36897         * m4/dirfd.m4 (UTILS_FUNC_DIRFD): New macro.
36898         * m4/jm-macros.m4 (jm_MACROS): Require UTILS_FUNC_DIRFD.
36899
36900 2001-11-01  Jim Meyering  <meyering@lucent.com>
36901
36902         * lib/dirfd.c, lib/dirfd.h: New files.
36903         * lib/Makefile.am (libfetish_a_SOURCES): Add dirfd.h.
36904
36905         * lib/hash.c (hash_print) [TESTING]: Clean up.
36906
36907 2001-10-22  Paul Eggert  <eggert@twinsun.com>
36908
36909         * lib/hard-locale.c (alloca): Define to __builtin_alloca if __GNUC__,
36910         to avoid a warning if -Wall.
36911
36912 2001-10-22  Jeff Bailey  <jbailey@outpost.dnsalias.org>
36913
36914         * README: New file
36915         * doc/*: Add COPYING, COPYING.LIB, COPYING.DOC, fdl.texi
36916         (per RMS's instructions, this is now the canonical source)
36917         * lgpl/, gpl/: New directories.
36918
36919 2001-10-21  Paul Eggert  <eggert@twinsun.com>
36920
36921         * lib/regex.c (uintptr_t): Remove macro and decl; it's config.h's job.
36922
36923 2001-10-21  Jim Meyering  <meyering@lucent.com>
36924
36925         * lib/obstack.c (_): Honor the setting of ENABLE_NLS.  Otherwise,
36926         this code would end up calling gettext even in packages built
36927         with --disable-nls.
36928         * lib/getopt.c (_): Likewise.
36929         * lib/regex.c (_): Likewise.
36930
36931 2001-10-20  Paul Eggert  <eggert@twinsun.com>
36932
36933         * m4/error.m4 (jm_PREREQ_ERROR):
36934         Do not invoke AC_CHECK_FUNCS with strerror_r, as
36935         AC_FUNC_STRERROR_R does that.
36936         Check for strerror declaration.
36937
36938         * m4/strerror_r.m4: Add copyright notice, as nontrivial m4 files
36939         are supposed to have them these days.
36940         (AC_FUNC_STRERROR_R): Always do char* test, so that it gets cached.
36941         Merge changes from latest Autoconf CVS.
36942         Rename ac_cv_func_strerror_r_works to ac_cv_func_strerror_r_char_p,
36943         and rename HAVE_WORKING_STRERROR_R to STRERROR_R_CHAR_P, since
36944         POSIX decided to standardize on the int flavor of strerror_r.
36945
36946 2001-10-20  Paul Eggert  <eggert@twinsun.com>
36947
36948         * lib/error.c (strerror_r): Do not declare unless !_LIBC.
36949         Do not check for HAVE_DECL_STRERROR_R missing unless STRERROR_R_CHAR_P.
36950         Use strerror_r that is only a macro, even if it is not a function.
36951         (strerror): Check for HAVE_DECL_STRERROR before declaring.
36952         (private_strerror): Use prototypes, not old-style function definition.
36953         (print_errno_message): New function.
36954         Support the POSIX 'int'-flavored strerror_r, as well as the traditional
36955         char*-flavored one.
36956         (error_tail, error, error_at_line): Use it.
36957
36958 2001-10-11  Jim Meyering  <meyering@lucent.com>
36959
36960         * lib/argmatch.c (argmatch_invalid): Use quotearg_n_style (0, ...
36961         and quote_n (1, ... to avoid clobbering a buffer.
36962
36963 2001-10-05  Jim Meyering  <meyering@lucent.com>
36964
36965         * lib/Makefile.am: (libfetish_a_SOURCES): Add hash-pjw.c and
36966         hash-pjw.h.
36967         * lib/hash-pjw.c: New file (factored out of fileutils' remove.c).
36968         * lib/hash-pjw.h: New file.
36969
36970 2001-09-30  Jim Meyering  <meyering@lucent.com>
36971
36972         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): See if
36973         `struct fsstat' has the `f_fstypename' member.
36974         Use that to define FS_TYPE, which is now used to make
36975         the getfsstat link test tighter.
36976
36977 2001-09-30  Jim Meyering  <meyering@lucent.com>
36978
36979         * lib/mountlist.c [MOUNTED_GETFSSTAT]:
36980         Include <sys/ucred.h>, for Apple Darwin.
36981         Include sys/mount.h and sys/fs_types.h only if available.
36982         (FS_TYPE): Define.
36983         (read_filesystem_list): Use FS_TYPE.
36984
36985 2001-09-29  Paul Eggert  <eggert@twinsun.com>
36986
36987         * lib/exclude.c (excluded_filename): 0 -> false, since it's
36988         a boolean context.
36989
36990 2001-09-29  Jim Meyering  <meyering@lucent.com>
36991
36992         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS)
36993         [one-argument getmntent function]): Include stdio.h before mntent.h.
36994         SunOS 4.1.x needs it for the declaration of `FILE'.
36995         Patch by Volker Borchert.
36996
36997         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS)
36998         Check for these headers: sys/param.h sys/ucred.h sys/mount.h
36999         sys/fs_types.h, and make the link-test for getfsstat guard #include
37000         directives with appropriate #if HAVE_*_H tests so that we can
37001         detect getfsstat on Apple Darwin1.3.7 systems.
37002         Reported by Nelson Beebe.
37003         Fix harmless typo in cache variable name: s/getsstat/getfsstat/.
37004
37005 2001-09-28  Paul Eggert  <eggert@twinsun.com>
37006
37007         Fix bug reported by Petter Reinholdtsen for HP-UX 10.20, which
37008         #defines strtoimax.  Also treat the other strto* functions
37009         like strtoimax.
37010
37011         * m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX):
37012         Check for strtoul and strtoumax,
37013         as those declarations are made even in the signed case.
37014         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX):
37015         Likewise, for strtol and strtoimax.
37016
37017 2001-09-28  Paul Eggert  <eggert@twinsun.com>
37018
37019         Fix bug reported by Petter Reinholdtsen for HP-UX 10.20, which
37020         #defines strtoimax.  Also treat the other strto* functions
37021         like strtoimax.
37022
37023         * lib/xstrtol.c (strtol): Do not declare if HAVE_DECL_STRTOL.
37024         (strtoul): Do not declare if HAVE_DECL_STRTOUL.
37025         (strtoimax, strtoumax): Do not declare if already defined as a macro.
37026
37027 2001-09-26  Jim Meyering  <meyering@lucent.com>
37028
37029         Most macros in unlocked-io.h had the wrong number of arguments.
37030         * lib/gen-uio: New script.
37031         (USE_UNLOCKED_IO): Define to 1 if not already defined.
37032         * lib/unlocked-io.hin: Remove file.
37033         * lib/Makefile.am (unlocked-io.h): Rewrite to use a separate script,
37034         rather than trying to embed it here.
37035         (EXTRA_DIST): Add gen-uio.  Remove unlocked-io.hin
37036         Reported by Padraig Brady.
37037
37038 2001-09-25  Volker Borchert  <bt@teknon.de>
37039
37040         * lib/gettimeofday.c (rpl_gettimeofday): Declare local variable
37041         `result'.
37042
37043 2001-09-24  Jim Meyering  <meyering@lucent.com>
37044
37045         * m4/gettext.m4: Use the version from gettext-0.10.40, not CVS.
37046
37047 2001-09-23  Jim Meyering  <meyering@lucent.com>
37048
37049         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Add a compile-test
37050         instead of the mere test for existence of mntent.h.  The latter
37051         would get a false-positive on AIX 3.4 systems.
37052         In the outer getmntent if-block, don't die if neither of the getmntent
37053         tests succeeds.  Instead, just fall through and continue with the
37054         remaining tests.
37055
37056 2001-09-23  Jim Meyering  <meyering@lucent.com>
37057
37058         * lib/mountlist.c: Remove useless parentheses in #if directives.
37059         (MOUNTED) [!defined MOUNTED]: Define to _PATH_MOUNTED, for when
37060         the deprecated MOUNTED symbol is no longer defined in mntent.h.
37061
37062 2001-09-22  Jim Meyering  <meyering@lucent.com>
37063
37064         * m4/gettext.m4: New file.  From gettext.
37065         * m4/lcmessage.m4: Sync with gettext -- this changes only comments.
37066         * m4/progtest.m4: Likewise
37067         * m4/isc-posix.m4: Decrement serial number to sync with gettext.
37068         * m4/glibc21.m4: Likewise.
37069
37070         * m4/libintl.m4: Remove.  No longer used.
37071
37072 2001-09-22  Jim Meyering  <meyering@lucent.com>
37073
37074         * lib/localcharset.c: Update from latest gettext.
37075         * lib/config.charset: Likewise.
37076
37077 2001-09-20  Jim Meyering  <meyering@lucent.com>
37078
37079         * m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX): Check for declaration of
37080         strtoimax.
37081         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Check for declaration of
37082         strtoumax.
37083
37084 2001-09-20  Jim Meyering  <meyering@lucent.com>
37085
37086         * lib/xstrtol.c (strtoimax): Guard declaration with
37087         `#if !HAVE_DECL_STRTOIMAX', rather than just `#ifndef strtoimax'.
37088         The latter fails because some systems (at least rs6000-ibm-aix4.3.3.0)
37089         have their own, conflicting declaration of strtoimax in sys/inttypes.h.
37090         (strtoumax): Likewise, for completeness (it wasn't necessary).
37091
37092 2001-09-17  Paul Eggert  <eggert@twinsun.com>
37093
37094         * lib/strtoimax.c (HAVE_LONG_LONG):
37095         Redefine to HAVE_UNSIGNED_LONG_LONG if unsigned.
37096         (strtoimax): Use sizeof (long), not sizeof strtol (ptr, endptr, base),
37097         to work around bug in IBM C compiler.
37098
37099 2001-09-17  Jim Meyering  <meyering@lucent.com>
37100
37101         * m4/chown.m4, fstypename.m4, getgroups.m4, gettimeofday.m4,
37102         * m4/jm-mktime.m4, lstat.m4, malloc.m4, memcmp.m4, mkdir-slash.m4,
37103         * m4/nanosleep.m4, putenv.m4, readdir.m4, realloc.m4, rename.m4,
37104         * m4/st_dm_mode.m4, stat.m4, strerror_r.m4, timespec.m4, utimbuf.m4,
37105         * m4/utimes.m4: Use AC_DEFINE rather than AC_DEFINE_UNQUOTED,
37106         whenever the right hand side need not be expanded by the shell.
37107
37108 2001-09-16  Paul Eggert  <eggert@twinsun.com>
37109
37110         * m4/fnmatch.m4 (jm_FUNC_FNMATCH): Remove test for GNU C
37111         library.  It's not correct, as some older glibcs are buggy.
37112         fnmatch wasn't fixed until glibc 2.2.
37113
37114         Use AC_DEFINE, not AC_DEFINE_UNQUOTED, as there's no
37115         special shell magic here.
37116
37117 2001-09-16  Jim Meyering  <meyering@lucent.com>
37118
37119         * m4/mkdir-slash.m4 (UTILS_FUNC_MKDIR_TRAILING_SLASH): New file/macro.
37120         * m4/jm-macros.m4: Require it.
37121
37122 2001-09-16  Jim Meyering  <meyering@lucent.com>
37123
37124         * lib/mkdir.c: New file.
37125
37126 2001-09-15  Jim Meyering  <meyering@lucent.com>
37127
37128         * m4/jm-macros.m4: Check for help2man.
37129
37130 2001-09-11  Jim Meyering  <meyering@lucent.com>
37131
37132         * m4/host-os.m4 (UTILS_HOST_OS): New file/macro.
37133         The body, by Paul Eggert, was moved here from configure.in.
37134         * m4/jm-macros.m4: Require UTILS_HOST_OS.
37135
37136 2001-09-04  Paul Eggert  <eggert@twinsun.com>
37137
37138         * m4/prereq.m4 (jm_PREREQ_XREADLINK): New macro.
37139         (jm_PREREQ): Use it.
37140
37141 2001-09-04  Paul Eggert  <eggert@twinsun.com>
37142
37143         * lib/xreadlink.c (xreadlink): Omit size_t* arg.  All uses changed.
37144         Use ssize_t, not int, to store result of readlink.
37145         Check for ssize_t overflow as well as size_t overflow,
37146         as POSIX says the result of readlink is implementation-defined
37147         when ssize_t overflows.
37148         Remove unnecessary cast to char*.
37149         Use free+malloc instead of realloc, as the storage doesn't need
37150         to be preserved and it's clearer and can be more efficient that way.
37151         (SIZE_MAX, SSIZE_MAX): New macros, if <limits.h> doesn't declare.
37152         * lib/xreadlink.h (xreadlink): Update prototype.
37153
37154 2001-09-04  Paul Eggert  <eggert@twinsun.com>
37155
37156         * lib/xgetcwd.c: Revert some of the previous change; intead,
37157         fix the HAVE_GETCWD_NULL code to behave more like the
37158         !HAVE_GETCWD_NULL code used to.
37159
37160         Include "xalloc.h".
37161         (xgetcwd): Do not return NULL when memory is exhausted; instead,
37162         invoke xalloc_die.
37163
37164 2001-09-03  Paul Eggert  <eggert@twinsun.com>
37165
37166         * m4/prereq.m4 (jm_PREREQ_XGETCWD): Check for limits.h and
37167         sys/param.h, as pathmax.h includes them.
37168
37169 2001-09-03  Paul Eggert  <eggert@twinsun.com>
37170
37171         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_XGETCWD.
37172         (jm_PREREQ_XGETCWD): New macro.
37173
37174         * m4/getcwd.m4: New file.
37175
37176 2001-09-03  Paul Eggert  <eggert@twinsun.com>
37177
37178         * lib/xgetcwd.c: Fix the !HAVE_GETCWD_NULL code to behave more
37179         like the HAVE_GETCWD_NULL code.
37180         Include pathmax.h if not HAVE_GETCWD.
37181         Do not include xalloc.h.
37182         (INITIAL_BUFFER_SIZE): New symbol.
37183         Do not use xmalloc / xrealloc, since the caller is responsible for
37184         handling errors.  Preserve errno around `free' during failure.
37185         Do not overrun buffer when using getwd.
37186
37187 2001-09-03  Paul Eggert  <eggert@twinsun.com>
37188
37189         * lib/xgetcwd.c (xgetcwd): Use HAVE_GETCWD_NULL, not (defined
37190         __GLIBC__ && __GLIBC__ >= 2), to decide whether to use
37191         getcwd (NULL, 0).
37192
37193 2001-09-03  Paul Eggert  <eggert@twinsun.com>
37194
37195         * lib/exclude.c (fnmatch_no_wildcards): Fix confusion between
37196         usage of FNM_CASEFOLD and FNM_LEADING_DIR.  The bug was
37197         spotted by Jim Meyering.
37198
37199 2001-09-03  Jim Meyering  <meyering@lucent.com>
37200
37201         * lib/xreadlink.c (xreadlink): Preserve errno around `free' during
37202         failure.
37203
37204 2001-09-02  Jim Meyering  <meyering@lucent.com>
37205
37206         * lib/error.c: Update from GNU libc.
37207
37208 2001-09-01  Jim Meyering  <meyering@lucent.com>
37209
37210         * m4/jm-macros.m4 (jm_MACROS): Check for canonicalize_file_name.
37211         Used by df.
37212
37213 2001-09-01  Jim Meyering  <meyering@lucent.com>
37214
37215         * lib/xreadlink.c: New file.
37216         * lib/xreadlink.h: New file.
37217         * lib/Makefile.am (libfetish_a_SOURCES): Add xreadlink.c and
37218         xreadlink.h.
37219
37220         * lib/regex.c (uintptr_t) [!_LIBC]: Define to private_uintptr_t, so it
37221         doesn't conflict with sparc Solaris 7's definition in
37222         /usr/include/sys/int_types.h.
37223
37224         * lib/exclude.c: Use `""', not `<>' to #include non-system header
37225         files.
37226         (fnmatch_no_wildcards): Rewrite not to use function names, strcasecmp
37227         and strncasecmp as r-values.  Unixware didn't have declarations.
37228
37229 2001-08-31  Paul Eggert  <eggert@twinsun.com>
37230
37231         * lib/xstrtol.h: Add copyright notice.
37232         (_DECLARE_XSTRTOL): Improve quality of diagnostic for
37233         LONGINT_INVALID_SUFFIX_CHAR.
37234
37235 2001-08-31  Paul Eggert  <eggert@twinsun.com>
37236
37237         * lib/xstrtol.c (strtoimax): New decl.
37238
37239 2001-08-31  Paul Eggert  <eggert@twinsun.com>
37240
37241         * lib/xgetcwd.c: Don't include pathmax.h.
37242         Include stdlib.h and unistd.h if available.
37243         Include xalloc.h.
37244         (xmalloc, xstrdup, free): Remove decls.
37245         (xgetcwd): Don't assume sizes fit in unsigned.
37246         Check for overflow when computing sizes.
37247         Simplify reallocation code.
37248
37249 2001-08-31  Paul Eggert  <eggert@twinsun.com>
37250
37251         * lib/savedir.c (savedir): Remove size parameter, as POSIX says that
37252         a directory's st_size can have an arbitrary value, so the old
37253         usage could waste an arbitrary amount of memory.  All uses
37254         changed.
37255         * lib/savedir.h: Update prototype.
37256
37257 2001-08-31  Paul Eggert  <eggert@twinsun.com>
37258
37259         * lib/Makefile.am (libfetish_a_SOURCES): Remove strtoxmax.c.
37260
37261         * lib/strtoimax.c: Renamed from strtoxmax.c, removing the
37262         old strtoimax.c.
37263
37264         Also, make the following further changes to make this file's
37265         configuration more similar to that of strtol.c:
37266         (UNSIGNED): Renamed from STRTOUXMAX_UNSIGNED.  All uses changed.
37267         (strtoumax, uintmax_t, strtoull, strtol): Remove.
37268         (intmax_t, strtoimax, strtol, strtoll): New macros, if UNSIGNED.
37269         (strtoimax): Renamed from strtoumax.  All uses of unsigned values
37270         changed to signed values.
37271
37272         And make the following changes as well:
37273         Fix copyright notice, as 1999 was missing.
37274         (verify): New macro.
37275         (strtoimax): Check sizes at compile-time, not run-time.
37276         Prefer strtol to strtoll if both work.
37277         (main): Remove; it was not that useful and was a pain to maintain.
37278
37279         * lib/strtoumax.c: Include strtoimax.c, not strtouxmax.c.
37280
37281 2001-08-31  Jim Meyering  <meyering@lucent.com>
37282
37283         * lib/xgetcwd.c (xgetcwd): Reorganize to avoid some duplication.
37284         Use an initial, malloc'd, buffer of length 128 rather than
37285         a statically allocated one of length 1024.
37286
37287 2001-08-30  Paul Eggert  <eggert@twinsun.com>
37288
37289         Simplify code, partly by assuming autoconf 2.52 semantics.
37290
37291         * m4/Makefile.am (EXTRA_DIST): Remove uintmax_t.m4.
37292
37293         * m4/inttypes.m4 (AC_PREREQ): Bump to 2.52.
37294         (jm_AC_HEADER_INTTYPES_H): Remove; now done by autoconf in 2.52.
37295         All uses removed.
37296         (jm_AC_TYPE_INTMAX_T, jm_AC_TYPE_UINTMAX_T):
37297         Move AC_REQUIRE to next-to-top level, to avoid confusion.
37298         Use 2.52's AC_CHECK_TYPE instead of merely looking for the header.
37299         * m4/prereq.m4 (jm_PREREQ_HUMAN): Don't require
37300         jm_AC_HEADER_INTTYPES_H.
37301         * m4/jm-macros.m4 (jm_MACROS): Likewise.
37302
37303         * m4/uintmax_t.m4: Remove, as it duplicates inttypes.m4.
37304
37305         * m4/xstrtoimax.m4 (jm_AC_PREREQ_XSTRTOIMAX):
37306         Quote first arg of AC_DEFUN.
37307         Require jm_AC_TYPE_UINTMAX_T and jm_AC_TYPE_UNSIGNED_LONG_LONG
37308         since they are needed to parse the include file even if we need
37309         only xstrtoimax.  Simplify logic behind the args to AC_REPLACE.
37310         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Likewise,
37311         but with opposite signedness.
37312
37313 2001-08-30  Paul Eggert  <eggert@twinsun.com>
37314
37315         Merge 'exclude' changes from tar 1.13.22.
37316         This fixes one or two unlikely storage allocation overflow bugs,
37317         but doesn't change user-visible behavior otherwise.
37318
37319 2001-08-30  Paul Eggert  <eggert@twinsun.com>
37320
37321         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_EXCLUDE.
37322         (jm_PREREQ_EXCLUDE): New macro.
37323
37324 2001-08-30  Paul Eggert  <eggert@twinsun.com>
37325
37326         * lib/quotearg.c: BSD/OS 4.1 wchar.h requires FILE and struct
37327         tm to be declared.
37328
37329 2001-08-30  Paul Eggert  <eggert@twinsun.com>
37330
37331         * lib/hash.c: Remove '2001' from copyright notice.
37332
37333 2001-08-30  Paul Eggert  <eggert@twinsun.com>
37334
37335         * lib/full-write.h: New file.
37336         * lib/Makefile.am (libfetish_a_SOURCES): Add full-write.h.
37337         * lib/full-write.c: Correct credits, as cccp.c no longer
37338         exists and anyway it was so heavily changed from the old cccp
37339         code as to be unrecognizable.  Include full-write.h.
37340         (full_write) Return size_t, with short writes meaning failure.
37341         All callers changed.  This fixes a bug with large buffers
37342         on 64-bit hosts.
37343         * lib/utime.c: Include full-write.h.
37344
37345 2001-08-30  Paul Eggert  <eggert@twinsun.com>
37346
37347         * lib/exclude.c (bool): Declare, perhaps by including stdbool.h.
37348         (<sys/types.h>): Include only if HAVE_SYS_TYPES_H.
37349         (<stdlib.h>, <string.h>, <strings.h>, <inttypes.h>, <stdint.h>):
37350         Include if available.
37351         (<xalloc.h>): Include
37352         (SIZE_MAX): Define if <stdint.h> or <inttypes.h> doesn't.
37353         (verify): New macro.  Use it to verify that EXCLUDE macros do not
37354         collide with FNM macros.
37355         (struct patopts): New struct.
37356         (struct exclude): Use it, as exclude patterns now come with options.
37357         (new_exclude): Support above changes.
37358         (new_exclude, add_exclude_file):
37359         Initial size must now be a power of two to simplify overflow checking.
37360         (free_exclude, fnmatch_no_wildcards): New function.
37361         (excluded_filename): No longer requires options arg, as the options
37362         are determined by add_exclude.  Now returns bool, not int.
37363         (excluded_filename, add_exclude):
37364         Add support for the fancy new exclusion options.
37365         (add_exclude, add_exclude_file): Now takes int options arg.
37366         Check for arithmetic overflow when computing sizes.
37367         (add_exclude_file): xrealloc might modify errno, so don't
37368         realloc until after errno might be used.
37369
37370         * lib/exclude.h (EXCLUDE_ANCHORED, EXCLUDE_INCLUDE,EXCLUDE_WILDCARDS):
37371         New macros.
37372         (free_exclude): New decl.
37373         (add_exclude, add_exclude_file): Now takes int options arg.
37374         (excluded_filename): No longer requires options arg, as the options
37375         are determined by add_exclude.  Now returns bool, not int.
37376
37377 2001-08-30  Paul Eggert  <eggert@twinsun.com>
37378
37379         * lib/alloca.c (alloca): Arg is of type size_t, not unsigned.
37380
37381 2001-08-27  Jim Meyering  <meyering@lucent.com>
37382
37383         * lib/Makefile.am (libfetish_a_SOURCES): Add strtoxmax.c
37384
37385         * lib/version-etc.c (N_): Remove definition.
37386         Revert most of last change.
37387         Instead, simply don't mark the `Copyright...' string for translation.
37388         Based on advice from Paul Eggert.
37389
37390         * lib/strtoxmax.c: Tweak comment.
37391
37392 2001-08-26  Jim Meyering  <meyering@lucent.com>
37393
37394         * m4/jm-macros.m4: Require jm_AC_PREREQ_XSTRTOIMAX.
37395
37396         * m4/xstrtoimax.m4: New file.
37397         * m4/xstrtoumax.m4: Add comments explaining why we
37398         AC_REPLACE_FUNCS(strtol).
37399
37400 2001-08-26  Jim Meyering  <meyering@lucent.com>
37401
37402         * lib/version-etc.c (version_etc_copyright_fmt): Replace literal year
37403         of copyright with `%s' so translators don't get an untranslated
37404         message in 2002.
37405         (COPYRIGHT_YEAR): Define.
37406         (version_etc): Use fprintf rather than fputs.
37407         Suggestion from Ulrich Drepper.
37408
37409         * lib/Makefile.am (libfetish_a_SOURCES): Add xstrtoimax.c.
37410
37411         * lib/strtoll.c: New file, from GNU libc.
37412         * lib/xstrtoimax.c: New file.
37413
37414         * lib/xstrtol.h: Add xstrtoimax.
37415         * lib/strtoumax.c: New file.  Simply include "strtoumax.c".
37416         * lib/strtoimax.c: New file.  Likewise, but first define
37417         STRTOUXMAX_SIGNED.
37418
37419         * lib/strtoumax.c: Factor to work both for unsigned and signed types,
37420         ...
37421         * lib/strtoxmax.c: ... then renamed to this.
37422
37423 2001-08-18  Paul Eggert  <eggert@twinsun.com>
37424
37425         * m4/inttypes.m4: Add AC_PREREQ(2.13).
37426         (jm_AC_HEADER_INTTYPES_H): Test for intmax_t, too.
37427         (jm_AC_TYPE_INTMAX_T): New macro.
37428         (jm_AC_TYPE_UINTMAX_T): Moved here from uintmax_t.m4.
37429
37430         * m4/longlong.m4 (jm_AC_TYPE_LONG_LONG): New macro.
37431
37432         * m4/longlong.m4: Renamed from ulonglong.m4.
37433         * m4/inttypes.m4: Renamed from inttypes_h.m4.
37434         * m4/uintmax_t.m4: Removed.
37435
37436 2001-08-13  Paul Eggert  <eggert@twinsun.com>
37437
37438         * lib/Makefile.am (unlocked-io.h): Do not append "_unlocked" twice.
37439         Port to Solaris 8, where 'sed' requires a space after the 'r'
37440         command, and where sh dislikes "$/".  Clean up the spacing a bit.
37441         Redirect output to $tmp just once.
37442
37443 2001-08-12  Paul Eggert  <eggert@sic.twinsun.com>
37444
37445         * lib/addext.c (<errno.h>): Include.
37446         (errno): Declare if not defined.
37447         (addext): Work correctly when pathconf returns -1 and leaves
37448         errno alone because there is no limit.  Also, work even if
37449         pathconf returns a value greater than SIZE_MAX.
37450
37451 2001-08-12  Jim Meyering  <meyering@lucent.com>
37452
37453         * m4/afs.m4, assert.m4, bison.m4, check-decl.m4, chown.m4, d-ino.m4,
37454         d-type.m4, dos.m4, error.m4, fnmatch.m4, fpending.m4, fstypename.m4,
37455         fsusage.m4, ftruncate.m4, getgroups.m4, glibc.m4, gnu-source.m4,
37456         group-member.m4, jm-glibc-io.m4, jm-macros.m4, jm-mktime.m4,
37457         jm-winsz1.m4, jm-winsz2.m4, lchown.m4, lib-check.m4, libintl.m4,
37458         link-follow.m4, ls-mntd-fs.m4, lstat.m4, malloc.m4, mbrtowc.m4,
37459         mbstate_t.m4, mbswidth.m4, memcmp.m4, nanosleep.m4, perl.m4,
37460         prereq.m4, putenv.m4, readdir.m4, realloc.m4, regex.m4, rename.m4,
37461         rmdir-errno.m4, search-libs.m4, st_dm_mode.m4, st_mtim.m4, stat.m4,
37462         strftime.m4, timespec.m4, unlink-busy.m4, uptime.m4, utimbuf.m4,
37463         utime.m4, utimes.m4, xstrtoumax.m4:
37464         Quote the first argument in each use of AC_DEFUN.
37465
37466 2001-08-12  Jim Meyering  <meyering@lucent.com>
37467
37468         * lib/xgetcwd.c (xgetcwd) [defined __GLIBC__ && __GLIBC__ >= 2]:
37469         Simply `return getcwd (NULL, 0);'.
37470         [! (defined __GLIBC__ && __GLIBC__ >= 2)]:
37471         Use 1300 as initial value for length, not PATH_MAX.
37472
37473         * lib/pathmax.h: Clean up cpp syntax.
37474
37475 2001-08-12  Jim Meyering  <meyering@lucent.com>
37476
37477         * lib/gettimeofday.c: New file.
37478         * lib/gtod.h: New file.
37479         * lib/Makefile.am (libfetish_a_SOURCES): Add gtod.h.
37480
37481 2001-08-05  Jim Meyering  <meyering@lucent.com>
37482
37483         * m4/jm-macros.m4: Require autoconf-2.52.
37484
37485 2001-08-04  Jim Meyering  <meyering@lucent.com>
37486
37487         * lib/error.h (__attribute__): Remove `|| __STRICT_ANSI__' from #if
37488         stmt, to get in sync with glibc.
37489
37490 2001-08-03  Paul Eggert  <eggert@twinsun.com>
37491
37492         The following changes are from gettext 0.10.39 as maintained by
37493         Bruno Haible.
37494
37495         * lib/mbswidth.h (MBSW_REJECT_UNPRINTABLE, MBSW_REJECT_INVALID):
37496         Renamed from MBSW_ACCEPT_UNPRINTABLE and MBSW_ACCEPT_INVALID
37497         with inverted sense.  All uses changed.
37498
37499         * lib/mbswidth.c: Don't include <limits.h>.
37500         Include <stdlib.h> and <string.h> unconditionally.
37501         (iswcntrl, mbsinit, ISCNTRL): New macros.
37502         (mbsnwidth): Use K&R style function declarations.
37503         Don't bother checking for MB_LEN_MAX == 1, since the compiler
37504         can optimize it when MB_CUR_MAX == 1.
37505         The width of control characters is zero, not 1.
37506
37507 2001-08-03  Paul Eggert  <eggert@twinsun.com>
37508
37509         The following changes are from gettext 0.10.39 as maintained by
37510         Bruno Haible, except that getline.m4 continues to use AC_LIBOBJ.
37511
37512         * m4/codeset.m4: Upgrade to serial AM1.
37513         (AM_LANGINFO_CODESET): Renamed from jm_LANGINFO_CODESET;
37514         all uses changed.  Quote first arg of AC_DEFUN.
37515         (am_cv_langinfo_codeset): Renamed from jm_cv_langinfo_codeset.
37516
37517         * m4/iconv.m4: Upgrade to serial AM2.
37518         (AM_ICONV): Renamed from jm_ICONV; all uses changed.
37519         Add --with-libconv-prefix.
37520         Quote first arg of AC_DEFUN.  Add description for ICONV_CONST.
37521         (am_cv_func_iconv): Renamed from jm_cv_func_iconv.
37522         (am_cv_lib_iconv): Renamed from jm_cv_lib_iconv.
37523         (am_cv_proto_iconv): Renamed from jm_cv_proto_iconv.
37524         * m4/jm-macros.m4 (jm_MACROS): Reflect s/jm_/AM_/ renamings.
37525
37526         * m4/c-bs-a.m4 (AC_C_BACKSLASH_A): Quote first arg of AC_DEFUN.
37527         * m4/getline.m4 (AM_FUNC_GETLINE): Likewise.
37528         * m4/glibc21.m4 (jm_GLIBC21): Likewise.
37529         * m4/inttypes_h.m4 (jm_AC_HEADER_INTTYPES_H): Likewise.
37530         * m4/isc-posix.m4 (AC_ISC_POSIX): Likewise.
37531         * m4/lcmessage.m4 (AM_LC_MESSAGES): Likewise.
37532         * m4/progtest.m4 (AM_PATH_PROG_WITH_TEST): Likewise.
37533         * m4/uintmax_t.m4 (jm_AC_TYPE_UINTMAX_T): Likewise.
37534         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Likewise.
37535
37536         * m4/getline.m4 (AM_FUNC_GETLINE): Don't bother checking for
37537         string.h any more.
37538
37539         * m4/progtest.m4 (AM_PATH_PROG_WITH_TEST): If not found, print "no",
37540         not the default value.
37541
37542         2001-06-25  Bruno Haible  <haible@clisp.cons.org>
37543         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH): Don't require AM_C_PROTOTYPES.
37544         Also check for mbsinit.  Needed for SCO 3.2v5.0.2.
37545         Also include <string.h>; this is where AIX 3.2.5 declares wcwidth.
37546         Also check for iswcntrl, used for wcwidth fallback.
37547         Use AC_TRY_COMPILE to emulate AC_CHECK_DECLS, for portability
37548         to Autoconf 2.13.
37549
37550 2001-08-03  Jim Meyering  <meyering@lucent.com>
37551
37552         * m4/mbrtowc.m4 (jm_FUNC_MBRTOWC): Use `#include', not `@%:@include',
37553         as it was in the original.  Reported by Paul Eggert.
37554
37555 2001-07-16  Jim Meyering  <meyering@lucent.com>
37556
37557         * m4/gettimeofday.m4: New file.
37558         Prompted by a report from Bernhard Baehr.
37559
37560 2001-07-15  Jim Meyering  <meyering@lucent.com>
37561
37562         * m4/Makefile.am.in (Makefile.am): Remove most of the unlocked-io.h
37563         stuff. Now it's in ../Makefile.cfg.
37564
37565 2001-07-15  Jim Meyering  <meyering@lucent.com>
37566
37567         * lib/Makefile.am (EXTRA_DIST): Add unlocked-io.hin.
37568         (BUILT_SOURCES): Add unlocked-io.h.
37569         (io_functions): Define.
37570         (unlocked-io.h): New rule.
37571         (DISTCLEANFILES): Add unlocked-io.h.
37572         (all-local): Depend on unlocked-io.h, to ensure it is created.
37573
37574         * lib/unlocked-io.hin: New file
37575
37576         * lib/regex.c: Update from glibc.
37577
37578 2001-07-05  Jim Meyering  <meyering@lucent.com>
37579
37580         * lib/Makefile.am (noinst_HEADERS): Remove definition, per new automake
37581         recommendation.
37582         (libfetish_a_SOURCES): Put all .h files here instead.
37583         Remove a thus-exposed (better checks in automake) duplicate and
37584         two unnecessary .h files.
37585
37586 2001-07-04  Jim Meyering  <meyering@lucent.com>
37587
37588         * m4/Makefile.am.in (glibc-io.struct): New target.  Rework the code
37589         that generates jm-glibc-io.m4 so that it doesn't trigger any make
37590         distcheck failure.
37591
37592 2001-07-02  Jim Meyering  <meyering@lucent.com>
37593
37594         The following changes were prompted by suggestions from Bruno Haible.
37595
37596         * m4/jm-glibc-io.m4n: New file, the template from which jm-glibc-io.m4
37597         is now generated.
37598         * m4/Makefile.am.in (Makefile.am): Include jm-glibc-io.m4n in emitted
37599         definition of EXTRA_DIST.
37600         (Makefile.am): Emit the dependency, `all-local: jm-glibc-io.m4' to
37601         ensure that the generated file is created/updated whenever the list
37602         of $(unlocked_functions) is changed.
37603         (jm-glibc-io.m4): New rule.
37604         (unlocked-io.h): New rule -- currently unused.
37605
37606 2001-06-24  Jim Meyering  <meyering@lucent.com>
37607
37608         * m4/regex.m4 (jm_INCLUDED_REGEX): Use a quadrigraph to represent an
37609         unmatched right bracket, rather than kludging it with an extra,
37610         falsely-matching quote in a comment.  Patch by Akim Demaille.
37611
37612 2001-06-11  Jim Meyering  <meyering@lucent.com>
37613
37614         * lib/regex.c: Update from GNU libc.
37615
37616 2001-05-27  Jim Meyering  <meyering@lucent.com>
37617
37618         * m4/prereq.m4 (jm_PREREQ_READUTMP): Check for ut_type in struct utmpx.
37619         Check for ut_type in struct utmp.
37620
37621 2001-05-27  Jim Meyering  <meyering@lucent.com>
37622
37623         * lib/readutmp.h (UT_TYPE): Define.
37624
37625 2001-05-24  Jim Meyering  <meyering@lucent.com>
37626
37627         * lib/argmatch.c: Include "quote.h".
37628         (argmatch_invalid): Remove explicit `' quotes.  Instead, use the
37629         quote function.  Reported by Göran Uddeborg.
37630
37631 2001-05-22  Jim Meyering  <meyering@lucent.com>
37632
37633         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Don't use AC_LIBOBJ(strftime),
37634         now that we use the package-supplied version unconditionally.
37635         (jm_FUNC_STRFTIME): Don't replace strftime, for the same reason.
37636
37637 2001-05-21  Jim Meyering  <meyering@lucent.com>
37638
37639         * m4/regex.m4: Change a couple backticks to single quotes to avoid
37640         shell syntax errors.
37641
37642 2001-05-21  Alexandre Duret-Lutz  <duret_g@epita.fr>
37643
37644         * m4/dos.m4 (jm_AC_DOS): Check for _WIN32, __WIN32__, and __MSDOS__.
37645
37646 2001-05-20  Paul Eggert  <eggert@twinsun.com>
37647
37648         * m4/strftime.m4 (jm_FUNC_GNU_STRFTIME):
37649         Don't bother to check library strftime, since
37650         we'll be using our own my_strftime function anyway.
37651         Define my_strftime instead of strftime.
37652
37653 2001-05-20  Alexandre Duret-Lutz  <duret_g@epita.fr>
37654
37655         * lib/dirname.c (dir_name): Compute append_dot using path, not newpath
37656         which is not yet declared.
37657
37658 2001-05-15  Jim Meyering  <meyering@lucent.com>
37659
37660         * m4/regex.m4: Use proper quoting so brackets appear in the test
37661         program.
37662         Reported by, and with help from, Bruno Haible.
37663
37664 2001-05-13  Jim Meyering  <meyering@lucent.com>
37665
37666         * m4/jm-macros.m4 (major_t, minor_t): Define to unsigned int if
37667         undefined.
37668
37669 2001-05-11  Paul Eggert  <eggert@twinsun.com>
37670
37671         dirname code cleanup.  base_name now behaves more compatibly
37672         with POSIX basename when given file names that have trailing
37673         slashes, and similarly for dir_name.  Add new primitives
37674         base_len and dir_len.  Put the directory-name-related decls
37675         into dirname.h.
37676
37677         * lib/addext.c (ISSLASH, base_name): Remove; now in dirname.h.
37678         * lib/backupfile.c (base_name): Likewise.
37679         * lib/basename.c (FILESYSTEM_PREFIX_LEN, PARAMS, ISSLASH): Likewise.
37680         * lib/dirname.c (FILESYSTEM_PREFIX_LEN, ISSLASH): Likewise.
37681         * lib/makepath.c (strip_trailing_slashes): Likewise.
37682         * lib/path-concat.c (DIRECTORY_SEPARATOR, FILESYSTEM_PREFIX_LEN,
37683         ISSLASH): Likewise.
37684         * lib/rename.c (strip_trailing_slashes): Likewise.
37685         * lib/same.c (base_name): Likewise.
37686         * lib/stripslash.c (ISSLASH): Likewise.
37687
37688         * lib/addext.c: Include <dirname.h> after size_t is defined.
37689         * lib/backupfile.c: Likewise.
37690
37691         * lib/addext.c (addext): Use base_len to trim redundant
37692         trailing slashes instead of doing it ourselves.
37693         But do not trim the last slash if it is not redundant.
37694
37695         * lib/backupfile.c (find_backup_file_name,
37696         max_backup_version): Use base_len instead of rolling it ourselves.
37697         Handle the case of "" and (on DOS) "C:" correctly.
37698
37699         * lib/basename.c: Do not include <stdio.h>, <assert.h>; no longer
37700         needed. Include <string.h>, <dirname.h>.
37701         (base_name): Allow file names ending in slashes, other than names
37702         that are all slashes.  In this case, return the basename followed
37703         by the slashes.  This is more general, and can be used in places
37704         where the original base_name purposely had an assertion failure.
37705         (base_len): New function.
37706
37707         * lib/dirname.c: Include <string.h> instead of <stdlib.h>.
37708         Do not include <assert.h>; no longer needed.
37709         Include xalloc.h.
37710         (memrchr): Remove decl.
37711         (dir_name_r): Remove.
37712         (dir_len): Renamed from dirlen.  All callers changed.
37713         Rewrite in terms of base_name, for simplicity and consistency.
37714         (dir_name): Never return NULL.  All callers changed.
37715         Do not include <stdlib.h> in test program; no longer needed.
37716         return 0; is fine for test program.
37717
37718         * lib/dirname.h (DIRECTORY_SEPARATOR, ISSLASH, FILESYSTEM_PREFIX_LEN):
37719         New macros.
37720         (base_name, base_len, dir_len, strip_trailing_slashes): New decls.
37721
37722         * lib/path-concat.c (path_concat): Use base_len to compute
37723         base length, not strlen; this means we cannot rely on memcpy
37724         to null-terminate.
37725
37726         * lib/same.c (STREQ): Remove.
37727         (same_name): Handle the case where the basename ends in trailing '/'.
37728
37729         * lib/stripslash.c (strip_trailing_slashes): Return nonzero if
37730         a slash was stripped.  Do not strip the last slash after a
37731         file system prefix.
37732
37733 2001-05-11  Paul Eggert  <eggert@twinsun.com>
37734
37735         * lib/Makefile.am (libfetish_a_SOURCES):
37736         Add strftime.c, since we now compile it on all hosts.
37737
37738         * lib/strftime.c (my_strftime):
37739         Define to nstrftime if emacs, but only if my_strftime is not defined.
37740         (extra_args, extra_args_spec, extra_args_spec_iso): Rename from
37741         ut_argument, ut_argument_spec, ut_argument_spec_iso, respectively.
37742         Add one more extra argument: a nanoseconds value.
37743         All uses changed.
37744         (ns): New macro.
37745         (my_strftime function): Add %N format.
37746         (emacs_strftimeu): Renamed from emacs_strftime,
37747         with extra ut argument.
37748
37749 2001-05-09  Paul Eggert  <eggert@twinsun.com>
37750
37751         * m4/jm-macros.m4 (jm_MACROS): Do not check for fseeko; no longer used.
37752
37753 2001-04-21  Jim Meyering  <meyering@lucent.com>
37754
37755         * m4/rmdir-errno.m4: Write to a new file, so that a restrictive umask
37756         doesn't interfere.
37757
37758 2001-04-21  Alexandre Duret-Lutz  <duret_g@epita.fr>
37759
37760         * m4/ftruncate.m4: Check for chsize.
37761         Link with ftruncate.o unconditionally if ftruncate is missing.
37762         This was required when cross-compiling to i586-mingw32msvc.
37763
37764 2001-04-08  Jim Meyering  <meyering@lucent.com>
37765
37766         * lib/getdate.y (get_date): Set tm_isdst to -1 to ensure that it is
37767         recomputed; that's necessary when the offset spans a DST transition.
37768         Patch by David J. MacKenzie.  Reported by Hon-Yin Kok.
37769
37770 2001-04-02  Jim Meyering  <meyering@lucent.com>
37771
37772         * lib/regex.h, regex.c: Update from GNU libc.
37773
37774 2001-03-24  Jim Meyering  <meyering@lucent.com>
37775
37776         * m4/jm-macros.m4: Require autoconf-2.49d.
37777
37778 2001-03-20  Bruno Haible  <haible@clisp.cons.org>
37779
37780         * m4/iconv.m4 (jm_ICONV): Recommend GNU libiconv.
37781
37782 2001-03-19  Paul Eggert  <eggert@twinsun.com>
37783
37784         * lib/version-etc.c (version_etc_copyright): Update to 2001.
37785
37786 2001-03-17  Jim Meyering  <meyering@lucent.com>
37787
37788         * m4/memcmp.m4 (jm_AC_FUNC_MEMCMP): Remove my copy of AC_FUNC_MEMCMP,
37789         now that the version in autoconf is equivalent.
37790         (jm_FUNC_MEMCMP): Adjust to use AC_FUNC_MEMCMP.
37791
37792         * m4/error.m4 (jm_PREREQ_ERROR): Invoke AC_FUNC_STRERROR_R.
37793         Suggestion from Akim Demaille.
37794
37795         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_TEMPNAME.
37796         (jm_PREREQ_TEMPNAME): New function.
37797
37798 2001-03-16  Paul Eggert  <eggert@twinsun.com>
37799
37800         * lib/tempname.c (uint64_t): Define to uintmax_t if
37801         not defined, and if UINT64_MAX is not defined.
37802         Required at least for Vax Ultrix4.3, which doesn't define uint64_t.
37803         Reported by John David Anglin.
37804
37805 2001-03-15  Bruno Haible  <haible@clisp.cons.org>
37806
37807         * lib/localcharset.c (locale_charset): Allow wildcard syntax. Also
37808         resolve alias if codeset is empty.
37809         * lib/config.charset (BeOS): Use wildcard syntax.
37810
37811 2001-03-13  Jim Meyering  <meyering@lucent.com>
37812
37813         * lib/path-concat.c (path_concat)
37814         [FILESYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX]: Don't insert a backslash when
37815         concatenating e.g., `C:' and `foo'.
37816         From Bruno Haible.
37817
37818 2001-03-06  Bruno Haible  <haible@clisp.cons.org>
37819
37820         * lib/localcharset.c (locale_charset): Don't use
37821         setlocale(LC_CTYPE,NULL). Don't return NULL.
37822         * lib/unicodeio.c (print_unicode_char): Simplify accordingly.
37823
37824 2001-03-06  Bruno Haible  <haible@clisp.cons.org>
37825
37826         * lib/config.charset: Update for FreeBSD 4.2 and OSF/1 5.1. Add
37827         support for DOS/DJGPP.
37828
37829 2001-03-01  Paul Eggert  <eggert@twinsun.com>
37830
37831         * m4/jm-macros.m4 (jm_MACROS): Use mkstemp replacement if the system
37832         lacks mkstemp.  Compile our own tempname.c if we compile our own
37833         mkstemp.c, as mkstemp relies on tempname.
37834
37835 2001-03-01  Jim Meyering  <meyering@lucent.com>
37836
37837         * m4/dos.m4 (jm_AC_DOS): Remove extra backslashes, now that
37838         AH_VERBATIM really does output its argument verbatim.
37839
37840 2001-02-28  Paul Eggert  <eggert@twinsun.com>
37841
37842         * lib/Makefile.am (libfetish_a_SOURCES):
37843         Add dup-safer.c, fopen-safer.c.
37844         (noinst_HEADERS): Add stdio-safer.h, unistd-safer.h.
37845
37846         * lib/dup-safer.c, lib/fopen-safer.c, lib/stdio-safer.h:
37847         * lib/unistd-safer.h: New files.
37848
37849 2001-02-25  Paul Eggert  <eggert@twinsun.com>
37850
37851         The mkstemp replacement is taken from glibc 2.2.2, with some
37852         portability fixes for use outside glibc, as follows:
37853
37854         * lib/tempname.c (struct_stat64): New macro.
37855         (direxists, __gen_tempname): Use it.
37856         This avoids a portability problem with Solaris 8.
37857
37858         * lib/tempname.c (<config.h>): Include if HAVE_CONFIG_H.
37859         (<stddef.h>, <stdint.h>, <string.h>):
37860         Include only if STDC_HEADERS || _LIBC.
37861         (<fcntl.h>): Include only if HAVE_FCNTL_H || _LIBC.
37862         (<unistd.h>): Include only if HAVE_UNISTD_H || _LIBC.
37863         (<sys/time.h>): Include only if HAVE_SYS_TIME_H || _LIBC.
37864         (__set_errno): Define this macro if <errno.h> doesn't.
37865         (P_tmpdir, TMP_MAX, __GT_FILE, __GT_BIGFILE, __GT_DIR, __GT_NOCREATE):
37866         Define these macros if <stdio.h> doesn't.
37867         (S_ISDIR, S_IRUSR, S_IWUSR, S_IXUSR):
37868         Define these macros if <sys/stat.h>
37869         doesn't.  Ignore <sys/stat.h> S_ISDIR if STAT_MACROS_BROKEN.
37870         (stat64, __getpid, __gettimeofday, __mkdir, __open, __open64, lxstat64,
37871         __xstat64): Define if not _LIBC.
37872         (__secure_getenv): Define if ! (HAVE___SECURE_GETENV || _LIBC).
37873         (__gen_tempname): Invoke gettimeofday only if
37874         HAVE_GETTIMEOFDAY || _LIBC;
37875         otherwise, fall back on plain "time".
37876         Use macros like S_IRUSR | S_IWUSR rather than octal values like 0600.
37877
37878         * lib/mkstemp.c (__GT_FILE): Define to zero if not defined.
37879
37880         * lib/mkstemp.c, lib/tempname.c: New files, taken from glibc 2.2.2.
37881
37882 2001-02-18  Paul Eggert  <eggert@twinsun.com>
37883
37884         * m4/jm-macros.m4 (jm_CHECK_ALL_HEADERS): Check for sys/resource.h.
37885
37886 2001-02-17  Paul Eggert  <eggert@twinsun.com>
37887
37888         * m4/mbrtowc.m4: New file, defining jm_FUNC_MBRTOWC.
37889         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH):
37890         Use jm_FUNC_MBRTOWC, not AC_CHECK_FUNCS(mbrtowc).
37891         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Likewise.
37892
37893 2001-02-17  Paul Eggert  <eggert@twinsun.com>
37894
37895         * lib/mbswidth.c, quotearg.c (mbrtowc, mbsinit):
37896         Remove workaround macros for hosts that have mbrtowc but not
37897         mbstate_t, as we now insist on proper declarations for both
37898         before using mbrtowc.
37899
37900 2001-02-17  Jim Meyering  <meyering@lucent.com>
37901
37902         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Don't check for
37903         getmntent via AC_CHECK_FUNCS, since that would get a `no' and disrupt
37904         further attempts by AC_FUNC_GETMNTENT to check with e.g., -lgen on
37905         UnixWare 7.1.1.
37906
37907         * m4/mbrtowc.m4 (jm_FUNC_MBRTOWC): Adapt to use AC_CACHE_CHECK etc.,
37908         rather than AC_CACHE_VAL.
37909
37910 2001-02-17  Jim Meyering  <meyering@lucent.com>
37911
37912         * lib/strtoul.c: Sync from GNU libc.  Use double quotes, not <...>
37913         around included file name.
37914
37915         * lib/strnlen.c (__strnlen): Merge in a change from GNU libc.
37916
37917         * lib/strftime.c: Update from GNU libc (the only changes were to
37918         comments).
37919
37920 2001-02-17  Jim Meyering  <meyering@lucent.com>
37921
37922         * lib/regex.c: Update from libc.
37923
37924 2001-02-17  Bruno Haible  <haible@clisp.cons.org>
37925
37926         * lib/mbswidth.h (mbswidth): Also define as macro, to avoid prototype
37927         clash.
37928
37929 2001-02-16  Paul Eggert  <eggert@twinsun.com>
37930
37931         * lib/alloca.c (malloc): Undef before defining, since stdlib.h
37932         may have defined it.  Needed for Encore Umax-3.0.9.16b systems.
37933         Reported by Mark Hounschell via Paul Eggert.
37934
37935 2001-02-07  Jim Meyering  <meyering@lucent.com>
37936
37937         * m4/regex.m4 (jm_INCLUDED_REGEX): Add a test for the latest bug.
37938
37939 2001-02-05  Jim Meyering  <meyering@lucent.com>
37940
37941         * m4/jm-macros.m4: Require autoconf-2.14d (not yet released), because
37942         it includes the patch required for `large file' support with at least
37943         HP-UX's 10.20 /bin/cc.
37944
37945 2001-02-03  Jim Meyering  <meyering@lucent.com>
37946
37947         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Restore prior use of
37948         AS_IF, now that it works once again (mysteriously).
37949         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Likewise.
37950
37951 2001-01-30  Jim Meyering  <meyering@lucent.com>
37952
37953         Don't use filenames that are 8.3-equivalent to "conftest" on DOS.
37954         * m4/chown.m4: Rename conftestchown to conftest.chown.
37955         * m4/rename.m4: s/conftestdir/conftest.d1/ and
37956         s/conftestdir2/conftest.d2/.
37957         * m4/utimes.m4: s/conftestdata/conftest.data/
37958         Inspired by Pavel Roskin's change in autoconf.
37959
37960 2001-01-30  Bruno Haible  <haible@clisp.cons.org>
37961
37962         * lib/config.charset: Update for FreeBSD 4.2.
37963
37964 2001-01-27  Jim Meyering  <meyering@lucent.com>
37965
37966         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Open-code what was
37967         a use of AS_IF.
37968         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Likewise.
37969
37970 2001-01-26  Jim Meyering  <meyering@lucent.com>
37971
37972         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Check for stddef.h, now that
37973         quotearg.c includes it.
37974
37975 2001-01-26  Jim Meyering  <meyering@lucent.com>
37976
37977         * lib/quotearg.c: Include stddef.h.
37978         * lib/quote.c: Include stddef.h.
37979         Reported by Axel Kittenberger.
37980
37981         * lib/xmalloc.c [HAVE_DONE_WORKING_MALLOC_CHECK]: Enclose error-evoking
37982         line in double quotes so that it evokes a better diagnostic.
37983         [HAVE_DONE_WORKING_REALLOC_CHECK]: Likewise.
37984         Reported by Axel Kittenberger.
37985
37986 2001-01-24  Stefan Monnier  <monnier@cs.yale.edu>
37987
37988         * regex.c (mutually_exclusive_p): Don't blindly handle `charset_not'
37989         as if it was a `charset'.
37990
37991 2001-01-21  Bruno Haible  <haible@clisp.cons.org>
37992
37993         * m4/iconv.m4 (jm_ICONV): Also check whether the iconv declaration
37994         has const.
37995
37996 2001-01-21  Bruno Haible  <haible@clisp.cons.org>
37997
37998         * lib/unicodeio.c (print_unicode_char): Cast the second iconv() arg,
37999         to avoid a warning.  Add back 'const' to inptr.
38000
38001 2001-01-20  Jim Meyering  <meyering@lucent.com>
38002
38003         Be sure that headers are checked before used in code compiled
38004         for the type checks.
38005         * m4/jm-macros.m4 (jm_MACROS): Remove all header checks.
38006         In place of that, invoke jm_CHECK_ALL_TYPES.
38007         (jm_CHECK_ALL_HEADERS): New functions with the above checks.
38008         (jm_CHECK_ALL_TYPES): Require jm_CHECK_ALL_HEADERS.
38009         Alan Iwi reported a build failure on an f300-fujitsu-uxpv4.1_ES;
38010         The check for ssize_t was mistakenly run before the test for unistd.h.
38011
38012         The configure-time check for stdbool.h was missing.
38013         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_HASH.
38014         (jm_PREREQ_HASH): New function.
38015
38016 2001-01-17  Jim Meyering  <meyering@lucent.com>
38017
38018         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Use AS_IF, not AS_IFELSE,
38019         for autoconf-2.49c.
38020         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Likewise.
38021
38022 2001-01-16  Jim Meyering  <meyering@lucent.com>
38023
38024         * lib/basename.c: Include <stdio.h>, needed by assert on SunOS 4.
38025         From Bruno Haible.
38026
38027 2001-01-14  Jim Meyering  <meyering@lucent.com>
38028
38029         * m4/rename.m4: Use temporary directories named conftestdir{,2}, not
38030         foo and bar.  Create conftestdir/ in the script, not in the C code.
38031         Remove directories in the script, not in the C code.
38032         Remove conftestdir{,2} before trying to create the directory.
38033         Make the entire configure script fail if the mkdir fails.
38034
38035 2001-01-14  Jim Meyering  <meyering@lucent.com>
38036
38037         * lib/rename.c: New file.  From Volker Borchert.
38038         Include stdlib.h, string.h or strings.h, and xalloc.h.
38039         Use strip_trailing_slashes rather than open-coding it.
38040
38041 2001-01-03  Paul Eggert  <eggert@twinsun.com>
38042
38043         * lib/strftime.c: Sync with glibc time/strftime.c 1.81.
38044
38045 2001-01-03  Jim Meyering  <meyering@lucent.com>
38046
38047         * lib/unicodeio.c (print_unicode_char): Remove `const' from declaration
38048         of local `inptr' to avoid warning with some system declarations of
38049         iconv.
38050
38051 2001-01-02  Volker Borchert  <bt@teknon.de>
38052
38053         * m4/rename.m4: New file.
38054         * m4/jm-macros.m4 (jm_MACROS): Require vb_FUNC_RENAME.
38055
38056 2001-01-01  Jim Meyering  <meyering@lucent.com>
38057
38058         * m4/prereq.m4 (jm_PREREQ_READUTMP): Include utmp.h (if available),
38059         even on systems with utmpx.h.  It's necessary for the declaration of
38060         utmp's ut_user member.  Reported by Andreas Jaeger.
38061
38062         * m4/check-decl.m4 (jm_CHECK_DECLS): Include grp.h and pwd.h if
38063         available. They are required for the declarations of getgrgid and
38064         getpwuid resp.
38065         (_jm_DECL_HEADERS): Check for grp.h and pwd.h.
38066         Reported by Andreas Jaeger.
38067
38068 2001-01-01  Alexandre Duret-Lutz  <duret_g@epita.fr>
38069
38070         * m4/libintl.m4 (AM_GNU_GETTEXT): Define MKINSTALLDIRS by
38071         expanding the value of $ac_aux_dir, as in AM_MISSING_HAS_RUN,
38072         so `make install' also works in VPATH builds.
38073
38074 2000-12-31  Alexandre Duret-Lutz  <duret_g@epita.fr>
38075
38076         * m4/libintl.m4 (AM_WITH_NLS): When using AC_CONFIG_AUX_DIR,
38077         prepend $(top_srcdir) to the value of MKINSTALLDIRS so that it
38078         can be used in subdirectories.
38079
38080 2000-12-29  Paul Eggert  <eggert@twinsun.com>
38081
38082         * lib/modechange.c: Do not assume that mode_t uses the
38083         traditional octal encoding.  E.g. "chmod 1 FOO" should set
38084         the other-execute bit of FOO even if S_IXOTH != 1.
38085
38086         (SUID, SGID, SVTX, RUSR, WUSR, XUSR, RGRP, WGRP, XGRP, ROTH,
38087         WOTH, XOTH, ALLM): New macros.
38088         (S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IWUSR, S_IXUSR,
38089          S_IRGRP, S_IWGRP, S_IXGRP, S_IROTH, S_IWOTH, S_IXOTH):
38090         Use them.
38091         (S_ISGID): Fix typo; it was defaulting to the same value as S_ISUID.
38092         (S_IRWXU, S_IRWXG, S_IRWXO): Specify defaults in terms of the above.
38093         (mode_compile):
38094         No need to use uintmax_t; unsigned long is long enough.
38095         Don't bother to get suffix since we don't use it.
38096
38097 2000-12-26  Jim Meyering  <meyering@lucent.com>
38098
38099         * m4/dos.m4 (jm_AC_DOS): Rewrite (though it's still a stub) to work
38100         better with autoheader.
38101
38102 2000-12-24  Jim Meyering  <meyering@lucent.com>
38103
38104         * lib/hash.c (is_prime): Return explicit boolean values.
38105         (hash_get_first): Return NULL to appease Irix5.6's 89.
38106         Reported by Nelson Beebe.
38107
38108 2000-12-19  Bruno Haible  <haible@clisp.cons.org>
38109
38110         * lib/localcharset.c (locale_charset): Add support for Win32.
38111
38112 2000-12-18  Paul Eggert  <eggert@twinsun.com>
38113
38114         * lib/physmem.h, lib/physmem.c: New files.
38115
38116         * lib/Makefile.am (libfetish_a_SOURCES): Add physmem.c.
38117         (noinst_HEADERS): Add physmem.h.
38118
38119         * lib/xstrtol.c (__xstrtol): Add undocumented suffixes 'g' and
38120         't' for compatibility with Solaris 8 sort.
38121
38122 2000-12-18  Bruno Haible  <haible@clisp.cons.org>
38123
38124         * lib/config.charset: Add support for BeOS.
38125
38126 2000-12-17  Jim Meyering  <meyering@lucent.com>
38127
38128         * m4/dos.m4 (jm_AC_DOS): New file and macro.
38129         * m4/jm-macros.m4 (jm_MACROS): Require jm_AC_DOS.
38130
38131 2000-12-16  Jim Meyering  <meyering@lucent.com>
38132
38133         This bug had a serious impact on chown: `chown N:M FILE' (for integer
38134         N and M) would have treated it like `chown N:N FILE'.
38135
38136         * lib/userspec.c (parse_user_spec): Fix typo: s/u/g/.
38137
38138 2000-12-16  Jim Meyering  <meyering@lucent.com>
38139
38140         * lib/getusershell.c [!SHELLS_FILE && __DJGPP__]: Define
38141         SHELLS_FILE to a file name that's useful on djgpp systems.
38142         Include stdlib.h.
38143         (ADDITIONAL_DEFAULT_SHELLS): Define.
38144         (default_shells): Prepend ADDITIONAL_DEFAULT_SHELLS.
38145         Based mostly on a patch from Prashant TR.
38146
38147 2000-12-16  Bruno Haible  <haible@clisp.cons.org>
38148
38149         * lib/config.charset: Add ISO-8859-3, BIG5HKSCS, GB18030, JOHAB,
38150         VISCII, CP874, CP949, CP950, CP1250, CP1253, CP1254, CP1255, CP1256,
38151         CP1257 to the list of canonical encodings. Rename EUC-CN to GB2312.
38152
38153 2000-12-08  Andreas Schwab  <schwab@suse.de>
38154
38155         * lib/mbswidth.c (mbsnwidth): Don't loop endlessly when called with an
38156         invalid mulitbyte sequence and with the MBSW_ACCEPT_INVALID flag set.
38157
38158 2000-12-07  Jim Meyering  <meyering@lucent.com>
38159
38160         * lib/stripslash.c (ISSLASH): Define.
38161         (strip_trailing_slashes): Use ISSLASH rather than comparing against
38162         `/'.
38163         From Prashant TR.
38164
38165         * lib/dirname.c (FILESYSTEM_PREFIX_LEN): Define.
38166         (dir_name_r): Declare this function as static.
38167         [BACKSLASH_IS_PATH_SEPARATOR]: Fix a bug that'd
38168         manifest itself on a name containing a mix of slashes and
38169         backslashes.
38170         Make this function work with names starting with a DOS-style
38171         drive letter and colon prefix.
38172         (dir_name): Append `.' if necessary.
38173         Based mostly on patches from Prashant TR and Eli Zaretskii.
38174
38175         * lib/dirname.h (dir_name_r): Remove prototype.
38176
38177 2000-12-06  Paul Eggert  <eggert@twinsun.com>
38178
38179         * m4/off_t-format.m4: Remove this file.
38180         * m4/jm-macros.m4 (jm_MACROS): Remove jm_SYS_OFF_T_PRINTF_FORMAT.
38181
38182 2000-12-06  Jim Meyering  <meyering@lucent.com>
38183
38184         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): If we need the
38185         replacement strtoull, we may well need the replacement strtoul, too.
38186         Check for declarations of strtoul and strtoull.
38187         Check for strtol.  Mainly as a cue to cause automake to include
38188         strtol.c -- that file is included by each of strtoul.c and strtoull.c.
38189         Check for limits.h -- strtol.c needs it.
38190
38191 2000-12-05  Jim Meyering  <meyering@lucent.com>
38192
38193         * lib/dirname.c (dir_name_r): Add `const' in a few local declarations.
38194
38195 2000-12-04  Jim Meyering  <meyering@lucent.com>
38196
38197         * lib/path-concat.c: [!HAVE_DECL_MALLOC]: Declare malloc.
38198         Also include memory.h, stdlib.h, unistd.h if appropriate.
38199         Reported by Andreas Jaeger (conflicting declaration of malloc).
38200
38201 2000-12-02  Jim Meyering  <meyering@lucent.com>
38202
38203         * m4/off_t-format.m4 (OFF_T_PRINTF_FORMAT_STRING): New file/macro.
38204         * m4/jm-macros.m4 (jm_MACROS): require it.
38205
38206 2000-12-02  Jim Meyering  <meyering@lucent.com>
38207
38208         * lib/closeout.h: Make idempotent, to avoid some obscure warnings.
38209
38210 2000-12-01  Paul Eggert  <eggert@twinsun.com>
38211
38212         * lib/memrchr.c: Include <config.h> before any system include file.
38213
38214 2000-11-30  Jim Meyering  <meyering@lucent.com>
38215
38216         * m4/jm-macros.m4 (jm_MACROS): Check for stdint.h.
38217
38218 2000-11-30  Jim Meyering  <meyering@lucent.com>
38219
38220         * m4/getloadavg.m4: s/ifval/m4_ifval/ to accommodate new autoconf.
38221
38222 2000-11-29  Paul Eggert  <eggert@twinsun.com>
38223
38224         * lib/dirname.c (dir_name_r): Fix typo: int -> size_t.
38225
38226 2000-11-26  Jim Meyering  <meyering@lucent.com>
38227
38228         * lib/memcoll.c: Include sys/types.h.  From Werner Almesberger.
38229
38230 2000-11-22  Paul Eggert  <eggert@twinsun.com>
38231
38232         * lib/strftime.c (my_strftime): Do not invoke mbrlen with a
38233         size of (size_t) -1; it's not portable.
38234
38235 2000-11-17  Jim Meyering  <meyering@lucent.com>
38236
38237         * lib/strstr.c: Update from GNU libc.
38238
38239 2000-11-17  Akim Demaille  <akim@epita.fr>
38240
38241         * lib/obstack.h: Formatting changes.
38242         (obstack_grow, obstack_grow0): Don't cast WHERE at all: that would
38243         prevent type checking.
38244         (obstack_ptr_grow, obstack_ptr_grow_fast): When assigning, don't
38245         cast the value to (void *): assigning a `foo *' to a `void *'
38246         variable is valid.
38247         (obstack_int_grow, obstack_int_grow_fast): Don't cast AINT to int.
38248
38249 2000-11-16  Jim Meyering  <meyering@lucent.com>
38250
38251         * lib/strverscmp.c: Incorporate weak-alias-related changes from glibc.
38252
38253 2000-11-11  Jim Meyering  <meyering@lucent.com>
38254
38255         * lib/error.c: Add a couple #includes, merging from GNU libc version.
38256
38257 2000-11-10  Jim Meyering  <meyering@lucent.com>
38258
38259         * lib/obstack.h: Update from GNU libc.
38260         * lib/obstack.c: Likewise.
38261
38262 2000-11-08  Bruno Haible  <haible@clisp.cons.org>
38263
38264         * m4/jm-macros.m4 (jm_MACROS): Add test for wcrtomb.
38265
38266 2000-11-06  Paul Eggert  <eggert@twinsun.com>
38267
38268         * lib/getusershell.c (setusershell): Use rewind rather than
38269         fseek/fseeko, to avoid configuration hassles with fseeko.
38270         Don't bother opening SHELLS_FILE if shellstream is NULL;
38271         it's not necessary.
38272
38273 2000-11-05  Jim Meyering  <meyering@lucent.com>
38274
38275         * lib/makepath.h (make_dir): Declare.
38276         * lib/makepath.c (make_dir): Remove `static' attribute.
38277         Tweak a comment.
38278
38279 2000-11-04  Jim Meyering  <meyering@lucent.com>
38280
38281         * m4/regex.m4: Use the `m4_' prefix on `syscmd' and `m4_sysval'.
38282
38283 2000-11-04  Alexandre Duret-Lutz  <duret_g@epita.fr>
38284
38285         * lib/hash.c (hash_get_next): Fix a thinko:  when ENTRY is the
38286         last one in a bucket, advance to the next bucket.
38287
38288 2000-11-02  Vesselin Atanasov  <vesselin@bgnet.bg>
38289
38290         * lib/fnmatch.c: Do not comment out all the code if we are using
38291         the GNU C library, because in some cases we are replacing buggy
38292         code in the GNU C library itself.
38293
38294 2000-10-30  Stefan Monnier  <monnier@cs.yale.edu>
38295
38296         * regex.c (re_iswctype, re_wctype_to_bit): Fix braino.
38297         (regex_compile): Catch bogus \(\1\).
38298
38299 2000-10-30  Paul Eggert  <eggert@twinsun.com>
38300
38301         * lib/fnmatch.c (FOLD): Do not assume that characters are unsigned.
38302         (fnmatch): Fix some FNM_FILE_NAME and FNM_LEADING_DIR bugs,
38303         e.g. fnmatch("d*/*1", "d/s/1", FNM_FILE_NAME) incorrectly yielded zero.
38304
38305 2000-10-30  Paul Eggert  <eggert@twinsun.com>
38306
38307         * lib/error.h, getline.h, modechange.h:
38308         Remove "2000" from Copyright line, as the file hasn't been
38309         changed this year other than in the copyright notice.
38310
38311         * lib/xalloc.h: Add "2000" to Copyright line, as this file
38312         was changed this year.
38313
38314 2000-10-29  Jim Meyering  <meyering@lucent.com>
38315
38316         * m4/fsusage.m4: s/AC_SHELL_IFELSE/AS_IFELSE/ to match autoconf
38317         renaming.
38318         * m4/ls-mntd-fs.m4: Likewise
38319
38320 2000-10-29  Jim Meyering  <meyering@lucent.com>
38321
38322         * lib/xstat.in: Fix grammar in comment.
38323
38324 2000-10-29  Greg Louis  <glouis@dynamicro.on.ca>
38325
38326         * lib/regex.h (__restrict_arr): Move definition out of #ifndef block.
38327         Required because egcs-2.91.66 (aka 1.1.2) defines __restrict, but
38328         doesn't define __restrict_arr.
38329
38330 2000-10-28  Jim Meyering  <meyering@lucent.com>
38331
38332         * m4/prereq.m4 (jm_PREREQ): Add jm_PREREQ_MEMCHR.
38333         (jm_PREREQ_MEMCHR): New function.
38334
38335 2000-10-28  Jim Meyering  <meyering@lucent.com>
38336
38337         * lib/memchr.c: Update from libc.
38338         Adjust for portability:
38339         [HAVE_STDLIB_H]: Include stdlib.h.
38340         [HAVE_BP_SYM_H || _LIBC]: Guard inclusion of bp-sym.h.
38341         Undef __memchr, too.
38342         [!weak_alias]: Define __memchr to memchr.
38343
38344         * lib/regex.c: Update from libc.
38345         * lib/regex.h: Likewise.
38346         * lib/getopt1.c: Likewise.
38347         * lib/memcmp.c: Likewise.
38348
38349         * lib/getusershell.c (setusershell) [HAVE_FSEEKO]: Use fseeko.
38350         Avoid using fseek, when possible -- it's broken by design.
38351         Patch by Ulrich Drepper.
38352
38353 2000-10-27  Stefan Monnier  <monnier@cs.yale.edu>
38354
38355         * regex.c (POP_FAILURE_REG_OR_COUNT, re_match_2_internal)
38356         (re_match_2_internal, re_match_2_internal, re_match_2_internal):
38357         Giving in to popular pressure to shut up the compiler with casts.
38358
38359 2000-10-26  Jim Meyering  <meyering@lucent.com>
38360
38361         * lib/strftime.c: Update from libc.
38362
38363 2000-10-25  Stefan Monnier  <monnier@cs.yale.edu>
38364
38365         * regex.c: More `unsigned char' -> `re_char' changes.
38366         Also change several `int' into `re_wchar_t'.
38367         (PATTERN_STACK_EMPTY, PUSH_PATTERN_OP, POP_PATTERN_OP): Remove.
38368         (PUSH_FAILURE_POINTER): Don't cast any more.
38369         (POP_FAILURE_REG_OR_COUNT): Remove the cast that strips `const'.
38370         We want GCC to complain, since this piece of code makes
38371         re_match non-reentrant, which *should* be fixed.
38372         (GET_BUFFER_SPACE): Use size_t rather than unsigned long.
38373         (EXTEND_BUFFER): Use RETALLOC.
38374         (SET_LIST_BIT): Don't cast.
38375         (re_wchar_t): New type.
38376         (re_iswctype, re_wctype_to_bit): Make it crystal clear to GCC
38377         that those two functions will always properly return.
38378         (IMMEDIATE_QUIT_CHECK): Cast to void.
38379         (analyse_first): Use recursion rather than an explicit stack.
38380         (re_compile_fastmap): Can't fail anymore.
38381         (re_search_2): Don't check re_compile_fastmap for failure.
38382         (PUSH_NUMBER): Renamed from PUSH_FAILURE_COUNT.
38383         Now also sets the new value (passed in a new argument).
38384         (re_match_2_internal): Use it.
38385         Also, use a new var `reg' of type size_t when looping through regs
38386         rather than reuse the inappropriate `mcnt'.
38387
38388 2000-10-25  Jim Meyering  <meyering@lucent.com>
38389
38390         * lib/obstack.c: Update from libc.
38391
38392 2000-10-24  Kenichi Handa  <handa@etl.go.jp>
38393
38394         * regex.c (regex_compile): Change the way of handling a range from
38395         a char less than 256 to a char not less than 256.
38396
38397 2000-10-24  Andrew Innes  <andrewi@gnu.org>
38398
38399         * regex.c (IMMEDIATE_QUIT_CHECK): New macro, which does QUIT on
38400         NT-Emacs only.
38401         (re_match_2_internal): Use IMMEDIATE_QUIT_CHECK instead of QUIT,
38402         so that re_search functions only quit when callers expect them to.
38403
38404 2000-10-23  Jim Meyering  <meyering@lucent.com>
38405
38406         * lib/hard-locale.c (hard_locale): Revert last change -- it was simply
38407         wrong.  That set_locale call must not have any side effects.
38408         From Paul Eggert.
38409
38410 2000-10-22  Jim Meyering  <meyering@lucent.com>
38411
38412         * lib/md5.c (md5_process_block) [OP]: Use `rol', not CYCLIC.
38413         [CYCLIC]: Remove now-unused definition.
38414
38415         * lib/save-cwd.c (O_DIRECTORY): Define, if needed.
38416         (save_cwd) [HAVE_FCHDIR]: Use O_DIRECTORY when opening ".".
38417         Suggestion from Ulrich Drepper.
38418
38419 2000-10-21  Jim Meyering  <meyering@lucent.com>
38420
38421         * m4/check-decl.m4 (jm_CHECK_DECLS): Also check for memrchr.
38422         * m4/prereq.m4 (jm_PREREQ_DIRNAME): New macro.
38423         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add memrchr.
38424
38425 2000-10-21  Jim Meyering  <meyering@lucent.com>
38426
38427         * lib/dirname.c (memrchr): Declare if necessary.
38428         (dir_name): Remove the restriction that there be no
38429         trailing slashes.  Now, this code skips past them, effectively
38430         ignoring them.
38431         [TEST_DIRNAME] (main): New unit tests.
38432
38433         * lib/memrchr.c: New file from GNU libc.
38434         Undef __memrchr, too.
38435         [!weak_alias]: Define __memrchr to memrchr.
38436         Guard weak_alias use with `#ifdef weak_alias'.
38437
38438 2000-10-21  Jim Meyering  <meyering@lucent.com>
38439
38440         * lib/dirname.c (dir_name_r): New function, factored out of dir_name.
38441         (dir_name): Use dir_name_r.
38442         * lib/dirname.h (dir_name_r): Declare it.
38443
38444 2000-10-17  Jim Meyering  <meyering@lucent.com>
38445
38446         * lib/quote.h (PARAMS): Define and use.
38447         Reported by Akim Demaille.
38448
38449         * lib/getopt.c: Update from libc.
38450
38451 2000-10-16  Jim Meyering  <meyering@lucent.com>
38452
38453         * lib/hard-locale.c (hard_locale): Use "", not 0 as 2nd arg to
38454         setlocale.
38455         From Jan Fedak.
38456
38457 2000-10-15  Stefan Monnier  <monnier@cs.yale.edu>
38458
38459         * regex.c (WIDE_CHAR_SUPPORT): Define if _LIBC as well.
38460
38461 2000-09-25  Jim Meyering  <meyering@lucent.com>
38462
38463         * lib/md5.h (rol): Define (from GnuPG).
38464
38465         * lib/sha.c: Give credit (GnuPG) where due.
38466         (M): Use rol rather than open-coding it.
38467         Add a FIXME comment.
38468
38469 2000-09-21  Jim Meyering  <meyering@lucent.com>
38470
38471         * lib/userspec.c (parse_user_spec): Remove debugging printf I'd added.
38472         Reported by Michael Stone.
38473
38474 2000-09-20  Jim Meyering  <meyering@lucent.com>
38475
38476         * lib/Makefile.am (libfetish_a_SOURCES): Add sha.c.
38477         (noinst_HEADERS): Add sha.h.
38478         Based on code from Scott G. Miller and from GnuPG.
38479
38480 2000-09-18  Jim Meyering  <meyering@lucent.com>
38481
38482         * m4/getloadavg.m4 (AC_FUNC_GETLOADAVG): Restore the initial value of
38483         LIBS. Otherwise, everyone ends up linking with -lelf for some
38484         configurations.
38485         Reported by Mike Stone.
38486
38487 2000-09-15  Jim Meyering  <meyering@lucent.com>
38488
38489         * lib/regex.c: Update from libc.
38490
38491 2000-09-10  Jim Meyering  <meyering@lucent.com>
38492
38493         * lib/getopt.c (_getopt_internal): Update from glibc.
38494
38495 2000-09-09  Jim Meyering  <meyering@lucent.com>
38496
38497         * lib/quotearg.c: Rename ISASCII to IN_CTYPE_DOMAIN, so people don't
38498         think it should be used as a general replacement for isascii.
38499         * lib/fnmatch.c: Likewise.
38500         * lib/mbswidth.c: Likewise
38501         * lib/regex.c: Likewise.
38502
38503         Don't use atoi.
38504         * lib/userspec.c: Include sys/param.h and limits.h.
38505         Include xstrtol.h.
38506         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Define.
38507         (UID_T_MAX, GID_T_MAX, MAXUID, MAXGID): Define.
38508         (parse_user_spec): Use xstrtoul, not atoi when converting numeric
38509         UID, GID.  Check range.
38510
38511 2000-09-06  Jim Meyering  <meyering@lucent.com>
38512
38513         * lib/getopt.c (_getopt_internal): Update from glibc.
38514
38515 2000-08-30  Jim Meyering  <meyering@lucent.com>
38516
38517         * lib/strftime.c: Merge in changes from GNU libc.
38518
38519 2000-08-26  Jim Meyering  <meyering@lucent.com>
38520
38521         * m4/jm-macros.m4: Use jm_FUNC_FPENDING.
38522         * m4/fpending.m4: New file.
38523
38524 2000-08-26  Jim Meyering  <meyering@lucent.com>
38525
38526         * lib/closeout.c: Include "__fpending.h".
38527         (close_stdout_status): Return right away if there's nothing to flush.
38528
38529         * lib/Makefile.am (noinst_HEADERS): Add __fpending.h.
38530         * lib/__fpending.c: New file.
38531         * lib/__fpending.h: New file.
38532
38533 2000-08-20  Jim Meyering  <meyering@lucent.com>
38534
38535         * m4/check-decl.m4: Include utmp.h `#if HAVE_UTMP_H', rather than
38536         `#if !HAVE_UTMPX_H'.  The latter would lose on systems with neither
38537         utmp.h nor utmpx.h.  Reported by Eli Zaretskii.
38538
38539 2000-08-11  J. David Anglin  <dave@hiauly1.hia.nrc.ca>
38540
38541         Improve fileutils installation on systems where running
38542         programs (like install) can't be unlinked.
38543         * m4/unlink-busy.m4 (jm_FUNC_UNLINK_BUSY_TEXT): New file/macro.
38544         * m4/jm-macros.m4: Use jm_FUNC_UNLINK_BUSY_TEXT.
38545
38546 2000-08-07  Paul Eggert  <eggert@twinsun.com>
38547
38548         Standardize on "memory exhausted" instead of "Memory exhausted"
38549         or "virtual memory exhausted".
38550         * lib/obstack.c (print_and_abort): Use "memory exhausted", not
38551         "virtual memory exhausted".
38552         * lib/same.c (same_name): Invoke xalloc_die instead of printing
38553         our own message.
38554         * lib/userspec.c (parse_user_spec): Likewise.
38555         * lib/bumpalloc.h: comment fix
38556         * lib/same.c, userspec.c: Include xalloc.h.
38557
38558         * lib/xalloc.h (xalloc_msg_memory_exhausted): Now char const[],
38559         not char *const and pointing to a constant array.
38560         * lib/xmalloc.c (xalloc_msg_memory_exhausted): Likewise.
38561         (xrealloc): Comment fix.
38562
38563         * lib/userspec.c (parse_user_spec):
38564         Don't translate a message until just before returning,
38565         to avoid unnecessary translation.
38566
38567 2000-08-07  Jim Meyering  <meyering@lucent.com>
38568
38569         * lib/addext.c, argmatch.c, argmatch.h, backupfile.h, bumpalloc.h,
38570         chown.c, diacrit.h, dirname.h, dup2.c, exclude.h, fileblocks.c,
38571         fnmatch.c, fnmatch.h, fsusage.c, fsusage.h, getdate.h,
38572         getgroups.c, gethostname.c, getopt.h, group-member.c,
38573         hard-locale.c, hash.h, isdir.c, lchown.c, linebuffer.c,
38574         linebuffer.h, long-options.h, malloc.c, md5.c, md5.h, memchr.c,
38575         memcmp.c, memcoll.c, memset.c, mktime.c, modechange.h, obstack.h,
38576         pathmax.h, realloc.c, rmdir.c, safe-read.c, save-cwd.c, stime.c,
38577         stpcpy.c, strcasecmp.c, strcspn.c, strdup.c, stripslash.c,
38578         strstr.c, strtod.c, strtol.c, strtoul.c, strtoull.c, strtoumax.c,
38579         utime.c, version-etc.h, xalloc.h, xstrdup.c, xstrtoumax.c,
38580         yesno.c: Back out Copyright date changes for each file with no change
38581         this year.  This eases coordination with other programs using the same
38582         source code modules.  From Paul Eggert.
38583
38584 2000-08-06  Paul Eggert  <eggert@twinsun.com>
38585
38586         * m4/mbstate_t.m4 (AC_MBSTATE_T): Define mbstate_t to be int,
38587         not char, for compatibility with glibc 2.1.3 strftime.c.
38588
38589 2000-08-03  Greg McGary  <greg@mcgary.org>
38590
38591         * lib/regex.c (SET_HIGH_BOUND, MOVE_BUFFER_POINTER,
38592         ELSE_EXTEND_BUFFER_HIGH_BOUND): New macros.
38593         (EXTEND_BUFFER): Use them.
38594
38595 2000-08-01  Jim Meyering  <meyering@lucent.com>
38596
38597         * lib/dirname.c (ISSLASH): Define.
38598         (BACKSLASH_IS_PATH_SEPARATOR): Define.
38599         (dir_name) [BACKSLASH_IS_PATH_SEPARATOR]: Handle the case in which
38600         both `\' and `/' may be use as path separators.
38601         Based on a patch from Prashant TR.
38602
38603 2000-07-31  Paul Eggert  <eggert@twinsun.com>
38604
38605         * lib/quotearg.c (quotearg_n_options): Don't make the initial
38606         slot vector a constant, since it might get modified.
38607
38608 2000-07-31  Jim Meyering  <meyering@lucent.com>
38609
38610         * lib/xmalloc.c: Use `virtual memory exhausted', not
38611         `Memory exhausted'.
38612         * lib/obstack.c (print_and_abort): Likewise.
38613
38614 2000-07-30  Paul Eggert  <eggert@twinsun.com>
38615
38616         * lib/quotearg.c (quotearg_n_options): Preallocate a slot 0
38617         buffer, so that the caller can always quote one small
38618         component of a "memory exhausted" message in slot 0.
38619         From a suggestion by Jim Meyering.
38620
38621 2000-07-30  Jim Meyering  <meyering@lucent.com>
38622
38623         * lib/makepath.c (make_path): Quote the other instance, too.
38624
38625         * lib/quotearg.c (N_STATIC_SLOTVECS): Define.
38626         (STATIC_BUF_SIZE): Define.
38627         (quotearg_n_options): Use only statically allocated storage when
38628         N < N_STATIC_SLOTVECS and the length of the quoted result is smaller
38629         than STATIC_BUF_SIZE.
38630
38631 2000-07-29  Jim Meyering  <meyering@lucent.com>
38632
38633         * lib/diacrit.c (diacrit_diac): Use __MSDOS__ in favor of MSDOS.
38634         * lib/dirname.c (dir_name): Likewise.
38635
38636         * lib/basename.c (base_name): Use ISSLASH rather than comparing against
38637         `/'.
38638
38639         * lib/dirname.c (dir_name) [MSDOS]: Declare `lim' to be const.
38640         (dir_name): Assert that there are no trailing slashes.
38641
38642 2000-07-29  Bruno Haible  <haible@clisp.cons.org>
38643
38644         * lib/mbswidth.h (mbswidth): Add a flags argument.
38645         (mbswidth): New declaration.
38646         (MBSW_ACCEPT_INVALID, MBSW_ACCEPT_UNPRINTABLE): New macros.
38647         * lib/mbswidth.c (mbswidth): Add a flags argument.
38648         (mbsnwidth): New function.
38649
38650 2000-07-24  Jim Meyering  <meyering@lucent.com>
38651
38652         * lib/mbswidth.c: Remove useless #else.  From Bruno Haible.
38653
38654 2000-07-23  Paul Eggert  <eggert@twinsun.com>
38655
38656         * m4/mbswidth.m4 (jm_PREREQ_MBSWIDTH): Check for wcwidth declaration.
38657
38658 2000-07-23  Paul Eggert  <eggert@twinsun.com>
38659
38660         * lib/quotearg.c: Streamline by invoking multibyte code only if needed.
38661         <wchar.h>: Include only if HAVE_MBRTOWC && 1 < MB_LEN_MAX.
38662         (MB_CUR_MAX): Redefine to 1 if ! (HAVE_MBRTOWC && 1 < MB_LEN_MAX).
38663         (quotearg_buffer_restyled): If a unibyte locale, don't bother to
38664         invoke multibyte primitives.
38665
38666 2000-07-23  Paul Eggert  <eggert@twinsun.com>
38667
38668         * lib/quotearg.c:
38669         Include <wchar.h> even if ! (HAVE_MBRTOWC && 1 < MB_LEN_MAX),
38670         so that mbstate_t is always defined.
38671
38672         Do not inspect MB_LEN_MAX, since it's incorrectly defined to
38673         be 1 in at least one GCC installation, and this configuration
38674         error is likely to be common.  Ignoring MB_LEN_MAX hurts
38675         performance on hosts that have mbrtowc but have only unibyte
38676         locales, but I assume these hosts are rare.
38677
38678 2000-07-23  Paul Eggert  <eggert@twinsun.com>
38679
38680         * lib/mbswidth.c (_XOPEN_SOURCE):
38681         Don't define; this causes problems on Solaris 7.
38682         (wcwidth) [!HAVE_DECL_WCWIDTH]: Declare.
38683
38684 2000-07-23  Jim Meyering  <meyering@lucent.com>
38685
38686         * m4/check-decl.m4 (jm_CHECK_DECLS): Check for declarations of these,
38687         too: getgrgid, getpwuid, getuid.
38688
38689 2000-07-23  Jim Meyering  <meyering@lucent.com>
38690
38691         * lib/basename.c (base_name): Add an assertion.
38692
38693 2000-07-23  Bruno Haible  <haible@clisp.cons.org>
38694
38695         * lib/quotearg.c: When the system forces us to redefine mbstate_t,
38696         shadow its mbsinit function.
38697
38698 2000-07-17  Bruno Haible  <haible@clisp.cons.org>
38699
38700         * lib/mbswidth.h: New file.
38701         * lib/mbswidth.c: New file.
38702         * lib/Makefile.am (libfetish_a_SOURCES): Add mbswidth.c.
38703         (noinst_HEADERS): Add mbswidth.h.
38704
38705 2000-07-17  Bruno Haible  <haible@clisp.cons.org>
38706
38707         * lib/config.charset: Add support for FreeBSD. Improve support for
38708         HP-UX and IRIX 6.
38709
38710 2000-07-16  Bruno Haible  <haible@clisp.cons.org>
38711
38712         * m4/mbswidth.m4: New file.
38713         * m4/prereq.m4 (jm_PREREQ): Call jm_PREREQ_MBSWIDTH.
38714
38715 2000-07-15  Jim Meyering  <meyering@lucent.com>
38716
38717         * lib/makepath.c: Include quote.h.
38718         (make_path): Convert "`%s'" in format strings to "%s", and wrap each
38719         corresponding argument in a `quote (...)' call.
38720         Give better diagnostics.
38721
38722         * lib/Makefile.am (libfetish_a_SOURCES): Add quote.c.
38723         (noinst_HEADERS): Add quote.h.
38724
38725         * lib/quote.c (quote, quote_n): New file.  Two functions taken verbatim
38726         from tar's src/misc.c.
38727         * lib/quote.h: New file.  Prototypes for same.
38728
38729 2000-07-14  Paul Eggert  <eggert@twinsun.com>
38730
38731         From a suggestion by Bruno Haible.
38732         * lib/quotearg.c (mbrtowc): Do not use HAVE_WCHAR_H in the definition.
38733         Use defined mbstate_t, not HAVE_MBSTATE_T_OBJECT,
38734         to decide whether to define the BeOS workaround macro;
38735         this adjusts to the change to AC_MBSTATE_T.
38736
38737 2000-07-14  Jim Meyering  <meyering@lucent.com>
38738
38739         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Require
38740         jm_AC_TYPE_UINTMAX_T.
38741
38742 2000-07-13  Paul Eggert  <eggert@twinsun.com>
38743
38744         * lib/quotearg.h (enum quoting style): New enum clocale_quoting_style.
38745
38746         * lib/quotearg.c (quoting_style_args, quoting_style_vals,
38747         quotearg_buffer_restyled): Add support for
38748         clocale_quoting_style.  Undo previous change to
38749         locale_quoting_style behavior, and undo the "{LEFT QUOTATION MARK}"
38750         and "{RIGHT QUOTATION MARK}" msgids.
38751
38752 2000-07-10  Paul Eggert  <eggert@twinsun.com>
38753
38754         From a suggestion by Bruno Haible.
38755         * m4/mbstate_t.m4 (AC_MBSTATE_T):
38756         Renamed from AC_MBSTATE_T_OBJECT.  All uses changed.
38757         Change from a two-part test, which defines both HAVE_MBSTATE_T_OBJECT
38758         and mbstate_t, to a single-part test that simply defines mbstate_t.
38759         * m4/prereq.m4 (jm_PREREQ_QUOTEARG):
38760         s/AC_MBSTATE_T_OBJECT/AC_MBSTATE_T/.
38761
38762 2000-07-10  Jim Meyering  <meyering@lucent.com>
38763
38764         * m4/strerror_r.m4: Mirror the correction made in autoconf.
38765
38766         * m4/gnu-source.m4: Output to confdefs.h directly.
38767         Suggestion from Akim Demaille.
38768
38769 2000-07-09  Paul Eggert  <eggert@twinsun.com>
38770
38771         The old behavior of quoting `like this' doesn't look good with
38772         newer, ISO-style fonts.  See:
38773         http://www.cl.cam.ac.uk/~mgk25/ucs/quotes.html
38774
38775         Instead, quote "like this" by default.  Let the translator
38776         tailor the locale-specific quoting behavior by providing
38777         translations for {LEFT QUOTATION MARK} and {RIGHT QUOTATION MARK}.
38778
38779         * lib/quotearg.c (N_): New macro.
38780         (gettext_default): New function.
38781         (quotearg_buffer_restyled): Use
38782         gettext_default ("{LEFT QUOTATION MARK}", "\"") for left quote, and
38783         gettext_default ("{RIGHT QUOTATION MARK}", "\"") for right quote.
38784
38785 2000-07-09  Jim Meyering  <meyering@lucent.com>
38786
38787         * m4/jm-macros.m4 (jm_MACROS): Add a test to see if -lm is required
38788         to link seq.  If so, set SEQ_LIBM to -lm.  From Bruno Haible.
38789
38790         * m4/gnu-source.m4 (AC__GNU_SOURCE): New file/macro.
38791         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require it.
38792
38793 2000-07-09  Jim Meyering  <meyering@lucent.com>
38794
38795         * lib/Most files: Update copyright dates to include 2000.
38796
38797 2000-07-08  Jim Meyering  <meyering@lucent.com>
38798
38799         * lib/xgethostname.c (ENAMETOOLONG): Define to an unlikely value
38800         if not defined.
38801         (xgethostname): Remove now-unnecessary #ifdef.
38802         Move declaration of `err' into loop where it's used.
38803
38804 2000-07-05  Paul Eggert  <eggert@twinsun.com>
38805         and Bruno Haible  <haible@clisp.cons.org>
38806
38807         * m4/mbstate_t.m4 (AC_MBSTATE_T_OBJECT): Test for mbstate_t
38808         only if the test for an object-type mbstate_t fails.  This
38809         prevents us from mistakenly reporting that mbstate_t is a
38810         system object type after we "#define mbstate_t int" to work
38811         around its lack.
38812
38813 2000-07-05  Paul Eggert  <eggert@twinsun.com>
38814         and Bruno Haible  <haible@clisp.cons.org>
38815
38816         * lib/quotearg.c (mbrtowc): Declare returned type, since BeOS doesn't.
38817
38818 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
38819
38820         * m4/strerror_r.m4 (AC_FUNC_STRERROR_R): Pass a reasonably large buffer
38821         to strerror_r.
38822         Include <ctype.h> for use of isalpha.
38823
38824 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
38825
38826         * lib/xgethostname.c (xgethostname): Protect against the SunOS 5.5 bug
38827         by allocating a larger buffer. Test the gethostname return value for
38828         being >= 0, not == 0, for BeOS.  Don't exhaust memory if gethostname
38829         returns an error and ENAMETOOLONG isn't defined.
38830
38831 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
38832
38833         * lib/quotearg.c (struct quoting_options): Simplify quote_these_too
38834         dimension.
38835
38836 2000-07-04  Jim Meyering  <meyering@lucent.com>
38837
38838         * m4/fsusage.m4 (jm_FILE_SYSTEM_USAGE): Use plain old `echo' instead
38839         of the deprecated AC_CHECKING.
38840
38841 2000-07-04  Jim Meyering  <meyering@lucent.com>
38842
38843         * lib/strndup.c: [!HAVE_DECL_STRNLEN]: Declare strnlen.
38844         Reported by Bruno Haible.
38845
38846 2000-07-04  Jim Meyering  <meyering@lucent.com>
38847
38848         * lib/quotearg.c: Make inclusion of <wchar.h> independent of whether
38849         HAVE_MBRTOWC is set.  Required at least for irix-5.6, which
38850         lacks mbrtowc.
38851
38852 2000-07-03  Paul Eggert  <eggert@twinsun.com>
38853
38854         * m4/mbstate_t.m4 (AC_MBSTATE_T_OBJECT): Port to autoconf 2.13.
38855         Add AC_CHECK_HEADERS(stdlib.h), since we use HAVE_STDLIB_H.
38856
38857 2000-07-03  Paul Eggert  <eggert@twinsun.com>
38858         and Bruno Haible  <haible@clisp.cons.org>
38859
38860         * lib/quotearg.c (mbrtowc):
38861         Assign to *pwc, and return 1 only if result is nonzero.
38862         (iswprint): Use ISPRINT when substituting our own mbrtowc.
38863
38864 2000-07-03  Jim Meyering  <meyering@lucent.com>
38865
38866         * m4/check-decl.m4 (AC_CHECK_DECLS): Add strnlen.
38867
38868 2000-07-03  Jim Meyering  <meyering@lucent.com>
38869
38870         * lib/readutmp.h: [HAVE_UTMPX_H]: Include <utmp.h> if HAVE_UTMP_H.
38871         This is necessary to get a definition of e.g., UTMP_FILE on
38872         HP-UX 10.20.
38873         From Bob Proulx.
38874
38875 2000-07-02  Jim Meyering  <meyering@lucent.com>
38876
38877         * m4/mbstate_t.m4: Also define mbstate_t, if necessary.
38878
38879         * m4/chown.m4: Replace each use of AC_SUBST(LIBOBJS)/LIBOBJS=... with
38880         AC_LIBOBJ(function_name).
38881         * m4/chown.m4: Likewise.
38882         * m4/fnmatch.m4: Likewise.
38883         * m4/ftruncate.m4: Likewise.
38884         * m4/getgroups.m4: Likewise.
38885         * m4/getline.m4: Likewise.
38886         * m4/group-member.m4: Likewise.
38887         * m4/jm-macros.m4: Likewise.
38888         * m4/lstat.m4: Likewise.
38889         * m4/malloc.m4: Likewise.
38890         * m4/memcmp.m4: Likewise.
38891         * m4/nanosleep.m4: Likewise.
38892         * m4/putenv.m4: Likewise.
38893         * m4/realloc.m4: Likewise.
38894         * m4/regex.m4: Likewise.
38895         * m4/stat.m4: Likewise.
38896         * m4/strftime.m4: Likewise.
38897
38898 2000-07-02  Jim Meyering  <meyering@lucent.com>
38899
38900         * lib/quotearg.c (mbstate_t): Don't define here.
38901
38902 2000-07-02  Jim Meyering  <meyering@lucent.com>
38903
38904         * lib/nanosleep.c (SIGCONT): Define if not already defined.
38905
38906 2000-07-01  Jim Meyering  <meyering@lucent.com>
38907
38908         * m4/uptime.m4: Put double quotes around use of $cross_compiling.
38909
38910 2000-07-01  Jim Meyering  <meyering@lucent.com>
38911
38912         * m4/ls-mntd-fs.m4: Remove a `FIXME' comment and fix the associated
38913         problem.
38914
38915 2000-07-01  Bruno Haible  <haible@clisp.cons.org>
38916
38917         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Rename BeOS specific
38918         macro from MOUNTED_NEXT_DEV to MOUNTED_FS_STAT_DEV.
38919
38920 2000-07-01  Bruno Haible  <haible@clisp.cons.org>
38921
38922         * lib/mountlist.c: Use MOUNTED_FS_STAT_DEV instead of MOUNTED_NEXT_DEV,
38923         per change in ../m4/ls-mntd-fs.m4.
38924         (read_filesystem_list): Ignore symbolic links.
38925
38926 2000-06-29  Jim Meyering  <meyering@lucent.com>
38927
38928         * lib/same.c: Include <string.h> or <strings.h>, as appropriate,
38929         for declaration of strcmp.
38930
38931         * lib/long-options.c: Include <stdlib.h>, for declaration of exit.
38932
38933         * lib/mountlist.c (fsp_to_string) [HAVE_F_FSTYPENAME_IN_STATFS]:
38934         Avoid warning by casting result to `char *' to remove `const'.
38935
38936 2000-06-28  Jim Meyering  <meyering@lucent.com>
38937
38938         * m4/mbstate_t.m4: Use stdlib.h, not stdio.h.  The latter is not
38939         included by quotearg.c, for which we perform this test.  From
38940         Bruno Haible.
38941
38942 2000-06-27  Bruno Haible  <haible@clisp.cons.org>
38943
38944         * m4/check-decl.m4 (_jm_DECL_HEADERS): Check for utmp.h as well.
38945         * m4/prereq.m4 (jm_PREREQ_READUTMP): Likewise. If either <utmp.h> or
38946         <utmpx.h> exists, put readutmp.o into LIBOBJS.
38947
38948 2000-06-27  Bruno Haible  <haible@clisp.cons.org>
38949
38950         * lib/Makefile.am (libfetish_a_SOURCES): Remove readutmp.c.
38951
38952 2000-06-26  Paul Eggert  <eggert@twinsun.com>
38953
38954         savedir now sets errno on failure and invokes xmalloc to get memory.
38955         Fix a couple of other minor bugs while we're at it.
38956
38957         * lib/savedir.c (<unistd.h>): Do not include; there's no need.
38958         (NAMLEN): Remove macro.
38959         (malloc, realloc): Remove decls.
38960         (stpcpy): Likewise.
38961         ("xalloc.h"): Include.
38962         (NAME_SIZE_DEFAULT): New macro.
38963         (savedir): Use xmalloc / xrealloc to allocate memory.
38964         Use NAME_SIZE_DEFAULT if name_size is negative or overflows to zero.
38965         Skip "" directory entries.
38966         Use strlen to calculate directory entry length, since the old method
38967         is rarely used these days and isn't worth supporting.
38968         Don't use a pointer after freeing it.
38969         Check for integer overflow when calculating allocation size.
38970         Use memcpy to copy entries, instead of stpcpy.
38971         Set errno properly when returning NULL.
38972         Check for readdir error.
38973
38974 2000-06-26  Jim Meyering  <meyering@lucent.com>
38975
38976         * lib/posixtm.c [HAVE_STDLIB_H]: Include stdlib.h, for decl of abort.
38977
38978 2000-06-25  Jim Meyering  <meyering@lucent.com>
38979
38980         * m4/mbstate_t.m4: Include stdio.h before wchar.h to work around
38981         Linux header bug when _XOPEN_SOURCE is defined to 500.
38982
38983 2000-06-25  Bruno Haible  <haible@clisp.cons.org>
38984
38985         * lib/unicodeio.c (print_unicode_char): Work around ansi2knr
38986         deficiency.
38987
38988 2000-06-25  Bruno Haible  <haible@clisp.cons.org>
38989
38990         * lib/getusershell.c (xmalloc, xrealloc): Remove functions.
38991         Include xalloc.h.
38992         Don't include <stdlib.h>.  Don't declare malloc, realloc.
38993
38994 2000-06-24  Jim Meyering  <meyering@lucent.com>
38995
38996         * m4/strerror_r.m4: Revive this file -- to try out an experimental
38997         version of AC_FUNC_STRERROR_R that may work even on BeOS, a system
38998         for which strerror does return char*, but which lacks a conveniently
38999         accessible declaration of the function.  If the compile-test says
39000         strerror_r doesn't work, then resort to a `run'-test that works on
39001         BeOS and segfaults on DEC Unix.
39002
39003 2000-06-24  Jim Meyering  <meyering@lucent.com>
39004
39005         * lib/error.c [!HAVE_DECL_STRERROR_R]: Declare strerror_r.
39006
39007 2000-06-23  Paul Eggert  <eggert@twinsun.com>
39008
39009         * m4/mbstate_t.m4: New file, defining AC_MBSTATE_T_OBJECT.
39010         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Use it.  Add check for iswprint.
39011
39012 2000-06-23  Paul Eggert  <eggert@twinsun.com>
39013
39014         * lib/quotearg.c: Include <wctype.h> after <wchar.h>, for Solaris 2.5.
39015         (mbrtowc, mbstate_t): Define substitutes if
39016         HAVE_MBRTOWC && HAVE_WCHAR_H && !HAVE_MBSTATE_T_OBJECT.
39017         (iswprint): Define to 1 if !defined iswprint && !HAVE_ISWPRINT,
39018         not if ! (HAVE_MBRTOWC && HAVE_WCHAR_H).
39019
39020 2000-06-23  Jim Meyering  <meyering@lucent.com>
39021
39022         * m4/afs.m4: Add missing AC_MSG_RESULT.
39023         Reported by Bruno Haible.
39024
39025         * m4/fsusage.m4: s/AC_MSG_CHECKING/AC_CHECKING/.
39026         Suggestion from Bruno Haible.
39027
39028 2000-06-23  Jim Meyering  <meyering@lucent.com>
39029
39030         * lib/getpass.c: New file, from Bruno Haible.  Required for BeOS.
39031
39032 2000-06-21  Jim Meyering  <meyering@lucent.com>
39033
39034         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add getpass.
39035
39036 2000-06-21  Jim Meyering  <meyering@lucent.com>
39037
39038         * lib/Makefile.am (libfetish_a_SOURCES): Add getstr.c.
39039         (noinst_HEADERS): Add getstr.h.
39040
39041         * lib/getline.c (getstr): Move into a separate file.
39042         * lib/getstr.c (getstr): New file, extracted from getline.c, with
39043         the following changes: new parameter, delim2; both delim[12]
39044         parameters have type `int', not `char'.  The latter would lose
39045         with 8-bit delimiters.
39046         * lib/getstr.h: New file.
39047
39048 2000-06-21  Bruno Haible  <haible@clisp.cons.org>
39049
39050         * lib/xgetcwd.c (xgetcwd): If the required pathname length is smaller
39051         than 1024, return a memory chunk of least possible size, instead
39052         of size PATH_MAX + 2. In the loop, increment the size proportionally.
39053         Use free/xmalloc instead of xrealloc to avoid copying for very long
39054         paths.
39055
39056 2000-06-21  Bruno Haible  <haible@clisp.cons.org>
39057
39058         * lib/path-concat.c (path_concat): Don't access dir[-1] if dir is
39059         the empty string.
39060
39061 2000-06-21  Bruno Haible  <haible@clisp.cons.org>
39062
39063         * lib/canon-host.c (canon_host): Use malloc and memcpy to copy an
39064         address, not strdup.  Include <stdlib.h> and don't declare free().
39065
39066 2000-06-19  Jim Meyering  <meyering@lucent.com>
39067
39068         * lib/getloadavg.c [HAVE_NLIST_H] (NLIST_STRUCT): Define.
39069
39070 2000-06-18  Jim Meyering  <meyering@lucent.com>
39071
39072         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Remove mkdir.
39073
39074         * m4/link-follow.m4 (jm_AC_FUNC_LINK_FOLLOWS_SYMLINK): Change the
39075         `checking whether...' message to be consistent with that of the
39076         lstat test.
39077
39078 2000-06-18  Jim Meyering  <meyering@lucent.com>
39079
39080         * lib/mkdir.c: Remove file, due mainly to copyright incompatibility.
39081         Besides, these days every porting target provides a mkdir function.
39082
39083         * lib/strnlen.c: Include memory.h, string.h, and/or strings.h as
39084         needed. (this snippet comes from src/system.h).
39085
39086 2000-06-16  Bruno Haible  <haible@clisp.cons.org>
39087
39088         * m4/glibc21.m4 (jm_GLIBC21): Define GLIBC21 for Makefiles, not for C.
39089
39090 2000-06-15  Paul Eggert  <eggert@twinsun.com>
39091
39092         * lib/human.c (adjust_value): New function.
39093         (human_readable_inexact): Apply rounding style even when
39094         printing approximate values.
39095
39096 2000-06-14  Paul Eggert  <eggert@twinsun.com>
39097
39098         * lib/human.c (human_readable_inexact): Allow an input block
39099         size that is not a multiple of the output block size, and vice versa.
39100         Reported by Piergiorgio Sartor.
39101
39102 2000-06-14  Paul Eggert  <eggert@twinsun.com>
39103
39104         * lib/getdate.y (get_date): Apply relative times after time
39105         zone indicator, not before.  Reported by Todd A. Jacobs.
39106
39107 2000-06-13  Jim Meyering  <meyering@lucent.com>
39108
39109         * lib/Makefile.am (all-local): Depend on lstat.c and stat.c.
39110
39111         * lib/xstat.in [!HAVE_DECL_FREE]: Declare free in lstat.c.
39112
39113 2000-06-12  Paul Eggert  <eggert@twinsun.com>
39114
39115         * lib/xstat.in: Include <stdlib.h> in lstat, to declare "free".
39116
39117 2000-06-12  Jim Meyering  <meyering@lucent.com>
39118
39119         * m4/getloadavg.m4 (AM_FUNC_GETLOADAVG): Replace with
39120         AC_FUNC_GETLOADAVG from autoconf, and tweak the latter to accept an
39121         optional argument.
39122         * m4/jm-macros.m4: s/AM_FUNC_GETLOADAVG/AC_FUNC_GETLOADAVG/, and supply
39123         the optional argument, `lib'.
39124
39125 2000-06-08  Jim Meyering  <meyering@lucent.com>
39126
39127         * m4/largefile.m4: Remove file (now that it's part of autoconf).
39128
39129 2000-06-04  Paul Eggert  <eggert@twinsun.com>
39130
39131         Rewrite largefile configuration so that we don't need to run
39132         getconf and don't need AC_CANONICAL_HOST.  [I'm leaving the use of
39133         AC_CANONICAL_HOST in configure.in -- jmm]
39134
39135         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS,
39136         AC_SYS_LARGEFILE_SPACE_APPEND): Remove.
39137         (AC_SYS_LARGEFILE_TEST_INCLUDES): New macro.
39138         (AC_SYS_LARGEFILE_MACRO_VALUE): Change arguments from
39139         CODE-TO-SET-DEFAULT to VALUE, INCLUDES, FUNCTION-BODY.
39140         All uses changed.
39141         Instead of inspecting the output of getconf, try to compile the
39142         test program without and with the macro definition.
39143         (AC_SYS_LARGEFILE): Do not require AC_CANONICAL_HOST or check
39144         for getconf.  Instead, check for the needed flags by compiling
39145         test programs.
39146
39147 2000-06-04  Paul Eggert  <eggert@twinsun.com>
39148
39149         * lib/strnlen.c: Include <config.h> if HAVE_CONFIG_H.
39150
39151 2000-06-04  Jim Meyering  <meyering@lucent.com>
39152
39153         * lib/getugroups.c (getugroups): Cast -1 to gid_t, for systems like
39154         SunOS 4.1.4 for which gid_t is an unsigned type.
39155
39156 2000-06-03  Jim Meyering  <meyering@lucent.com>
39157
39158         * m4/prereq.m4 (jm_PREREQ_HUMAN): Use []-quoted list in AC_CHECK_DECLS,
39159         now that autoconf requires that.
39160
39161         * m4/jm-glibc-io.m4: Add a kludge to make autoheader emit the required
39162         #undefs.  E.g., #undef HAVE_DECL_FERROR_UNLOCKED.
39163         Use []-quoted list in AC_CHECK_DECLS, now that autoconf requires that.
39164
39165 2000-06-03  Jim Meyering  <meyering@lucent.com>
39166
39167         * lib/strnlen.c [!HAVE_DECL_MEMCHR]: Declare memchr.
39168
39169 2000-06-03  Bruno Haible  <haible@clisp.cons.org>
39170
39171         * m4/glibc21.m4: New file.
39172         * m4/jm-macros.m4 (jm_MACROS): Call jm_GLIBC21.
39173
39174 2000-06-03  Bruno Haible  <haible@clisp.cons.org>
39175
39176         * lib/Makefile.am (install-exec-local): On systems with glibc-2.1 or
39177         newer, don't install charset.alias.
39178         * lib/config.charset: Change the Linux/glibc rules so they become empty
39179         on glibc-2.1 or newer.
39180
39181 2000-06-02  Jim Meyering  <meyering@lucent.com>
39182
39183         * lib/mountlist.c: Back out last change.  Instead, do this...
39184         * lib/mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Set the
39185         me_dummy member using the same `ignore'-testing code.
39186         * lib/mountlist.h (ME_DUMMY): Add `autofs' to the list of ignored
39187         fs_type strings.
39188         From Mark D. Roth.
39189
39190 2000-05-29  Jim Meyering  <meyering@lucent.com>
39191
39192         * lib/mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Ignore
39193         mounts with the `ignore' attribute.  Based on a patch from
39194         Mark D. Roth.
39195
39196 2000-05-28  Jim Meyering  <meyering@lucent.com>
39197
39198         * m4/jm-macros.m4 (AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK): Rename from
39199         jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
39200         * m4/stat.m4: Likewise.
39201         * m4/lstat.m4: Likewise.
39202         * m4/lstat-slash.m4: Remove file (absorbed into autoconf).
39203
39204         * m4/jm-macros.m4 (AC_FUNC_STRERROR_R): Rename from jm_FUNC_STRERROR_R.
39205         * m4/strerror_r.m4: Remove file (absorbed into autoconf).
39206
39207 2000-05-26  Jim Meyering  <meyering@lucent.com>
39208
39209         * m4/uptime.m4: Use `$cross_compiling', not `$ac_cv_prog_cc_cross'.
39210
39211 2000-05-24  Jim Meyering  <meyering@lucent.com>
39212
39213         * m4/prereq.m4: Use []-quoted list in AC_CHECK_MEMBERS, now that
39214         autoconf requires that.
39215         * m4/lib-check.m4: Likewise.
39216         * m4/jm-macros.m4: Likewise.
39217         * m4/strftime.m4: Likewise.
39218
39219         * m4/check-decl.m4 (jm_CHECK_DECLS): Use []-quoted list in
39220         AC_CHECK_DECLS, now that autoconf requires that.
39221
39222 2000-05-22  Jim Meyering  <meyering@lucent.com>
39223
39224         * m4/stat.m4: Require jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
39225         * m4/lstat.m4: Likewise.
39226
39227 2000-05-22  Jim Meyering  <meyering@lucent.com>
39228
39229         * lib/makepath.c: Remove old, now-unnecessary `#ifdef __MSDOS__' block.
39230
39231 2000-05-20  Jim Meyering  <meyering@lucent.com>
39232
39233         * m4/prereq.m4 (jm_PREREQ_HUMAN): New macro.
39234         (jm_PREREQ): Use it.
39235
39236 2000-05-18  Jim Meyering  <meyering@lucent.com>
39237
39238         * lib/hash.c (hash_rehash): Fix a nasty bug: copy the free entry list
39239         back, too, since it may have been modified by allocate_entry.
39240         (hash_delete): Rewrite to use neither the assignment operator
39241         nor the comma operator in an if-expression.
39242
39243 2000-05-15  Paul Eggert  <eggert@twinsun.com>
39244
39245         * lib/closeout.c:
39246         <sys/stat.h>, <sys/types.h>, <unistd.h>, (STDOUT_FILENO):
39247         Remove; no longer needed.
39248         "quotearg.h": Add include.
39249         (file_name): Do not bother to explicitly initialize to NULL; it's less
39250         efficient on some hosts.
39251         (close_stdout_status): Remove test as to whether stdout was already
39252         closed; it breaks for the case "echo x | sort >&-".
39253         Quote file name colons.
39254         Do not assume that _("write error") lacks format strings.
39255
39256 2000-05-15  Jim Meyering  <meyering@lucent.com>
39257
39258         * lib/version-etc.c (version_etc_copyright): Update the copyright
39259         string used in all --version output.
39260
39261 2000-05-14  Jim Meyering  <meyering@lucent.com>
39262
39263         * lib/closeout.c (close_stdout_set_file_name): New function.
39264         (close_stdout_status): Use new file-scoped global.
39265         Return right away if fstat says the stdout file descriptor is invalid.
39266         * lib/closeout.h (close_stdout_set_file_name): Declare.
39267
39268 2000-05-10  Jim Meyering  <meyering@lucent.com>
39269
39270         * lib/closeout.c [default_exit_status]: New file-scoped variable.
39271         (close_stdout_set_status): New function.
39272         * lib/closeout.h (close_stdout_set_status): Declare.
39273
39274 2000-05-09  Jim Meyering  <meyering@lucent.com>
39275
39276         * m4/gettext.m4: Rename this...
39277         * m4/libintl.m4: ...to this.
39278
39279 2000-05-08  Jim Meyering  <meyering@lucent.com>
39280
39281         * lib/long-options.c: Don't include closeout.h.
39282         (parse_long_options): Don't call close_stdout for --version.
39283
39284 2000-05-06  Paul Eggert  <eggert@twinsun.com>
39285
39286         * m4/largefile.m4 (AC_SYS_LARGEFILE): Define _XOPEN_SOURCE to
39287         be 500, instead of _GNU_SOURCE to be 1, to work around glibc
39288         2.1.3 bug.  This avoids a clash when files like regex.c define
39289         _GNU_SOURCE.
39290
39291 2000-05-06  Jim Meyering  <meyering@lucent.com>
39292
39293         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add atexit.
39294         (AC_REPLACE_FUNCS): Add strnlen.
39295
39296         * m4/rmdir-errno.m4 (fetish_FUNC_RMDIR_NOTEMPTY): New macro and file.
39297         * m4/jm-macros.m4: Require fetish_FUNC_RMDIR_NOTEMPTY.
39298
39299         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Save and restore LIBS around
39300         AC_SEARCH_LIBS call for nanosleep.
39301         (LIB_NANOSLEEP): Set and AC_SUBST.
39302
39303 2000-05-06  Jim Meyering  <meyering@lucent.com>
39304
39305         * lib/strnlen.c: Undefine __strnlen and strnlen.
39306         [!weak_alias]: Define __strnlen to strnlen.
39307
39308         * lib/atexit.c: New file, from libiberty.
39309
39310 2000-05-06  Jim Meyering  <meyering@lucent.com>
39311
39312         * lib/closeout.c (close_stdout_status): Also check for errors on the
39313         stderr stream.
39314
39315 2000-05-05  Jim Meyering  <meyering@lucent.com>
39316
39317         * m4/jm-macros.m4 (jm_MACROS): Save and restore LIBS around
39318         AC_SEARCH_LIBS call for clock_gettime.
39319         (LIB_CLOCK_GETTIME): Set and AC_SUBST.
39320
39321         * m4/search-libs.m4: Update from autoconf.
39322
39323         su doesn't work on Solaris 2.6.
39324         * m4/lib-check.m4: When checking for struct spwd.sp_pwdp, also include
39325         <shadow.h>.  Reported by Dragos Harabor.
39326
39327 2000-05-05  Bruno Haible  <haible@clisp.cons.org>
39328
39329         * lib/localcharset.c (get_charset_aliases): Use malloc, realloc and
39330         memcpy instead of xmalloc, xrealloc, path_concat.
39331         (locale_charset): Treat empty environment variables as absent.
39332         (DIRECTORY_SEPARATOR, ISSLASH): New macros.
39333
39334 2000-05-04  Jim Meyering  <meyering@lucent.com>
39335
39336         * lib/getopt.c: Update from glibc.
39337         * lib/obstack.c: Likewise.
39338         * lib/obstack.h: Likewise.
39339         * lib/regex.c: Likewise.  NB: K&R compiler support is dropped for this
39340         file
39341
39342         * lib/regex.h: Likewise.
39343         * lib/strndup.c: Likewise.
39344         * lib/strnlen.c: New file, from glibc.
39345
39346 2000-05-03  Jim Meyering  <meyering@lucent.com>
39347
39348         * m4/check-decl.m4 (AC_CHECK_DECLS): Add strndup.
39349
39350 2000-05-02  Paul Eggert  <eggert@twinsun.com>
39351
39352         * m4/largefile.m4 (AC_SYS_LARGEFILE): Define _GNU_SOURCE if
39353         this is needed to make ftello visible (e.g. glibc 2.1.3).  Use
39354         compile-time test, rather than inspecting host and OS, to
39355         decide whether to define _LARGEFILE_SOURCE.
39356
39357 2000-05-01  Jim Meyering  <meyering@lucent.com>
39358
39359         * m4/fsusage.m4: Use AC_MSG_CHECKING instead of obsolete AC_CHECKING.
39360
39361         * m4/ls-mntd-fs.m4 (jm_LIST_MOUNTED_FILESYSTEMS): Add BeOS support.
39362         Based on a patch from Bruno Haible.
39363
39364 2000-05-01  Jim Meyering  <meyering@lucent.com>
39365
39366         * lib/full-write.c (full_write): Remove `FIXME' part of comment.
39367
39368 2000-04-29  Jim Meyering  <meyering@lucent.com>
39369
39370         * lib/path-concat.c: Declare strdup only if it's not defined.
39371         * lib/canon-host.c: Likewise.
39372
39373 2000-04-28  Jim Meyering  <meyering@lucent.com>
39374
39375         * lib/rpmatch.c [HAVE_LIMITS_H]: Include limits.h before regex.h to
39376         avoid redefinition warning on some systems (HPUX).  Otherwise, regex.h
39377         is included first, then limits.h is included by locale.h by libintl.h.
39378         From John David Anglin.
39379
39380 2000-04-25  Jim Meyering  <meyering@lucent.com>
39381
39382         * lib/makepath.c (S_IRWXUGO): Define.
39383         (make_path): Always perform explicit chmod if MODE specifies any
39384         of the `special' permission bits.  Prompted by a bug report against
39385         install from Mate Wierdl and Joost van Baal.
39386
39387 2000-04-18  Jim Meyering  <meyering@lucent.com>
39388
39389         * m4/prereq.m4 (jm_PREREQ_GETPAGESIZE): New macro.
39390         (jm_PREREQ): Use it.
39391
39392 2000-04-18  Jim Meyering  <meyering@lucent.com>
39393
39394         * lib/README: New file.
39395
39396         * lib/getpagesize.h [!getpagesize && HAVE_OS_H && B_PAGE_SIZE]: Define
39397         getpagesize.  For BeOS.  Based on a patch from Bruno Haible.
39398
39399 2000-04-17  Jim Meyering  <meyering@lucent.com>
39400
39401         Get it right :-)
39402         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Emit the
39403         actual #define via AH_VERBATIM.  Don't need separate AC_DEFINE.
39404         Suggestion from Akim Demaille.
39405
39406 2000-04-17  Jim Meyering  <meyering@lucent.com>
39407
39408         * lib/strftime.c (my_strftime) [strftime]: Declare strftime here, since
39409         the definition of it to rpl_strftime also defined-away the system's
39410         declaration.
39411
39412 2000-04-15  Jim Meyering  <meyering@lucent.com>
39413
39414         Use `C' to denote so-called `contiguous' files, the same way
39415         that tar does.
39416         * lib/filemode.c (S_ISCTG) [!S_ISCTG && S_IFCTG]: Define.
39417         (ftypelet): Use S_ISCTG.
39418         From Michael Deutschmann.
39419
39420 2000-04-14  Jim Meyering  <meyering@lucent.com>
39421
39422         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Use the one-arg
39423         form of AC_DEFINE.  Otherwise, the #ifndef in AH_VERBATIM gets
39424         clobbered.
39425
39426 2000-04-14  Jim Meyering  <meyering@lucent.com>
39427
39428         * lib/strftime.c (my_strftime) [#ifdef strftime]: Declare strftime.
39429
39430 2000-04-13  Jim Meyering  <meyering@lucent.com>
39431
39432         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES) [_GNU_SOURCE]: Use new
39433         AH_VERBATIM to insert required #ifndef into config.h.in.
39434         Suggestion from Akim Demaille.
39435
39436 2000-04-12  Jim Meyering  <meyering@lucent.com>
39437
39438         * m4/getloadavg.m4 (AM_FUNC_GETLOADAVG): Use AC_CHECK_HEADERS, not
39439         `AC_CHECK_HEADER' to check for locale.h.  Thanks to a report from
39440         Christian Krackowizer.
39441
39442         More code moved from ../configure.in into (jm_CHECK_ALL_TYPES).
39443         * m4/jm-macros.m4 (_GNU_SOURCE): Define.
39444         (AC_SYS_LARGEFILE): Require.
39445         (AM_C_PROTOTYPES): Require.
39446
39447 2000-04-08  Jim Meyering  <meyering@lucent.com>
39448
39449         * lib/Makefile.am (charset.alias): Use t-$@, not $@-t so the DOS 8.3
39450         names don't conflict.  Reported by Eli Zaretskii.
39451
39452 2000-04-07  Jim Meyering  <meyering@lucent.com>
39453
39454         * lib/putenv.c: Move inclusion of errno.h so it follows that of
39455         sys/types.h, to work around system header problems on AIX 3.2.5.
39456         From Bruno Haible.
39457
39458 2000-04-07  Bruno Haible  <haible@clisp.cons.org>
39459
39460         * lib/unicodeio.c (print_unicode_char): Avoid triggering Solaris iconv
39461         bug.  Deal with the different error behavior of Irix iconv.
39462
39463 2000-04-05  Paul Eggert  <eggert@twinsun.com>
39464
39465         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Don't use -n32 on
39466         IRIX if the installer said otherwise.
39467
39468 2000-04-05  Jim Meyering  <meyering@lucent.com>
39469
39470         Portability tweaks required for ultrix4.3.
39471         * m4/check-decl.m4 [!HAVE_UTMPX_H] (headers): Include <utmp.h>.
39472         (jm_CHECK_DECLS): Add getutent to the list of functions.
39473         (_jm_DECL_HEADERS): Add utmpx.h.
39474         From John David Anglin.
39475
39476         * m4/strftime.m4: Back out the 2000-04-02 change.
39477         Instead of that change, simply undefine putenv in the test program.
39478
39479 2000-04-05  Jim Meyering  <meyering@lucent.com>
39480
39481         Portability tweaks required for ultrix4.3.
39482         * lib/readutmp.h [HAVE_UTMPX_H && !HAVE_DECL_GETUTENT]: Declare
39483         getutent.
39484         * lib/readutmp.c: Include sys/types.h before sys/stat.h.
39485         * lib/canon-host.c: Declare strdup.
39486         * lib/path-concat.c: Likewise.
39487         From John David Anglin.
39488
39489 2000-04-04  Jim Meyering  <meyering@lucent.com>
39490
39491         Be more DOS 8.3-friendly.
39492         * lib/ref-add.sin: Renamed from ref-add.sed.in.
39493         * lib/ref-del.sin: Renamed from ref-del.sed.in.
39494         * lib/Makefile.am: Reflect renaming.
39495         Reported by Eli Zaretskii.
39496
39497         Use a temporary file name that won't clash with `charset.alias'
39498         in the DOS 8.3 name space.
39499         * lib/Makefile.am (charset_tmp): Define.
39500         (install-exec-local): Use $(charset_tmp) instead of $(charset_alias)-t.
39501         (uninstall-local): Likewise.
39502         Reported by Eli Zaretskii.
39503
39504 2000-04-03  Jim Meyering  <meyering@lucent.com>
39505
39506         * m4/gettext.m4: Fix typo in comment.
39507
39508         * m4/codeset.m4 (AC_CHECK_HEADERS): Add langinfo.h (moved here from
39509         textutils/configure.in).  Suggestion from Paul Eggert.
39510         (AC_CHECK_FUNCS): Add nl_langinfo.  (also from textutils/configure.in)
39511
39512 2000-04-02  Paul Eggert  <eggert@twinsun.com>
39513
39514         * m4/strftime.m4 (jm_FUNC_GNU_STRFTIME): Set TZ environment
39515         variable in the shell rather than using putenv, which isn't
39516         portable.  This avoids the configure-time inter-test dependency
39517         on the potentially-renamed putenv function.
39518
39519 2000-03-30  Paul Eggert  <eggert@twinsun.com>
39520
39521         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Include <sys/stat.h>
39522         before checking struct stat.st_blksize, so that
39523         HAVE_STRUCT_STAT_ST_BLKSIZE is defined correctly.
39524
39525 2000-03-29  Paul Eggert  <eggert@twinsun.com>
39526
39527         * m4/strftime.m4 (_jm_STRFTIME_PREREQS): Check for strftime,
39528         since strftime.c uses HAVE_STRFTIME to decide whether to use
39529         the underlying strftime.
39530
39531 2000-03-29  Paul Eggert  <eggert@twinsun.com>
39532
39533         * lib/time/strftime.c (my_strftime): Make sure we call the system
39534         strftime, not ourselves, when invoking the underlying strftime.
39535
39536 2000-03-24  Jim Meyering  <meyering@lucent.com>
39537
39538         * lib/Makefile.am (EXTRA_DIST): Add ref-add.sed.in and ref-del.sed.in.
39539         (charset_alias): Define.
39540         (install-exec-local): Factor out common code.
39541         (uninstall-local): Split lines longer than 80.
39542         (ref-add.sed, ref-del.sed): Remove rules... (do the following instead)
39543         (SUFFIXES): Define.
39544         (.sed.in.sed): New rule.  Don't redirect directly to $@.
39545         (CLEANFILES): Add ref-add.sed and ref-del.sed.
39546
39547 2000-03-19  Bruno Haible  <haible@clisp.cons.org>
39548
39549         * lib/config.charset: Output a line containing "Packages using this
39550         file".
39551         * lib/ref-add.sed.in, lib/ref-del.sed.in: New files.
39552         * lib/Makefile.am (install-exec-local, uninstall-local, ref-add.sed,
39553         ref-del.sed): New rules.
39554
39555 2000-03-17  Jim Meyering  <meyering@lucent.com>
39556
39557         * lib/unicodeio.c (<string.h>): Include only #if HAVE_STRING_H.
39558         Otherwise, include <strings.h>
39559
39560 2000-03-17  Bruno Haible  <haible@clisp.cons.org>
39561
39562         * lib/unicodeio.c (utf8_wctomb): New function.
39563         (print_unicode_char): Pass the Unicode character to iconv in UTF-8
39564         format instead of in UCS-4 with platform dependent endianness.
39565
39566 2000-03-10  Jim Meyering  <meyering@lucent.com>
39567
39568         * m4/lib-check.m4: Look for getspnam in -lgen, too.
39569         From Marco Franzen.
39570
39571 2000-03-07  Paul Eggert  <eggert@twinsun.com>
39572
39573         * lib/savedir.c (savedir): Work even if directory size is
39574         negative; this can happen with some screwy NFS configurations.
39575
39576 2000-03-06  Jim Meyering  <meyering@lucent.com>
39577
39578         * lib/localcharset.c (get_charset_aliases): Don't try to free file_name
39579         if it's NULL (because we ran out of memory).  From Bruno Haible.
39580
39581 2000-03-05  Jim Meyering  <meyering@lucent.com>
39582
39583         * lib/localcharset.c ("path-concat.h"): Include.
39584         (get_charset_aliases): Use path_concat instead of ANSI string
39585         concatenation.
39586
39587         * lib/unicodeio.h (PARAMS): Define.
39588         Use it to guard prototype.
39589
39590 2000-03-04  Jim Meyering  <meyering@lucent.com>
39591
39592         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require AC_C_VOLATILE,
39593         for lib/localcharset.c.
39594
39595 2000-03-04  Jim Meyering  <meyering@lucent.com>
39596
39597         * lib/Makefile.am (install-exec-local): Create $(libdir) before
39598         installing into it.
39599         (uninstall-local): Uncomment this rule so `make distcheck' works
39600         once again.
39601
39602         * lib/unicodeio.c (<errno.h>): Include it.
39603         (errno): Declare if not defined.
39604
39605         * lib/localcharset.c: Add Bruno's comment justifying use of volatile.
39606
39607         * lib/config.charset: New version, incorporating remarks from a linux
39608         i18n mailing list.  From Bruno Haible.
39609
39610 2000-03-04  Bruno Haible  <haible@clisp.cons.org>
39611
39612         * m4/codeset.m4: New file.
39613         * m4/iconv.m4: New file.
39614         * m4/jm-macros.m4 (jm_MACROS): Call jm_LANGINFO_CODESET and jm_ICONV.
39615
39616 2000-03-03  Jim Meyering  <meyering@lucent.com>
39617
39618         * m4/regex.m4: Make sure re_compile_pattern accepts patterns like `{1'.
39619
39620 2000-03-02  Jim Meyering  <meyering@lucent.com>
39621
39622         * m4/timespec.m4: Require AC_HEADER_TIME before the cache check so
39623         the messages come out on separate lines.
39624
39625         * m4/jm-glibc-io.m4 (jm_FUNC_GLIBC_UNLOCKED_IO): Use AC_CHECK_DECLS,
39626         rather than jm_CHECK_DECLARATIONS.
39627         * m4/decl.m4: Remove now-unused file.
39628
39629         * m4/check-decl.m4 (AC_CHECK_DECLS): Add getlogin, ttyname, and
39630         geteuid.
39631
39632 2000-03-02  Jim Meyering  <meyering@lucent.com>
39633
39634         * lib/Makefile.am (EXTRA_DIST): Add config.charset.
39635
39636 2000-03-01  Jim Meyering  <meyering@lucent.com>
39637
39638         * lib/localcharset.c: Guard some #includes with `#if HAVE_...'.
39639         * lib/unicodeio.c: Likewise.
39640
39641 2000-03-01  Bruno Haible  <haible@clisp.cons.org>
39642
39643         * lib/config.charset: New file.
39644         * lib/localcharset.c: New file.
39645         * lib/unicodeio.h, lib/unicodeio.c: New files.
39646         * lib/Makefile.am (DEFS): Add -DLIBDIR=...
39647         (libfetish_a_SOURCES): Add localcharset.c and unicodeio.c.
39648         (noinst_HEADERS): Add unicodeio.h.
39649         (all-local, install-exec-local, charset.alias): New targets.
39650
39651 2000-02-28  Paul Eggert  <eggert@twinsun.com>
39652
39653         * lib/quotearg.c (ALERT_CHAR): New macro.
39654         (quotearg_buffer_restyled): Use it.
39655
39656 2000-02-27  Jim Meyering  <meyering@lucent.com>
39657
39658         * m4/check-decl.m4: Add getenv to the list.
39659
39660 2000-02-27  Jim Meyering  <meyering@lucent.com>
39661
39662         * lib/strtoumax.c: Fix typo in decl of strtoul: s/long long/long/.
39663         Guard declaration of strtoull also with `&& HAVE_UNSIGNED_LONG_LONG'.
39664
39665         * lib/backupfile.c: Guard inclusion of stdlib.h with
39666         `#if HAVE_STDLIB_H', not `#if STDC_HEADERS'.
39667         Declare malloc if needed.
39668
39669         * lib/backupfile.c: Use `#if !HAVE_DECL...' instead of
39670         `#ifndef HAVE_DECL..'
39671         now that autoconf always defines the HAVE_DECL_ symbols.
39672         * lib/human.c: Likewise.
39673         * lib/same.c: Likewise.
39674         * lib/strtoumax.c: Likewise.
39675
39676         * lib/backupfile.c: Arrange for cpp to fail if the configure-time
39677         declaration check was not run.
39678         * lib/hash.c: Likewise.
39679         * lib/human.c: Likewise.
39680         * lib/same.c: Likewise.
39681         * lib/strtoumax.c: Likewise.
39682
39683         * lib/userspec.c (parse_user_spec): If there is no `:' but there is a
39684         `.', then first look up the entire `.'-containing string as a login
39685         name.
39686
39687 2000-02-23  Jim Meyering  <meyering@lucent.com>
39688
39689         * m4/check-decl.m4: Now that we have the new AC_CHECK_DECLS, use it
39690         in place of my hack.
39691
39692 2000-02-18  Paul Eggert  <eggert@twinsun.com>
39693
39694         * lib/getdate.y: Handle two-digit years with leading zeros correctly.
39695         (textint): New typedef.
39696         (parser_control): Member year changed from int to textint.
39697         All uses changed.
39698         (YYSTYPE): Removed; replaced by %union with int and textint members.
39699         (tDAY, tDAY_UNIT, tDAYZONE, tHOUR_UNIT, tID, tLOCAL_ZONE, tMERIDIAN,
39700         tMINUTE_UNIT, tMONTH, tMONTH_UNIT tSEC_UNIT, tSNUMBER, tUNUMBER,
39701         tYEAR_UNIT, tZONE, o_merid): Now of type <intval>.
39702         (tSNUMBER, tUNUMBER): Now of type <textintval>.
39703         (date, number, to_year): Use width of number in digits, not its value,
39704         to determine whether it's a 2-digit year, or a 2-digit time.
39705         (yylex): Store number of digits of numeric tokens.
39706         Reported by John Kendall.
39707
39708         (parser_control): Changed from struct parser_control to typedef (for
39709         consistency).  All uses changed.
39710
39711         (tID): Removed; not used.
39712         (yylex): Return '?' for unknown identifiers, rather than (unused) tID.
39713
39714 2000-02-14  Paul Eggert  <eggert@twinsun.com>
39715
39716         * lib/getpagesize.h (getpagesize): Port to VMS for Alpha;
39717         adapted from changes to grep getpagesize.h by Martin P.J. Zinser.
39718
39719 2000-02-12  Jim Meyering  <meyering@lucent.com>
39720
39721         * lib/userspec.c (ISDIGIT): Define it.
39722         (isdigit): Remove definition.
39723         (is_number): Use ISDIGIT, not isdigit.
39724         <libintl.h>: Include.
39725         (_ and N_): Define.
39726         (parse_user_spec): Mark translatable strings.
39727
39728 2000-02-10  Jim Meyering  <meyering@lucent.com>
39729
39730         With these changes, nanosleep.[ch] are finally enough like the other
39731         lib/* replacement files to compile on a few more losing systems.
39732
39733         * lib/nanosleep.h: Don't include config.h.
39734         Remove prototype from declaration of nanosleep.
39735         (PARAMS): Remove now-unneeded definition.
39736         * lib/nanosleep.c: #undef nanosleep.
39737         (rpl_nanosleep): Rename from nanosleep.
39738
39739 2000-02-10  Jim Meyering  <meyering@lucent.com>
39740
39741         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Rename replacement function from
39742         gnu_nanosleep to rpl_nanosleep.
39743
39744 2000-02-09  Jim Meyering  <meyering@lucent.com>
39745
39746         * m4/lib-check.m4 (jm_LIB_CHECK): Fix typo: check for sp_pwdp in
39747         struct spwd, rather than in struct passwd.  Reported by Gaël Quéri.
39748
39749 2000-02-08  Akim Demaille  <akim@epita.fr>
39750
39751         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Quote square brackets with
39752         `[' and `]' and remove uses of `changequote'.
39753         (AC_SYS_LARGEFILE_MACRO_VALUE): Likewise.
39754         (AC_SYS_LARGEFILE): Likewise.
39755         * m4/gettext.m4 (AM_GNU_GETTEXT): Likewise.
39756         * m4/strftime.m4 (jm_FUNC_GNU_STRFTIME): Remove now-unnecessary use
39757         of changequote.
39758         * m4/regex.m4 (jm_INCLUDED_REGEX): Likewise.
39759         * m4/readdir.m4 (jm_FUNC_READDIR): Likewise
39760         * m4/memcmp.m4 (jm_AC_FUNC_MEMCMP): Likewise, and add `int' for main.
39761         * m4/getloadavg.m4 (AM_FUNC_GETLOADAVG): Likewise.
39762
39763 2000-02-05  Jim Meyering  <meyering@lucent.com>
39764
39765         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require most macros.
39766         Remove explicit use of AC_HEADER_TIME.  It is required by
39767         jm_CHECK_TYPE_STRUCT_TIMESPEC.  Using AC_HEADER_TIME and
39768         `AC_REQUIRE'ing jm_CHECK_TYPE_STRUCT_TIMESPEC provoked a but
39769         in autoconf whereby the expansion of the latter ended up preceding
39770         the expansion of its prerequisite, AC_HEADER_TIME.
39771         Reported by Volker Borchert.
39772
39773 2000-02-03  Jim Meyering  <meyering@lucent.com>
39774
39775         * m4/prereq.m4 (jm_PREREQ_READUTMP): Check for utmpxname.
39776
39777 2000-02-03  Jim Meyering  <meyering@lucent.com>
39778
39779         * lib/readutmp.c (read_utmp): Guard with `#ifdef UTMP_NAME_FUNCTION',
39780         rather than with `#if HAVE_UTMPNAME'.
39781
39782 2000-02-02  Jim Meyering  <meyering@lucent.com>
39783
39784         * m4/prereq.m4 (jm_PREREQ_ADDEXT): Fix typo that resulted in no
39785         definition of HAVE_PATHCONF: s/AC_CHECK_FUNC/AC_CHECK_FUNCS/.
39786         Reported by Eli Zaretskii.
39787
39788 2000-02-01  Jim Meyering  <meyering@lucent.com>
39789
39790         * lib/readutmp.h (UT_USER): Add parens.  From Andreas Schwab.
39791
39792 2000-01-31  Jim Meyering  <meyering@lucent.com>
39793
39794         * m4/check-decl.m4 (jm_CHECK_DECLS): Add nanosleep to the list of
39795         functions.  Add the time.h and sys/time.h headers along with the
39796         AC_REQUIRE'ment of AC_HEADER_TIME.
39797
39798 2000-01-31  Jim Meyering  <meyering@lucent.com>
39799
39800         * lib/nanosleep.h (nanosleep): Guard declaration with
39801         `#if ! HAVE_DECL_NANOSLEEP'.
39802         Without this, OFS gets a redeclaration error for rpl_nanosleep, due to
39803         the declaration in that vendor's sys/timers.h.
39804         Reported by Christian Krackowizer.
39805
39806         * lib/quotearg.c (ISASCII): Add #undef and move definition to follow
39807         inclusion of wctype.h to work around Solaris 2.6 namespace pollution.
39808         (ISPRINT): Likewise.
39809         Reported by Tom Tromey.
39810
39811 2000-01-30  Jim Meyering  <meyering@lucent.com>
39812
39813         * m4/lib-check.m4: Clean up some kludgy old shadow password tests.
39814
39815         * m4/prereq.m4 (utmp_includes): Define.
39816         Check for ut_user and ut_name members in both struct utmpx
39817         and struct utmp.
39818
39819 2000-01-30  Jim Meyering  <meyering@lucent.com>
39820
39821         * lib/readutmp.c (extract_trimmed_name): Use UT_USER instead of
39822         hard-coding uses of ->ut_name.  The latter doesn't work with new Linux
39823         header files where only utmpx.ut_user is declared.
39824
39825         * lib/readutmp.h (UT_USER): Define.
39826
39827 2000-01-29  Jim Meyering  <meyering@lucent.com>
39828
39829         * m4/lib-check.m4: New file containing library-related checks from
39830         fileutils and sh-utils (textutils had none).
39831
39832 2000-01-28  Jim Meyering  <meyering@lucent.com>
39833
39834         * m4/perl.m4: Change format of warning message to look more like that
39835         from the missing script.  Suggestion from François Pinard.
39836
39837 2000-01-25  Jim Meyering  <meyering@lucent.com>
39838
39839         * m4/timespec.m4: Require AC_HEADER_TIME, and include sys/time.h as
39840         well as time.h in the compile check.
39841         * m4/nanosleep.m4: Require AC_HEADER_TIME rather than simply using it.
39842         Fix typo in cross-compiling case: s/yes/no/.
39843
39844 2000-01-23  Jim Meyering  <meyering@lucent.com>
39845
39846         * m4/jm-macros.m4: Move df-related tests here from
39847         fileutils/configure.in
39848
39849         * m4/ls-mntd-fs.m4: s/list_mounted_fs/ac_list_mounted_fs/
39850         (jm_LIST_MOUNTED_FILESYSTEMS): Take two parameters.
39851
39852         * m4/fsusage.m4: New file.  Extracted from fileutils/configure.in.
39853         s/space/ac_fsusage_space/.
39854         (jm_FILE_SYSTEM_USAGE): Take two parameters.
39855
39856         * m4/ftruncate.m4: New file (derived from part of
39857         fileutils/configure.in).
39858         * m4/jm-macros.m4 (jm_FUNC_FTRUNCATE): AC_REQUIRE it.
39859         (jm_CHECK_ALL_TYPES): Require AC_HEADER_MAJOR and AC_HEADER_DIRENT.
39860
39861         * m4/jm-macros.m4 (OPTIONAL_BIN_PROGS, OPTIONAL_BIN_ZCRIPTS, MAN):
39862         AC_SUBST these here, rather than just in sh-util/configure.in, so
39863         that the now-shared-by-fileutils-and-textutils lib/Makefile.am are
39864         all the same.
39865         (AM_FUNC_OBSTACK): Add (from fileutils/configure.in).
39866         (AC_CHECK_FUNCS): Merge all checks from fileutils, textutils, sh-utils.
39867         (AM_FUNC_STRTOD): Added (from textutils', sh-utils' configure.in).
39868         (AC_SUBST(POW_LIBM)): Likewise.
39869         (AC_SUBST(DF_PROG)): Moved from fileutils/configure.in.
39870
39871 2000-01-23  Jim Meyering  <meyering@lucent.com>
39872
39873         * lib/Makefile.am (libfetish_a_SOURCES): Remove explicit mention of
39874         obstack.c.
39875
39876 2000-01-22  Jim Meyering  <meyering@lucent.com>
39877
39878         * m4/jm-macros.m4: Call AC_PROG_CC_STDC just before AC_C_CONST.
39879
39880         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): Add wctype.h.
39881
39882         * m4/jm-macros.m4 (AC_CHECK_HEADERS): Add checks from fileutils'
39883         configure.in
39884         (AC_CHECK_HEADERS): Likewise for sh-utils.
39885         (AC_CHECK_HEADERS): Likewise for textutils.
39886         Merge the three lists of headers.
39887
39888         * m4/prereq.m4 (jm_PREREQ_ADDEXT): New macro.  Parts moved here
39889         from fileutils' configure.in.
39890
39891         * m4/decl.m4: Remove kludgy `test -z $ac_...AC_CHECK_HEADERS(...)'
39892         code. Moved tests into their own function (_jm_DECL_HEADERS) in
39893         check-decl.m4.
39894
39895         * m4/check-decl.m4: Use #if rather than #ifdef.
39896         Add HAVE_DECL_STRTOUL and HAVE_DECL_STRTOULL.
39897         (jm_CHECK_DECLARATIONS): Add strtoul strtoull.
39898         (_jm_DECL_HEADERS): Define new function.
39899         (jm_CHECK_DECLARATIONS): Require it.
39900
39901 2000-01-22  Jim Meyering  <meyering@lucent.com>
39902
39903         * lib/strtoumax.c: [! HAVE_DECL_STRTOUL]: Declare strtoul.
39904         [! HAVE_DECL_STRTOULL]: Declare strtoull.
39905         Required for some AIX systems.  Reported by Christian Krackowizer.
39906         [TESTING] (main): New function.
39907
39908         1997-10-17  Eli Zaretskii  <eliz@is.elta.co.il>
39909         * lib/dirname.c (dir_name): Support for DOS-style file names with drive
39910         letters.
39911
39912         * lib/quotearg.c [HAVE_WCTYPE_H]: Include <wctype.h> for decl of
39913         iswprint.
39914
39915         * lib/strverscmp.c (ISDIGIT): Define.
39916         (strverscmp): Use ISDIGIT, not isdigit.
39917
39918 2000-01-19  Jim Meyering  <meyering@lucent.com>
39919
39920         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Include <sys/time.h>, too.
39921         Use AC_HEADER_TIME.  Volker Borchert reported that OpenBSD-2.3/sparc
39922         defines `struct timespec' in <sys/time.h>
39923
39924         * m4/c-bs-a.m4: Remove uses of changequote altogether.
39925         Thanks to Akim for explaining.
39926
39927 2000-01-17  Paul Eggert  <eggert@twinsun.com>
39928
39929         * lib/nanosleep.c (nanosleep):
39930         Don't use SA_INTERRUPT to decide whether to call sigaction, as
39931         POSIX.1 doesn't require SA_INTERRUPT and some systems
39932         (e.g. Solaris 7) don't define it.  Use SA_NOCLDSTOP instead;
39933         it's been part of POSIX.1 since day 1 (in 1988).
39934
39935 2000-01-17  Jim Meyering  <meyering@lucent.com>
39936
39937         * lib/interlock: Remove unused file.  Reported by François Pinard.
39938
39939 2000-01-16  Paul Eggert  <eggert@twinsun.com>
39940
39941         * lib/quotearg.c (quotearg_buffer_restyled): Do not quote
39942         alert, backslash, formfeed, and vertical tab unnecessarily in
39943         shell quoting style.
39944
39945 2000-01-16  Jim Meyering  <meyering@lucent.com>
39946
39947         * m4/jm-macros.m4: Require jm_FUNC_GROUP_MEMBER, jm_FUNC_PUTENV,
39948         AM_FUNC_ERROR_AT_LINE, jm_FUNC_GNU_STRFTIME, jm_FUNC_MKTIME,
39949         jm_FUNC_GETGROUPS AC_FUNC_VPRINTF, AC_FUNC_ALLOCA,
39950         AM_FUNC_GETLOADAVG, and jm_SYS_PROC_UPTIME.
39951
39952 2000-01-16  Jim Meyering  <meyering@lucent.com>
39953
39954         * m4/c-bs-a.m4: Use `changequote(<<,>>)', rather than `changequote(, )'
39955         because the latter didn't work.
39956
39957 2000-01-15  Jim Meyering  <meyering@lucent.com>
39958
39959         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add gethostname and getusershell.
39960         (AC_REPLACE_FUNCS): Add memcpy and memset.
39961         Add these, too: stime strcspn stpcpy strstr strtol strtoul.
39962         Add strpbrk.
39963         Add these: euidaccess memcmp mkdir rmdir rpmatch strndup strverscmp.
39964
39965 2000-01-12  Jim Meyering  <meyering@lucent.com>
39966
39967         * m4/prereq.m4 (jm_PREREQ_CANON_HOST): New macro.
39968         (jm_PREREQ): Use it.
39969         (jm_PREREQ_READUTMP): New macro.
39970         (jm_PREREQ): Use it.
39971
39972 2000-01-11  Paul Eggert  <eggert@twinsun.com>
39973
39974         Quote multibyte characters correctly.
39975         * m4/c-bs-a.m4: New file.
39976         * m4/prereq.m4 (jm_PREREQ_QUOTEARG): New macro.
39977         (jm_PREREQ): Use it.
39978
39979 2000-01-11  Paul Eggert  <eggert@twinsun.com>
39980
39981         * m4/uintmax_t.m4: Port to autoconf 2.13.
39982
39983 2000-01-08  Jim Meyering  <meyering@ascend.com>
39984
39985         * m4/strerror_r.m4 (jm_FUNC_STRERROR_R): New file/macro.
39986         * m4/jm-macros.m4 (jm_FUNC_STRERROR_R): Require it.
39987
39988 2000-01-04  Jim Meyering  <meyering@ascend.com>
39989
39990         * m4/d-type.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_TYPE): Rename from
39991         jm_STRUCT_DIRENT_D_TYPE.
39992         * m4/d-ino.m4 (jm_CHECK_TYPE_STRUCT_DIRENT_D_INO): Rename from
39993         jm_STRUCT_DIRENT_D_INO.
39994         * m4/utimbuf.m4 (jm_CHECK_TYPE_STRUCT_UTIMBUF): Rename from
39995         jm_STRUCT_UTIMBUF.
39996         * m4/jm-macros.m4: Reflect s/jm_STRUCT_/jm_CHECK_TYPE_STRUCT_/
39997         renamings.
39998         * m4/utime.m4: Likewise.
39999
40000         * m4/timespec.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC): New file, macro.
40001         * m4/jm-macros.m4 (jm_CHECK_TYPE_STRUCT_TIMESPEC): Require it.
40002
40003 2000-01-03  Paul Eggert  <eggert@twinsun.com>
40004
40005         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): Search for nanosleep in -lrt
40006         (for Solaris 7) and in -lposix4 (for Solaris 2.5.1).
40007
40008 2000-01-02  Jim Meyering  <meyering@ascend.com>
40009
40010         * m4/search-libs.m4: Escape `$' in $3 of dnl comment.  I no longer
40011         remember if this is necessary.
40012
40013 1999-12-26  Jim Meyering  <meyering@ascend.com>
40014
40015         * m4/jm-macros.m4: Use it here.
40016         * m4/nanosleep.m4 (jm_FUNC_NANOSLEEP): New file/macro.
40017
40018 1999-12-23  Jim Meyering  <meyering@ascend.com>
40019
40020         * m4/jm-macros.m4: Check for clock_gettime (moved from
40021         fileutils/configure.in)
40022         Check for gettimeofday.
40023
40024 1999-12-20  Jim Meyering  <meyering@ascend.com>
40025
40026         * m4/strftime.m4: Remove kludge, now that I'm using the fixed
40027         autoconf-2.14a-1999-12-20.
40028
40029 1999-12-19  Jim Meyering  <meyering@ascend.com>
40030
40031         * m4/lstat-slash.m4: New file.
40032         * m4/jm-macros.m4: Use the new macro:
40033         jm_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK.
40034
40035 1999-12-07  Jim Meyering  <meyering@ascend.com>
40036
40037         * m4/perl.m4: Require that File::Compare be available, too.
40038         Too many systems seem to lack it.
40039
40040         * m4/strftime.m4: Add checks for most of the cpp macros tested in
40041         GNU's strftime.c.  Prompted by a patch from Paul Eggert.
40042
40043 1999-11-18  Paul Eggert  <eggert@twinsun.com>
40044
40045         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Work around a
40046         problem with the QNX 4.25 shell, which doesn't propagate exit
40047         status of failed commands inside shell assignments.
40048
40049 1999-11-17  Jim Meyering  <meyering@ascend.com>
40050
40051         * m4/gettext.m4: Use new AC_CONFIG_LINKS in place of AC_LINK_FILES.
40052
40053 1999-11-07  Jim Meyering  <meyering@ascend.com>
40054
40055         * m4/getloadavg.m4: Add `, 1, [FIXME]' to each use of AC_DEFINE.
40056
40057 1999-11-06  Jim Meyering  <meyering@ascend.com>
40058
40059         * m4/link-follow.m4 (jm_AC_FUNC_LINK_FOLLOWS_SYMLINK): New file/macro.
40060         * m4/jm-macros.m4 (jm_MACROS): Use it here.
40061
40062 1999-11-05  Jim Meyering  <meyering@ascend.com>
40063
40064         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Move some tests from
40065         configure.in of textutils, fileutils, and sh-utils into this one
40066         (shared between those packages) file.
40067         Use `AC_CHECK_MEMBERS((struct stat.st_blksize))' instead of deprecated
40068         AC_STRUCT_ST_BLKSIZE.
40069
40070 1999-11-03  Jim Meyering  <meyering@ascend.com>
40071
40072         * m4/ssize_t.m4: Remove file.  No longer needed since the new version
40073         of AC_CHECK_TYPE checks includes unistd.h.
40074         * m4/jm-macros.m4: Use straight `AC_CHECK_TYPE(ssize_t, int)'.
40075         Suggestion from Akim Demaille.
40076
40077 1999-10-30  Jim Meyering  <meyering@ascend.com>
40078
40079         * m4/uintmax_t.m4: Require 2.14a.  Remove backslash before backtick in
40080         m4-quoted string.
40081         * m4/ls-mntd-fs.m4: Likewise.
40082         * m4/jm-macros.m4: Likewise.  Also, use AC_TYPE_SSIZE_T instead
40083         * m4/jm-winsz1.m4: Likewise.
40084
40085         * m4/const.m4: Remove file, since the fix made it into the experimental
40086         version of autoconf.
40087         * m4/mktime.m4: Likewise.
40088
40089         * m4/check-type.m4: Remove file, now that the latest version of
40090         AC_CHECK_TYPE takes a third arg to specify additional #includes.
40091
40092         * m4/ssize_t.m4: New file, requires experimental version of autoconf.
40093         * m4/jm-macros.m4: Use new AC_TYPE_SSIZE_T instead of my hacked
40094         AC_CHECK_TYPE.
40095
40096 1999-10-04  Jim Meyering  <meyering@ascend.com>
40097
40098         * m4/jm-macros.m4: Don't require autoconf-2.14.1.
40099
40100 1999-09-22  Paul Eggert  <eggert@twinsun.com>
40101
40102         * m4/largefile.m4 (AC_SYS_LARGEFILE_FLAGS): Work around GCC
40103         2.95.1 bug with HP-UX 10.20.
40104
40105 1999-09-17  Jim Meyering  <meyering@ascend.com>
40106
40107         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add strdup.
40108         Paul Nevai reported a link failure on a NeXT CUBE with NeXTSTEP 3.3
40109         due to missing strdup (against sh-utils-2.0).
40110
40111 1999-08-29  Jim Meyering  <meyering@ascend.com>
40112
40113         * m4/jm-macros.m4: Require jm_BISON.
40114         * m4/bison.m4: New file.
40115
40116 1999-08-17  Paul Eggert  <eggert@twinsun.com>
40117
40118         * m4/largefile.m4 (AC_SYS_LARGEFILE): Fix typo: missing comma
40119         in value for _FILE_OFFSET_BITS, which broke ports to HP-UX 10.20.
40120
40121 1999-08-05  Jim Meyering  <meyering@ascend.com>
40122
40123         * m4/getline.m4: Rename test file from conftestdata to conftest.data
40124         to avoid conflicts with `conftest' on 8+3 filesystems.
40125         Suggestion from Eli Zaretskii.
40126
40127 1999-08-04  Jim Meyering  <meyering@ascend.com>
40128
40129         * m4/jm-macros.m4: Move a 4-line block of code from the configure.in of
40130         fileutils and sh-utils (textutils's getline test was inadequate).
40131         (AM_FUNC_GETLINE): Run this test.
40132         (AC_CHECK_FUNCS): Check for getdelim.
40133         Reported by Bob Proulx.
40134
40135 1999-08-02  Jim Meyering  <meyering@ascend.com>
40136
40137         * m4/jm-macros.m4: Add a comment.
40138
40139 1999-08-01  Paul Eggert  <eggert@twinsun.com>
40140
40141         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): Check whether
40142         <inttypes.h> defines strtoumax as a macro (and not as a
40143         function).
40144
40145 1999-08-01  Paul Eggert  <eggert@twinsun.com>
40146
40147         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): Make sure
40148         that we can shift, multiply and divide unsigned long long
40149         values; Ultrix cc can't do it.
40150
40151 1999-08-01  Paul Eggert  <eggert@twinsun.com>
40152
40153         * m4/mktime.m4: New file, which is a preview of what should appear
40154         in the next public autoconf release.
40155
40156 1999-08-01  Paul Eggert  <eggert@twinsun.com>
40157
40158         * m4/lfs.m4: Remove this file.
40159         * m4/largefile.m4: New file.  It contains the old contents of
40160         lfs.m4, except that all names with prefix AC_LFS have been
40161         changed to use the prefix AC_SYS_LARGEFILE instead, to be
40162         compatible with future autoconf versions.  Also, some minor m4
40163         quoting problems have been fixed.
40164
40165 1999-08-01  Paul Eggert  <eggert@twinsun.com>
40166
40167         * m4/gettext.m4 (AM_WITH_NLS): Remove unnecessary lines.
40168         Fix typo: $nls_cv_header_intl was misspelled as $nsl_cv_header_intl.
40169         (AM_GNU_GETTEXT): Fix problem with brackets and m4 quoting,
40170         and simplify the shell code.
40171
40172 1999-08-01  Jim Meyering  <meyering@ascend.com>
40173
40174         * m4/mktime.m4 (AC_FUNC_MKTIME): Undefine to avoid syntax errors from
40175         m4.
40176
40177 1999-07-20  Jim Meyering  <meyering@ascend.com>
40178
40179         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add memmove.
40180
40181 1999-07-15  Jim Meyering  <meyering@ascend.com>
40182
40183         * m4/jm-macros.m4 (AC_CHECK_FUNCS): Check for getpagesize.
40184
40185 1999-05-22  Jim Meyering  <meyering@ascend.com>
40186
40187         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add memchr.
40188
40189 1999-05-20  Jim Meyering  <meyering@ascend.com>
40190
40191         * m4/search-libs.m4 [AC_SEARCH_LIBS]: Quote name in undefine.
40192         Add a colon after each `then' in case $4 is empty.
40193
40194 1999-05-16  Jim Meyering  <meyering@ascend.com>
40195
40196         * m4/search-libs.m4: New file to override autoconf's AC_SEARCH_LIBS.
40197
40198 1999-05-10  Jim Meyering  <meyering@ascend.com>
40199
40200         * m4/jm-mktime.m4: Reflect renaming: AM_FUNC_MKTIME -> AC_FUNC_MKTIME.
40201
40202         * m4/jm-macros.m4: Require 2.14.1, since we use newly-renamed
40203         AC_FUNC_MKTIME.
40204
40205 1999-05-10  Andreas Schwab  <schwab@issan.cs.uni-dortmund.de>
40206
40207         * m4/jm-mktime.m4, putenv.m4: Fix typos in config.h comments.
40208
40209 1999-05-04  Paul Eggert  <eggert@twinsun.com>
40210
40211         * m4/lfs.m4 (AC_LFS): -n32, -o32, and -n64 should be in CFLAGS,
40212         not CPPFLAGS, so that linking works correctly in IRIX.
40213
40214 1999-04-30  Paul Eggert  <eggert@twinsun.com>
40215
40216         * m4/jm-macros.m4 (AC_REPLACE_FUNCS): Add dup2.
40217
40218 1999-04-20  Paul Eggert  <eggert@twinsun.com>
40219
40220         * m4/uintmax_t.m4 (jm_AC_TYPE_UINTMAX_T): Move unsigned long
40221         long check into new jm_AC_TYPE_UNSIGNED_LONG_LONG macro.
40222         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): Require
40223         jm_AC_TYPE_UNSIGNED_LONG_LONG.
40224         * m4/ulonglong.m4 (jm_AC_TYPE_UNSIGNED_LONG_LONG): New file/macro.
40225
40226         * m4/lfs.m4: Port to AIX and HP-UX.  Support cross-compilation.
40227
40228 1999-04-20  Jim Meyering  <meyering@ascend.com>
40229
40230         * m4/xstrtoumax.m4: Require jm_AC_TYPE_UNSIGNED_LONG_LONG.
40231         AC_REPLACE xstroull if necessary.  From Paul Eggert.
40232         (AC_CHECK_FUNCS): Remove strtoull, strtoumax, strtouq.
40233
40234 1999-04-18  Jim Meyering  <meyering@ascend.com>
40235
40236         * m4/xstrtoumax.m4 (jm_AC_PREREQ_XSTRTOUMAX): New file/macro.
40237         * m4/jm-macros.m4: Use it.
40238
40239 1999-04-06  Jim Meyering  <meyering@ascend.com>
40240
40241         * m4/strftime.m4: Remove test for %f.
40242
40243 1999-03-29  Jim Meyering  <meyering@ascend.com>
40244
40245         * m4/jm-macros.m4 (jm_CHECK_ALL_TYPES): New macro, contains the
40246         superset of the AC_TYPE_* checks in the textutils, fileutils,
40247         and sh-utils, plus AC_TYPE_PID_T.  Paul Eggert suggested adding
40248         AC_TYPE_PID_T.
40249
40250 1999-03-28  Jim Meyering  <meyering@ascend.com>
40251
40252         * m4/jm-macros.m4: Define GNU_PACKAGE here.
40253         Be sure to AC_SUBST it, once again, so that @GNU_PACKAGE@ is
40254         replaced e.g., in the *.sh files of the sh-utils.
40255
40256 1999-03-20  Jim Meyering  <meyering@ascend.com>
40257
40258         * m4/jm-macros.m4: s/jm_WITH_REGEX/jm_INCLUDED_REGEX/.
40259         * m4/regex.m4 (jm_INCLUDED_REGEX): Rename from jm_WITH_REGEX.
40260         Don't depend on AM_GLIBC.  Suggestions from Alain Magloire.
40261
40262 1999-03-19  Jim Meyering  <meyering@ascend.com>
40263
40264         * m4/jm-winsz1.m4 (jm_WINSIZE_IN_PTEM): New macro.
40265
40266 1999-03-12  Jim Meyering  <meyering@ascend.com>
40267
40268         * m4/jm-macros.m4: Use AC_FUNC_SETVBUF_REVERSED.
40269
40270 1999-03-07  Jim Meyering  <meyering@ascend.com>
40271
40272         * m4/jm-glibc-io.m4: Use only those *_unlocked macros that are
40273         declared.
40274
40275 1999-02-17  Jim Meyering  <meyering@ascend.com>
40276
40277         * m4/gettext.m4 (AM_GNU_GETTEXT): Do `changequote' around use of
40278         brackets in macro definition.  From Eli Zaretskii and Alain Magloire.
40279
40280 1999-02-07  Jim Meyering  <meyering@ascend.com>
40281
40282         * m4/group-member.m4: New file -- extracted from sh-utils'
40283         configure.in.
40284
40285         1999-02-05  Eli Zaretskii  <eliz@is.elta.co.il>
40286         * m4/gettext.m4: Support DOS-style d:/foo/bar absolute file names.
40287
40288 1999-02-06  Jim Meyering  <meyering@ascend.com>
40289
40290         * m4/chown.m4: Use `AC_SUBST(LIBOBJS)' since we set LIBOBJS.
40291         * m4/fnmatch.m4: Likewise.
40292         * m4/getgroups.m4: Likewise.
40293         * m4/lstat.m4: Likewise.
40294         * m4/malloc.m4: Likewise.
40295         * m4/putenv.m4: Likewise.
40296         * m4/realloc.m4: Likewise.
40297         * m4/regex.m4: Likewise.
40298         * m4/stat.m4: Likewise.
40299         * m4/strftime.m4: Likewise.
40300         Suggestion from Alain Magloire.
40301
40302         * m4/chown.m4: Use `.$ac_objext', not `.o'.
40303         * m4/fnmatch.m4: Likewise.
40304         * m4/getgroups.m4: Likewise.
40305         * m4/getline.m4: Likewise.
40306         * m4/lstat.m4: Likewise.
40307         * m4/malloc.m4: Likewise.
40308         * m4/memcmp.m4: Likewise.
40309         * m4/putenv.m4: Likewise.
40310         * m4/realloc.m4: Likewise.
40311         * m4/regex.m4: Likewise.
40312         * m4/stat.m4: Likewise.
40313         * m4/strftime.m4: Likewise.
40314         Suggestion from Alain Magloire.
40315
40316         * m4/jm-macros.m4: Actually invoke jm_WITH_REGEX now that it requires
40317         an argument.
40318
40319         * m4/regex.m4: Add a run-time Test for proper operation of
40320         re_compile_pattern.
40321
40322 1999-01-31  Jim Meyering  <meyering@ascend.com>
40323
40324         * m4/getloadavg.m4: Check for locale.h and the function, setlocale.
40325
40326 1999-01-30  Jim Meyering  <meyering@ascend.com>
40327
40328         * m4/check-type.m4: Use 3-arg form of AC_DEFINE.
40329
40330         * m4/jm-mktime.m4: Make this a wrapper around the official
40331         AM_FUNC_MKTIME rather than my private copy, now that the official one
40332         is up to date.
40333         * m4/mktime.m4: Remove file.
40334
40335         * m4/getloadavg.m4: Use 3-arg form of AC_DEFINE.
40336         * m4/uptime.m4: Likewise.
40337         * m4/uintmax_t.m4: Likewise.
40338
40339 1999-01-28  Jim Meyering  <meyering@ascend.com>
40340
40341         * m4/jm-macros.m4: Use jm_AFS.
40342         * m4/afs.m4: New file (from fileutils' configure.in).
40343
40344         * m4/assert.m4: Use the 3-argument forms of AC_DEFINE* macros.
40345         * m4/chown.m4: Likewise.
40346         * m4/d-ino.m4: Likewise.
40347         * m4/d-type.m4: Likewise.
40348         * m4/fnmatch.m4: Likewise.
40349         * m4/getgroups.m4: Likewise.
40350         * m4/gettext.m4: Likewise.
40351         * m4/jm-mktime.m4: Likewise.
40352         * m4/jm-winsz2.m4: Likewise.
40353         * m4/lcmessage.m4: Likewise.
40354         * m4/ls-mntd-fs.m4: Likewise.
40355         * m4/malloc.m4: Likewise.
40356         * m4/memcmp.m4: Likewise.
40357         * m4/putenv.m4: Likewise.
40358         * m4/realloc.m4: Likewise.
40359         * m4/st_mtim.m4: Likewise.
40360         * m4/strftime.m4: Likewise.
40361
40362 1999-01-16  Jim Meyering  <meyering@ascend.com>
40363
40364         * m4/jm-macros.m4 (ARGMATCH_DIE): Define.
40365         (ARGMATCH_DIE_DECL): Define.
40366
40367 1999-01-12  Jim Meyering  <meyering@ascend.com>
40368
40369         * m4/Makefile.am.in: Rewrite to avoid using fmt.
40370         Reported by Lars Hecking.
40371
40372 1999-01-10  Jim Meyering  <meyering@ascend.com>
40373
40374         * m4/fstypename.m4: Use the new 3-arg form of AC_DEFINE instead of my
40375         gross kludge.
40376         * m4/inttypes_h.m4: Likewise.
40377         * m4/lstat.m4: Likewise.
40378         * m4/malloc.m4: Likewise.
40379         * m4/readdir.m4: Likewise.
40380         * m4/realloc.m4: Likewise.
40381         * m4/st_dm_mode.m4: Likewise.
40382         * m4/stat.m4: Likewise.
40383         * m4/utimbuf.m4: Likewise.
40384         * m4/utimes.m4: Likewise.
40385
40386         * m4/check-decl.m4: Use the new 3-arg form of AC_DEFINE instead of the
40387         AC_CHECK_FUNCS hack.  Now, it's still a hack, but at least the
40388         comments in config.h.in are meaningful.
40389
40390         * m4/jm-macros.m4: Require autoconf-2.13 here.
40391
40392         * m4/regex.m4: By default, don't use the included regex.c on systems
40393         with glibc 2.  Suggestion from Uli Drepper.
40394
40395 1999-01-02  Jim Meyering  <meyering@ascend.com>
40396
40397         * m4/jm-macros.m4: Replace strcasecmp and strncasecmp.
40398
40399 1998-12-18  Jim Meyering  <meyering@ascend.com>
40400
40401         * m4/Makefile.am.in (Makefile.am): Simplify rule.
40402         Based on a suggestion from Lars Hecking.
40403
40404 1998-11-16  Paul Eggert  <eggert@twinsun.com>
40405
40406         * m4/lfs.m4 (AC_LFS): Add support for HP-UX 10.20 and HP-UX 11.
40407
40408 1998-11-16  Jim Meyering  <meyering@ascend.com>
40409
40410         * m4/lfs.m4: Double-quote the `uname...` expression.
40411
40412 1998-11-14  Jim Meyering  <meyering@ascend.com>
40413
40414         * m4/lstat.m4: Correct comment.  POSIX does not permit it to succeed.
40415         * m4/stat.m4: Likewise.
40416
40417 1998-11-03  Jim Meyering  <meyering@ascend.com>
40418
40419         * m4/stat.m4: Rewrite to set HAVE_STAT_EMPTY_STRING_BUG.
40420         * m4/lstat.m4: Rewrite to set HAVE_LSTAT_EMPTY_STRING_BUG.
40421
40422 1998-10-18  Jim Meyering  <meyering@ascend.com>
40423
40424         * m4/check-decl.m4 (jm_CHECK_DECL_LOCALTIME_R): Remove macro.
40425
40426 1998-10-17  Jim Meyering  <meyering@ascend.com>
40427
40428         * m4/decl.m4 (jm_CHECK_DECLARATION): Don't hard-code which headers to
40429         include, though we still hard-code the `require'-like AC_CHECK_HEADERS
40430         calls for those previously hard-coded headers.  Instead, take a new
40431         parameter.
40432         (jm_CHECK_DECLARATIONS): Reflect interface change.
40433         * m4/check-decl.m4 (jm_CHECK_DECLS): Likewise.
40434         (jm_CHECK_DECL_LOCALTIME_R): New macro.
40435
40436         * m4/mktime.m4: Test for spring-forward gap before long-running test.
40437
40438 1998-10-14  Jim Meyering  <meyering@ascend.com>
40439
40440         * m4/mktime.m4: Use the more portable "TZ=PST8PDT,M4.1.0,M10.5.0"
40441         instead of "TZ=America/Vancouver".  From Paul Eggert.
40442
40443 1998-10-11  Jim Meyering  <meyering@ascend.com>
40444
40445         * m4/mktime.m4 (jm_AM_FUNC_MKTIME): New file and macro.
40446         This adds a test for a recently added compatibility fix for mktime.c.
40447         * m4/jm-mktime.m4: Require jm_AM_FUNC_MKTIME, not AM_FUNC_MKTIME.
40448
40449 1998-09-27  Jim Meyering  <meyering@ascend.com>
40450
40451         * m4/jm-macros.m4 (jm_MACROS): Require jm_FUNC_FNMATCH.
40452
40453         * m4/fnmatch.m4 (jm_FUNC_FNMATCH): New file/macro.  Extracted from
40454         ../configure.in, including a change from Gordon Matzigkeit to allow
40455         cross-compiling for the Hurd.
40456
40457         * m4/glibc.m4: New file/macro to test for the GNU C Library
40458         versions 1 and 2.  From Gordon Matzigkeit.
40459         Indent.
40460
40461 1998-09-21  Jim Meyering  <meyering@ascend.com>
40462
40463         * m4/chown.m4: Declare locals: before, after.  From Andries Brouwer.
40464
40465 1998-08-18  Paul Eggert  <eggert@twinsun.com>
40466
40467         Port nanosecond-resolution times to UnixWare 2.1.2 and
40468         pedantic Solaris 2.6.
40469
40470         * m4/st_mtim.m4 (AC_STRUCT_ST_MTIM_NSEC): Renamed from
40471         AC_STRUCT_ST_MTIM.
40472         * m4/st_mtim.m4 (AC_STRUCT_ST_MTIM_NSEC):
40473         Generate name of ns member, instead of just 1 or undef.
40474         Allow for UnixWare 2.1.2 and Solaris 2.6 if in pedantic mode.
40475
40476 1998-08-15  Jim Meyering  <meyering@ascend.com>
40477
40478         * m4/ssize_t.m4 (jm_TYPE_SSIZE_T): Remove file.
40479         * m4/check-type.m4: New file.  Replacement for AC_CHECK_TYPE.
40480         * m4/jm-macros.m4: Use the new AC_CHECK_TYPE(ssize_t, int)
40481         instead of jm_TYPE_SSIZE_T.
40482
40483 1998-08-12  Jim Meyering  <meyering@ascend.com>
40484
40485         * m4/st_dm_mode.m4: New file.  From Johan Danielsson.
40486
40487 1998-08-02  Jim Meyering  <meyering@ascend.com>
40488
40489         * m4/st_mtim.m4: Use hack to avoid having to put #undef HAVE_ST_MTIM
40490         in acconfig.h manually.
40491
40492 1998-07-31  Paul Eggert  <eggert@twinsun.com>
40493
40494         * m4/st_mtim.m4: New file.
40495
40496 1998-07-28  Jim Meyering  <meyering@ascend.com>
40497
40498         * m4/utimes.m4: Undef stat.
40499
40500 1998-07-25  Jim Meyering  <meyering@ascend.com>
40501
40502         * m4/utime.m4 (jm_FUNC_UTIME): New file and macro.
40503         * m4/utimes.m4 (jm_FUNC_UTIMES_NULL): New file and macro.
40504
40505 1998-07-09  Manfred Hollstein  <manfred@s-direktnet.de>
40506
40507         * m4/chown.m4 (jm_FUNC_CHOWN): Add a check to verify that the
40508         uid and gid actually remain unchanged.
40509
40510 1998-07-07  Jim Meyering  <meyering@ascend.com>
40511
40512         * m4/jm-glibc-io.m4: Remove fclose_unlocked.
40513
40514 1998-07-04  Jim Meyering  <meyering@ascend.com>
40515
40516         * m4/regex.m4: Use syscmd, ifelse, and sysval.  Mainly as an exercise
40517         to prove that this macro can be used in packages without regex.c.
40518
40519 1998-07-04  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
40520
40521         * m4/gettext.m4 (AM_WITH_NLS): Remove intl/libintl.h if <libintl.h>
40522         is to be used.
40523
40524 1998-07-03  Jim Meyering  <meyering@ascend.com>
40525
40526         * m4/gettext.m4: Add -lintl if it's found to be necessary.
40527
40528         * m4/gettext.m4: New file -- from gettext-0.10.35.
40529         * m4/lcmessage.m4: Likewise.
40530         * m4/progtest.m4: Likewise.
40531
40532         * m4/regex.m4 (jm_WITH_REGEX): New file and macro.
40533         * m4/jm-macros.m4: Require the new macro.
40534
40535 1998-06-29  Jim Meyering  <meyering@ascend.com>
40536
40537         * m4/fstypename.m4: Include sys/param.h.  NetBSD 1.3.1 requires this
40538         for the definition of NGROUPS (used in a system header included
40539         by sys/mount.h).
40540
40541 1998-06-28  Jim Meyering  <meyering@ascend.com>
40542
40543         * m4/ls-mntd-fs.m4: New file.
40544         * m4/fstypename.m4: New file.
40545
40546         * m4/jm-macros.m4: Require the new macro.
40547         * m4/jm-glibc-io.m4: New file.
40548
40549 1998-05-19  Jim Meyering  <meyering@ascend.com>
40550
40551         * m4/jm-macros.m4: Add jm_FUNC_LCHOWN.
40552         * m4/lchown.m4: New file.
40553
40554         * m4/Makefile.am.in: New file.
40555         * m4/Makefile.am (Makefile.am): Depend on Makefile.am.in.
40556
40557 1998-05-14  Jim Meyering  <meyering@ascend.com>
40558
40559         * m4/Makefile.am (EXTRA_DIST): Add them.
40560         * m4/jm-macros.m4: New file.
40561         * m4/utimbuf.m4: New file.
40562
40563 1998-05-12  Jim Meyering  <meyering@ascend.com>
40564
40565         * m4/Makefile.am (EXTRA_DIST): Add isc-posix.m4.
40566
40567 1998-05-11  Jim Meyering  <meyering@ascend.com>
40568
40569         * m4/isc-posix.m4: New file.
40570
40571 1998-05-10  Jim Meyering  <meyering@ascend.com>
40572
40573         * m4/jm-mktime.m4: Use AM_FUNC_MKTIME, now that it's up to date.
40574
40575 1998-05-09  Jim Meyering  <meyering@ascend.com>
40576
40577         * m4/Makefile.am (EXTRA_DIST): Add ssize_t.m4.
40578         (EXTRA_DIST): Remove mktime.m4, now that the new version is included
40579         with automake.
40580
40581         * m4/ssize_t.m4: New file.
40582         * m4/mktime.m4: Remove file -- the new automake has this now.
40583
40584 1998-04-26  Jim Meyering  <meyering@ascend.com>
40585
40586         * m4/assert.m4: New file.
40587         * m4/Makefile.am (EXTRA_DIST): Add assert.m4.
40588
40589 1998-04-05  Jim Meyering  <meyering@ascend.com>
40590
40591         * m4/prereq.m4 (jm_PREREQ_REGEX): New macro.
40592         (jm_PREREQ): Use it here.
40593
40594 1998-03-23  Jim Meyering  <meyering@eng.ascend.com>
40595
40596         * m4/inttypes_h.m4: Kludges so I don't have to add HAVE_INTTYPES_H
40597         in acconfig.h.
40598
40599 1998-03-15  Jim Meyering  <meyering@eng.ascend.com>
40600
40601         * m4/prereq.m4: New file.
40602         * m4/error.m4: New file.
40603         * m4/Makefile.am (EXTRA_DIST): Add error.m4 and prereq.m4.
40604
40605 1998-02-07  Jim Meyering  <meyering@eng.ascend.com>
40606
40607         * m4/getline.m4: Don't set am_cv_func_working_getline before the
40608         cache-check for the same variable -- that defeated the purpose of
40609         the test; the test program was never run.  This was a problem only
40610         on systems with losing getline functions -- HP-UX 10.20 is one.
40611         Reported by Bjorn Helgaas.
40612
40613 1998-02-06  Jim Meyering  <meyering@eng.ascend.com>
40614
40615         * m4/Makefile.am (EXTRA_DIST): Add perl.m4.
40616
40617 1998-01-10  Jim Meyering  <meyering@na-net.ornl.gov>
40618
40619         * m4/Makefile.am (EXTRA_DIST): Add const.m4.
40620
40621         * m4/const.m4: New file.  Use an initializer in this declaration
40622         typedef int charset[2]; const charset x;
40623         Reported by Bob Glickstein.
40624
40625 1997-12-21  Jim Meyering  <meyering@na-net.ornl.gov>
40626
40627         * m4/chown.m4: Fix reversed types on -1 args to chown.
40628         From Kaveh Ghazi.
40629
40630 1997-12-14  Jim Meyering  <meyering@na-net.ornl.gov>
40631
40632         * m4/check-decl.m4: s/DECLARATION_/DECL_/g.
40633         Add lseek and memchr.
40634
40635         * m4/decl.m4: s/HAVE_DECLARATION_/HAVE_DECL_/g.
40636         T.E.Dickey <dickey@clark.net> said that some older preprocessors
40637         have a 20-character limit on names.
40638
40639 1997-11-30  Jim Meyering  <meyering@na-net.ornl.gov>
40640
40641         * m4/inttypes_h.m4: New file.
40642         * m4/uintmax_t.m4: New file.
40643         * m4/Makefile.am (EXTRA_DIST): Add inttypes_h.m4 and uintmax_t.m4.
40644
40645
40646         -----
40647
40648         Local Variables:
40649         coding: utf-8
40650         End:
40651
40652         Copyright (C) 1997-2008 Free Software Foundation, Inc.
40653
40654         Copying and distribution of this file, with or without
40655         modification, are permitted provided the copyright notice
40656         and this notice are preserved.